X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Flibhomescreen.cpp;fp=src%2Flibhomescreen.cpp;h=b54e373f7ea88eb98665774177e283bc35f13705;hb=e5d2527df6b684b38f57e35db970f4b8210f81a4;hp=84e3472ef088f83776ade339d76193f117077273;hpb=c0146077906057bf97688a617870228eaad0cf54;p=src%2Flibhomescreen.git diff --git a/src/libhomescreen.cpp b/src/libhomescreen.cpp index 84e3472..b54e373 100644 --- a/src/libhomescreen.cpp +++ b/src/libhomescreen.cpp @@ -46,7 +46,8 @@ const std::vector LibHomeScreen::api_list { std::string("hideWindow"), std::string("replyShowWindow"), std::string("showNotification"), - std::string("showInformation") + std::string("showInformation"), + std::string("getRunnables") }; const std::vector LibHomeScreen::event_list { @@ -58,6 +59,7 @@ const std::vector LibHomeScreen::event_list { std::string("replyShowWindow"), std::string("showNotification"), std::string("showInformation"), + std::string("application-list-changed"), std::string("none") }; @@ -294,7 +296,7 @@ int LibHomeScreen::onScreenReply(const char* reply_message) */ void LibHomeScreen::set_event_handler(enum EventType et, handler_func f) { - if (et >= 1 && et <= 7) { + if (et > Event_Min && et < Event_Max) { switch (et) { case Event_ShowWindow: this->subscribe(LibHomeScreen::event_list[0]); @@ -317,6 +319,9 @@ void LibHomeScreen::set_event_handler(enum EventType et, handler_func f) case Event_ShowInformation: this->subscribe(LibHomeScreen::event_list[6]); break; + case Event_AppListChanged: + this->subscribe(LibHomeScreen::event_list[7]); + break; } this->handlers[et] = std::move(f); @@ -588,6 +593,23 @@ int LibHomeScreen::showInformation(json_object* json) return this->call("showInformation", json); } +/** + * get runnables list + * + * Call HomeScreen Service's getRunnables verb to get runnalbes list. + * + * #### Parameters + * - Nothing + * + * #### Return + * - Returns 0 on success or -1 in case of error. + * + */ +int LibHomeScreen::getRunnables(void) +{ + return this->call("getRunnables", nullptr); +} + /************* Callback Function *************/ @@ -683,6 +705,12 @@ void LibHomeScreen::on_event(void *closure, const char *event, struct afb_wsj1_m i->second(json_data); } } + else if (strcasecmp(event_type, LibHomeScreen::event_list[7].c_str()) == 0) { + auto i = this->handlers.find(Event_AppListChanged); + if ( i != this->handlers.end() ) { + i->second(json_data); + } + } } /**