window-management-rpc: Client for testing out grpc proxy
[src/window-management-client-grpc.git] / src / main.cpp
1 /*
2  * Copyright 2023 Collabora, Ltd.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining
5  * a copy of this software and associated documentation files (the
6  * "Software"), to deal in the Software without restriction, including
7  * without limitation the rights to use, copy, modify, merge, publish,
8  * distribute, sublicense, and/or sell copies of the Software, and to
9  * permit persons to whom the Software is furnished to do so, subject to
10  * the following conditions:
11  *
12  * The above copyright notice and this permission notice (including the
13  * next paragraph) shall be included in all copies or substantial
14  * portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19  * NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
20  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
21  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23  * SOFTWARE.
24  */
25 #include <QGuiApplication>
26 #include <QCommandLineParser>
27 #include <QtCore/QUrlQuery>
28 #include <QtCore/QObject>
29 #include <QObject>
30 #include <QQmlEngine>
31 #include <QtGui/QGuiApplication>
32 #include <QtQml/QQmlApplicationEngine>
33 #include <QtQml/QQmlContext>
34 #include <QtQml/QQmlComponent>
35 #include <QtQml/qqml.h>
36 #include <QQuickWindow>
37 #include <QTimer>
38
39 #include "AglShellGrpcClient.h"
40
41 const QString myname = QString("window-management-client-rpc");
42
43 enum mode {
44         NONE = 0,
45         FLOAT = 1,
46         FULLSCREEN = 2,
47         FULLSCREEN_QT = 3,      //  rather than use rpc, use Qt API
48         REMOTE = 4,
49 };
50
51 static QWindow *
52 create_window(QQmlComponent *comp)
53 {
54         QObject *obj = comp->create();
55         obj->setParent(nullptr);
56
57         QWindow *win = qobject_cast<QWindow *>(obj);
58
59         return win;
60 }
61
62 int main(int argc, char *argv[])
63 {
64         enum mode mmode = NONE;
65
66         QGuiApplication app(argc, argv);
67         QQmlApplicationEngine engine;
68
69         // necessary to identify correctly by app_id
70         app.setDesktopFileName(myname);
71
72         QQmlComponent main_comp(&engine, QUrl("qrc:/Main.qml"));
73
74         if (argc >= 2) {
75                 if (strcmp(argv[1], "float") == 0)
76                         mmode = FLOAT;
77                 else if (strcmp(argv[1], "full") == 0)
78                         mmode = FULLSCREEN;
79                 else if (strcmp(argv[1], "remote") == 0)
80                         mmode = REMOTE;
81                 else if (strcmp(argv[1], "full_qt") == 0)
82                         mmode = FULLSCREEN_QT;
83                 else
84                         assert(!"Invalid mode");
85
86                 if (mmode != FLOAT && mmode != FULLSCREEN && mmode != REMOTE) {
87                         fprintf(stderr, "Will not use rpc\n");
88                         goto skip;
89                 }
90
91                 // start grpc connection
92                 GrpcClient *client = new GrpcClient();
93
94                 // note that these are setting up the window state by using
95                 // another communication channel (rpc), and need to happen
96                 // before the client does the initial commit (without a buffer
97                 // attached)
98                 switch (mmode) {
99                 case FLOAT:
100                         fprintf(stderr, "Setting the application as float\n");
101                         client->SetAppFloat(myname.toStdString(), 40, 300);
102                         break;
103                 case FULLSCREEN:
104                         fprintf(stderr, "Setting the application as fullscreen\n");
105                         client->SetAppFullscreen(myname.toStdString());
106                         break;
107                 case REMOTE:
108                         fprintf(stderr, "Setting the application as remote\n");
109                         break;
110                 default:
111                         break;
112                 }
113         }
114
115 skip:
116         // this would allow call any of the QWindow methods
117         QWindow *win = create_window(&main_comp);
118
119         // alternatively do the load directly
120         //engine.load(QUrl(QStringLiteral("qrc:/Main.qml")));
121
122         return app.exec();
123 }