use appid instead of appname in "tap_shortcut"
[apps/homescreen.git] / homescreen / src / homescreenhandler.cpp
1 /*
2  * Copyright (c) 2017 TOYOTA MOTOR CORPORATION
3  *
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
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
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.
15  */
16
17 #include "homescreenhandler.h"
18 #include <functional>
19 #include "hmi-debug.h"
20
21 void* HomescreenHandler::myThis = 0;
22
23 HomescreenHandler::HomescreenHandler(QObject *parent) :
24     QObject(parent),
25     mp_hs(NULL)
26 {
27
28 }
29
30 HomescreenHandler::~HomescreenHandler()
31 {
32     if (mp_hs != NULL) {
33         delete mp_hs;
34     }
35 }
36
37 void HomescreenHandler::init(int port, const char *token)
38 {
39     mp_hs = new LibHomeScreen();
40     mp_hs->init(port, token);
41
42     myThis = this;
43
44     mp_hs->registerCallback(nullptr, HomescreenHandler::onRep_static);
45
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);
50     });
51
52 }
53
54 void HomescreenHandler::tapShortcut(QString application_id)
55 {
56     HMI_DEBUG("HomeScreen","tapShortcut %s", application_id.toStdString().c_str());
57     mp_hs->tapShortcut(application_id.toStdString().c_str());
58 }
59
60 void HomescreenHandler::onRep_static(struct json_object* reply_contents)
61 {
62     static_cast<HomescreenHandler*>(HomescreenHandler::myThis)->onRep(reply_contents);
63 }
64
65 void HomescreenHandler::onEv_static(const string& event, struct json_object* event_contents)
66 {
67     static_cast<HomescreenHandler*>(HomescreenHandler::myThis)->onEv(event, event_contents);
68 }
69
70 void HomescreenHandler::onRep(struct json_object* reply_contents)
71 {
72     const char* str = json_object_to_json_string(reply_contents);
73     HMI_DEBUG("HomeScreen","HomeScreen onReply %s", str);
74 }
75
76 void HomescreenHandler::onEv(const string& event, struct json_object* event_contents)
77 {
78     const char* str = json_object_to_json_string(event_contents);
79     HMI_DEBUG("HomeScreen","HomeScreen onEv %s, contents: %s", event.c_str(), str);
80
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);
85
86         HMI_DEBUG("HomeScreen","display_message = %s", display_message);
87     }
88 }