policy: Init policy framework API
[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 "agl-shell-server-protocol.h"
38
39 struct desktop_client {
40         struct wl_resource *resource;
41         struct wl_list link;    /* ivi_compositor::desktop_clients */
42 };
43
44 struct ivi_compositor {
45         struct weston_compositor *compositor;
46         struct weston_config *config;
47
48         struct wl_listener heads_changed;
49
50         bool init_failed;
51
52         /*
53          * Options parsed from command line arugments.
54          * Overrides what is found in the config file.
55          */
56         struct {
57                 /* drm */
58                 bool use_current_mode;
59                 /* wayland/x11 */
60                 int width;
61                 int height;
62                 int scale;
63         } cmdline;
64         const struct weston_windowed_output_api *window_api;
65         const struct weston_drm_output_api *drm_api;
66
67         struct wl_global *agl_shell;
68         struct wl_global *agl_shell_desktop;
69         struct {
70                 int activate_apps_by_default;   /* switches once xdg top level has been 'created' */
71         } quirks;
72
73         struct {
74                 struct wl_client *client;
75                 struct wl_resource *resource;
76                 bool ready;
77         } shell_client;
78
79         struct wl_list desktop_clients; /* desktop_client::link */
80
81         struct wl_list outputs; /* ivi_output.link */
82         struct wl_list surfaces; /* ivi_surface.link */
83
84         struct weston_desktop *desktop;
85         struct ivi_policy *policy;
86
87         struct wl_list pending_surfaces;
88
89         struct weston_layer hidden;
90         struct weston_layer background;
91         struct weston_layer normal;
92         struct weston_layer panel;
93         struct weston_layer fullscreen;
94 };
95
96 struct ivi_surface;
97
98 struct ivi_output {
99         struct wl_list link; /* ivi_compositor.outputs */
100         struct ivi_compositor *ivi;
101
102         char *name;
103         struct weston_config_section *config;
104         struct weston_output *output;
105
106         struct ivi_surface *background;
107         /* Panels */
108         struct ivi_surface *top;
109         struct ivi_surface *bottom;
110         struct ivi_surface *left;
111         struct ivi_surface *right;
112
113         /* for the black surface */
114         struct fullscreen_view {
115                 struct ivi_surface *fs;
116                 struct wl_listener fs_destroy;
117         } fullscreen_view;
118
119         struct wl_listener output_destroy;
120
121         /*
122          * Usable area for normal clients, i.e. with panels removed.
123          * In output-coorrdinate space.
124          */
125         struct weston_geometry area;
126
127         struct ivi_surface *active;
128
129         /* Temporary: only used during configuration */
130         size_t add_len;
131         struct weston_head *add[8];
132 };
133
134 enum ivi_surface_role {
135         IVI_SURFACE_ROLE_NONE,
136         IVI_SURFACE_ROLE_DESKTOP,
137         IVI_SURFACE_ROLE_BACKGROUND,
138         IVI_SURFACE_ROLE_PANEL,
139 };
140
141 struct ivi_desktop_surface {
142         struct ivi_output *pending_output;
143         struct ivi_output *last_output;
144 };
145
146 struct ivi_background_surface {
147         struct ivi_output *output;
148 };
149
150 struct ivi_panel_surface {
151         struct ivi_output *output;
152         enum agl_shell_edge edge;
153 };
154
155 enum ivi_surface_flags {
156         IVI_SURFACE_PROP_MAP = (1 << 0),
157         /* x, y, width, height */
158         IVI_SURFACE_PROP_POSITION = (1 << 1),
159 };
160
161 struct ivi_surface {
162         struct ivi_compositor *ivi;
163         struct weston_desktop_surface *dsurface;
164         struct weston_view *view;
165
166         struct wl_list link;
167
168         struct {
169                 enum ivi_surface_flags flags;
170                 int32_t x, y;
171                 int32_t width, height;
172         } pending;
173
174         enum ivi_surface_role role;
175         union {
176                 struct ivi_desktop_surface desktop;
177                 struct ivi_background_surface bg;
178                 struct ivi_panel_surface panel;
179         };
180 };
181
182 struct ivi_shell_client {
183         struct wl_list link;
184         char *command;
185         bool require_ready;
186
187         pid_t pid;
188         struct wl_client *client;
189
190         struct wl_listener client_destroy;
191 };
192
193 struct ivi_compositor *
194 to_ivi_compositor(struct weston_compositor *ec);
195
196 #ifdef HAVE_SYSTEMD
197 int
198 ivi_agl_systemd_notify(struct ivi_compositor *ivi);
199 #else
200 static int
201 ivi_agl_systemd_notify(struct ivi_compositor *ivi)
202 {
203 }
204 #endif
205
206 int
207 ivi_shell_init(struct ivi_compositor *ivi);
208
209 void
210 ivi_shell_init_black_fs(struct ivi_compositor *ivi);
211
212 int
213 ivi_shell_create_global(struct ivi_compositor *ivi);
214
215 int
216 ivi_launch_shell_client(struct ivi_compositor *ivi);
217
218 int
219 ivi_desktop_init(struct ivi_compositor *ivi);
220
221 struct ivi_shell_client *
222 ivi_shell_client_from_wl(struct wl_client *client);
223
224 struct ivi_output *
225 to_ivi_output(struct weston_output *o);
226
227 void
228 ivi_set_desktop_surface(struct ivi_surface *surface);
229
230 void
231 ivi_reflow_outputs(struct ivi_compositor *ivi);
232
233 struct ivi_surface *
234 to_ivi_surface(struct weston_surface *surface);
235
236 void
237 ivi_layout_set_mapped(struct ivi_surface *surface);
238
239 void
240 ivi_layout_set_position(struct ivi_surface *surface,
241                         int32_t x, int32_t y,
242                         int32_t width, int32_t height);
243
244 void
245 ivi_layout_commit(struct ivi_compositor *ivi);
246
247 void
248 ivi_layout_init(struct ivi_compositor *ivi, struct ivi_output *output);
249
250 void
251 ivi_layout_activate(struct ivi_output *output, const char *app_id);
252
253 void
254 ivi_layout_desktop_committed(struct ivi_surface *surf);
255
256 void
257 ivi_layout_panel_committed(struct ivi_surface *surface);
258
259 #endif