X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fhs-proxy.cpp;h=ea8976c78e9c40c6dcd870192cf923b3cba67500;hb=84c29aff46e87a807d8e42c1ff8a433b291b0939;hp=f0ee5f03183725f4ad1bc5ce94c636c108bb434b;hpb=aa43a07d4e86421aefec8c603018d14f5e249087;p=apps%2Fagl-service-homescreen.git diff --git a/src/hs-proxy.cpp b/src/hs-proxy.cpp index f0ee5f0..ea8976c 100644 --- a/src/hs-proxy.cpp +++ b/src/hs-proxy.cpp @@ -14,8 +14,15 @@ * limitations under the License. */ +#include "homescreen.h" #include "hs-proxy.h" +struct closure_data { + std::string appid; + HS_ClientCtxt *clientCtx; + struct hs_instance *hs_instance; +}; + const char _afm_main[] = "afm-main"; @@ -36,6 +43,25 @@ const char _afm_main[] = "afm-main"; static void api_callback(void *closure, struct json_object *object, const char *error, const char *info, afb_api_t api) { AFB_INFO("asynchronous call, error=%s, info=%s, object=%s.", error, info, json_object_get_string(object)); + (void) api; + struct closure_data *cdata = static_cast(closure); + + if (!cdata->hs_instance) { + return; + } + + struct HS_ClientManager *clientManager = cdata->hs_instance->client_manager; + if (!clientManager) { + return; + } + + /* if we have an error then we couldn't start the application so we remove it */ + if (error) { + AFB_INFO("asynchronous call, removing client %s", cdata->appid.c_str()); + clientManager->removeClient(cdata->appid); + } + + free(cdata); } /** @@ -51,10 +77,10 @@ static void api_callback(void *closure, struct json_object *object, const char * * None * */ -static void api_call(afb_api_t api, const char *service, const char *verb, struct json_object *args) +static void api_call(afb_api_t api, const char *service, const char *verb, struct json_object *args, struct closure_data *cdata) { AFB_INFO("service=%s verb=%s, args=%s.", service, verb, json_object_get_string(args)); - afb_api_call(api, service, verb, args, api_callback, nullptr); + afb_api_call(api, service, verb, args, api_callback, cdata); } /** @@ -97,6 +123,23 @@ int HS_AfmMainProxy::runnables(afb_api_t api, struct json_object **object) return api_call_sync(api, _afm_main, __FUNCTION__, nullptr, object); } +/** + * get running application list + * + * #### Parameters + * - api : the api serving the request + * - object : return the details of appid + * + * #### Return + * 0 : success + * 1 : fail + * + */ +int HS_AfmMainProxy::ps(afb_api_t api, struct json_object **object) +{ + return api_call_sync(api, _afm_main, "runners", nullptr, object); +} + /** * get details of application * @@ -127,8 +170,33 @@ int HS_AfmMainProxy::detail(afb_api_t api, const std::string &id, struct json_ob * None * */ -void HS_AfmMainProxy::start(afb_req_t request, const std::string &id) +void HS_AfmMainProxy::start(struct hs_instance *instance, afb_req_t request, const std::string &id) { - struct json_object *args = json_object_new_string(id.c_str()); - api_call(request->api, _afm_main, __FUNCTION__, args); -} \ No newline at end of file + struct closure_data *cdata; + + /* tentatively store the client and client context, as the afb_req_t + * request will no longer be available in the async callback handler. This + * is similar to that is done showWindow(), handleRequest() in + * homescreen.cpp, but allows to fake the subscription here as well to + * avoid clients create/install dummy event handlers as to 'register' (or + * to keep track of applications started). + * + * In case api_callback() does return an error we'll remove then the client + * and client context there. We pass the closure_data with the client context + * and the application id to remove it. + */ + if (!instance || id.empty()) + return; + + cdata = static_cast(calloc(1, sizeof(*cdata))); + cdata->hs_instance = instance; + cdata->appid = id; + + struct HS_ClientManager *clientManager = instance->client_manager; + if (!clientManager) { + return; + } + + clientManager->addClient(request, id); + api_call(request->api, _afm_main, __FUNCTION__, json_object_new_string(id.c_str()), cdata); +}