Skip to content
Snippets Groups Projects
Commit 610ef4d8 authored by Eric Vidal's avatar Eric Vidal :speech_balloon:
Browse files

only deal with service dependencies if its not parsed yet

parent c96cbadb
No related branches found
No related tags found
No related merge requests found
...@@ -35,6 +35,8 @@ ...@@ -35,6 +35,8 @@
#include <66/enum.h> #include <66/enum.h>
#include <66/state.h> // service_is_g flag #include <66/state.h> // service_is_g flag
#include <66/parser.h> #include <66/parser.h>
#include <66/module.h>
#include <66/instance.h>
static void parse_service_instance(stralloc *frontend, char const *svsrc, char const *sv, int insta) static void parse_service_instance(stralloc *frontend, char const *svsrc, char const *sv, int insta)
{ {
...@@ -196,17 +198,15 @@ int parse_frontend(char const *sv, resolve_service_t *ares, unsigned int *aresle ...@@ -196,17 +198,15 @@ int parse_frontend(char const *sv, resolve_service_t *ares, unsigned int *aresle
res.dependencies.ndepends += res.dependencies.noptsdeps ; res.dependencies.ndepends += res.dependencies.noptsdeps ;
} }
/** We take the dependencies in two case: /** parse dependencies iff the service was never parsed */
* If the user ask for it(force > 1) if (!isparsed)
* If the service was never parsed(!isparsed)*/ if (!parse_dependencies(&res, ares, areslen, info, force, conf, forced_directory, main, force > 1 ? 1 : 0))
if (force > 1 || !isparsed)
if (!parse_dependencies(&res, ares, areslen, info, force, conf, forced_directory, main))
log_dieu(LOG_EXIT_SYS, "parse dependencies of service: ", svname) ; log_dieu(LOG_EXIT_SYS, "parse dependencies of service: ", svname) ;
if (res.type == TYPE_MODULE) if (res.type == TYPE_MODULE)
parse_module(&res, ares, areslen, info, force) ; parse_module(&res, ares, areslen, info, force) ;
log_trace("add service ", svname, " to the selection: ") ; log_trace("add service ", svname, " to the selection") ;
if (service_resolve_array_search(ares, *areslen, svname) < 0) { if (service_resolve_array_search(ares, *areslen, svname) < 0) {
if (*areslen >= SS_MAX_SERVICE) if (*areslen >= SS_MAX_SERVICE)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment