agl-shell: Add bound_ok and bound_fail events and a default destructor
[src/agl-compositor.git] / src / ivi-compositor.h
1 /*
2  * Copyright © 2019 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
26 #ifndef IVI_COMPOSITOR_H
27 #define IVI_COMPOSITOR_H
28
29 #include <stdbool.h>
30 #include "config.h"
31
32 #include <libweston/backend-drm.h>
33 #include <libweston/libweston.h>
34 #include <libweston/windowed-output-api.h>
35 #include <libweston-desktop/libweston-desktop.h>
36
37 #include "remote.h"
38
39 #include "agl-shell-server-protocol.h"
40
41 struct ivi_compositor;
42
43 struct desktop_client {
44         struct wl_resource *resource;
45         struct ivi_compositor *ivi;
46         struct wl_list link;    /* ivi_compositor::desktop_clients */
47 };
48
49 enum agl_shell_bound_status {
50         BOUND_OK,
51         BOUND_FAILED,
52 };
53
54 struct ivi_compositor {
55         struct weston_compositor *compositor;
56         struct weston_config *config;
57
58         struct wl_listener heads_changed;
59
60         bool init_failed;
61         bool hide_cursor;
62         bool activate_by_default;
63         bool keep_pending_surfaces;
64
65         /*
66          * Options parsed from command line arugments.
67          * Overrides what is found in the config file.
68          */
69         struct {
70                 /* drm */
71                 bool use_current_mode;
72                 /* wayland/x11 */
73                 int width;
74                 int height;
75                 int scale;
76         } cmdline;
77         const struct weston_windowed_output_api *window_api;
78         const struct weston_drm_output_api *drm_api;
79         const struct weston_remoting_api *remoting_api;
80         const struct weston_transmitter_api *waltham_transmitter_api;
81
82         struct wl_global *agl_shell;
83         struct wl_global *agl_shell_desktop;
84
85         struct {
86                 struct wl_client *client;
87                 struct wl_resource *resource;
88                 bool ready;
89                 enum agl_shell_bound_status status;
90         } shell_client;
91
92         struct wl_list desktop_clients; /* desktop_client::link */
93
94         struct wl_list outputs; /* ivi_output.link */
95         struct wl_list surfaces; /* ivi_surface.link */
96
97         struct weston_desktop *desktop;
98         struct wl_listener seat_created_listener;
99         struct ivi_policy *policy;
100
101         struct wl_list pending_surfaces;
102         struct wl_list popup_pending_apps;
103         struct wl_list fullscreen_pending_apps;
104         struct wl_list split_pending_apps;
105         struct wl_list remote_pending_apps;
106
107         struct wl_listener destroy_listener;
108
109         struct weston_layer hidden;
110         struct weston_layer background;
111         struct weston_layer normal;
112         struct weston_layer panel;
113         struct weston_layer popup;
114         struct weston_layer fullscreen;
115 };
116
117 struct ivi_surface;
118
119 enum ivi_output_type {
120         OUTPUT_LOCAL,
121         OUTPUT_REMOTE,
122         /* same as remote but we need to signal the transmitter plug-in
123          * for the surfaces to have to be forwarded to those remoted outputs */
124         OUTPUT_WALTHAM,
125 };
126
127 struct ivi_output {
128         struct wl_list link; /* ivi_compositor.outputs */
129         struct ivi_compositor *ivi;
130
131         char *name;
132         struct weston_config_section *config;
133         struct weston_output *output;
134
135         struct ivi_surface *background;
136         /* Panels */
137         struct ivi_surface *top;
138         struct ivi_surface *bottom;
139         struct ivi_surface *left;
140         struct ivi_surface *right;
141
142         /* for the black surface */
143         struct fullscreen_view {
144                 struct ivi_surface *fs;
145                 struct wl_listener fs_destroy;
146         } fullscreen_view;
147
148         struct wl_listener output_destroy;
149
150         /*
151          * Usable area for normal clients, i.e. with panels removed.
152          * In output-coorrdinate space.
153          */
154         struct weston_geometry area;
155         struct weston_geometry area_saved;
156
157         struct ivi_surface *active;
158         struct ivi_surface *previous_active;
159
160         /* Temporary: only used during configuration */
161         size_t add_len;
162         struct weston_head *add[8];
163
164         char *app_id;
165         enum ivi_output_type type;
166 };
167
168 enum ivi_surface_role {
169         IVI_SURFACE_ROLE_NONE,
170         IVI_SURFACE_ROLE_DESKTOP,
171         IVI_SURFACE_ROLE_BACKGROUND,
172         IVI_SURFACE_ROLE_PANEL,
173         IVI_SURFACE_ROLE_POPUP,
174         IVI_SURFACE_ROLE_FULLSCREEN,
175         IVI_SURFACE_ROLE_SPLIT_V,
176         IVI_SURFACE_ROLE_SPLIT_H,
177         IVI_SURFACE_ROLE_REMOTE,
178 };
179
180 struct ivi_bounding_box {
181         int x; int y;
182         int width; int height;
183 };
184
185 struct pending_popup {
186         struct ivi_output *ioutput;
187         char *app_id;
188         int x; int y;
189         struct ivi_bounding_box bb;
190
191         struct wl_list link;    /** ivi_compositor::popup_pending_surfaces */
192 };
193
194 struct pending_fullscreen {
195         struct ivi_output *ioutput;
196         char *app_id;
197         struct wl_list link;    /** ivi_compositor::fullscreen_pending_apps */
198 };
199
200 struct pending_split {
201         struct ivi_output *ioutput;
202         char *app_id;
203         uint32_t orientation;
204         struct wl_list link;    /** ivi_compositor::split_pending_apps */
205 };
206
207 struct pending_remote {
208         struct ivi_output *ioutput;
209         char *app_id;
210         struct wl_list link;    /** ivi_compositor::remote_pending_apps */
211 };
212
213 struct ivi_desktop_surface {
214         struct ivi_output *pending_output;
215         struct ivi_output *last_output;
216 };
217
218 struct ivi_background_surface {
219         struct ivi_output *output;
220 };
221
222 struct ivi_popup_surface {
223         struct ivi_output *output;
224         int x; int y; /* initial position */
225         struct ivi_bounding_box bb;     /* bounding box */
226 };
227
228 struct ivi_fullscreen_surface {
229         struct ivi_output *output;
230 };
231
232 struct ivi_split_surface {
233         struct ivi_output *output;
234         uint32_t orientation;
235 };
236
237 struct ivi_remote_surface {
238         struct ivi_output *output;
239 };
240
241 struct ivi_panel_surface {
242         struct ivi_output *output;
243         enum agl_shell_edge edge;
244 };
245
246 enum ivi_surface_flags {
247         IVI_SURFACE_PROP_MAP = (1 << 0),
248         /* x, y, width, height */
249         IVI_SURFACE_PROP_POSITION = (1 << 1),
250 };
251
252 /* the waltham surface is a pointer type as well and
253  * in order to avoid adding ifdef for waltham use a
254  * generic pointer, which will be only be valid when the
255  * surface is a remote out on a waltham type of output */
256 struct ivi_surface_waltham {
257         void *transmitter_surface;
258 };
259
260 struct ivi_surface {
261         struct ivi_compositor *ivi;
262         struct weston_desktop_surface *dsurface;
263         struct weston_view *view;
264
265         struct wl_list link;
266         int focus_count;
267
268         struct {
269                 enum ivi_surface_flags flags;
270                 int32_t x, y;
271                 int32_t width, height;
272         } pending;
273         bool mapped;
274         bool advertised_on_launch;
275         bool checked_pending;
276         enum {
277                 NORMAL,
278                 RESIZING,
279                 FULLSCREEN,
280                 HIDDEN,
281         } state;
282
283         enum ivi_surface_role role;
284         union {
285                 struct ivi_desktop_surface desktop;
286                 struct ivi_background_surface bg;
287                 struct ivi_panel_surface panel;
288                 struct ivi_popup_surface popup;
289                 struct ivi_fullscreen_surface fullscreen;
290                 struct ivi_split_surface split;
291                 struct ivi_remote_surface remote;
292         };
293
294         struct ivi_surface_waltham waltham_surface;
295         struct wl_listener listener_advertise_app;
296         struct wl_signal signal_advertise_app;
297 };
298
299 struct ivi_shell_seat {
300         struct weston_seat *seat;
301         struct weston_surface *focused_surface;
302
303         bool hide_cursor;
304         bool new_caps_sent;
305
306         struct wl_listener seat_destroy_listener;
307         struct wl_listener caps_changed_listener;
308         struct wl_listener keyboard_focus_listener;
309         struct wl_listener pointer_focus_listener;
310 };
311
312 struct ivi_shell_client {
313         struct wl_list link;
314         char *command;
315         bool require_ready;
316
317         pid_t pid;
318         struct wl_client *client;
319
320         struct wl_listener client_destroy;
321 };
322
323 struct ivi_compositor *
324 to_ivi_compositor(struct weston_compositor *ec);
325
326 #ifdef HAVE_SYSTEMD
327 int
328 ivi_agl_systemd_notify(struct ivi_compositor *ivi);
329 #else
330 static int
331 ivi_agl_systemd_notify(struct ivi_compositor *ivi)
332 {
333 }
334 #endif
335
336 int
337 ivi_shell_init(struct ivi_compositor *ivi);
338
339 void
340 ivi_shell_init_black_fs(struct ivi_compositor *ivi);
341
342 int
343 ivi_shell_create_global(struct ivi_compositor *ivi);
344
345 int
346 ivi_launch_shell_client(struct ivi_compositor *ivi);
347
348 int
349 ivi_desktop_init(struct ivi_compositor *ivi);
350
351 struct ivi_shell_client *
352 ivi_shell_client_from_wl(struct wl_client *client);
353
354 struct ivi_output *
355 to_ivi_output(struct weston_output *o);
356
357 void
358 ivi_set_desktop_surface(struct ivi_surface *surface);
359
360 /*
361  * removes the pending popup one
362  */
363 void
364 ivi_check_pending_desktop_surface(struct ivi_surface *surface);
365
366 void
367 ivi_reflow_outputs(struct ivi_compositor *ivi);
368
369 struct ivi_surface *
370 to_ivi_surface(struct weston_surface *surface);
371
372 void
373 ivi_layout_set_mapped(struct ivi_surface *surface);
374
375 void
376 ivi_layout_set_position(struct ivi_surface *surface,
377                         int32_t x, int32_t y,
378                         int32_t width, int32_t height);
379
380 struct ivi_surface *
381 ivi_find_app(struct ivi_compositor *ivi, const char *app_id);
382
383 void
384 ivi_layout_commit(struct ivi_compositor *ivi);
385
386 void
387 ivi_layout_init(struct ivi_compositor *ivi, struct ivi_output *output);
388
389 void
390 ivi_layout_activate(struct ivi_output *output, const char *app_id);
391
392 void
393 ivi_layout_activate_by_surf(struct ivi_output *output, struct ivi_surface *surf);
394
395 void
396 ivi_layout_desktop_committed(struct ivi_surface *surf);
397
398 void
399 ivi_layout_popup_committed(struct ivi_surface *surface);
400
401 void
402 ivi_layout_fullscreen_committed(struct ivi_surface *surface);
403
404 void
405 ivi_layout_split_committed(struct ivi_surface *surface);
406
407 void
408 ivi_layout_deactivate(struct ivi_compositor *ivi, const char *app_id);
409
410 void
411 ivi_layout_desktop_resize(struct ivi_surface *surface,
412                           struct weston_geometry area);
413
414 struct ivi_output *
415 ivi_layout_get_output_from_surface(struct ivi_surface *surf);
416
417 void
418 insert_black_surface(struct ivi_output *output);
419
420 void
421 remove_black_surface(struct ivi_output *output);
422
423 const char *
424 ivi_layout_get_surface_role_name(struct ivi_surface *surf);
425
426 void
427 ivi_set_pending_desktop_surface_remote(struct ivi_output *ioutput,
428                 const char *app_id);
429
430 struct ivi_output *
431 ivi_layout_find_with_app_id(const char *app_id, struct ivi_compositor *ivi);
432
433 void
434 shell_advertise_app_state(struct ivi_compositor *ivi, const char *app_id,
435                           const char *data, uint32_t app_state);
436 void
437 ivi_screenshooter_create(struct ivi_compositor *ivi);
438
439 void
440 ivi_seat_init(struct ivi_compositor *ivi);
441
442 void
443 ivi_seat_reset_caps_sent(struct ivi_compositor *ivi);
444
445 void
446 agl_shell_desktop_advertise_application_id(struct ivi_compositor *ivi,
447                                            struct ivi_surface *surface);
448 void
449 ivi_destroy_waltham_destroy(struct ivi_surface *surface);
450
451 void
452 ivi_check_pending_surface_desktop(struct ivi_surface *surface,
453                                   enum ivi_surface_role *role);
454
455 struct ivi_output *
456 ivi_layout_find_bg_output(struct ivi_compositor *ivi);
457 void
458 ivi_compositor_destroy_pending_surfaces(struct ivi_compositor *ivi);
459
460 void
461 ivi_shell_finalize(struct ivi_compositor *ivi);
462
463 struct ivi_surface *
464 get_ivi_shell_surface(struct weston_surface *surface);
465
466 struct ivi_shell_seat *
467 get_ivi_shell_seat(struct weston_seat *seat);
468
469 struct weston_seat *
470 get_ivi_shell_weston_first_seat(struct ivi_compositor *ivi);
471
472 void
473 ivi_shell_activate_surface(struct ivi_surface *ivi_surf,
474                           struct ivi_shell_seat *ivi_seat,
475                           uint32_t flags);
476
477 #endif