X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fhs-client.cpp;h=c927442de64f3ee81709ebb73c08e5ff1c0734cb;hb=211769e800f3a57de55b3774de82af55d2a0160a;hp=e0d4bf0c58e60cab898740fb9180ac61bf1d8d67;hpb=25299ef60fa4df5f590ff364cff004e90376a4bf;p=apps%2Fagl-service-homescreen.git diff --git a/src/hs-client.cpp b/src/hs-client.cpp index e0d4bf0..c927442 100644 --- a/src/hs-client.cpp +++ b/src/hs-client.cpp @@ -465,9 +465,35 @@ int HS_Client::handleRequest(afb_req_t request, const char *verb) int ret = AFB_EVENT_BAD_REQUEST; auto ip = func_list.find(std::string(verb)); - if(ip != func_list.end()) { + if(ip != func_list.end() && ip->second != nullptr) { HMI_NOTICE("homescreen-service","[%s]verb found", verb); ret = (this->*(ip->second))(request); } return ret; +} + +/** + * push event + * + * #### Parameters + * - event : the event want to push + * - param : the parameter contents of event + * + * #### Return + * 0 : success + * others : fail + * + */ +int HS_Client::pushEvent(const char *event, struct json_object *param) +{ + if(!checkEvent(event)) + return 0; + + HMI_NOTICE("homescreen-service","called, event=%s.",event); + struct json_object* push_obj = json_object_new_object(); + hs_add_object_to_json_object_str( push_obj, 4, _application_id, my_id.c_str(), _type, event); + if(param != nullptr) + json_object_object_add(push_obj, _parameter, param); + afb_event_push(my_event, push_obj); + return 0; } \ No newline at end of file