89c2097f99dcdcd4ff854b9aabeebe0a45912fb5
[src/agl-compositor.git] / src / layout.c
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 #include "ivi-compositor.h"
27 #include "policy.h"
28 #include "shared/helpers.h"
29
30 #include <assert.h>
31 #include <string.h>
32
33 #include <libweston/config-parser.h>
34 #include <libweston/libweston.h>
35 #include <libweston-desktop/libweston-desktop.h>
36
37 #include "agl-shell-desktop-server-protocol.h"
38
39 #define AGL_COMP_DEBUG
40
41 static const char *ivi_roles_as_string[] = {
42         [IVI_SURFACE_ROLE_NONE]         = "NONE",
43         [IVI_SURFACE_ROLE_BACKGROUND]   = "BACKGROUND",
44         [IVI_SURFACE_ROLE_PANEL]        = "PANEL",
45         [IVI_SURFACE_ROLE_DESKTOP]      = "DESKTOP",
46         [IVI_SURFACE_ROLE_POPUP]        = "POPUP",
47         [IVI_SURFACE_ROLE_SPLIT_H]      = "SPLIT_H",
48         [IVI_SURFACE_ROLE_SPLIT_V]      = "SPLIT_V",
49         [IVI_SURFACE_ROLE_FULLSCREEN]   = "FULLSCREEN",
50         [IVI_SURFACE_ROLE_REMOTE]       = "REMOTE",
51 };
52
53 bool
54 ivi_surf_in_hidden_layer(struct ivi_compositor *ivi, struct ivi_surface *surface);
55
56 const char *
57 ivi_layout_get_surface_role_name(struct ivi_surface *surf)
58 {
59         if (surf->role < 0 || surf->role >= ARRAY_LENGTH(ivi_roles_as_string))
60                 return " unknown surface role";
61
62         return ivi_roles_as_string[surf->role];
63 }
64
65 static void
66 ivi_background_init(struct ivi_compositor *ivi, struct ivi_output *output)
67 {
68         struct weston_output *woutput = output->output;
69         struct ivi_surface *bg = output->background;
70         struct weston_view *view;
71
72         if (!bg) {
73                 weston_log("WARNING: Output does not have a background\n");
74                 return;
75         }
76
77         assert(bg->role == IVI_SURFACE_ROLE_BACKGROUND);
78
79         view = bg->view;
80
81         weston_view_set_output(view, woutput);
82         weston_view_set_position(view, woutput->x, woutput->y);
83
84         weston_log("(background) position view %p, x %d, y %d, on output %s\n", view,
85                         woutput->x, woutput->y, output->name);
86
87         view->is_mapped = true;
88         view->surface->is_mapped = true;
89
90         weston_layer_entry_insert(&ivi->background.view_list, &view->layer_link);
91 }
92
93 static void
94 ivi_panel_init(struct ivi_compositor *ivi, struct ivi_output *output,
95                struct ivi_surface *panel)
96 {
97         struct weston_output *woutput = output->output;
98         struct weston_desktop_surface *dsurface;
99         struct weston_view *view;
100         struct weston_geometry geom;
101         int x = woutput->x;
102         int y = woutput->y;
103
104         if (!panel)
105                 return;
106
107         assert(panel->role == IVI_SURFACE_ROLE_PANEL);
108         dsurface = panel->dsurface;
109         view = panel->view;
110         geom = weston_desktop_surface_get_geometry(dsurface);
111
112         weston_log("(panel) geom.width %d, geom.height %d, geom.x %d, geom.y %d\n",
113                         geom.width, geom.height, geom.x, geom.y);
114
115         switch (panel->panel.edge) {
116         case AGL_SHELL_EDGE_TOP:
117                 output->area.y += geom.height;
118                 output->area.height -= geom.height;
119                 break;
120         case AGL_SHELL_EDGE_BOTTOM:
121                 y += woutput->height - geom.height;
122                 output->area.height -= geom.height;
123                 break;
124         case AGL_SHELL_EDGE_LEFT:
125                 output->area.x += geom.width;
126                 output->area.width -= geom.width;
127                 break;
128         case AGL_SHELL_EDGE_RIGHT:
129                 x += woutput->width - geom.width;
130                 output->area.width -= geom.width;
131                 break;
132         }
133
134         x -= geom.x;
135         y -= geom.y;
136
137         weston_view_set_output(view, woutput);
138         weston_view_set_position(view, x, y);
139
140         weston_log("(panel) edge %d position view %p, x %d, y %d\n",
141                         panel->panel.edge, view, x, y);
142
143         view->is_mapped = true;
144         view->surface->is_mapped = true;
145
146         weston_log("panel type %d inited on output %s\n", panel->panel.edge,
147                         output->name);
148
149         weston_layer_entry_insert(&ivi->panel.view_list, &view->layer_link);
150 }
151
152 /*
153  * Initializes all static parts of the layout, i.e. the background and panels.
154  */
155 void
156 ivi_layout_init(struct ivi_compositor *ivi, struct ivi_output *output)
157 {
158         bool use_default_area = true;
159         struct weston_config_section *section = output->config;
160         char *t;
161
162         weston_config_section_get_string(section, "activation-area", &t, NULL);
163         if (t) {
164                 if (output->area_activation.width == 0 &&
165                     output->area_activation.height == 0 &&
166                     output->area_activation.x == 0 &&
167                     output->area_activation.y == 0) {
168                         weston_log("WARNING: activation-area set in "
169                                         "configuration file, but yet applied!\n");
170                         if (parse_activation_area(t, output) < 0)
171                                 weston_log("Invalid activation-area \"%s\" for output %s\n",
172                                            t, output->name);
173                 } else {
174                         weston_log("WARNING: activation-area detected in ini file, "
175                                         "but agl_shell override detected!\n");
176                         if (parse_activation_area(t, output) < 0)
177                                 weston_log("Invalid activation-area \"%s\" for output %s\n",
178                                            t, output->name);
179                 }
180         }
181         free(t);
182
183         ivi_background_init(ivi, output);
184
185         if (output->area_activation.width ||
186             output->area_activation.height ||
187             output->area_activation.x ||
188             output->area_activation.y) {
189                 /* Sanity check target area is within output bounds */
190                 if ((output->area_activation.x + output->area_activation.width) < output->output->width ||
191                     (output->area_activation.y + output->area_activation.height) < output->output->height) {
192                         weston_log("Using specified area for output %s, ignoring panels\n",
193                                    output->name);
194                         output->area.x = output->area_activation.x;
195                         output->area.y = output->area_activation.y;
196                         output->area.width = output->area_activation.width;
197                         output->area.height = output->area_activation.height;
198                         use_default_area = false;
199                 } else {
200                         weston_log("Invalid activation-area position for output %s, ignoring\n",
201                                    output->name);
202                 }
203         }
204         if (use_default_area) {
205                 output->area.x = 0;
206                 output->area.y = 0;
207                 output->area.width = output->output->width;
208                 output->area.height = output->output->height;
209
210                 ivi_panel_init(ivi, output, output->top);
211                 ivi_panel_init(ivi, output, output->bottom);
212                 ivi_panel_init(ivi, output, output->left);
213                 ivi_panel_init(ivi, output, output->right);
214         }
215
216         weston_compositor_schedule_repaint(ivi->compositor);
217
218         weston_log("Usable area: %dx%d+%d,%d\n",
219                    output->area.width, output->area.height,
220                    output->area.x, output->area.y);
221 }
222
223 struct ivi_surface *
224 ivi_find_app(struct ivi_compositor *ivi, const char *app_id)
225 {
226         struct ivi_surface *surf;
227         const char *id;
228
229         wl_list_for_each(surf, &ivi->surfaces, link) {
230                 id = weston_desktop_surface_get_app_id(surf->dsurface);
231                 if (id && strcmp(app_id, id) == 0)
232                         return surf;
233         }
234
235         return NULL;
236 }
237
238 static void
239 ivi_layout_activate_complete(struct ivi_output *output,
240                              struct ivi_surface *surf)
241 {
242         struct ivi_compositor *ivi = output->ivi;
243         struct weston_output *woutput = output->output;
244         struct weston_view *view = surf->view;
245         struct weston_seat *wseat = get_ivi_shell_weston_first_seat(ivi);
246         struct ivi_shell_seat *ivi_seat = get_ivi_shell_seat(wseat);
247         const char *app_id = weston_desktop_surface_get_app_id(surf->dsurface);
248         bool update_previous = true;
249
250         if (weston_view_is_mapped(view)) {
251                 weston_layer_entry_remove(&view->layer_link);
252         } else {
253                 weston_view_update_transform(view);
254         }
255
256         if (output_has_black_curtain(output)) {
257                 if (!output->background) {
258                         weston_log("Found that we have no background surface "
259                                     "for output %s. Using black curtain as background\n",
260                                     output->output->name);
261
262                         struct weston_view *ev =
263                                 output->fullscreen_view.fs->view;
264
265                         /* use the black curtain as background when we have
266                          * none added by the shell client. */
267                         weston_layer_entry_remove(&ev->layer_link);
268                         weston_layer_entry_insert(&ivi->normal.view_list,
269                                                   &ev->layer_link);
270                         weston_view_geometry_dirty(ev);
271                         weston_surface_damage(ev->surface);
272                 } else {
273                         remove_black_curtain(output);
274                 }
275         }
276
277
278         weston_view_set_output(view, woutput);
279         /* drop any previous masks set on this view */
280         weston_view_set_mask_infinite(view);
281
282         if (surf->role != IVI_SURFACE_ROLE_BACKGROUND)
283                 weston_view_set_position(view,
284                                          woutput->x + output->area.x,
285                                          woutput->y + output->area.y);
286
287         view->is_mapped = true;
288         surf->mapped = true;
289         view->surface->is_mapped = true;
290
291         /* handle a movement from one output to another */
292         if (surf->current_completed_output &&
293             surf->current_completed_output != output) {
294
295                 /* we're migrating the same surface but to another output */
296                 if (surf->current_completed_output->active == surf) {
297                         struct weston_view *ev =
298                                 surf->current_completed_output->active->view;
299
300                         weston_layer_entry_remove(&ev->layer_link);
301                         surf->current_completed_output->previous_active =
302                                 surf->current_completed_output->active;
303                         surf->current_completed_output->active = NULL;
304
305                         /* damage all possible outputs to avoid stale views */
306                         weston_compositor_damage_all(ivi->compositor);
307                 }
308         }
309
310         if (output->active) {
311                 /* keep the background surface mapped at all times */
312                 if (output->active->role != IVI_SURFACE_ROLE_BACKGROUND) {
313                         output->active->view->is_mapped = false;
314                         output->active->view->surface->is_mapped = false;
315
316                         weston_layer_entry_remove(&output->active->view->layer_link);
317                 }
318         }
319
320         if (output->previous_active && output->active) {
321                 const char *c_app_id =
322                         weston_desktop_surface_get_app_id(output->active->dsurface);
323
324                 /* if the currently activated app_id is the same as the one
325                  * we're trying to complete activation with means we're
326                  * operating on the same app_id so do update previous_active as
327                  * it will overwrite it with the same value */
328                 if (!strcmp(c_app_id, app_id)) {
329                         update_previous = false;
330                 }
331         }
332
333         if (update_previous)
334                 output->previous_active = output->active;
335         output->active = surf;
336         surf->current_completed_output = output;
337
338         weston_layer_entry_insert(&ivi->normal.view_list, &view->layer_link);
339         weston_view_geometry_dirty(view);
340         weston_surface_damage(view->surface);
341
342         if (ivi_seat)
343                 ivi_shell_activate_surface(surf, ivi_seat, WESTON_ACTIVATE_FLAG_NONE);
344
345         /*
346          * the 'remote' role now makes use of this part so make sure we don't
347          * trip the enum such that we might end up with a modified output for
348          * 'remote' role
349          */
350         if (surf->role == IVI_SURFACE_ROLE_DESKTOP) {
351                 if (surf->desktop.pending_output)
352                         surf->desktop.last_output = surf->desktop.pending_output;
353                 surf->desktop.pending_output = NULL;
354         }
355
356         weston_log("Activation completed for app_id %s, role %s, output %s\n",
357                         app_id,
358                         ivi_layout_get_surface_role_name(surf), output->name);
359
360         shell_send_app_state(ivi, app_id, AGL_SHELL_APP_STATE_ACTIVATED);
361 }
362
363 static bool
364 ivi_layout_find_output_with_app_id(const char *app_id, struct ivi_output *output)
365 {
366         char *cur;
367         size_t app_id_len;
368
369         cur = output->app_ids;
370         app_id_len = strlen(app_id);
371
372         while ((cur = strstr(cur, app_id))) {
373                 if ((cur[app_id_len] == ',' || cur[app_id_len] == '\0') &&
374                     (cur == output->app_ids || cur[-1] == ','))
375                         return true;
376                 cur++;
377         }
378
379         return false;
380 }
381
382 struct ivi_output *
383 ivi_layout_find_with_app_id(const char *app_id, struct ivi_compositor *ivi)
384 {
385         struct ivi_output *out;
386
387         if (!app_id)
388                 return NULL;
389
390         wl_list_for_each(out, &ivi->outputs, link) {
391                 if (!out->app_ids)
392                         continue;
393
394                 if (ivi_layout_find_output_with_app_id(app_id, out))
395                         return out;
396         }
397         return NULL;
398 }
399
400 struct ivi_output *
401 ivi_layout_find_bg_output(struct ivi_compositor *ivi)
402 {
403         struct ivi_output *out;
404
405         wl_list_for_each(out, &ivi->outputs, link) {
406                 if (out->background &&
407                     out->background->role == IVI_SURFACE_ROLE_BACKGROUND)
408                         return out;
409         }
410
411         return NULL;
412 }
413
414
415 static void
416 ivi_layout_add_to_hidden_layer(struct ivi_surface *surf,
417                                struct ivi_output *ivi_output)
418 {
419         struct weston_desktop_surface *dsurf = surf->dsurface;
420         struct weston_view *ev = surf->view;
421         struct ivi_compositor *ivi = surf->ivi;
422         const char *app_id = weston_desktop_surface_get_app_id(dsurf);
423
424         /*
425          * If the view isn't mapped, we put it onto the hidden layer so it will
426          * start receiving frame events, and will be able to act on our
427          * configure event.
428          */
429         if (!weston_view_is_mapped(ev)) {
430                 ev->is_mapped = true;
431                 ev->surface->is_mapped = true;
432
433                 weston_desktop_surface_set_maximized(dsurf, true);
434                 weston_desktop_surface_set_size(dsurf,
435                                                 ivi_output->area.width,
436                                                 ivi_output->area.height);
437
438                 weston_log("Setting app_id %s, role %s, set to maximized (%dx%d)\n",
439                            app_id, ivi_layout_get_surface_role_name(surf),
440                            ivi_output->area.width, ivi_output->area.height);
441
442                 surf->hidden_layer_output = ivi_output;
443                 weston_view_set_output(ev, ivi_output->output);
444                 weston_layer_entry_insert(&ivi->hidden.view_list, &ev->layer_link);
445                 weston_log("Placed app_id %s, type %s in hidden layer on output %s\n",
446                                 app_id, ivi_layout_get_surface_role_name(surf),
447                                 ivi_output->output->name);
448
449                 weston_compositor_schedule_repaint(ivi->compositor);
450                 return;
451         }
452
453         /* we might have another output to activate */
454         if (surf->hidden_layer_output &&
455             surf->hidden_layer_output != ivi_output) {
456                 weston_layer_entry_remove(&ev->layer_link);
457                 weston_view_geometry_dirty(ev);
458                 weston_surface_damage(ev->surface);
459
460                 if (ivi_output->area.width != surf->hidden_layer_output->area.width ||
461                     ivi_output->area.height != surf->hidden_layer_output->area.height) {
462                         weston_desktop_surface_set_maximized(dsurf, true);
463                         weston_desktop_surface_set_size(dsurf,
464                                                         ivi_output->area.width,
465                                                         ivi_output->area.height);
466                 }
467
468                 weston_log("Setting app_id %s, role %s, set to maximized (%dx%d)\n",
469                                 app_id, ivi_layout_get_surface_role_name(surf),
470                                 ivi_output->area.width, ivi_output->area.height);
471
472                 surf->hidden_layer_output = ivi_output;
473                 weston_view_set_output(ev, ivi_output->output);
474                 weston_layer_entry_insert(&ivi->hidden.view_list, &ev->layer_link);
475                 weston_log("Placed app_id %s, type %s in hidden layer on output %s\n",
476                                 app_id, ivi_layout_get_surface_role_name(surf),
477                                 ivi_output->output->name);
478         }
479
480         weston_compositor_schedule_repaint(ivi->compositor);
481 }
482
483 void
484 ivi_layout_remote_committed(struct ivi_surface *surf)
485 {
486         struct weston_desktop_surface *dsurf = surf->dsurface;
487         struct weston_geometry geom = weston_desktop_surface_get_geometry(dsurf);
488         struct ivi_policy *policy = surf->ivi->policy;
489         struct ivi_output *output;
490         const char *app_id = weston_desktop_surface_get_app_id(dsurf);
491
492         assert(surf->role == IVI_SURFACE_ROLE_REMOTE);
493
494         output = surf->remote.output;
495
496         if (policy && policy->api.surface_activate_by_default &&
497             !policy->api.surface_activate_by_default(surf, surf->ivi))
498                 return;
499
500         /* we can only activate it again by using the protocol, but
501          * additionally the output is not reset when
502          * ivi_layout_activate_complete() terminates so we use the
503          * current active surface to avoid hitting this again and again
504          * */
505         if (surf->mapped && output->active == surf)
506                 return;
507
508         if (!surf->ivi->activate_by_default &&
509             !ivi_surf_in_hidden_layer(surf->ivi, surf)) {
510                 weston_log("Refusing to activate surface role %d, "
511                             "app_id %s\n", surf->role, app_id);
512
513                 if (!weston_desktop_surface_get_maximized(dsurf) ||
514                     geom.width != output->area.width ||
515                     geom.height != output->area.height) {
516                         ivi_layout_add_to_hidden_layer(surf, output);
517                 }
518
519                 return;
520         }
521
522         if (!weston_desktop_surface_get_maximized(dsurf) ||
523             geom.width != output->area.width ||
524             geom.height != output->area.height)
525                 return;
526
527         ivi_layout_activate_complete(output, surf);
528 }
529
530 void
531 ivi_layout_desktop_committed(struct ivi_surface *surf)
532 {
533         struct weston_desktop_surface *dsurf = surf->dsurface;
534         struct weston_geometry geom = weston_desktop_surface_get_geometry(dsurf);
535         struct ivi_policy *policy = surf->ivi->policy;
536         struct ivi_output *output;
537         const char *app_id = weston_desktop_surface_get_app_id(dsurf);
538
539         assert(surf->role == IVI_SURFACE_ROLE_DESKTOP);
540
541         /*
542          * we can't make use here of the ivi_layout_get_output_from_surface()
543          * due to the fact that we'll always land here when a surface performs
544          * a commit and pending_output will not bet set. This works in tandem
545          * with 'mapped' at this point to avoid tripping over
546          * to a surface that continuously updates its content
547          */
548         output = surf->desktop.pending_output;
549
550         if (!output) {
551                 struct ivi_output *r_output;
552
553                 if (policy && policy->api.surface_activate_by_default &&
554                     !policy->api.surface_activate_by_default(surf, surf->ivi))
555                         return;
556
557                 /* we can only activate it again by using the protocol */
558                 if (surf->mapped)
559                         return;
560
561                 /* check first if there aren't any outputs being set */
562                 r_output = ivi_layout_find_with_app_id(app_id, surf->ivi);
563
564                 if (r_output) {
565                         struct weston_view *view = r_output->fullscreen_view.fs->view;
566                         if (view->is_mapped || view->surface->is_mapped)
567                                 remove_black_curtain(r_output);
568                 }
569
570
571                 /* try finding an output with a background and use that */
572                 if (!r_output)
573                         r_output = ivi_layout_find_bg_output(surf->ivi);
574
575                 /* if we couldn't still find an output by this point, there's
576                  * something wrong so we abort with a protocol error */
577                 if (!r_output) {
578                         wl_resource_post_error(surf->ivi->shell_client.resource,
579                                                AGL_SHELL_ERROR_INVALID_ARGUMENT,
580                                                "No valid output found to activate surface by default");
581                         return;
582                 }
583
584                 if (!surf->ivi->activate_by_default && !surf->xwayland.is_set) {
585                         weston_log("Refusing to activate surface role %d, app_id %s\n",
586                                         surf->role, app_id);
587
588                         if (!weston_desktop_surface_get_maximized(dsurf) ||
589                             geom.width != r_output->area.width ||
590                             geom.height != r_output->area.height)
591                                 ivi_layout_add_to_hidden_layer(surf, r_output);
592
593                         return;
594                 }
595
596                 /* use the output of the bg to activate the app on start-up by
597                  * default */
598                 if (surf->view && r_output) {
599                         if (app_id && r_output) {
600                                 weston_log("Surface with app_id %s, role %s activating by default\n",
601                                         weston_desktop_surface_get_app_id(surf->dsurface),
602                                         ivi_layout_get_surface_role_name(surf));
603                                 ivi_layout_activate(r_output, app_id);
604                         } else if (!app_id) {
605                                 /*
606                                  * applications not setting an app_id, or
607                                  * setting an app_id but at a later point in
608                                  * time, might fall-back here so give them a
609                                  * chance to receive the configure event and
610                                  * act upon it
611                                  */
612                                 weston_log("Surface no app_id, role %s activating by default\n",
613                                         ivi_layout_get_surface_role_name(surf));
614                                 if (surf->xwayland.is_set) {
615                                         ivi_layout_activate_by_surf(r_output, surf);
616                                         ivi_layout_activate_complete(r_output, surf);
617                                 } else {
618                                         ivi_layout_activate_by_surf(r_output, surf);
619                                 }
620                         }
621                 }
622
623                 return;
624         }
625
626         if (!weston_desktop_surface_get_maximized(dsurf) ||
627             geom.width != output->area.width ||
628             geom.height != output->area.height)
629                 return;
630
631         ivi_layout_activate_complete(output, surf);
632 }
633
634 void
635 ivi_layout_fullscreen_committed(struct ivi_surface *surface)
636 {
637         struct ivi_compositor *ivi = surface->ivi;
638         struct ivi_policy *policy = ivi->policy;
639
640         struct weston_desktop_surface *dsurface = surface->dsurface;
641         struct weston_surface *wsurface =
642                 weston_desktop_surface_get_surface(dsurface);
643         const char *app_id = weston_desktop_surface_get_app_id(dsurface);
644
645         struct ivi_output *output = surface->split.output;
646         struct weston_output *woutput = output->output;
647         struct ivi_output *bg_output = ivi_layout_find_bg_output(ivi);
648
649         struct weston_view *view = surface->view;
650         struct weston_geometry geom =
651                 weston_desktop_surface_get_geometry(dsurface);
652
653         struct weston_seat *wseat = get_ivi_shell_weston_first_seat(ivi);
654         struct ivi_shell_seat *ivi_seat = get_ivi_shell_seat(wseat);
655
656         bool is_fullscreen = weston_desktop_surface_get_fullscreen(dsurface);
657         bool is_dim_same =
658                 geom.width == bg_output->output->width &&
659                 geom.height == bg_output->output->height;
660
661         if (policy && policy->api.surface_activate_by_default &&
662             !policy->api.surface_activate_by_default(surface, surface->ivi) &&
663             !surface->mapped)
664                 return;
665
666         assert(surface->role == IVI_SURFACE_ROLE_FULLSCREEN);
667
668
669         if (surface->state == FULLSCREEN && weston_view_is_mapped(view))
670                 return;
671
672         /* if we still get here but we haven't resized so far, send configure
673          * events to do so */
674         if (surface->state != RESIZING && (!is_fullscreen || !is_dim_same)) {
675                 struct ivi_output *bg_output =
676                         ivi_layout_find_bg_output(surface->ivi);
677
678                 weston_log("Placing fullscreen app_id %s, type %s in hidden layer\n",
679                                 app_id, ivi_layout_get_surface_role_name(surface));
680                 weston_desktop_surface_set_fullscreen(dsurface, true);
681                 weston_desktop_surface_set_size(dsurface,
682                                                 bg_output->output->width,
683                                                 bg_output->output->height);
684
685                 surface->state = RESIZING;
686                 weston_view_set_output(view, output->output);
687                 weston_layer_entry_insert(&ivi->hidden.view_list, &view->layer_link);
688                 return;
689         }
690
691         /* eventually, we would set the surface fullscreen, but the client
692          * hasn't resized correctly by this point, so terminate connection */
693         if (surface->state == RESIZING && is_fullscreen && !is_dim_same) {
694                 struct weston_desktop_client *desktop_client =
695                         weston_desktop_surface_get_client(dsurface);
696                 struct wl_client *client =
697                         weston_desktop_client_get_client(desktop_client);
698                 wl_client_post_implementation_error(client,
699                                 "can not display surface due to invalid geometry."
700                                 " Client should perform a geometry resize!");
701                 return;
702         }
703
704         /* this implies we resized correctly */
705         if (!weston_view_is_mapped(view) || surface->state != FULLSCREEN) {
706                 weston_layer_entry_remove(&view->layer_link);
707
708                 weston_view_set_output(view, woutput);
709                 weston_view_set_position(view, woutput->x, woutput->y);
710                 weston_layer_entry_insert(&ivi->fullscreen.view_list, &view->layer_link);
711
712                 wsurface->is_mapped = true;
713                 surface->view->is_mapped = true;
714                 surface->state = FULLSCREEN;
715
716                 weston_view_geometry_dirty(view);
717                 weston_surface_damage(view->surface);
718
719                 if (ivi_seat)
720                         ivi_shell_activate_surface(surface, ivi_seat, WESTON_ACTIVATE_FLAG_NONE);
721
722                 shell_advertise_app_state(ivi, app_id,
723                                 NULL, AGL_SHELL_DESKTOP_APP_STATE_ACTIVATED);
724
725                 weston_log("Activation completed for app_id %s, role %s, "
726                            "output %s\n", app_id,
727                            ivi_layout_get_surface_role_name(surface),
728                            output->name);
729
730         }
731 }
732
733 void
734 ivi_layout_desktop_resize(struct ivi_surface *surface,
735                           struct weston_geometry area)
736 {
737         struct weston_desktop_surface *dsurf = surface->dsurface;
738         struct weston_view *view = surface->view;
739
740         int x = area.x;
741         int y = area.y;
742         int width = area.width;
743         int height = area.height;
744
745         weston_desktop_surface_set_size(dsurf,
746                                         width, height);
747
748         weston_view_set_position(view, x, y);
749
750         weston_view_geometry_dirty(view);
751         weston_surface_damage(view->surface);
752 }
753
754 void
755 ivi_layout_split_committed(struct ivi_surface *surface)
756 {
757         struct ivi_compositor *ivi = surface->ivi;
758         struct ivi_policy *policy = ivi->policy;
759
760         struct weston_desktop_surface *dsurface = surface->dsurface;
761         struct weston_surface *wsurface =
762                 weston_desktop_surface_get_surface(dsurface);
763         const char *app_id = weston_desktop_surface_get_app_id(dsurface);
764
765         struct ivi_output *output = surface->split.output;
766         struct weston_output *woutput = output->output;
767
768         struct weston_seat *wseat = get_ivi_shell_weston_first_seat(ivi);
769         struct ivi_shell_seat *ivi_seat = get_ivi_shell_seat(wseat);
770
771         struct weston_view *view = surface->view;
772         struct weston_geometry geom;
773
774         int x, y;
775         int width, height;
776
777         x = woutput->x;
778         y = woutput->y;
779
780         if (policy && policy->api.surface_activate_by_default &&
781             !policy->api.surface_activate_by_default(surface, surface->ivi) &&
782             !surface->mapped)
783                 return;
784
785         if (surface->view->is_mapped)
786                 return;
787
788         geom = weston_desktop_surface_get_geometry(dsurface);
789
790         assert(surface->role == IVI_SURFACE_ROLE_SPLIT_H ||
791                surface->role == IVI_SURFACE_ROLE_SPLIT_V);
792
793         /* save the previous area in order to recover it back when if this kind
794          * of surface is being destroyed/removed */
795         output->area_saved = output->area;
796
797         switch (surface->role) {
798         case IVI_SURFACE_ROLE_SPLIT_V:
799                 geom.width = (output->area.width / 2);
800
801                 x += woutput->width - geom.width;
802                 output->area.width -= geom.width;
803
804                 width = woutput->width - x;
805                 height = output->area.height;
806                 y = output->area.y;
807
808                 break;
809         case IVI_SURFACE_ROLE_SPLIT_H:
810                 geom.height = (output->area.height / 2);
811
812                 y = output->area.y;
813                 output->area.y += geom.height;
814                 output->area.height -= geom.height;
815
816                 width = output->area.width;
817                 height = output->area.height;
818
819                 x = output->area.x;
820
821                 break;
822         default:
823                 assert(!"Invalid split orientation\n");
824         }
825
826         weston_desktop_surface_set_size(dsurface,
827                                         width, height);
828
829         /* resize the active surface first, output->area already contains
830          * correct area to resize to */
831         if (output->active)
832                 ivi_layout_desktop_resize(output->active, output->area);
833
834         weston_view_set_output(view, woutput);
835         weston_view_set_position(view, x, y);
836         weston_layer_entry_insert(&ivi->normal.view_list, &view->layer_link);
837
838         weston_view_geometry_dirty(view);
839         weston_surface_damage(view->surface);
840
841         if (ivi_seat)
842                 ivi_shell_activate_surface(surface, ivi_seat, WESTON_ACTIVATE_FLAG_NONE);
843
844         wsurface->is_mapped = true;
845         surface->view->is_mapped = true;
846
847         shell_advertise_app_state(ivi, app_id,
848                                   NULL, AGL_SHELL_DESKTOP_APP_STATE_ACTIVATED);
849
850         weston_log("Activation completed for app_id %s, role %s, output %s\n",
851                         app_id, ivi_layout_get_surface_role_name(surface), output->name);
852 }
853
854 static void
855 ivi_compute_popup_position(const struct weston_output *output, struct weston_view *view,
856                            int initial_x, int initial_y, int *new_x, int *new_y)
857 {
858         *new_x = output->x + initial_x;
859         *new_y = output->y + initial_y;
860 }
861
862
863 bool
864 ivi_surf_in_hidden_layer(struct ivi_compositor *ivi, struct ivi_surface *surface)
865 {
866         struct weston_view *ev;
867
868         wl_list_for_each(ev, &ivi->hidden.view_list.link, layer_link.link) {
869                 if (ev == surface->view)
870                         return true;
871         }
872
873         wl_list_for_each(ev, &ivi->fullscreen.view_list.link, layer_link.link) {
874                 if (ev == surface->view)
875                         return true;
876         }
877
878         return false;
879 }
880
881 void
882 ivi_layout_popup_committed(struct ivi_surface *surface)
883 {
884         struct ivi_compositor *ivi = surface->ivi;
885         struct ivi_policy *policy = ivi->policy;
886
887         struct weston_desktop_surface *dsurface = surface->dsurface;
888         struct weston_surface *wsurface =
889                 weston_desktop_surface_get_surface(dsurface);
890         const char *app_id = weston_desktop_surface_get_app_id(dsurface);
891
892         int new_x, new_y;
893
894         struct ivi_output *output = surface->popup.output;
895         struct weston_output *woutput = output->output;
896
897         struct weston_seat *wseat = get_ivi_shell_weston_first_seat(ivi);
898         struct ivi_shell_seat *ivi_seat = get_ivi_shell_seat(wseat);
899
900         struct weston_view *view = surface->view;
901
902         if (policy && policy->api.surface_activate_by_default &&
903             !policy->api.surface_activate_by_default(surface, surface->ivi) &&
904             !surface->mapped)
905                 return;
906
907         if (surface->view->is_mapped || surface->state == HIDDEN)
908                 return;
909
910         assert(surface->role == IVI_SURFACE_ROLE_POPUP);
911
912         /* remove it from hidden layer if present */
913         if (ivi_surf_in_hidden_layer(ivi, surface))
914                 weston_layer_entry_remove(&view->layer_link);
915
916         weston_view_set_output(view, woutput);
917
918         ivi_compute_popup_position(woutput, view,
919                                    surface->popup.x, surface->popup.y, &new_x, &new_y);
920         weston_view_set_position(view, new_x, new_y);
921         weston_view_update_transform(view);
922
923         /* only clip the pop-up dialog window if we have a valid
924          * width and height being passed on. Users might not want to have one
925          * set-up so only enfore it is really passed on. */
926         if (surface->popup.bb.width > 0 && surface->popup.bb.height > 0)
927                 weston_view_set_mask(view, surface->popup.bb.x, surface->popup.bb.y,
928                                      surface->popup.bb.width, surface->popup.bb.height);
929
930         weston_layer_entry_insert(&ivi->popup.view_list, &view->layer_link);
931
932         weston_view_geometry_dirty(view);
933         weston_surface_damage(view->surface);
934
935         if (ivi_seat)
936                 ivi_shell_activate_surface(surface, ivi_seat, WESTON_ACTIVATE_FLAG_NONE);
937
938         wsurface->is_mapped = true;
939         surface->view->is_mapped = true;
940
941         shell_advertise_app_state(ivi, app_id,
942                                   NULL, AGL_SHELL_DESKTOP_APP_STATE_ACTIVATED);
943
944         weston_log("Activation completed for app_id %s, role %s, output %s\n",
945                         app_id, ivi_layout_get_surface_role_name(surface), output->name);
946 }
947
948 static void
949 ivi_layout_popup_re_add(struct ivi_surface *surface)
950 {
951         assert(surface->role == IVI_SURFACE_ROLE_POPUP);
952         struct weston_view *view = surface->view;
953
954         if (weston_view_is_mapped(view)) {
955                 struct weston_desktop_surface *dsurface = surface->dsurface;
956                 struct weston_surface *wsurface =
957                         weston_desktop_surface_get_surface(dsurface);
958
959                 weston_layer_entry_remove(&view->layer_link);
960
961                 wsurface->is_mapped = false;
962                 view->is_mapped = false;
963         }
964
965         /* reset the activate by default in order to (still) allow the surface
966          * to be activaved using the request */
967         if (!surface->mapped)
968                 surface->mapped = true;
969
970         surface->state = NORMAL;
971         ivi_layout_popup_committed(surface);
972 }
973
974 static bool
975 ivi_layout_surface_is_split_or_fullscreen(struct ivi_surface *surf)
976 {
977         struct ivi_compositor *ivi = surf->ivi;
978         struct ivi_surface *is;
979
980         if (surf->role != IVI_SURFACE_ROLE_SPLIT_H &&
981             surf->role != IVI_SURFACE_ROLE_SPLIT_V &&
982             surf->role != IVI_SURFACE_ROLE_FULLSCREEN)
983                 return false;
984
985         /* reset the activate by default in order to (still) allow the surface
986          * to be activaved using the request */
987         if (!surf->mapped)
988                 surf->mapped = true;
989
990         wl_list_for_each(is, &ivi->surfaces, link)
991                 if (is == surf)
992                         return true;
993
994         return false;
995 }
996
997 void
998 ivi_layout_activate_by_surf(struct ivi_output *output, struct ivi_surface *surf)
999 {
1000         struct ivi_compositor *ivi = output->ivi;
1001         struct weston_desktop_surface *dsurf;
1002         struct weston_geometry geom;
1003         struct ivi_policy *policy = output->ivi->policy;
1004
1005         dsurf = surf->dsurface;
1006
1007         const char *app_id = weston_desktop_surface_get_app_id(dsurf);
1008
1009         if (!surf)
1010                 return;
1011
1012         if (policy && policy->api.surface_activate &&
1013             !policy->api.surface_activate(surf, surf->ivi)) {
1014                 return;
1015         }
1016
1017 #ifdef AGL_COMP_DEBUG
1018         weston_log("Activating app_id %s, type %s, on output %s\n", app_id,
1019                         ivi_layout_get_surface_role_name(surf), output->output->name);
1020 #endif
1021
1022         if (surf->role == IVI_SURFACE_ROLE_POPUP) {
1023                 ivi_layout_popup_re_add(surf);
1024                 return;
1025         }
1026
1027         /* do not 're'-activate surfaces that are split or active */
1028         if (surf == output->active ||
1029             ivi_layout_surface_is_split_or_fullscreen(surf)) {
1030                 weston_log("Application %s is already active on output %s\n",
1031                                 app_id, output->output->name);
1032                 return;
1033         }
1034
1035         if (surf->role == IVI_SURFACE_ROLE_REMOTE) {
1036                 struct ivi_output *remote_output =
1037                         ivi_layout_find_with_app_id(app_id, ivi);
1038
1039                 weston_log("Changed activation for app_id %s, type %s, on output %s\n", app_id,
1040                                 ivi_layout_get_surface_role_name(surf), output->output->name);
1041
1042                 /* if already active on a remote output do not
1043                  * attempt to activate it again */
1044                 if (remote_output && remote_output->active == surf)
1045                         return;
1046         }
1047
1048
1049         geom = weston_desktop_surface_get_geometry(dsurf);
1050
1051         if (surf->role == IVI_SURFACE_ROLE_DESKTOP)
1052                 surf->desktop.pending_output = output;
1053         if (weston_desktop_surface_get_maximized(dsurf) &&
1054             geom.width == output->area.width &&
1055             geom.height == output->area.height) {
1056                 ivi_layout_activate_complete(output, surf);
1057                 return;
1058         }
1059
1060         /* the background surface is already "maximized" so we don't need to
1061          * add to the hidden layer */
1062         if (surf->role == IVI_SURFACE_ROLE_BACKGROUND) {
1063                 ivi_layout_activate_complete(output, surf);
1064                 return;
1065         }
1066
1067         ivi_layout_add_to_hidden_layer(surf, output);
1068 }
1069
1070 void
1071 ivi_layout_activate(struct ivi_output *output, const char *app_id)
1072 {
1073         struct ivi_surface *surf;
1074         struct ivi_compositor *ivi = output->ivi;
1075
1076         if (!app_id)
1077                 return;
1078
1079         surf = ivi_find_app(ivi, app_id);
1080         if (!surf)
1081                 return;
1082
1083         ivi_layout_activate_by_surf(output, surf);
1084 }
1085
1086 struct ivi_output *
1087 ivi_layout_get_output_from_surface(struct ivi_surface *surf)
1088 {
1089         struct ivi_output *ivi_output = NULL;
1090
1091         switch (surf->role) {
1092         case IVI_SURFACE_ROLE_DESKTOP:
1093                 if (surf->desktop.pending_output)
1094                         ivi_output = surf->desktop.pending_output;
1095                 else
1096                         ivi_output = surf->desktop.last_output;
1097                 break;
1098         case IVI_SURFACE_ROLE_POPUP:
1099                 ivi_output = surf->popup.output;
1100                 break;
1101         case IVI_SURFACE_ROLE_BACKGROUND:
1102                 ivi_output = surf->bg.output;
1103                 break;
1104         case IVI_SURFACE_ROLE_PANEL:
1105                 ivi_output = surf->panel.output;
1106                 break;
1107         case IVI_SURFACE_ROLE_FULLSCREEN:
1108                 ivi_output = surf->fullscreen.output;
1109                 break;
1110         case IVI_SURFACE_ROLE_SPLIT_H:
1111         case IVI_SURFACE_ROLE_SPLIT_V:
1112                 ivi_output = surf->split.output;
1113                 break;
1114         case IVI_SURFACE_ROLE_REMOTE:
1115                 ivi_output = surf->remote.output;
1116                 break;
1117         case IVI_SURFACE_ROLE_NONE:
1118         default:
1119                 break;
1120         }
1121
1122         return ivi_output;
1123 }
1124
1125 void
1126 ivi_layout_deactivate(struct ivi_compositor *ivi, const char *app_id)
1127 {
1128         struct ivi_surface *surf;
1129         struct ivi_output *ivi_output;
1130         struct ivi_policy *policy = ivi->policy;
1131
1132         if (!app_id)
1133                 return;
1134
1135         surf = ivi_find_app(ivi, app_id);
1136         if (!surf)
1137                 return;
1138
1139         if (policy && policy->api.surface_deactivate &&
1140             !policy->api.surface_deactivate(surf, surf->ivi)) {
1141                 return;
1142         }
1143
1144         ivi_output = ivi_layout_get_output_from_surface(surf);
1145         weston_log("Deactiving %s, role %s\n", app_id,
1146                         ivi_layout_get_surface_role_name(surf));
1147
1148         if (surf->role == IVI_SURFACE_ROLE_DESKTOP ||
1149             surf->role == IVI_SURFACE_ROLE_REMOTE) {
1150                 struct ivi_surface *previous_active;
1151
1152                 previous_active = ivi_output->previous_active;
1153                 if (!previous_active) {
1154                         /* we don't have a previous active it means we should
1155                          * display the bg */
1156                         if (ivi_output->active) {
1157                                 struct weston_view *view;
1158
1159                                 view = ivi_output->active->view;
1160                                 view->is_mapped = false;
1161                                 view->surface->is_mapped = false;
1162
1163                                 weston_layer_entry_remove(&view->layer_link);
1164                                 weston_view_geometry_dirty(view);
1165                                 weston_surface_damage(view->surface);
1166                                 ivi_output->active = NULL;
1167                         }
1168                 } else {
1169                         struct weston_desktop_surface *dsurface;
1170                         const char *previous_active_app_id;
1171
1172                         dsurface = previous_active->dsurface;
1173                         previous_active_app_id =
1174                                 weston_desktop_surface_get_app_id(dsurface);
1175                         ivi_layout_activate(ivi_output, previous_active_app_id);
1176                 }
1177         } else if (surf->role == IVI_SURFACE_ROLE_POPUP) {
1178                 struct weston_view *view  = surf->view;
1179
1180                 weston_view_unmap(view);
1181                 surf->state = HIDDEN;
1182
1183                 weston_layer_entry_remove(&view->layer_link);
1184                 weston_view_geometry_dirty(view);
1185                 weston_surface_damage(view->surface);
1186         }
1187
1188       shell_send_app_state(ivi, app_id, AGL_SHELL_APP_STATE_DEACTIVATED);
1189 }