589d314fbcf59cee91510f6036aeee95fa5e7d88
[src/libhomescreen.git] / sample / template / main.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
18 #include <QtCore/QDebug>
19 #include <QtCore/QCommandLineParser>
20 #include <QtCore/QUrlQuery>
21 #include <QtCore/QSettings>
22 #include <QtGui/QGuiApplication>
23 #include <QtQml/QQmlApplicationEngine>
24 #include <QtQml/QQmlContext>
25 #include <QtQuickControls2/QQuickStyle>
26 #include <QQuickWindow>
27
28 #include <libhomescreen/libhomescreen.hpp>
29 #include "wmhandler.h"
30 #include "smhandler.h"
31
32
33 static LibHomeScreen*     hs;
34 static LibWindowmanager*  wm;
35 static LibSMWrapper*      smw;
36 static WmHandler*         wmh;
37
38 static std::string myname = std::string("Templete");
39
40
41 static void onRep(struct json_object* reply_contents);
42 static void onEv(const std::string& event, struct json_object* event_contents);
43
44
45 int main(int argc, char *argv[])
46 {
47     QGuiApplication       app(argc, argv);
48     QQmlApplicationEngine engine;
49     QQmlContext*          context = engine.rootContext();
50     QObject*              root;
51     QQuickWindow*         window;
52
53     QQuickStyle::setStyle("AGL");
54
55     /*
56      * Set argument and option
57      */
58     QCommandLineParser parser;
59     parser.addPositionalArgument("port", app.translate("main", "port for binding"));
60     parser.addPositionalArgument("secret", app.translate("main", "secret for binding"));
61     parser.addHelpOption();
62     parser.addVersionOption();
63     parser.process(app);
64     QStringList positionalArguments = parser.positionalArguments();
65
66     if (positionalArguments.length() == 2) {
67         /*
68          * Get argument
69          */
70         int port = positionalArguments.takeFirst().toInt();
71         QString secret = positionalArguments.takeFirst();
72         std::string token = secret.toStdString();
73
74
75         /*
76          * Get instance
77          */
78         hs = new LibHomeScreen();
79         wm = new LibWindowmanager();
80         smw = new LibSMWrapper(port, secret);
81         wmh = new WmHandler();
82
83
84         /*
85          * Set WindowManager
86          */
87         // Initialize
88         if(wm->init(port, token.c_str()) != 0){
89             exit(EXIT_FAILURE);
90         }
91
92         // Application should call requestSurface at first
93         if (wm->requestSurface(myname.c_str()) != 0) {
94             exit(EXIT_FAILURE);
95         }
96
97         // Set event handlers for each event
98         wm->set_event_handler(LibWindowmanager::Event_Active, [](char const *label) {
99             fprintf(stderr, "Surface %s got activated!\n", label);
100         });
101         wm->set_event_handler(LibWindowmanager::Event_Inactive, [](char const *label) {
102             fprintf(stderr, "Surface %s got deactivated!\n", label);
103         });
104         wm->set_event_handler(LibWindowmanager::Event_Visible, [](char const *label) {
105             fprintf(stderr, "Surface %s got visible!\n", label);
106         });
107         wm->set_event_handler(LibWindowmanager::Event_Invisible, [](char const *label) {
108             fprintf(stderr, "Surface %s got invisible!\n", label);
109         });
110         wm->set_event_handler(LibWindowmanager::Event_SyncDraw, [wm](char const *label) {
111             fprintf(stderr, "Surface %s got syncDraw!\n", label);
112             // Application should call LibWindowmanager::endDraw() in SyncDraw handler
113             wm->endDraw(label);
114         });
115         wm->set_event_handler(LibWindowmanager::Event_FlushDraw, [](char const *label) {
116             fprintf(stderr, "Surface %s got flushDraw!\n", label);
117         });
118
119         // Initialize WmHandler
120         wmh->init(wm, myname.c_str());
121
122
123         /*
124          * Set HomeScreen
125          */
126         // Initialize
127         hs->init(port, token.c_str());
128
129         // Set event handler
130         hs->set_event_handler(LibHomeScreen::Event_TapShortcut, [wm](const char* appname) {
131             if(myname == appname) {
132                 qDebug("Surface %s got tapShortcut\n", appname);
133                 // Application should call LibWindowmanager::endDraw() in TapShortcut handler
134                 wm->activateSurface(myname.c_str());
135             }
136         });
137
138         /*
139          * Set SoundManager
140          */
141         smw->wrapper_registerCallback(onEv, onRep);
142         smw->subscribe(QString("newMainConnection"));
143         smw->subscribe(QString("mainConnectionStateChanged"));
144         smw->subscribe(QString("removedMainConnection"));
145         smw->subscribe(QString("asyncSetSourceState"));
146         smw->subscribe(QString("asyncConnect"));
147
148         // Set context property for SoundManager
149         context->setContextProperty("smw", smw);
150
151
152         /*
153          * Load qml
154          */
155         engine.load(QUrl(QStringLiteral("qrc:/QmlForThisApp.qml")));
156
157
158         /*
159          * Set slot for WindowManager and SoundManager
160          */
161         root = engine.rootObjects().first();
162         window = qobject_cast<QQuickWindow *>(root);
163
164         // Set slot for calling LibWindowmanager::activateSurface() when loading qml have completed
165         QObject::connect(window, SIGNAL(frameSwapped()),
166             wmh, SLOT(slotActivateSurface()));
167
168         // Set slot for SoundManager
169         QObject::connect(smw, SIGNAL(smEvent(QVariant, QVariant)),
170             root, SLOT(slotEvent(QVariant, QVariant)));
171         QObject::connect(smw, SIGNAL(smReply(QVariant)),
172             root, SLOT(slotReply(QVariant)));
173     }
174
175     return app.exec();
176 }
177
178 static void onRep(struct json_object* reply_contents)
179 {
180     qDebug("%s is called", __FUNCTION__);
181     QString str = QString(json_object_get_string(reply_contents));
182     QJsonParseError error;
183     QJsonDocument jdoc = QJsonDocument::fromJson(str.toUtf8(), &error);
184     QJsonObject jobj = jdoc.object();
185
186     smw->emit_reply(jobj);
187     json_object_put(reply_contents);
188 }
189
190 static void onEv(const std::string& event, struct json_object* event_contents)
191 {
192     qDebug("%s is called", __FUNCTION__);
193     const QString event_name = QString(event.c_str());
194     QString str = QString(json_object_get_string(event_contents));
195     QJsonParseError error;
196     QJsonDocument jdoc = QJsonDocument::fromJson(str.toUtf8(), &error);
197     const QJsonObject jobj = jdoc.object();
198     smw->emit_event(event_name, jobj);
199
200     json_object_put(event_contents);
201 }
202