2 * Copyright (C) 2016, 2017 Mentor Graphics Development (Deutschland) GmbH
3 * Copyright (c) 2017 TOYOTA MOTOR CORPORATION
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
9 * http://www.apache.org/licenses/LICENSE-2.0
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
18 #include <QGuiApplication>
19 #include <QCommandLineParser>
20 #include <QtGui/QGuiApplication>
21 #include <QtQml/QQmlApplicationEngine>
22 #include <QtQml/QQmlContext>
23 #include <QtQml/qqml.h>
24 #include <QQuickWindow>
26 #include <qlibwindowmanager.h>
28 #include "applicationlauncher.h"
29 #include "statusbarmodel.h"
30 #include "afm_user_daemon_proxy.h"
31 #include "mastervolume.h"
32 #include "homescreenhandler.h"
33 #include "hmi-debug.h"
35 // XXX: We want this DBus connection to be shared across the different
36 // QML objects, is there another way to do this, a nice way, perhaps?
37 org::AGL::afm::user *afm_user_daemon_proxy;
42 static inline void cleanup(org::AGL::afm::user *p) {
44 afm_user_daemon_proxy = Q_NULLPTR;
48 void noOutput(QtMsgType, const QMessageLogContext &, const QString &)
54 int main(int argc, char *argv[])
56 QGuiApplication a(argc, argv);
59 QScopedPointer<org::AGL::afm::user, Cleanup> afm_user_daemon_proxy(new org::AGL::afm::user("org.AGL.afm.user",
61 QDBusConnection::sessionBus(),
63 ::afm_user_daemon_proxy = afm_user_daemon_proxy.data();
65 QCoreApplication::setOrganizationDomain("LinuxFoundation");
66 QCoreApplication::setOrganizationName("AutomotiveGradeLinux");
67 QCoreApplication::setApplicationName("HomeScreen");
68 QCoreApplication::setApplicationVersion("0.7.0");
70 QCommandLineParser parser;
71 parser.addPositionalArgument("port", a.translate("main", "port for binding"));
72 parser.addPositionalArgument("secret", a.translate("main", "secret for binding"));
73 parser.addHelpOption();
74 parser.addVersionOption();
76 QStringList positionalArguments = parser.positionalArguments();
81 if (positionalArguments.length() == 2) {
82 port = positionalArguments.takeFirst().toInt();
83 token = positionalArguments.takeFirst();
86 HMI_DEBUG("HomeScreen","port = %d, token = %s", port, token.toStdString().c_str());
88 // import C++ class to QML
89 // qmlRegisterType<ApplicationLauncher>("HomeScreen", 1, 0, "ApplicationLauncher");
90 qmlRegisterType<StatusBarModel>("HomeScreen", 1, 0, "StatusBarModel");
91 qmlRegisterType<MasterVolume>("MasterVolume", 1, 0, "MasterVolume");
93 ApplicationLauncher *launcher = new ApplicationLauncher();
94 QLibWindowmanager* layoutHandler = new QLibWindowmanager();
95 if(layoutHandler->init(port,token) != 0){
99 if (layoutHandler->requestSurface(QString("HomeScreen")) != 0) {
103 layoutHandler->set_event_handler(QLibWindowmanager::Event_SyncDraw, [layoutHandler](json_object *object) {
104 layoutHandler->endDraw(QString("HomeScreen"));
107 layoutHandler->set_event_handler(QLibWindowmanager::Event_ScreenUpdated, [layoutHandler, launcher](json_object *object) {
108 json_object *jarray = json_object_object_get(object, "ids");
109 int arrLen = json_object_array_length(jarray);
110 for( int idx = 0; idx < arrLen; idx++)
112 QString label = QString(json_object_get_string( json_object_array_get_idx(jarray, idx) ));
113 HMI_DEBUG("HomeScreen","Event_ScreenUpdated application: %s.", label.toStdString().c_str());
114 QMetaObject::invokeMethod(launcher, "setCurrent", Qt::QueuedConnection, Q_ARG(QString, label));
118 HomescreenHandler* homescreenHandler = new HomescreenHandler();
119 homescreenHandler->init(port, token.toStdString().c_str());
122 bindingAddress.setScheme(QStringLiteral("ws"));
123 bindingAddress.setHost(QStringLiteral("localhost"));
124 bindingAddress.setPort(port);
125 bindingAddress.setPath(QStringLiteral("/api"));
128 query.addQueryItem(QStringLiteral("token"), token);
129 bindingAddress.setQuery(query);
132 QQmlApplicationEngine engine;
133 engine.rootContext()->setContextProperty("layoutHandler", layoutHandler);
134 engine.rootContext()->setContextProperty("homescreenHandler", homescreenHandler);
135 engine.rootContext()->setContextProperty("launcher", launcher);
136 engine.rootContext()->setContextProperty("weather", new Weather(bindingAddress));
137 engine.load(QUrl(QStringLiteral("qrc:/main.qml")));
139 QObject *root = engine.rootObjects().first();
140 QQuickWindow *window = qobject_cast<QQuickWindow *>(root);
141 QObject::connect(window, SIGNAL(frameSwapped()), layoutHandler, SLOT(slotActivateSurface()));