Change bluetooth status using agl-service-bluetooth
[apps/homescreen.git] / homescreen / src / main.cpp
1 /*
2  * Copyright (C) 2016, 2017 Mentor Graphics Development (Deutschland) GmbH
3  * Copyright (c) 2017, 2018 TOYOTA MOTOR CORPORATION
4  *
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
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
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.
16  */
17
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>
25
26 #include <qlibwindowmanager.h>
27 #include <weather.h>
28 #include <bluetooth.h>
29 #include "applicationlauncher.h"
30 #include "statusbarmodel.h"
31 #include "afm_user_daemon_proxy.h"
32 #include "mastervolume.h"
33 #include "homescreenhandler.h"
34 #include "hmi-debug.h"
35
36 // XXX: We want this DBus connection to be shared across the different
37 // QML objects, is there another way to do this, a nice way, perhaps?
38 org::AGL::afm::user *afm_user_daemon_proxy;
39
40 namespace {
41
42 struct Cleanup {
43     static inline void cleanup(org::AGL::afm::user *p) {
44         delete p;
45         afm_user_daemon_proxy = Q_NULLPTR;
46     }
47 };
48
49 void noOutput(QtMsgType, const QMessageLogContext &, const QString &)
50 {
51 }
52
53 }
54
55 int main(int argc, char *argv[])
56 {
57     QGuiApplication a(argc, argv);
58
59     // use launch process
60     QScopedPointer<org::AGL::afm::user, Cleanup> afm_user_daemon_proxy(new org::AGL::afm::user("org.AGL.afm.user",
61                                                                                                "/org/AGL/afm/user",
62                                                                                                QDBusConnection::sessionBus(),
63                                                                                                0));
64     ::afm_user_daemon_proxy = afm_user_daemon_proxy.data();
65
66     QCoreApplication::setOrganizationDomain("LinuxFoundation");
67     QCoreApplication::setOrganizationName("AutomotiveGradeLinux");
68     QCoreApplication::setApplicationName("HomeScreen");
69     QCoreApplication::setApplicationVersion("0.7.0");
70
71     QCommandLineParser parser;
72     parser.addPositionalArgument("port", a.translate("main", "port for binding"));
73     parser.addPositionalArgument("secret", a.translate("main", "secret for binding"));
74     parser.addHelpOption();
75     parser.addVersionOption();
76     parser.process(a);
77     QStringList positionalArguments = parser.positionalArguments();
78     
79     int port = 1700;
80     QString token = "wm";
81
82     if (positionalArguments.length() == 2) {
83         port = positionalArguments.takeFirst().toInt();
84         token = positionalArguments.takeFirst();
85     }
86
87     HMI_DEBUG("HomeScreen","port = %d, token = %s", port, token.toStdString().c_str());
88
89     // import C++ class to QML
90     // qmlRegisterType<ApplicationLauncher>("HomeScreen", 1, 0, "ApplicationLauncher");
91     qmlRegisterType<StatusBarModel>("HomeScreen", 1, 0, "StatusBarModel");
92     qmlRegisterType<MasterVolume>("MasterVolume", 1, 0, "MasterVolume");
93
94     ApplicationLauncher *launcher = new ApplicationLauncher();
95     QLibWindowmanager* layoutHandler = new QLibWindowmanager();
96     if(layoutHandler->init(port,token) != 0){
97         exit(EXIT_FAILURE);
98     }
99
100     if (layoutHandler->requestSurface(QString("HomeScreen")) != 0) {
101         exit(EXIT_FAILURE);
102     }
103
104     layoutHandler->set_event_handler(QLibWindowmanager::Event_SyncDraw, [layoutHandler](json_object *object) {
105         layoutHandler->endDraw(QString("HomeScreen"));
106     });
107
108     layoutHandler->set_event_handler(QLibWindowmanager::Event_ScreenUpdated, [layoutHandler, launcher](json_object *object) {
109         json_object *jarray = json_object_object_get(object, "ids");
110         int arrLen = json_object_array_length(jarray);
111         for( int idx = 0; idx < arrLen; idx++)
112         {
113             QString label = QString(json_object_get_string(     json_object_array_get_idx(jarray, idx) ));
114             HMI_DEBUG("HomeScreen","Event_ScreenUpdated application: %s.", label.toStdString().c_str());
115             QMetaObject::invokeMethod(launcher, "setCurrent", Qt::QueuedConnection, Q_ARG(QString, label));
116         }
117     });
118
119     HomescreenHandler* homescreenHandler = new HomescreenHandler();
120     homescreenHandler->init(port, token.toStdString().c_str());
121
122     QUrl bindingAddress;
123     bindingAddress.setScheme(QStringLiteral("ws"));
124     bindingAddress.setHost(QStringLiteral("localhost"));
125     bindingAddress.setPort(port);
126     bindingAddress.setPath(QStringLiteral("/api"));
127
128     QUrlQuery query;
129     query.addQueryItem(QStringLiteral("token"), token);
130     bindingAddress.setQuery(query);
131
132     // mail.qml loading
133     QQmlApplicationEngine engine;
134     engine.rootContext()->setContextProperty("layoutHandler", layoutHandler);
135     engine.rootContext()->setContextProperty("homescreenHandler", homescreenHandler);
136     engine.rootContext()->setContextProperty("launcher", launcher);
137     engine.rootContext()->setContextProperty("weather", new Weather(bindingAddress));
138     engine.rootContext()->setContextProperty("bluetooth", new Bluetooth(bindingAddress));
139     engine.load(QUrl(QStringLiteral("qrc:/main.qml")));
140
141     QObject *root = engine.rootObjects().first();
142     QQuickWindow *window = qobject_cast<QQuickWindow *>(root);
143     QObject::connect(window, SIGNAL(frameSwapped()), layoutHandler, SLOT(slotActivateSurface()));
144
145     return a.exec();
146 }