X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-apis.c;h=7db3e75ad935adb6939ac380cd378a45506b3818;hb=e2c431bcda7f057b4767c3e8142b9e0ca0d32bc6;hp=e8e7ced355aa283735a7f9618bde805f34b3eaae;hpb=5c1e761a2f84439b6e53ff1682ee665a7db2bca1;p=src%2Fapp-framework-binder.git diff --git a/src/afb-apis.c b/src/afb-apis.c index e8e7ced3..7db3e75a 100644 --- a/src/afb-apis.c +++ b/src/afb-apis.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2016 "IoT.bzh" + * Copyright (C) 2016, 2017 "IoT.bzh" * Author "Fulup Ar Foll" * Author José Bollo * @@ -22,10 +22,11 @@ #include #include -#include "session.h" +#include "afb-session.h" #include "verbose.h" #include "afb-apis.h" #include "afb-context.h" +#include "afb-hook.h" #include struct api_desc { @@ -123,6 +124,7 @@ void afb_apis_call(struct afb_req req, struct afb_context *context, const char * int i; const struct api_desc *a; + req = afb_hook_req_call(req, context, api, lenapi, verb, lenverb); a = apis_array; for (i = 0 ; i < apis_count ; i++, a++) { if (a->namelen == lenapi && !strncasecmp(a->name, api, lenapi)) { @@ -134,3 +136,27 @@ void afb_apis_call(struct afb_req req, struct afb_context *context, const char * afb_req_fail(req, "fail", "api not found"); } +int afb_apis_start_service(const char *api, int share_session, int onneed) +{ + int i; + + for (i = 0 ; i < apis_count ; i++) { + if (!strcasecmp(apis_array[i].name, api)) + return apis_array[i].api.service_start(apis_array[i].api.closure, share_session, onneed); + } + ERROR("can't find service %s", api); + return -1; +} + +int afb_apis_start_all_services(int share_session) +{ + int i, rc; + + for (i = 0 ; i < apis_count ; i++) { + rc = apis_array[i].api.service_start(apis_array[i].api.closure, share_session, 1); + if (rc < 0) + return rc; + } + return 0; +} +