727bd27d8f0fd8d64852954e1d6541ef65d2abcb
[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         ON_OTHER_OUTPUTS = 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                 const char *output_name = nullptr;
76                 if (strcmp(argv[1], "float") == 0)
77                         mmode = FLOAT;
78                 else if (strcmp(argv[1], "full") == 0)
79                         mmode = FULLSCREEN;
80                 else if (strcmp(argv[1], "on_output") == 0)
81                         mmode = ON_OTHER_OUTPUTS;
82                 else if (strcmp(argv[1], "full_qt") == 0)
83                         mmode = FULLSCREEN_QT;
84                 else
85                         assert(!"Invalid mode");
86
87                 if (mmode != FLOAT && mmode != FULLSCREEN && mmode != ON_OTHER_OUTPUTS) {
88                         fprintf(stderr, "Will not use rpc\n");
89                         goto skip;
90                 }
91
92                 if (mmode == ON_OTHER_OUTPUTS)
93                        output_name = argv[2];
94
95                 // start grpc connection
96                 GrpcClient *client = new GrpcClient();
97
98                 // note that these are setting up the window state by using
99                 // another communication channel (rpc), and need to happen
100                 // before the client does the initial commit (without a buffer
101                 // attached)
102                 switch (mmode) {
103                 case FLOAT:
104                         fprintf(stderr, "Setting the application as float\n");
105                         client->SetAppFloat(myname.toStdString(), 40, 300);
106                         break;
107                 case FULLSCREEN:
108                         fprintf(stderr, "Setting the application as fullscreen\n");
109                         client->SetAppFullscreen(myname.toStdString());
110                         break;
111                 case ON_OTHER_OUTPUTS:
112                         fprintf(stderr, "Setting application '%s' on output '%s'\n", 
113                                         myname.toStdString().c_str(), output_name);
114                         if (!output_name) {
115                                 fprintf(stderr, "Output name is not set!\n");
116                                 exit(EXIT_FAILURE);
117                         }
118                         client->SetAppOnOutput(myname.toStdString(),
119                                                std::string(output_name));
120                         break;
121                 default:
122                         break;
123                 }
124         }
125
126 skip:
127         // this would allow call any of the QWindow methods
128         QWindow *win = create_window(&main_comp);
129
130         // alternatively do the load directly
131         //engine.load(QUrl(QStringLiteral("qrc:/Main.qml")));
132
133         return app.exec();
134 }