2 * Copyright (c) 2017 TOYOTA MOTOR CORPORATION
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
17 #include "homescreenhandler.h"
19 #include "hmi-debug.h"
21 void* HomescreenHandler::myThis = 0;
23 HomescreenHandler::HomescreenHandler(QObject *parent) :
30 HomescreenHandler::~HomescreenHandler()
37 void HomescreenHandler::init(int port, const char *token)
39 mp_hs = new LibHomeScreen();
40 mp_hs->init(port, token);
44 mp_hs->registerCallback(nullptr, HomescreenHandler::onRep_static);
46 mp_hs->set_event_handler(LibHomeScreen::Event_OnScreenMessage, [this](json_object *object){
47 const char *display_message = json_object_get_string(
48 json_object_object_get(object, "display_message"));
49 HMI_DEBUG("HomeScreen","set_event_handler Event_OnScreenMessage display_message = %s", display_message);
54 void HomescreenHandler::tapShortcut(QString application_name)
56 HMI_DEBUG("HomeScreen","tapShortcut %s", application_name.toStdString().c_str());
57 mp_hs->tapShortcut(application_name.toStdString().c_str());
60 void HomescreenHandler::onRep_static(struct json_object* reply_contents)
62 static_cast<HomescreenHandler*>(HomescreenHandler::myThis)->onRep(reply_contents);
65 void HomescreenHandler::onEv_static(const string& event, struct json_object* event_contents)
67 static_cast<HomescreenHandler*>(HomescreenHandler::myThis)->onEv(event, event_contents);
70 void HomescreenHandler::onRep(struct json_object* reply_contents)
72 const char* str = json_object_to_json_string(reply_contents);
73 HMI_DEBUG("HomeScreen","HomeScreen onReply %s", str);
76 void HomescreenHandler::onEv(const string& event, struct json_object* event_contents)
78 const char* str = json_object_to_json_string(event_contents);
79 HMI_DEBUG("HomeScreen","HomeScreen onEv %s, contents: %s", event.c_str(), str);
81 if (event.compare("homescreen/on_screen_message") == 0) {
82 struct json_object *json_data = json_object_object_get(event_contents, "data");
83 struct json_object *json_display_message = json_object_object_get(json_data, "display_message");
84 const char* display_message = json_object_get_string(json_display_message);
86 HMI_DEBUG("HomeScreen","display_message = %s", display_message);