Fix issue with QML variable declaration
[apps/mixer.git] / app / main.cpp
1 /*
2  * Copyright (C) 2016 The Qt Company Ltd.
3  * Copyright (C) 2016,2017 Konsulko Group
4  * Copyright (C) 2018 IoT.bzh
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 #include <QtCore/QDebug>
20 #include <QtCore/QCommandLineParser>
21 #include <QtCore/QUrlQuery>
22 #include <QtCore/QDir>
23 #include <QtCore/QStandardPaths>
24 #include <QtCore/QThread>
25 #include <QtGui/QGuiApplication>
26 #include <QtQml/QQmlApplicationEngine>
27 #include <QtQml/QQmlContext>
28 #include <QtQuickControls2/QQuickStyle>
29 #include <QtQml/qqml.h>
30 #include <QtQuick/qquickitem.h>
31 #include <QtQuick/qquickview.h>
32 #include <QQuickWindow>
33 #ifndef NATIVE_BUILD
34 #include <libhomescreen.hpp>
35 #include <qlibwindowmanager.h>
36 #else
37 #include <QScreen>
38 #endif
39 #include "mixer.h"
40
41 int main(int argc, char *argv[])
42 {
43         QString myname = QString("Mixer");
44
45         QGuiApplication app(argc, argv);
46
47         QQuickStyle::setStyle("AGL");
48
49         QCommandLineParser parser;
50         parser.addPositionalArgument("port", app.translate("main", "port for binding"));
51         parser.addPositionalArgument("secret", app.translate("main", "secret for binding"));
52         parser.addHelpOption();
53         parser.addVersionOption();
54         parser.process(app);
55         QStringList positionalArguments = parser.positionalArguments();
56
57         qmlRegisterType<Mixer>("Mixer", 1, 0, "Mixer");
58
59         QQmlApplicationEngine engine;
60         if (positionalArguments.length() == 2) {
61                 int port = positionalArguments.takeFirst().toInt();
62                 QString secret = positionalArguments.takeFirst();
63                 QUrl bindingAddress;
64                 bindingAddress.setScheme(QStringLiteral("ws"));
65                 bindingAddress.setHost(QStringLiteral("localhost"));
66                 bindingAddress.setPort(port);
67                 bindingAddress.setPath(QStringLiteral("/api"));
68                 QUrlQuery query;
69                 query.addQueryItem(QStringLiteral("token"), secret);
70                 bindingAddress.setQuery(query);
71                 QQmlContext *context = engine.rootContext();
72                 context->setContextProperty(QStringLiteral("bindingAddress"), bindingAddress);
73                 qDebug() << "Connect to: " << bindingAddress;
74
75
76 #ifndef NATIVE_BUILD
77                 LibHomeScreen* hs = new LibHomeScreen();
78                 QLibWindowmanager* qwm = new QLibWindowmanager();
79
80                 // WindowManager
81                 if(qwm->init(port,secret) != 0){
82                         exit(EXIT_FAILURE);
83                 }
84                 // Request a surface as described in layers.json windowmanager’s file
85                 if (qwm->requestSurface(myname) != 0) {
86                         exit(EXIT_FAILURE);
87                 }
88                 // Create an event callbnewack against an event type. Here a lambda is called when SyncDraw event occurs
89             qwm->set_event_handler(QLibWindowmanager::Event_SyncDraw, [qwm, myname](json_object*) {
90                                 fprintf(stderr, "Surface got syncDraw!\n");
91                                 qwm->endDraw(myname);
92                         });
93
94                 // HomeScreen
95                 std::string token = secret.toStdString();
96                 hs->init(port, token.c_str());
97                 // Set the event handler for Event_TapShortcut which will activate the surface for windowmanager
98                 hs->set_event_handler(LibHomeScreen::Event_TapShortcut, [qwm, myname](json_object *object){
99                         json_object *appnameJ = nullptr;
100                         if(json_object_object_get_ex(object, "application_name", &appnameJ))
101                         {
102                                 const char *appname = json_object_get_string(appnameJ);
103                                 if(myname == appname)
104                                 {
105                                         qDebug("Surface %s got tapShortcut\n", appname);
106                                         qwm->activateSurface(myname);
107                                 }
108                         }
109                 });
110 #endif
111                 engine.load(QUrl(QStringLiteral("qrc:/Mixer.qml")));
112
113                 // Find the instantiated model QObject and connect the signals/slots
114                 QList<QObject*> mobjs = engine.rootObjects();
115                 if (mobjs.empty())
116                 {
117                     qDebug() << "[ERROR] Failed to load QML!";
118                     return -1;
119                 }
120
121                 QQuickWindow *window = qobject_cast<QQuickWindow *>(mobjs.first());
122 #ifdef NATIVE_BUILD
123                 window->setFlags(window->flags() & ~Qt::FramelessWindowHint); // Remove the borderless flag
124                 window->setHeight(QGuiApplication::primaryScreen()->geometry().height());
125 #else
126                 QObject::connect(window, SIGNAL(frameSwapped()), qwm, SLOT(slotActivateSurface()));
127 #endif
128         }
129         else
130         {
131             qDebug() << "[ERROR] No port and token specified!";
132             return -1;
133         }
134
135         return app.exec();
136 }