ed809fe6d03315d15e9fe14cd9e4ec34ff090f32
[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         SET_FLOAT_POS   = 5,
50 };
51
52 static QWindow *
53 create_window(QQmlComponent *comp)
54 {
55         QObject *obj = comp->create();
56         obj->setParent(nullptr);
57
58         QWindow *win = qobject_cast<QWindow *>(obj);
59
60         return win;
61 }
62
63 int main(int argc, char *argv[])
64 {
65         enum mode mmode = NONE;
66
67         QGuiApplication app(argc, argv);
68         QQmlApplicationEngine engine;
69
70         // necessary to identify correctly by app_id
71         app.setDesktopFileName(myname);
72
73         QQmlComponent main_comp(&engine, QUrl("qrc:/Main.qml"));
74
75         if (argc >= 2) {
76                 const char *output_name = nullptr;
77                 if (strcmp(argv[1], "float") == 0)
78                         mmode = FLOAT;
79                 else if (strcmp(argv[1], "full") == 0)
80                         mmode = FULLSCREEN;
81                 else if (strcmp(argv[1], "on_output") == 0)
82                         mmode = ON_OTHER_OUTPUTS;
83                 else if (strcmp(argv[1], "full_qt") == 0)
84                         mmode = FULLSCREEN_QT;
85                 else if (strcmp(argv[1], "position") == 0)
86                         mmode = SET_FLOAT_POS;
87                 else
88                         assert(!"Invalid mode");
89
90                 if (mmode != FLOAT && mmode != FULLSCREEN && mmode != ON_OTHER_OUTPUTS && mmode != SET_FLOAT_POS) {
91                         fprintf(stderr, "Will not use rpc\n");
92                         goto skip;
93                 }
94
95                 if (mmode == ON_OTHER_OUTPUTS)
96                        output_name = argv[2];
97
98                 // start grpc connection
99                 GrpcClient *client = new GrpcClient();
100
101                 // note that these are setting up the window state by using
102                 // another communication channel (rpc), and need to happen
103                 // before the client does the initial commit (without a buffer
104                 // attached)
105                 switch (mmode) {
106                 case FLOAT:
107                         fprintf(stderr, "Setting the application as float\n");
108                         client->SetAppFloat(myname.toStdString(), 40, 300);
109                         break;
110                 case FULLSCREEN:
111                         fprintf(stderr, "Setting the application as fullscreen\n");
112                         client->SetAppFullscreen(myname.toStdString());
113                         break;
114                 case ON_OTHER_OUTPUTS:
115                         fprintf(stderr, "Setting application '%s' on output '%s'\n", 
116                                         myname.toStdString().c_str(), output_name);
117                         if (!output_name) {
118                                 fprintf(stderr, "Output name is not set!\n");
119                                 exit(EXIT_FAILURE);
120                         }
121                         client->SetAppOnOutput(myname.toStdString(),
122                                                std::string(output_name));
123                         break;
124                 case SET_FLOAT_POS:
125                         // this assumes the window is already running and
126                         // floating; uses the same application so this needs
127                         // to be first started as float.
128                         client->SetAppPosition(myname.toStdString(), 550, 550);
129                         exit(EXIT_SUCCESS);
130                         break;
131                 default:
132                         break;
133                 }
134         }
135
136 skip:
137         // this would allow call any of the QWindow methods
138         QWindow *win = create_window(&main_comp);
139
140         // alternatively do the load directly
141         //engine.load(QUrl(QStringLiteral("qrc:/Main.qml")));
142
143         return app.exec();
144 }