4962618323a721a81e1e6f0dbf7122cceca5a094
[platform/upstream/weston.git] / libweston / compositor.c
1 /*
2  * Copyright © 2010-2011 Intel Corporation
3  * Copyright © 2008-2011 Kristian Høgsberg
4  * Copyright © 2012-2015 Collabora, Ltd.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining
7  * a copy of this software and associated documentation files (the
8  * "Software"), to deal in the Software without restriction, including
9  * without limitation the rights to use, copy, modify, merge, publish,
10  * distribute, sublicense, and/or sell copies of the Software, and to
11  * permit persons to whom the Software is furnished to do so, subject to
12  * the following conditions:
13  *
14  * The above copyright notice and this permission notice (including the
15  * next paragraph) shall be included in all copies or substantial
16  * portions of the Software.
17  *
18  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21  * NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
22  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
23  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
24  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25  * SOFTWARE.
26  */
27
28 #include "config.h"
29
30 #include <fcntl.h>
31 #include <stdio.h>
32 #include <string.h>
33 #include <stdlib.h>
34 #include <stdint.h>
35 #include <limits.h>
36 #include <stdarg.h>
37 #include <assert.h>
38 #include <sys/ioctl.h>
39 #include <sys/mman.h>
40 #include <sys/wait.h>
41 #include <sys/socket.h>
42 #include <sys/utsname.h>
43 #include <sys/stat.h>
44 #include <unistd.h>
45 #include <math.h>
46 #include <linux/input.h>
47 #include <dlfcn.h>
48 #include <signal.h>
49 #include <setjmp.h>
50 #include <sys/time.h>
51 #include <time.h>
52 #include <errno.h>
53
54 #include "timeline.h"
55
56 #include "compositor.h"
57 #include "viewporter-server-protocol.h"
58 #include "presentation-time-server-protocol.h"
59 #include "shared/helpers.h"
60 #include "shared/os-compatibility.h"
61 #include "shared/string-helpers.h"
62 #include "shared/timespec-util.h"
63 #include "git-version.h"
64 #include "version.h"
65 #include "plugin-registry.h"
66
67 #define DEFAULT_REPAINT_WINDOW 7 /* milliseconds */
68
69 static void
70 weston_output_transform_scale_init(struct weston_output *output,
71                                    uint32_t transform, uint32_t scale);
72
73 static void
74 weston_compositor_build_view_list(struct weston_compositor *compositor);
75
76 static void weston_mode_switch_finish(struct weston_output *output,
77                                       int mode_changed,
78                                       int scale_changed)
79 {
80         struct weston_seat *seat;
81         struct wl_resource *resource;
82         pixman_region32_t old_output_region;
83         int version;
84
85         pixman_region32_init(&old_output_region);
86         pixman_region32_copy(&old_output_region, &output->region);
87
88         /* Update output region and transformation matrix */
89         weston_output_transform_scale_init(output, output->transform, output->current_scale);
90
91         pixman_region32_init(&output->previous_damage);
92         pixman_region32_init_rect(&output->region, output->x, output->y,
93                                   output->width, output->height);
94
95         weston_output_update_matrix(output);
96
97         /* If a pointer falls outside the outputs new geometry, move it to its
98          * lower-right corner */
99         wl_list_for_each(seat, &output->compositor->seat_list, link) {
100                 struct weston_pointer *pointer = weston_seat_get_pointer(seat);
101                 int32_t x, y;
102
103                 if (!pointer)
104                         continue;
105
106                 x = wl_fixed_to_int(pointer->x);
107                 y = wl_fixed_to_int(pointer->y);
108
109                 if (!pixman_region32_contains_point(&old_output_region,
110                                                     x, y, NULL) ||
111                     pixman_region32_contains_point(&output->region,
112                                                    x, y, NULL))
113                         continue;
114
115                 if (x >= output->x + output->width)
116                         x = output->x + output->width - 1;
117                 if (y >= output->y + output->height)
118                         y = output->y + output->height - 1;
119
120                 pointer->x = wl_fixed_from_int(x);
121                 pointer->y = wl_fixed_from_int(y);
122         }
123
124         pixman_region32_fini(&old_output_region);
125
126         if (!mode_changed && !scale_changed)
127                 return;
128
129         /* notify clients of the changes */
130         wl_resource_for_each(resource, &output->resource_list) {
131                 if (mode_changed) {
132                         wl_output_send_mode(resource,
133                                             output->current_mode->flags,
134                                             output->current_mode->width,
135                                             output->current_mode->height,
136                                             output->current_mode->refresh);
137                 }
138
139                 version = wl_resource_get_version(resource);
140                 if (version >= WL_OUTPUT_SCALE_SINCE_VERSION && scale_changed)
141                         wl_output_send_scale(resource, output->current_scale);
142
143                 if (version >= WL_OUTPUT_DONE_SINCE_VERSION)
144                         wl_output_send_done(resource);
145         }
146 }
147
148
149 static void
150 weston_compositor_reflow_outputs(struct weston_compositor *compositor,
151                                 struct weston_output *resized_output, int delta_width);
152
153 WL_EXPORT int
154 weston_output_mode_set_native(struct weston_output *output,
155                               struct weston_mode *mode,
156                               int32_t scale)
157 {
158         int ret;
159         int mode_changed = 0, scale_changed = 0;
160         int32_t old_width;
161
162         if (!output->switch_mode)
163                 return -1;
164
165         if (!output->original_mode) {
166                 mode_changed = 1;
167                 ret = output->switch_mode(output, mode);
168                 if (ret < 0)
169                         return ret;
170                 if (output->current_scale != scale) {
171                         scale_changed = 1;
172                         output->current_scale = scale;
173                 }
174         }
175
176         old_width = output->width;
177         output->native_mode = mode;
178         output->native_scale = scale;
179
180         weston_mode_switch_finish(output, mode_changed, scale_changed);
181
182         if (mode_changed || scale_changed) {
183                 weston_compositor_reflow_outputs(output->compositor, output, output->width - old_width);
184
185                 wl_signal_emit(&output->compositor->output_resized_signal, output);
186         }
187         return 0;
188 }
189
190 WL_EXPORT int
191 weston_output_mode_switch_to_native(struct weston_output *output)
192 {
193         int ret;
194         int mode_changed = 0, scale_changed = 0;
195
196         if (!output->switch_mode)
197                 return -1;
198
199         if (!output->original_mode) {
200                 weston_log("already in the native mode\n");
201                 return -1;
202         }
203         /* the non fullscreen clients haven't seen a mode set since we
204          * switched into a temporary, so we need to notify them if the
205          * mode at that time is different from the native mode now.
206          */
207         mode_changed = (output->original_mode != output->native_mode);
208         scale_changed = (output->original_scale != output->native_scale);
209
210         ret = output->switch_mode(output, output->native_mode);
211         if (ret < 0)
212                 return ret;
213
214         output->current_scale = output->native_scale;
215
216         output->original_mode = NULL;
217         output->original_scale = 0;
218
219         weston_mode_switch_finish(output, mode_changed, scale_changed);
220
221         return 0;
222 }
223
224 WL_EXPORT int
225 weston_output_mode_switch_to_temporary(struct weston_output *output,
226                                        struct weston_mode *mode,
227                                        int32_t scale)
228 {
229         int ret;
230
231         if (!output->switch_mode)
232                 return -1;
233
234         /* original_mode is the last mode non full screen clients have seen,
235          * so we shouldn't change it if we already have one set.
236          */
237         if (!output->original_mode) {
238                 output->original_mode = output->native_mode;
239                 output->original_scale = output->native_scale;
240         }
241         ret = output->switch_mode(output, mode);
242         if (ret < 0)
243                 return ret;
244
245         output->current_scale = scale;
246
247         weston_mode_switch_finish(output, 0, 0);
248
249         return 0;
250 }
251
252 static void
253 region_init_infinite(pixman_region32_t *region)
254 {
255         pixman_region32_init_rect(region, INT32_MIN, INT32_MIN,
256                                   UINT32_MAX, UINT32_MAX);
257 }
258
259 static struct weston_subsurface *
260 weston_surface_to_subsurface(struct weston_surface *surface);
261
262 WL_EXPORT struct weston_view *
263 weston_view_create(struct weston_surface *surface)
264 {
265         struct weston_view *view;
266
267         view = zalloc(sizeof *view);
268         if (view == NULL)
269                 return NULL;
270
271         view->surface = surface;
272         view->plane = &surface->compositor->primary_plane;
273
274         /* Assign to surface */
275         wl_list_insert(&surface->views, &view->surface_link);
276
277         wl_signal_init(&view->destroy_signal);
278         wl_list_init(&view->link);
279         wl_list_init(&view->layer_link.link);
280
281         pixman_region32_init(&view->clip);
282
283         view->alpha = 1.0;
284         pixman_region32_init(&view->transform.opaque);
285
286         wl_list_init(&view->geometry.transformation_list);
287         wl_list_insert(&view->geometry.transformation_list,
288                        &view->transform.position.link);
289         weston_matrix_init(&view->transform.position.matrix);
290         wl_list_init(&view->geometry.child_list);
291         pixman_region32_init(&view->geometry.scissor);
292         pixman_region32_init(&view->transform.boundingbox);
293         view->transform.dirty = 1;
294
295         return view;
296 }
297
298 struct weston_frame_callback {
299         struct wl_resource *resource;
300         struct wl_list link;
301 };
302
303 struct weston_presentation_feedback {
304         struct wl_resource *resource;
305
306         /* XXX: could use just wl_resource_get_link() instead */
307         struct wl_list link;
308
309         /* The per-surface feedback flags */
310         uint32_t psf_flags;
311 };
312
313 static void
314 weston_presentation_feedback_discard(
315                 struct weston_presentation_feedback *feedback)
316 {
317         wp_presentation_feedback_send_discarded(feedback->resource);
318         wl_resource_destroy(feedback->resource);
319 }
320
321 static void
322 weston_presentation_feedback_discard_list(struct wl_list *list)
323 {
324         struct weston_presentation_feedback *feedback, *tmp;
325
326         wl_list_for_each_safe(feedback, tmp, list, link)
327                 weston_presentation_feedback_discard(feedback);
328 }
329
330 static void
331 weston_presentation_feedback_present(
332                 struct weston_presentation_feedback *feedback,
333                 struct weston_output *output,
334                 uint32_t refresh_nsec,
335                 const struct timespec *ts,
336                 uint64_t seq,
337                 uint32_t flags)
338 {
339         struct wl_client *client = wl_resource_get_client(feedback->resource);
340         struct wl_resource *o;
341         uint64_t secs;
342
343         wl_resource_for_each(o, &output->resource_list) {
344                 if (wl_resource_get_client(o) != client)
345                         continue;
346
347                 wp_presentation_feedback_send_sync_output(feedback->resource, o);
348         }
349
350         secs = ts->tv_sec;
351         wp_presentation_feedback_send_presented(feedback->resource,
352                                                 secs >> 32, secs & 0xffffffff,
353                                                 ts->tv_nsec,
354                                                 refresh_nsec,
355                                                 seq >> 32, seq & 0xffffffff,
356                                                 flags | feedback->psf_flags);
357         wl_resource_destroy(feedback->resource);
358 }
359
360 static void
361 weston_presentation_feedback_present_list(struct wl_list *list,
362                                           struct weston_output *output,
363                                           uint32_t refresh_nsec,
364                                           const struct timespec *ts,
365                                           uint64_t seq,
366                                           uint32_t flags)
367 {
368         struct weston_presentation_feedback *feedback, *tmp;
369
370         assert(!(flags & WP_PRESENTATION_FEEDBACK_INVALID) ||
371                wl_list_empty(list));
372
373         wl_list_for_each_safe(feedback, tmp, list, link)
374                 weston_presentation_feedback_present(feedback, output,
375                                                      refresh_nsec, ts, seq,
376                                                      flags);
377 }
378
379 static void
380 surface_state_handle_buffer_destroy(struct wl_listener *listener, void *data)
381 {
382         struct weston_surface_state *state =
383                 container_of(listener, struct weston_surface_state,
384                              buffer_destroy_listener);
385
386         state->buffer = NULL;
387 }
388
389 static void
390 weston_surface_state_init(struct weston_surface_state *state)
391 {
392         state->newly_attached = 0;
393         state->buffer = NULL;
394         state->buffer_destroy_listener.notify =
395                 surface_state_handle_buffer_destroy;
396         state->sx = 0;
397         state->sy = 0;
398
399         pixman_region32_init(&state->damage_surface);
400         pixman_region32_init(&state->damage_buffer);
401         pixman_region32_init(&state->opaque);
402         region_init_infinite(&state->input);
403
404         wl_list_init(&state->frame_callback_list);
405         wl_list_init(&state->feedback_list);
406
407         state->buffer_viewport.buffer.transform = WL_OUTPUT_TRANSFORM_NORMAL;
408         state->buffer_viewport.buffer.scale = 1;
409         state->buffer_viewport.buffer.src_width = wl_fixed_from_int(-1);
410         state->buffer_viewport.surface.width = -1;
411         state->buffer_viewport.changed = 0;
412 }
413
414 static void
415 weston_surface_state_fini(struct weston_surface_state *state)
416 {
417         struct weston_frame_callback *cb, *next;
418
419         wl_list_for_each_safe(cb, next,
420                               &state->frame_callback_list, link)
421                 wl_resource_destroy(cb->resource);
422
423         weston_presentation_feedback_discard_list(&state->feedback_list);
424
425         pixman_region32_fini(&state->input);
426         pixman_region32_fini(&state->opaque);
427         pixman_region32_fini(&state->damage_surface);
428         pixman_region32_fini(&state->damage_buffer);
429
430         if (state->buffer)
431                 wl_list_remove(&state->buffer_destroy_listener.link);
432         state->buffer = NULL;
433 }
434
435 static void
436 weston_surface_state_set_buffer(struct weston_surface_state *state,
437                                 struct weston_buffer *buffer)
438 {
439         if (state->buffer == buffer)
440                 return;
441
442         if (state->buffer)
443                 wl_list_remove(&state->buffer_destroy_listener.link);
444         state->buffer = buffer;
445         if (state->buffer)
446                 wl_signal_add(&state->buffer->destroy_signal,
447                               &state->buffer_destroy_listener);
448 }
449
450 WL_EXPORT struct weston_surface *
451 weston_surface_create(struct weston_compositor *compositor)
452 {
453         struct weston_surface *surface;
454
455         surface = zalloc(sizeof *surface);
456         if (surface == NULL)
457                 return NULL;
458
459         wl_signal_init(&surface->destroy_signal);
460         wl_signal_init(&surface->commit_signal);
461
462         surface->compositor = compositor;
463         surface->ref_count = 1;
464
465         surface->buffer_viewport.buffer.transform = WL_OUTPUT_TRANSFORM_NORMAL;
466         surface->buffer_viewport.buffer.scale = 1;
467         surface->buffer_viewport.buffer.src_width = wl_fixed_from_int(-1);
468         surface->buffer_viewport.surface.width = -1;
469
470         weston_surface_state_init(&surface->pending);
471
472         pixman_region32_init(&surface->damage);
473         pixman_region32_init(&surface->opaque);
474         region_init_infinite(&surface->input);
475
476         wl_list_init(&surface->views);
477
478         wl_list_init(&surface->frame_callback_list);
479         wl_list_init(&surface->feedback_list);
480
481         wl_list_init(&surface->subsurface_list);
482         wl_list_init(&surface->subsurface_list_pending);
483
484         weston_matrix_init(&surface->buffer_to_surface_matrix);
485         weston_matrix_init(&surface->surface_to_buffer_matrix);
486
487         wl_list_init(&surface->pointer_constraints);
488
489         return surface;
490 }
491
492 WL_EXPORT void
493 weston_surface_set_color(struct weston_surface *surface,
494                  float red, float green, float blue, float alpha)
495 {
496         surface->compositor->renderer->surface_set_color(surface, red, green, blue, alpha);
497 }
498
499 WL_EXPORT void
500 weston_view_to_global_float(struct weston_view *view,
501                             float sx, float sy, float *x, float *y)
502 {
503         if (view->transform.enabled) {
504                 struct weston_vector v = { { sx, sy, 0.0f, 1.0f } };
505
506                 weston_matrix_transform(&view->transform.matrix, &v);
507
508                 if (fabsf(v.f[3]) < 1e-6) {
509                         weston_log("warning: numerical instability in "
510                                 "%s(), divisor = %g\n", __func__,
511                                 v.f[3]);
512                         *x = 0;
513                         *y = 0;
514                         return;
515                 }
516
517                 *x = v.f[0] / v.f[3];
518                 *y = v.f[1] / v.f[3];
519         } else {
520                 *x = sx + view->geometry.x;
521                 *y = sy + view->geometry.y;
522         }
523 }
524
525 WL_EXPORT void
526 weston_transformed_coord(int width, int height,
527                          enum wl_output_transform transform,
528                          int32_t scale,
529                          float sx, float sy, float *bx, float *by)
530 {
531         switch (transform) {
532         case WL_OUTPUT_TRANSFORM_NORMAL:
533         default:
534                 *bx = sx;
535                 *by = sy;
536                 break;
537         case WL_OUTPUT_TRANSFORM_FLIPPED:
538                 *bx = width - sx;
539                 *by = sy;
540                 break;
541         case WL_OUTPUT_TRANSFORM_90:
542                 *bx = height - sy;
543                 *by = sx;
544                 break;
545         case WL_OUTPUT_TRANSFORM_FLIPPED_90:
546                 *bx = height - sy;
547                 *by = width - sx;
548                 break;
549         case WL_OUTPUT_TRANSFORM_180:
550                 *bx = width - sx;
551                 *by = height - sy;
552                 break;
553         case WL_OUTPUT_TRANSFORM_FLIPPED_180:
554                 *bx = sx;
555                 *by = height - sy;
556                 break;
557         case WL_OUTPUT_TRANSFORM_270:
558                 *bx = sy;
559                 *by = width - sx;
560                 break;
561         case WL_OUTPUT_TRANSFORM_FLIPPED_270:
562                 *bx = sy;
563                 *by = sx;
564                 break;
565         }
566
567         *bx *= scale;
568         *by *= scale;
569 }
570
571 WL_EXPORT pixman_box32_t
572 weston_transformed_rect(int width, int height,
573                         enum wl_output_transform transform,
574                         int32_t scale,
575                         pixman_box32_t rect)
576 {
577         float x1, x2, y1, y2;
578
579         pixman_box32_t ret;
580
581         weston_transformed_coord(width, height, transform, scale,
582                                  rect.x1, rect.y1, &x1, &y1);
583         weston_transformed_coord(width, height, transform, scale,
584                                  rect.x2, rect.y2, &x2, &y2);
585
586         if (x1 <= x2) {
587                 ret.x1 = x1;
588                 ret.x2 = x2;
589         } else {
590                 ret.x1 = x2;
591                 ret.x2 = x1;
592         }
593
594         if (y1 <= y2) {
595                 ret.y1 = y1;
596                 ret.y2 = y2;
597         } else {
598                 ret.y1 = y2;
599                 ret.y2 = y1;
600         }
601
602         return ret;
603 }
604
605 /** Transform a region by a matrix, restricted to axis-aligned transformations
606  *
607  * Warning: This function does not work for projective, affine, or matrices
608  * that encode arbitrary rotations. Only 90-degree step rotations are
609  * supported.
610  */
611 WL_EXPORT void
612 weston_matrix_transform_region(pixman_region32_t *dest,
613                                struct weston_matrix *matrix,
614                                pixman_region32_t *src)
615 {
616         pixman_box32_t *src_rects, *dest_rects;
617         int nrects, i;
618
619         src_rects = pixman_region32_rectangles(src, &nrects);
620         dest_rects = malloc(nrects * sizeof(*dest_rects));
621         if (!dest_rects)
622                 return;
623
624         for (i = 0; i < nrects; i++) {
625                 struct weston_vector vec1 = {{
626                         src_rects[i].x1, src_rects[i].y1, 0, 1
627                 }};
628                 weston_matrix_transform(matrix, &vec1);
629                 vec1.f[0] /= vec1.f[3];
630                 vec1.f[1] /= vec1.f[3];
631
632                 struct weston_vector vec2 = {{
633                         src_rects[i].x2, src_rects[i].y2, 0, 1
634                 }};
635                 weston_matrix_transform(matrix, &vec2);
636                 vec2.f[0] /= vec2.f[3];
637                 vec2.f[1] /= vec2.f[3];
638
639                 if (vec1.f[0] < vec2.f[0]) {
640                         dest_rects[i].x1 = floor(vec1.f[0]);
641                         dest_rects[i].x2 = ceil(vec2.f[0]);
642                 } else {
643                         dest_rects[i].x1 = floor(vec2.f[0]);
644                         dest_rects[i].x2 = ceil(vec1.f[0]);
645                 }
646
647                 if (vec1.f[1] < vec2.f[1]) {
648                         dest_rects[i].y1 = floor(vec1.f[1]);
649                         dest_rects[i].y2 = ceil(vec2.f[1]);
650                 } else {
651                         dest_rects[i].y1 = floor(vec2.f[1]);
652                         dest_rects[i].y2 = ceil(vec1.f[1]);
653                 }
654         }
655
656         pixman_region32_clear(dest);
657         pixman_region32_init_rects(dest, dest_rects, nrects);
658         free(dest_rects);
659 }
660
661 WL_EXPORT void
662 weston_transformed_region(int width, int height,
663                           enum wl_output_transform transform,
664                           int32_t scale,
665                           pixman_region32_t *src, pixman_region32_t *dest)
666 {
667         pixman_box32_t *src_rects, *dest_rects;
668         int nrects, i;
669
670         if (transform == WL_OUTPUT_TRANSFORM_NORMAL && scale == 1) {
671                 if (src != dest)
672                         pixman_region32_copy(dest, src);
673                 return;
674         }
675
676         src_rects = pixman_region32_rectangles(src, &nrects);
677         dest_rects = malloc(nrects * sizeof(*dest_rects));
678         if (!dest_rects)
679                 return;
680
681         if (transform == WL_OUTPUT_TRANSFORM_NORMAL) {
682                 memcpy(dest_rects, src_rects, nrects * sizeof(*dest_rects));
683         } else {
684                 for (i = 0; i < nrects; i++) {
685                         switch (transform) {
686                         default:
687                         case WL_OUTPUT_TRANSFORM_NORMAL:
688                                 dest_rects[i].x1 = src_rects[i].x1;
689                                 dest_rects[i].y1 = src_rects[i].y1;
690                                 dest_rects[i].x2 = src_rects[i].x2;
691                                 dest_rects[i].y2 = src_rects[i].y2;
692                                 break;
693                         case WL_OUTPUT_TRANSFORM_90:
694                                 dest_rects[i].x1 = height - src_rects[i].y2;
695                                 dest_rects[i].y1 = src_rects[i].x1;
696                                 dest_rects[i].x2 = height - src_rects[i].y1;
697                                 dest_rects[i].y2 = src_rects[i].x2;
698                                 break;
699                         case WL_OUTPUT_TRANSFORM_180:
700                                 dest_rects[i].x1 = width - src_rects[i].x2;
701                                 dest_rects[i].y1 = height - src_rects[i].y2;
702                                 dest_rects[i].x2 = width - src_rects[i].x1;
703                                 dest_rects[i].y2 = height - src_rects[i].y1;
704                                 break;
705                         case WL_OUTPUT_TRANSFORM_270:
706                                 dest_rects[i].x1 = src_rects[i].y1;
707                                 dest_rects[i].y1 = width - src_rects[i].x2;
708                                 dest_rects[i].x2 = src_rects[i].y2;
709                                 dest_rects[i].y2 = width - src_rects[i].x1;
710                                 break;
711                         case WL_OUTPUT_TRANSFORM_FLIPPED:
712                                 dest_rects[i].x1 = width - src_rects[i].x2;
713                                 dest_rects[i].y1 = src_rects[i].y1;
714                                 dest_rects[i].x2 = width - src_rects[i].x1;
715                                 dest_rects[i].y2 = src_rects[i].y2;
716                                 break;
717                         case WL_OUTPUT_TRANSFORM_FLIPPED_90:
718                                 dest_rects[i].x1 = height - src_rects[i].y2;
719                                 dest_rects[i].y1 = width - src_rects[i].x2;
720                                 dest_rects[i].x2 = height - src_rects[i].y1;
721                                 dest_rects[i].y2 = width - src_rects[i].x1;
722                                 break;
723                         case WL_OUTPUT_TRANSFORM_FLIPPED_180:
724                                 dest_rects[i].x1 = src_rects[i].x1;
725                                 dest_rects[i].y1 = height - src_rects[i].y2;
726                                 dest_rects[i].x2 = src_rects[i].x2;
727                                 dest_rects[i].y2 = height - src_rects[i].y1;
728                                 break;
729                         case WL_OUTPUT_TRANSFORM_FLIPPED_270:
730                                 dest_rects[i].x1 = src_rects[i].y1;
731                                 dest_rects[i].y1 = src_rects[i].x1;
732                                 dest_rects[i].x2 = src_rects[i].y2;
733                                 dest_rects[i].y2 = src_rects[i].x2;
734                                 break;
735                         }
736                 }
737         }
738
739         if (scale != 1) {
740                 for (i = 0; i < nrects; i++) {
741                         dest_rects[i].x1 *= scale;
742                         dest_rects[i].x2 *= scale;
743                         dest_rects[i].y1 *= scale;
744                         dest_rects[i].y2 *= scale;
745                 }
746         }
747
748         pixman_region32_clear(dest);
749         pixman_region32_init_rects(dest, dest_rects, nrects);
750         free(dest_rects);
751 }
752
753 static void
754 viewport_surface_to_buffer(struct weston_surface *surface,
755                            float sx, float sy, float *bx, float *by)
756 {
757         struct weston_buffer_viewport *vp = &surface->buffer_viewport;
758         double src_width, src_height;
759         double src_x, src_y;
760
761         if (vp->buffer.src_width == wl_fixed_from_int(-1)) {
762                 if (vp->surface.width == -1) {
763                         *bx = sx;
764                         *by = sy;
765                         return;
766                 }
767
768                 src_x = 0.0;
769                 src_y = 0.0;
770                 src_width = surface->width_from_buffer;
771                 src_height = surface->height_from_buffer;
772         } else {
773                 src_x = wl_fixed_to_double(vp->buffer.src_x);
774                 src_y = wl_fixed_to_double(vp->buffer.src_y);
775                 src_width = wl_fixed_to_double(vp->buffer.src_width);
776                 src_height = wl_fixed_to_double(vp->buffer.src_height);
777         }
778
779         *bx = sx * src_width / surface->width + src_x;
780         *by = sy * src_height / surface->height + src_y;
781 }
782
783 WL_EXPORT void
784 weston_surface_to_buffer_float(struct weston_surface *surface,
785                                float sx, float sy, float *bx, float *by)
786 {
787         struct weston_buffer_viewport *vp = &surface->buffer_viewport;
788
789         /* first transform coordinates if the viewport is set */
790         viewport_surface_to_buffer(surface, sx, sy, bx, by);
791
792         weston_transformed_coord(surface->width_from_buffer,
793                                  surface->height_from_buffer,
794                                  vp->buffer.transform, vp->buffer.scale,
795                                  *bx, *by, bx, by);
796 }
797
798 /** Transform a rectangle from surface coordinates to buffer coordinates
799  *
800  * \param surface The surface to fetch wp_viewport and buffer transformation
801  * from.
802  * \param rect The rectangle to transform.
803  * \return The transformed rectangle.
804  *
805  * Viewport and buffer transformations can only do translation, scaling,
806  * and rotations in 90-degree steps. Therefore the only loss in the
807  * conversion is coordinate rounding.
808  *
809  * However, some coordinate rounding takes place as an intermediate
810  * step before the buffer scale factor is applied, so the rectangle
811  * boundary may not be exactly as expected.
812  *
813  * This is OK for damage tracking since a little extra coverage is
814  * not a problem.
815  */
816 WL_EXPORT pixman_box32_t
817 weston_surface_to_buffer_rect(struct weston_surface *surface,
818                               pixman_box32_t rect)
819 {
820         struct weston_buffer_viewport *vp = &surface->buffer_viewport;
821         float xf, yf;
822
823         /* first transform box coordinates if the viewport is set */
824         viewport_surface_to_buffer(surface, rect.x1, rect.y1, &xf, &yf);
825         rect.x1 = floorf(xf);
826         rect.y1 = floorf(yf);
827
828         viewport_surface_to_buffer(surface, rect.x2, rect.y2, &xf, &yf);
829         rect.x2 = ceilf(xf);
830         rect.y2 = ceilf(yf);
831
832         return weston_transformed_rect(surface->width_from_buffer,
833                                        surface->height_from_buffer,
834                                        vp->buffer.transform, vp->buffer.scale,
835                                        rect);
836 }
837
838 /** Transform a region from surface coordinates to buffer coordinates
839  *
840  * \param surface The surface to fetch wp_viewport and buffer transformation
841  * from.
842  * \param surface_region[in] The region in surface coordinates.
843  * \param buffer_region[out] The region converted to buffer coordinates.
844  *
845  * Buffer_region must be init'd, but will be completely overwritten.
846  *
847  * Viewport and buffer transformations can only do translation, scaling,
848  * and rotations in 90-degree steps. Therefore the only loss in the
849  * conversion is from the coordinate rounding that takes place in
850  * \ref weston_surface_to_buffer_rect.
851  */
852 WL_EXPORT void
853 weston_surface_to_buffer_region(struct weston_surface *surface,
854                                 pixman_region32_t *surface_region,
855                                 pixman_region32_t *buffer_region)
856 {
857         pixman_box32_t *src_rects, *dest_rects;
858         int nrects, i;
859
860         src_rects = pixman_region32_rectangles(surface_region, &nrects);
861         dest_rects = malloc(nrects * sizeof(*dest_rects));
862         if (!dest_rects)
863                 return;
864
865         for (i = 0; i < nrects; i++) {
866                 dest_rects[i] = weston_surface_to_buffer_rect(surface,
867                                                               src_rects[i]);
868         }
869
870         pixman_region32_fini(buffer_region);
871         pixman_region32_init_rects(buffer_region, dest_rects, nrects);
872         free(dest_rects);
873 }
874
875 WL_EXPORT void
876 weston_view_move_to_plane(struct weston_view *view,
877                              struct weston_plane *plane)
878 {
879         if (view->plane == plane)
880                 return;
881
882         weston_view_damage_below(view);
883         view->plane = plane;
884         weston_surface_damage(view->surface);
885 }
886
887 /** Inflict damage on the plane where the view is visible.
888  *
889  * \param view The view that causes the damage.
890  *
891  * If the view is currently on a plane (including the primary plane),
892  * take the view's boundingbox, subtract all the opaque views that cover it,
893  * and add the remaining region as damage to the plane. This corresponds
894  * to the damage inflicted to the plane if this view disappeared.
895  *
896  * A repaint is scheduled for this view.
897  *
898  * The region of all opaque views covering this view is stored in
899  * weston_view::clip and updated by view_accumulate_damage() during
900  * weston_output_repaint(). Specifically, that region matches the
901  * scenegraph as it was last painted.
902  */
903 WL_EXPORT void
904 weston_view_damage_below(struct weston_view *view)
905 {
906         pixman_region32_t damage;
907
908         pixman_region32_init(&damage);
909         pixman_region32_subtract(&damage, &view->transform.boundingbox,
910                                  &view->clip);
911         if (view->plane)
912                 pixman_region32_union(&view->plane->damage,
913                                       &view->plane->damage, &damage);
914         pixman_region32_fini(&damage);
915         weston_view_schedule_repaint(view);
916 }
917
918 /**
919  * \param es    The surface
920  * \param mask  The new set of outputs for the surface
921  *
922  * Sets the surface's set of outputs to the ones specified by
923  * the new output mask provided.  Identifies the outputs that
924  * have changed, the posts enter and leave events for these
925  * outputs as appropriate.
926  */
927 static void
928 weston_surface_update_output_mask(struct weston_surface *es, uint32_t mask)
929 {
930         uint32_t different = es->output_mask ^ mask;
931         uint32_t entered = mask & different;
932         uint32_t left = es->output_mask & different;
933         struct weston_output *output;
934         struct wl_resource *resource = NULL;
935         struct wl_client *client;
936
937         es->output_mask = mask;
938         if (es->resource == NULL)
939                 return;
940         if (different == 0)
941                 return;
942
943         client = wl_resource_get_client(es->resource);
944
945         wl_list_for_each(output, &es->compositor->output_list, link) {
946                 if (1u << output->id & different)
947                         resource =
948                                 wl_resource_find_for_client(&output->resource_list,
949                                                          client);
950                 if (resource == NULL)
951                         continue;
952                 if (1u << output->id & entered)
953                         wl_surface_send_enter(es->resource, resource);
954                 if (1u << output->id & left)
955                         wl_surface_send_leave(es->resource, resource);
956         }
957 }
958
959 /** Recalculate which output(s) the surface has views displayed on
960  *
961  * \param es  The surface to remap to outputs
962  *
963  * Finds the output that is showing the largest amount of one
964  * of the surface's various views.  This output becomes the
965  * surface's primary output for vsync and frame callback purposes.
966  *
967  * Also notes all outputs of all of the surface's views
968  * in the output_mask for the surface.
969  */
970 static void
971 weston_surface_assign_output(struct weston_surface *es)
972 {
973         struct weston_output *new_output;
974         struct weston_view *view;
975         pixman_region32_t region;
976         uint32_t max, area, mask;
977         pixman_box32_t *e;
978
979         new_output = NULL;
980         max = 0;
981         mask = 0;
982         pixman_region32_init(&region);
983         wl_list_for_each(view, &es->views, surface_link) {
984                 if (!view->output)
985                         continue;
986
987                 pixman_region32_intersect(&region, &view->transform.boundingbox,
988                                           &view->output->region);
989
990                 e = pixman_region32_extents(&region);
991                 area = (e->x2 - e->x1) * (e->y2 - e->y1);
992
993                 mask |= view->output_mask;
994
995                 if (area >= max) {
996                         new_output = view->output;
997                         max = area;
998                 }
999         }
1000         pixman_region32_fini(&region);
1001
1002         es->output = new_output;
1003         weston_surface_update_output_mask(es, mask);
1004 }
1005
1006 /** Recalculate which output(s) the view is displayed on
1007  *
1008  * \param ev  The view to remap to outputs
1009  *
1010  * Identifies the set of outputs that the view is visible on,
1011  * noting them into the output_mask.  The output that the view
1012  * is most visible on is set as the view's primary output.
1013  *
1014  * Also does the same for the view's surface.  See
1015  * weston_surface_assign_output().
1016  */
1017 static void
1018 weston_view_assign_output(struct weston_view *ev)
1019 {
1020         struct weston_compositor *ec = ev->surface->compositor;
1021         struct weston_output *output, *new_output;
1022         pixman_region32_t region;
1023         uint32_t max, area, mask;
1024         pixman_box32_t *e;
1025
1026         new_output = NULL;
1027         max = 0;
1028         mask = 0;
1029         pixman_region32_init(&region);
1030         wl_list_for_each(output, &ec->output_list, link) {
1031                 if (output->destroying)
1032                         continue;
1033
1034                 pixman_region32_intersect(&region, &ev->transform.boundingbox,
1035                                           &output->region);
1036
1037                 e = pixman_region32_extents(&region);
1038                 area = (e->x2 - e->x1) * (e->y2 - e->y1);
1039
1040                 if (area > 0)
1041                         mask |= 1u << output->id;
1042
1043                 if (area >= max) {
1044                         new_output = output;
1045                         max = area;
1046                 }
1047         }
1048         pixman_region32_fini(&region);
1049
1050         ev->output = new_output;
1051         ev->output_mask = mask;
1052
1053         weston_surface_assign_output(ev->surface);
1054 }
1055
1056 static void
1057 weston_view_to_view_map(struct weston_view *from, struct weston_view *to,
1058                         int from_x, int from_y, int *to_x, int *to_y)
1059 {
1060         float x, y;
1061
1062         weston_view_to_global_float(from, from_x, from_y, &x, &y);
1063         weston_view_from_global_float(to, x, y, &x, &y);
1064
1065         *to_x = round(x);
1066         *to_y = round(y);
1067 }
1068
1069 static void
1070 weston_view_transfer_scissor(struct weston_view *from, struct weston_view *to)
1071 {
1072         pixman_box32_t *a;
1073         pixman_box32_t b;
1074
1075         a = pixman_region32_extents(&from->geometry.scissor);
1076
1077         weston_view_to_view_map(from, to, a->x1, a->y1, &b.x1, &b.y1);
1078         weston_view_to_view_map(from, to, a->x2, a->y2, &b.x2, &b.y2);
1079
1080         pixman_region32_fini(&to->geometry.scissor);
1081         pixman_region32_init_with_extents(&to->geometry.scissor, &b);
1082 }
1083
1084 static void
1085 view_compute_bbox(struct weston_view *view, const pixman_box32_t *inbox,
1086                   pixman_region32_t *bbox)
1087 {
1088         float min_x = HUGE_VALF,  min_y = HUGE_VALF;
1089         float max_x = -HUGE_VALF, max_y = -HUGE_VALF;
1090         int32_t s[4][2] = {
1091                 { inbox->x1, inbox->y1 },
1092                 { inbox->x1, inbox->y2 },
1093                 { inbox->x2, inbox->y1 },
1094                 { inbox->x2, inbox->y2 },
1095         };
1096         float int_x, int_y;
1097         int i;
1098
1099         if (inbox->x1 == inbox->x2 || inbox->y1 == inbox->y2) {
1100                 /* avoid rounding empty bbox to 1x1 */
1101                 pixman_region32_init(bbox);
1102                 return;
1103         }
1104
1105         for (i = 0; i < 4; ++i) {
1106                 float x, y;
1107                 weston_view_to_global_float(view, s[i][0], s[i][1], &x, &y);
1108                 if (x < min_x)
1109                         min_x = x;
1110                 if (x > max_x)
1111                         max_x = x;
1112                 if (y < min_y)
1113                         min_y = y;
1114                 if (y > max_y)
1115                         max_y = y;
1116         }
1117
1118         int_x = floorf(min_x);
1119         int_y = floorf(min_y);
1120         pixman_region32_init_rect(bbox, int_x, int_y,
1121                                   ceilf(max_x) - int_x, ceilf(max_y) - int_y);
1122 }
1123
1124 static void
1125 weston_view_update_transform_disable(struct weston_view *view)
1126 {
1127         view->transform.enabled = 0;
1128
1129         /* round off fractions when not transformed */
1130         view->geometry.x = roundf(view->geometry.x);
1131         view->geometry.y = roundf(view->geometry.y);
1132
1133         /* Otherwise identity matrix, but with x and y translation. */
1134         view->transform.position.matrix.type = WESTON_MATRIX_TRANSFORM_TRANSLATE;
1135         view->transform.position.matrix.d[12] = view->geometry.x;
1136         view->transform.position.matrix.d[13] = view->geometry.y;
1137
1138         view->transform.matrix = view->transform.position.matrix;
1139
1140         view->transform.inverse = view->transform.position.matrix;
1141         view->transform.inverse.d[12] = -view->geometry.x;
1142         view->transform.inverse.d[13] = -view->geometry.y;
1143
1144         pixman_region32_init_rect(&view->transform.boundingbox,
1145                                   0, 0,
1146                                   view->surface->width,
1147                                   view->surface->height);
1148         if (view->geometry.scissor_enabled)
1149                 pixman_region32_intersect(&view->transform.boundingbox,
1150                                           &view->transform.boundingbox,
1151                                           &view->geometry.scissor);
1152
1153         pixman_region32_translate(&view->transform.boundingbox,
1154                                   view->geometry.x, view->geometry.y);
1155
1156         if (view->alpha == 1.0) {
1157                 pixman_region32_copy(&view->transform.opaque,
1158                                      &view->surface->opaque);
1159                 pixman_region32_translate(&view->transform.opaque,
1160                                           view->geometry.x,
1161                                           view->geometry.y);
1162         }
1163 }
1164
1165 static int
1166 weston_view_update_transform_enable(struct weston_view *view)
1167 {
1168         struct weston_view *parent = view->geometry.parent;
1169         struct weston_matrix *matrix = &view->transform.matrix;
1170         struct weston_matrix *inverse = &view->transform.inverse;
1171         struct weston_transform *tform;
1172         pixman_region32_t surfregion;
1173         const pixman_box32_t *surfbox;
1174
1175         view->transform.enabled = 1;
1176
1177         /* Otherwise identity matrix, but with x and y translation. */
1178         view->transform.position.matrix.type = WESTON_MATRIX_TRANSFORM_TRANSLATE;
1179         view->transform.position.matrix.d[12] = view->geometry.x;
1180         view->transform.position.matrix.d[13] = view->geometry.y;
1181
1182         weston_matrix_init(matrix);
1183         wl_list_for_each(tform, &view->geometry.transformation_list, link)
1184                 weston_matrix_multiply(matrix, &tform->matrix);
1185
1186         if (parent)
1187                 weston_matrix_multiply(matrix, &parent->transform.matrix);
1188
1189         if (weston_matrix_invert(inverse, matrix) < 0) {
1190                 /* Oops, bad total transformation, not invertible */
1191                 weston_log("error: weston_view %p"
1192                         " transformation not invertible.\n", view);
1193                 return -1;
1194         }
1195
1196         if (view->alpha == 1.0 &&
1197             matrix->type == WESTON_MATRIX_TRANSFORM_TRANSLATE) {
1198                 pixman_region32_copy(&view->transform.opaque,
1199                                      &view->surface->opaque);
1200                 pixman_region32_translate(&view->transform.opaque,
1201                                           matrix->d[12],
1202                                           matrix->d[13]);
1203         }
1204
1205         pixman_region32_init_rect(&surfregion, 0, 0,
1206                                   view->surface->width, view->surface->height);
1207         if (view->geometry.scissor_enabled)
1208                 pixman_region32_intersect(&surfregion, &surfregion,
1209                                           &view->geometry.scissor);
1210         surfbox = pixman_region32_extents(&surfregion);
1211
1212         view_compute_bbox(view, surfbox, &view->transform.boundingbox);
1213         pixman_region32_fini(&surfregion);
1214
1215         return 0;
1216 }
1217
1218 static struct weston_layer *
1219 get_view_layer(struct weston_view *view)
1220 {
1221         if (view->parent_view)
1222                 return get_view_layer(view->parent_view);
1223         return view->layer_link.layer;
1224 }
1225
1226 WL_EXPORT void
1227 weston_view_update_transform(struct weston_view *view)
1228 {
1229         struct weston_view *parent = view->geometry.parent;
1230         struct weston_layer *layer;
1231         pixman_region32_t mask;
1232
1233         if (!view->transform.dirty)
1234                 return;
1235
1236         if (parent)
1237                 weston_view_update_transform(parent);
1238
1239         view->transform.dirty = 0;
1240
1241         weston_view_damage_below(view);
1242
1243         pixman_region32_fini(&view->transform.boundingbox);
1244         pixman_region32_fini(&view->transform.opaque);
1245         pixman_region32_init(&view->transform.opaque);
1246
1247         /* transform.position is always in transformation_list */
1248         if (view->geometry.transformation_list.next ==
1249             &view->transform.position.link &&
1250             view->geometry.transformation_list.prev ==
1251             &view->transform.position.link &&
1252             !parent) {
1253                 weston_view_update_transform_disable(view);
1254         } else {
1255                 if (weston_view_update_transform_enable(view) < 0)
1256                         weston_view_update_transform_disable(view);
1257         }
1258
1259         layer = get_view_layer(view);
1260         if (layer) {
1261                 pixman_region32_init_with_extents(&mask, &layer->mask);
1262                 pixman_region32_intersect(&view->transform.boundingbox,
1263                                           &view->transform.boundingbox, &mask);
1264                 pixman_region32_intersect(&view->transform.opaque,
1265                                           &view->transform.opaque, &mask);
1266                 pixman_region32_fini(&mask);
1267         }
1268
1269         if (parent) {
1270                 if (parent->geometry.scissor_enabled) {
1271                         view->geometry.scissor_enabled = true;
1272                         weston_view_transfer_scissor(parent, view);
1273                 } else {
1274                         view->geometry.scissor_enabled = false;
1275                 }
1276         }
1277
1278         weston_view_damage_below(view);
1279
1280         weston_view_assign_output(view);
1281
1282         wl_signal_emit(&view->surface->compositor->transform_signal,
1283                        view->surface);
1284 }
1285
1286 WL_EXPORT void
1287 weston_view_geometry_dirty(struct weston_view *view)
1288 {
1289         struct weston_view *child;
1290
1291         /*
1292          * The invariant: if view->geometry.dirty, then all views
1293          * in view->geometry.child_list have geometry.dirty too.
1294          * Corollary: if not parent->geometry.dirty, then all ancestors
1295          * are not dirty.
1296          */
1297
1298         if (view->transform.dirty)
1299                 return;
1300
1301         view->transform.dirty = 1;
1302
1303         wl_list_for_each(child, &view->geometry.child_list,
1304                          geometry.parent_link)
1305                 weston_view_geometry_dirty(child);
1306 }
1307
1308 WL_EXPORT void
1309 weston_view_to_global_fixed(struct weston_view *view,
1310                             wl_fixed_t vx, wl_fixed_t vy,
1311                             wl_fixed_t *x, wl_fixed_t *y)
1312 {
1313         float xf, yf;
1314
1315         weston_view_to_global_float(view,
1316                                     wl_fixed_to_double(vx),
1317                                     wl_fixed_to_double(vy),
1318                                     &xf, &yf);
1319         *x = wl_fixed_from_double(xf);
1320         *y = wl_fixed_from_double(yf);
1321 }
1322
1323 WL_EXPORT void
1324 weston_view_from_global_float(struct weston_view *view,
1325                               float x, float y, float *vx, float *vy)
1326 {
1327         if (view->transform.enabled) {
1328                 struct weston_vector v = { { x, y, 0.0f, 1.0f } };
1329
1330                 weston_matrix_transform(&view->transform.inverse, &v);
1331
1332                 if (fabsf(v.f[3]) < 1e-6) {
1333                         weston_log("warning: numerical instability in "
1334                                 "weston_view_from_global(), divisor = %g\n",
1335                                 v.f[3]);
1336                         *vx = 0;
1337                         *vy = 0;
1338                         return;
1339                 }
1340
1341                 *vx = v.f[0] / v.f[3];
1342                 *vy = v.f[1] / v.f[3];
1343         } else {
1344                 *vx = x - view->geometry.x;
1345                 *vy = y - view->geometry.y;
1346         }
1347 }
1348
1349 WL_EXPORT void
1350 weston_view_from_global_fixed(struct weston_view *view,
1351                               wl_fixed_t x, wl_fixed_t y,
1352                               wl_fixed_t *vx, wl_fixed_t *vy)
1353 {
1354         float vxf, vyf;
1355
1356         weston_view_from_global_float(view,
1357                                       wl_fixed_to_double(x),
1358                                       wl_fixed_to_double(y),
1359                                       &vxf, &vyf);
1360         *vx = wl_fixed_from_double(vxf);
1361         *vy = wl_fixed_from_double(vyf);
1362 }
1363
1364 WL_EXPORT void
1365 weston_view_from_global(struct weston_view *view,
1366                         int32_t x, int32_t y, int32_t *vx, int32_t *vy)
1367 {
1368         float vxf, vyf;
1369
1370         weston_view_from_global_float(view, x, y, &vxf, &vyf);
1371         *vx = floorf(vxf);
1372         *vy = floorf(vyf);
1373 }
1374
1375 /**
1376  * \param surface  The surface to be repainted
1377  *
1378  * Marks the output(s) that the surface is shown on as needing to be
1379  * repainted.  See weston_output_schedule_repaint().
1380  */
1381 WL_EXPORT void
1382 weston_surface_schedule_repaint(struct weston_surface *surface)
1383 {
1384         struct weston_output *output;
1385
1386         wl_list_for_each(output, &surface->compositor->output_list, link)
1387                 if (surface->output_mask & (1u << output->id))
1388                         weston_output_schedule_repaint(output);
1389 }
1390
1391 /**
1392  * \param view  The view to be repainted
1393  *
1394  * Marks the output(s) that the view is shown on as needing to be
1395  * repainted.  See weston_output_schedule_repaint().
1396  */
1397 WL_EXPORT void
1398 weston_view_schedule_repaint(struct weston_view *view)
1399 {
1400         struct weston_output *output;
1401
1402         wl_list_for_each(output, &view->surface->compositor->output_list, link)
1403                 if (view->output_mask & (1u << output->id))
1404                         weston_output_schedule_repaint(output);
1405 }
1406
1407 /**
1408  * XXX: This function does it the wrong way.
1409  * surface->damage is the damage from the client, and causes
1410  * surface_flush_damage() to copy pixels. No window management action can
1411  * cause damage to the client-provided content, warranting re-upload!
1412  *
1413  * Instead of surface->damage, this function should record the damage
1414  * with all the views for this surface to avoid extraneous texture
1415  * uploads.
1416  */
1417 WL_EXPORT void
1418 weston_surface_damage(struct weston_surface *surface)
1419 {
1420         pixman_region32_union_rect(&surface->damage, &surface->damage,
1421                                    0, 0, surface->width,
1422                                    surface->height);
1423
1424         weston_surface_schedule_repaint(surface);
1425 }
1426
1427 WL_EXPORT void
1428 weston_view_set_position(struct weston_view *view, float x, float y)
1429 {
1430         if (view->geometry.x == x && view->geometry.y == y)
1431                 return;
1432
1433         view->geometry.x = x;
1434         view->geometry.y = y;
1435         weston_view_geometry_dirty(view);
1436 }
1437
1438 static void
1439 transform_parent_handle_parent_destroy(struct wl_listener *listener,
1440                                        void *data)
1441 {
1442         struct weston_view *view =
1443                 container_of(listener, struct weston_view,
1444                              geometry.parent_destroy_listener);
1445
1446         weston_view_set_transform_parent(view, NULL);
1447 }
1448
1449 WL_EXPORT void
1450 weston_view_set_transform_parent(struct weston_view *view,
1451                                  struct weston_view *parent)
1452 {
1453         if (view->geometry.parent) {
1454                 wl_list_remove(&view->geometry.parent_destroy_listener.link);
1455                 wl_list_remove(&view->geometry.parent_link);
1456
1457                 if (!parent)
1458                         view->geometry.scissor_enabled = false;
1459         }
1460
1461         view->geometry.parent = parent;
1462
1463         view->geometry.parent_destroy_listener.notify =
1464                 transform_parent_handle_parent_destroy;
1465         if (parent) {
1466                 wl_signal_add(&parent->destroy_signal,
1467                               &view->geometry.parent_destroy_listener);
1468                 wl_list_insert(&parent->geometry.child_list,
1469                                &view->geometry.parent_link);
1470         }
1471
1472         weston_view_geometry_dirty(view);
1473 }
1474
1475 /** Set a clip mask rectangle on a view
1476  *
1477  * \param view The view to set the clip mask on.
1478  * \param x Top-left corner X coordinate of the clip rectangle.
1479  * \param y Top-left corner Y coordinate of the clip rectangle.
1480  * \param width Width of the clip rectangle, non-negative.
1481  * \param height Height of the clip rectangle, non-negative.
1482  *
1483  * A shell may set a clip mask rectangle on a view. Everything outside
1484  * the rectangle is cut away for input and output purposes: it is
1485  * not drawn and cannot be hit by hit-test based input like pointer
1486  * motion or touch-downs. Everything inside the rectangle will behave
1487  * normally. Clients are unaware of clipping.
1488  *
1489  * The rectangle is set in surface-local coordinates. Setting a clip
1490  * mask rectangle does not affect the view position, the view is positioned
1491  * as it would be without a clip. The clip also does not change
1492  * weston_surface::width,height.
1493  *
1494  * The clip mask rectangle is part of transformation inheritance
1495  * (weston_view_set_transform_parent()). A clip set in the root of the
1496  * transformation inheritance tree will affect all views in the tree.
1497  * A clip can be set only on the root view. Attempting to set a clip
1498  * on view that has a transformation parent will fail. Assigning a parent
1499  * to a view that has a clip set will cause the clip to be forgotten.
1500  *
1501  * Because the clip mask is an axis-aligned rectangle, it poses restrictions
1502  * on the additional transformations in the child views. These transformations
1503  * may not rotate the coordinate axes, i.e., only translation and scaling
1504  * are allowed. Violating this restriction causes the clipping to malfunction.
1505  * Furthermore, using scaling may cause rounding errors in child clipping.
1506  *
1507  * The clip mask rectangle is not automatically adjusted based on
1508  * wl_surface.attach dx and dy arguments.
1509  *
1510  * A clip mask rectangle can be set only if the compositor capability
1511  * WESTON_CAP_VIEW_CLIP_MASK is present.
1512  *
1513  * This function sets the clip mask rectangle and schedules a repaint for
1514  * the view.
1515  */
1516 WL_EXPORT void
1517 weston_view_set_mask(struct weston_view *view,
1518                      int x, int y, int width, int height)
1519 {
1520         struct weston_compositor *compositor = view->surface->compositor;
1521
1522         if (!(compositor->capabilities & WESTON_CAP_VIEW_CLIP_MASK)) {
1523                 weston_log("%s not allowed without capability!\n", __func__);
1524                 return;
1525         }
1526
1527         if (view->geometry.parent) {
1528                 weston_log("view %p has a parent, clip forbidden!\n", view);
1529                 return;
1530         }
1531
1532         if (width < 0 || height < 0) {
1533                 weston_log("%s: illegal args %d, %d, %d, %d\n", __func__,
1534                            x, y, width, height);
1535                 return;
1536         }
1537
1538         pixman_region32_fini(&view->geometry.scissor);
1539         pixman_region32_init_rect(&view->geometry.scissor, x, y, width, height);
1540         view->geometry.scissor_enabled = true;
1541         weston_view_geometry_dirty(view);
1542         weston_view_schedule_repaint(view);
1543 }
1544
1545 /** Remove the clip mask from a view
1546  *
1547  * \param view The view to remove the clip mask from.
1548  *
1549  * Removed the clip mask rectangle and schedules a repaint.
1550  *
1551  * \sa weston_view_set_mask
1552  */
1553 WL_EXPORT void
1554 weston_view_set_mask_infinite(struct weston_view *view)
1555 {
1556         view->geometry.scissor_enabled = false;
1557         weston_view_geometry_dirty(view);
1558         weston_view_schedule_repaint(view);
1559 }
1560
1561 /* Check if view should be displayed
1562  *
1563  * The indicator is set manually when assigning
1564  * a view to a surface.
1565  *
1566  * This needs reworking. See the thread starting at:
1567  *
1568  * https://lists.freedesktop.org/archives/wayland-devel/2016-June/029656.html
1569  */
1570 WL_EXPORT bool
1571 weston_view_is_mapped(struct weston_view *view)
1572 {
1573         return view->is_mapped;
1574 }
1575
1576 /* Check if a surface has a view assigned to it
1577  *
1578  * The indicator is set manually when mapping
1579  * a surface and creating a view for it.
1580  *
1581  * This needs to go. See the thread starting at:
1582  *
1583  * https://lists.freedesktop.org/archives/wayland-devel/2016-June/029656.html
1584  *
1585  */
1586 WL_EXPORT bool
1587 weston_surface_is_mapped(struct weston_surface *surface)
1588 {
1589         return surface->is_mapped;
1590 }
1591
1592 static void
1593 surface_set_size(struct weston_surface *surface, int32_t width, int32_t height)
1594 {
1595         struct weston_view *view;
1596
1597         if (surface->width == width && surface->height == height)
1598                 return;
1599
1600         surface->width = width;
1601         surface->height = height;
1602
1603         wl_list_for_each(view, &surface->views, surface_link)
1604                 weston_view_geometry_dirty(view);
1605 }
1606
1607 WL_EXPORT void
1608 weston_surface_set_size(struct weston_surface *surface,
1609                         int32_t width, int32_t height)
1610 {
1611         assert(!surface->resource);
1612         surface_set_size(surface, width, height);
1613 }
1614
1615 static int
1616 fixed_round_up_to_int(wl_fixed_t f)
1617 {
1618         return wl_fixed_to_int(wl_fixed_from_int(1) - 1 + f);
1619 }
1620
1621 static void
1622 convert_size_by_transform_scale(int32_t *width_out, int32_t *height_out,
1623                                 int32_t width, int32_t height,
1624                                 uint32_t transform,
1625                                 int32_t scale)
1626 {
1627         assert(scale > 0);
1628
1629         switch (transform) {
1630         case WL_OUTPUT_TRANSFORM_NORMAL:
1631         case WL_OUTPUT_TRANSFORM_180:
1632         case WL_OUTPUT_TRANSFORM_FLIPPED:
1633         case WL_OUTPUT_TRANSFORM_FLIPPED_180:
1634                 *width_out = width / scale;
1635                 *height_out = height / scale;
1636                 break;
1637         case WL_OUTPUT_TRANSFORM_90:
1638         case WL_OUTPUT_TRANSFORM_270:
1639         case WL_OUTPUT_TRANSFORM_FLIPPED_90:
1640         case WL_OUTPUT_TRANSFORM_FLIPPED_270:
1641                 *width_out = height / scale;
1642                 *height_out = width / scale;
1643                 break;
1644         default:
1645                 assert(0 && "invalid transform");
1646         }
1647 }
1648
1649 static void
1650 weston_surface_calculate_size_from_buffer(struct weston_surface *surface)
1651 {
1652         struct weston_buffer_viewport *vp = &surface->buffer_viewport;
1653
1654         if (!surface->buffer_ref.buffer) {
1655                 surface->width_from_buffer = 0;
1656                 surface->height_from_buffer = 0;
1657                 return;
1658         }
1659
1660         convert_size_by_transform_scale(&surface->width_from_buffer,
1661                                         &surface->height_from_buffer,
1662                                         surface->buffer_ref.buffer->width,
1663                                         surface->buffer_ref.buffer->height,
1664                                         vp->buffer.transform,
1665                                         vp->buffer.scale);
1666 }
1667
1668 static void
1669 weston_surface_update_size(struct weston_surface *surface)
1670 {
1671         struct weston_buffer_viewport *vp = &surface->buffer_viewport;
1672         int32_t width, height;
1673
1674         width = surface->width_from_buffer;
1675         height = surface->height_from_buffer;
1676
1677         if (width != 0 && vp->surface.width != -1) {
1678                 surface_set_size(surface,
1679                                  vp->surface.width, vp->surface.height);
1680                 return;
1681         }
1682
1683         if (width != 0 && vp->buffer.src_width != wl_fixed_from_int(-1)) {
1684                 int32_t w = fixed_round_up_to_int(vp->buffer.src_width);
1685                 int32_t h = fixed_round_up_to_int(vp->buffer.src_height);
1686
1687                 surface_set_size(surface, w ?: 1, h ?: 1);
1688                 return;
1689         }
1690
1691         surface_set_size(surface, width, height);
1692 }
1693
1694 WL_EXPORT uint32_t
1695 weston_compositor_get_time(void)
1696 {
1697        struct timeval tv;
1698
1699        gettimeofday(&tv, NULL);
1700
1701        return tv.tv_sec * 1000 + tv.tv_usec / 1000;
1702 }
1703
1704 WL_EXPORT struct weston_view *
1705 weston_compositor_pick_view(struct weston_compositor *compositor,
1706                             wl_fixed_t x, wl_fixed_t y,
1707                             wl_fixed_t *vx, wl_fixed_t *vy)
1708 {
1709         struct weston_view *view;
1710         wl_fixed_t view_x, view_y;
1711         int view_ix, view_iy;
1712         int ix = wl_fixed_to_int(x);
1713         int iy = wl_fixed_to_int(y);
1714
1715         wl_list_for_each(view, &compositor->view_list, link) {
1716                 if (!pixman_region32_contains_point(
1717                                 &view->transform.boundingbox, ix, iy, NULL))
1718                         continue;
1719
1720                 weston_view_from_global_fixed(view, x, y, &view_x, &view_y);
1721                 view_ix = wl_fixed_to_int(view_x);
1722                 view_iy = wl_fixed_to_int(view_y);
1723
1724                 if (!pixman_region32_contains_point(&view->surface->input,
1725                                                     view_ix, view_iy, NULL))
1726                         continue;
1727
1728                 if (view->geometry.scissor_enabled &&
1729                     !pixman_region32_contains_point(&view->geometry.scissor,
1730                                                     view_ix, view_iy, NULL))
1731                         continue;
1732
1733                 *vx = view_x;
1734                 *vy = view_y;
1735                 return view;
1736         }
1737
1738         *vx = wl_fixed_from_int(-1000000);
1739         *vy = wl_fixed_from_int(-1000000);
1740         return NULL;
1741 }
1742
1743 static void
1744 weston_compositor_repick(struct weston_compositor *compositor)
1745 {
1746         struct weston_seat *seat;
1747
1748         if (!compositor->session_active)
1749                 return;
1750
1751         wl_list_for_each(seat, &compositor->seat_list, link)
1752                 weston_seat_repick(seat);
1753 }
1754
1755 WL_EXPORT void
1756 weston_view_unmap(struct weston_view *view)
1757 {
1758         struct weston_seat *seat;
1759
1760         if (!weston_view_is_mapped(view))
1761                 return;
1762
1763         weston_view_damage_below(view);
1764         view->output = NULL;
1765         view->plane = NULL;
1766         view->is_mapped = false;
1767         weston_layer_entry_remove(&view->layer_link);
1768         wl_list_remove(&view->link);
1769         wl_list_init(&view->link);
1770         view->output_mask = 0;
1771         weston_surface_assign_output(view->surface);
1772
1773         if (weston_surface_is_mapped(view->surface))
1774                 return;
1775
1776         wl_list_for_each(seat, &view->surface->compositor->seat_list, link) {
1777                 struct weston_touch *touch = weston_seat_get_touch(seat);
1778                 struct weston_pointer *pointer = weston_seat_get_pointer(seat);
1779                 struct weston_keyboard *keyboard =
1780                         weston_seat_get_keyboard(seat);
1781
1782                 if (keyboard && keyboard->focus == view->surface)
1783                         weston_keyboard_set_focus(keyboard, NULL);
1784                 if (pointer && pointer->focus == view)
1785                         weston_pointer_clear_focus(pointer);
1786                 if (touch && touch->focus == view)
1787                         weston_touch_set_focus(touch, NULL);
1788         }
1789 }
1790
1791 WL_EXPORT void
1792 weston_surface_unmap(struct weston_surface *surface)
1793 {
1794         struct weston_view *view;
1795
1796         surface->is_mapped = false;
1797         wl_list_for_each(view, &surface->views, surface_link)
1798                 weston_view_unmap(view);
1799         surface->output = NULL;
1800 }
1801
1802 static void
1803 weston_surface_reset_pending_buffer(struct weston_surface *surface)
1804 {
1805         weston_surface_state_set_buffer(&surface->pending, NULL);
1806         surface->pending.sx = 0;
1807         surface->pending.sy = 0;
1808         surface->pending.newly_attached = 0;
1809         surface->pending.buffer_viewport.changed = 0;
1810 }
1811
1812 WL_EXPORT void
1813 weston_view_destroy(struct weston_view *view)
1814 {
1815         wl_signal_emit(&view->destroy_signal, view);
1816
1817         assert(wl_list_empty(&view->geometry.child_list));
1818
1819         if (weston_view_is_mapped(view)) {
1820                 weston_view_unmap(view);
1821                 weston_compositor_build_view_list(view->surface->compositor);
1822         }
1823
1824         wl_list_remove(&view->link);
1825         weston_layer_entry_remove(&view->layer_link);
1826
1827         pixman_region32_fini(&view->clip);
1828         pixman_region32_fini(&view->geometry.scissor);
1829         pixman_region32_fini(&view->transform.boundingbox);
1830         pixman_region32_fini(&view->transform.opaque);
1831
1832         weston_view_set_transform_parent(view, NULL);
1833
1834         wl_list_remove(&view->surface_link);
1835
1836         free(view);
1837 }
1838
1839 WL_EXPORT void
1840 weston_surface_destroy(struct weston_surface *surface)
1841 {
1842         struct weston_frame_callback *cb, *next;
1843         struct weston_view *ev, *nv;
1844         struct weston_pointer_constraint *constraint, *next_constraint;
1845
1846         if (--surface->ref_count > 0)
1847                 return;
1848
1849         assert(surface->resource == NULL);
1850
1851         wl_signal_emit(&surface->destroy_signal, surface);
1852
1853         assert(wl_list_empty(&surface->subsurface_list_pending));
1854         assert(wl_list_empty(&surface->subsurface_list));
1855
1856         wl_list_for_each_safe(ev, nv, &surface->views, surface_link)
1857                 weston_view_destroy(ev);
1858
1859         weston_surface_state_fini(&surface->pending);
1860
1861         weston_buffer_reference(&surface->buffer_ref, NULL);
1862
1863         pixman_region32_fini(&surface->damage);
1864         pixman_region32_fini(&surface->opaque);
1865         pixman_region32_fini(&surface->input);
1866
1867         wl_list_for_each_safe(cb, next, &surface->frame_callback_list, link)
1868                 wl_resource_destroy(cb->resource);
1869
1870         weston_presentation_feedback_discard_list(&surface->feedback_list);
1871
1872         wl_list_for_each_safe(constraint, next_constraint,
1873                               &surface->pointer_constraints,
1874                               link)
1875                 weston_pointer_constraint_destroy(constraint);
1876
1877         free(surface);
1878 }
1879
1880 static void
1881 destroy_surface(struct wl_resource *resource)
1882 {
1883         struct weston_surface *surface = wl_resource_get_user_data(resource);
1884
1885         assert(surface);
1886
1887         /* Set the resource to NULL, since we don't want to leave a
1888          * dangling pointer if the surface was refcounted and survives
1889          * the weston_surface_destroy() call. */
1890         surface->resource = NULL;
1891
1892         if (surface->viewport_resource)
1893                 wl_resource_set_user_data(surface->viewport_resource, NULL);
1894
1895         weston_surface_destroy(surface);
1896 }
1897
1898 static void
1899 weston_buffer_destroy_handler(struct wl_listener *listener, void *data)
1900 {
1901         struct weston_buffer *buffer =
1902                 container_of(listener, struct weston_buffer, destroy_listener);
1903
1904         wl_signal_emit(&buffer->destroy_signal, buffer);
1905         free(buffer);
1906 }
1907
1908 WL_EXPORT struct weston_buffer *
1909 weston_buffer_from_resource(struct wl_resource *resource)
1910 {
1911         struct weston_buffer *buffer;
1912         struct wl_listener *listener;
1913
1914         listener = wl_resource_get_destroy_listener(resource,
1915                                                     weston_buffer_destroy_handler);
1916
1917         if (listener)
1918                 return container_of(listener, struct weston_buffer,
1919                                     destroy_listener);
1920
1921         buffer = zalloc(sizeof *buffer);
1922         if (buffer == NULL)
1923                 return NULL;
1924
1925         buffer->resource = resource;
1926         wl_signal_init(&buffer->destroy_signal);
1927         buffer->destroy_listener.notify = weston_buffer_destroy_handler;
1928         buffer->y_inverted = 1;
1929         wl_resource_add_destroy_listener(resource, &buffer->destroy_listener);
1930
1931         return buffer;
1932 }
1933
1934 static void
1935 weston_buffer_reference_handle_destroy(struct wl_listener *listener,
1936                                        void *data)
1937 {
1938         struct weston_buffer_reference *ref =
1939                 container_of(listener, struct weston_buffer_reference,
1940                              destroy_listener);
1941
1942         assert((struct weston_buffer *)data == ref->buffer);
1943         ref->buffer = NULL;
1944 }
1945
1946 WL_EXPORT void
1947 weston_buffer_reference(struct weston_buffer_reference *ref,
1948                         struct weston_buffer *buffer)
1949 {
1950         if (ref->buffer && buffer != ref->buffer) {
1951                 ref->buffer->busy_count--;
1952                 if (ref->buffer->busy_count == 0) {
1953                         assert(wl_resource_get_client(ref->buffer->resource));
1954                         wl_resource_queue_event(ref->buffer->resource,
1955                                                 WL_BUFFER_RELEASE);
1956                 }
1957                 wl_list_remove(&ref->destroy_listener.link);
1958         }
1959
1960         if (buffer && buffer != ref->buffer) {
1961                 buffer->busy_count++;
1962                 wl_signal_add(&buffer->destroy_signal,
1963                               &ref->destroy_listener);
1964         }
1965
1966         ref->buffer = buffer;
1967         ref->destroy_listener.notify = weston_buffer_reference_handle_destroy;
1968 }
1969
1970 static void
1971 weston_surface_attach(struct weston_surface *surface,
1972                       struct weston_buffer *buffer)
1973 {
1974         weston_buffer_reference(&surface->buffer_ref, buffer);
1975
1976         if (!buffer) {
1977                 if (weston_surface_is_mapped(surface))
1978                         weston_surface_unmap(surface);
1979         }
1980
1981         surface->compositor->renderer->attach(surface, buffer);
1982
1983         weston_surface_calculate_size_from_buffer(surface);
1984         weston_presentation_feedback_discard_list(&surface->feedback_list);
1985 }
1986
1987 WL_EXPORT void
1988 weston_compositor_damage_all(struct weston_compositor *compositor)
1989 {
1990         struct weston_output *output;
1991
1992         wl_list_for_each(output, &compositor->output_list, link)
1993                 weston_output_damage(output);
1994 }
1995
1996 WL_EXPORT void
1997 weston_output_damage(struct weston_output *output)
1998 {
1999         struct weston_compositor *compositor = output->compositor;
2000
2001         pixman_region32_union(&compositor->primary_plane.damage,
2002                               &compositor->primary_plane.damage,
2003                               &output->region);
2004         weston_output_schedule_repaint(output);
2005 }
2006
2007 static void
2008 surface_flush_damage(struct weston_surface *surface)
2009 {
2010         if (surface->buffer_ref.buffer &&
2011             wl_shm_buffer_get(surface->buffer_ref.buffer->resource))
2012                 surface->compositor->renderer->flush_damage(surface);
2013
2014         if (weston_timeline_enabled_ &&
2015             pixman_region32_not_empty(&surface->damage))
2016                 TL_POINT("core_flush_damage", TLP_SURFACE(surface),
2017                          TLP_OUTPUT(surface->output), TLP_END);
2018
2019         pixman_region32_clear(&surface->damage);
2020 }
2021
2022 static void
2023 view_accumulate_damage(struct weston_view *view,
2024                        pixman_region32_t *opaque)
2025 {
2026         pixman_region32_t damage;
2027
2028         pixman_region32_init(&damage);
2029         if (view->transform.enabled) {
2030                 pixman_box32_t *extents;
2031
2032                 extents = pixman_region32_extents(&view->surface->damage);
2033                 view_compute_bbox(view, extents, &damage);
2034         } else {
2035                 pixman_region32_copy(&damage, &view->surface->damage);
2036                 pixman_region32_translate(&damage,
2037                                           view->geometry.x, view->geometry.y);
2038         }
2039
2040         pixman_region32_intersect(&damage, &damage,
2041                                   &view->transform.boundingbox);
2042         pixman_region32_subtract(&damage, &damage, opaque);
2043         pixman_region32_union(&view->plane->damage,
2044                               &view->plane->damage, &damage);
2045         pixman_region32_fini(&damage);
2046         pixman_region32_copy(&view->clip, opaque);
2047         pixman_region32_union(opaque, opaque, &view->transform.opaque);
2048 }
2049
2050 static void
2051 compositor_accumulate_damage(struct weston_compositor *ec)
2052 {
2053         struct weston_plane *plane;
2054         struct weston_view *ev;
2055         pixman_region32_t opaque, clip;
2056
2057         pixman_region32_init(&clip);
2058
2059         wl_list_for_each(plane, &ec->plane_list, link) {
2060                 pixman_region32_copy(&plane->clip, &clip);
2061
2062                 pixman_region32_init(&opaque);
2063
2064                 wl_list_for_each(ev, &ec->view_list, link) {
2065                         if (ev->plane != plane)
2066                                 continue;
2067
2068                         view_accumulate_damage(ev, &opaque);
2069                 }
2070
2071                 pixman_region32_union(&clip, &clip, &opaque);
2072                 pixman_region32_fini(&opaque);
2073         }
2074
2075         pixman_region32_fini(&clip);
2076
2077         wl_list_for_each(ev, &ec->view_list, link)
2078                 ev->surface->touched = false;
2079
2080         wl_list_for_each(ev, &ec->view_list, link) {
2081                 if (ev->surface->touched)
2082                         continue;
2083                 ev->surface->touched = true;
2084
2085                 surface_flush_damage(ev->surface);
2086
2087                 /* Both the renderer and the backend have seen the buffer
2088                  * by now. If renderer needs the buffer, it has its own
2089                  * reference set. If the backend wants to keep the buffer
2090                  * around for migrating the surface into a non-primary plane
2091                  * later, keep_buffer is true. Otherwise, drop the core
2092                  * reference now, and allow early buffer release. This enables
2093                  * clients to use single-buffering.
2094                  */
2095                 if (!ev->surface->keep_buffer)
2096                         weston_buffer_reference(&ev->surface->buffer_ref, NULL);
2097         }
2098 }
2099
2100 static void
2101 surface_stash_subsurface_views(struct weston_surface *surface)
2102 {
2103         struct weston_subsurface *sub;
2104
2105         wl_list_for_each(sub, &surface->subsurface_list, parent_link) {
2106                 if (sub->surface == surface)
2107                         continue;
2108
2109                 wl_list_insert_list(&sub->unused_views, &sub->surface->views);
2110                 wl_list_init(&sub->surface->views);
2111
2112                 surface_stash_subsurface_views(sub->surface);
2113         }
2114 }
2115
2116 static void
2117 surface_free_unused_subsurface_views(struct weston_surface *surface)
2118 {
2119         struct weston_subsurface *sub;
2120         struct weston_view *view, *nv;
2121
2122         wl_list_for_each(sub, &surface->subsurface_list, parent_link) {
2123                 if (sub->surface == surface)
2124                         continue;
2125
2126                 wl_list_for_each_safe(view, nv, &sub->unused_views, surface_link) {
2127                         weston_view_unmap (view);
2128                         weston_view_destroy(view);
2129                 }
2130
2131                 surface_free_unused_subsurface_views(sub->surface);
2132         }
2133 }
2134
2135 static void
2136 view_list_add_subsurface_view(struct weston_compositor *compositor,
2137                               struct weston_subsurface *sub,
2138                               struct weston_view *parent)
2139 {
2140         struct weston_subsurface *child;
2141         struct weston_view *view = NULL, *iv;
2142
2143         if (!weston_surface_is_mapped(sub->surface))
2144                 return;
2145
2146         wl_list_for_each(iv, &sub->unused_views, surface_link) {
2147                 if (iv->geometry.parent == parent) {
2148                         view = iv;
2149                         break;
2150                 }
2151         }
2152
2153         if (view) {
2154                 /* Put it back in the surface's list of views */
2155                 wl_list_remove(&view->surface_link);
2156                 wl_list_insert(&sub->surface->views, &view->surface_link);
2157         } else {
2158                 view = weston_view_create(sub->surface);
2159                 weston_view_set_position(view,
2160                                          sub->position.x,
2161                                          sub->position.y);
2162                 weston_view_set_transform_parent(view, parent);
2163         }
2164
2165         view->parent_view = parent;
2166         weston_view_update_transform(view);
2167         view->is_mapped = true;
2168
2169         if (wl_list_empty(&sub->surface->subsurface_list)) {
2170                 wl_list_insert(compositor->view_list.prev, &view->link);
2171                 return;
2172         }
2173
2174         wl_list_for_each(child, &sub->surface->subsurface_list, parent_link) {
2175                 if (child->surface == sub->surface)
2176                         wl_list_insert(compositor->view_list.prev, &view->link);
2177                 else
2178                         view_list_add_subsurface_view(compositor, child, view);
2179         }
2180 }
2181
2182 /* This recursively adds the sub-surfaces for a view, relying on the
2183  * sub-surface order. Thus, if a client restacks the sub-surfaces, that
2184  * change first happens to the sub-surface list, and then automatically
2185  * propagates here. See weston_surface_damage_subsurfaces() for how the
2186  * sub-surfaces receive damage when the client changes the state.
2187  */
2188 static void
2189 view_list_add(struct weston_compositor *compositor,
2190               struct weston_view *view)
2191 {
2192         struct weston_subsurface *sub;
2193
2194         weston_view_update_transform(view);
2195
2196         if (wl_list_empty(&view->surface->subsurface_list)) {
2197                 wl_list_insert(compositor->view_list.prev, &view->link);
2198                 return;
2199         }
2200
2201         wl_list_for_each(sub, &view->surface->subsurface_list, parent_link) {
2202                 if (sub->surface == view->surface)
2203                         wl_list_insert(compositor->view_list.prev, &view->link);
2204                 else
2205                         view_list_add_subsurface_view(compositor, sub, view);
2206         }
2207 }
2208
2209 static void
2210 weston_compositor_build_view_list(struct weston_compositor *compositor)
2211 {
2212         struct weston_view *view;
2213         struct weston_layer *layer;
2214
2215         wl_list_for_each(layer, &compositor->layer_list, link)
2216                 wl_list_for_each(view, &layer->view_list.link, layer_link.link)
2217                         surface_stash_subsurface_views(view->surface);
2218
2219         wl_list_init(&compositor->view_list);
2220         wl_list_for_each(layer, &compositor->layer_list, link) {
2221                 wl_list_for_each(view, &layer->view_list.link, layer_link.link) {
2222                         view_list_add(compositor, view);
2223                 }
2224         }
2225
2226         wl_list_for_each(layer, &compositor->layer_list, link)
2227                 wl_list_for_each(view, &layer->view_list.link, layer_link.link)
2228                         surface_free_unused_subsurface_views(view->surface);
2229 }
2230
2231 static void
2232 weston_output_take_feedback_list(struct weston_output *output,
2233                                  struct weston_surface *surface)
2234 {
2235         struct weston_view *view;
2236         struct weston_presentation_feedback *feedback;
2237         uint32_t flags = 0xffffffff;
2238
2239         if (wl_list_empty(&surface->feedback_list))
2240                 return;
2241
2242         /* All views must have the flag for the flag to survive. */
2243         wl_list_for_each(view, &surface->views, surface_link) {
2244                 /* ignore views that are not on this output at all */
2245                 if (view->output_mask & (1u << output->id))
2246                         flags &= view->psf_flags;
2247         }
2248
2249         wl_list_for_each(feedback, &surface->feedback_list, link)
2250                 feedback->psf_flags = flags;
2251
2252         wl_list_insert_list(&output->feedback_list, &surface->feedback_list);
2253         wl_list_init(&surface->feedback_list);
2254 }
2255
2256 static int
2257 weston_output_repaint(struct weston_output *output)
2258 {
2259         struct weston_compositor *ec = output->compositor;
2260         struct weston_view *ev;
2261         struct weston_animation *animation, *next;
2262         struct weston_frame_callback *cb, *cnext;
2263         struct wl_list frame_callback_list;
2264         pixman_region32_t output_damage;
2265         int r;
2266
2267         if (output->destroying)
2268                 return 0;
2269
2270         TL_POINT("core_repaint_begin", TLP_OUTPUT(output), TLP_END);
2271
2272         /* Rebuild the surface list and update surface transforms up front. */
2273         weston_compositor_build_view_list(ec);
2274
2275         if (output->assign_planes && !output->disable_planes) {
2276                 output->assign_planes(output);
2277         } else {
2278                 wl_list_for_each(ev, &ec->view_list, link) {
2279                         weston_view_move_to_plane(ev, &ec->primary_plane);
2280                         ev->psf_flags = 0;
2281                 }
2282         }
2283
2284         wl_list_init(&frame_callback_list);
2285         wl_list_for_each(ev, &ec->view_list, link) {
2286                 /* Note: This operation is safe to do multiple times on the
2287                  * same surface.
2288                  */
2289                 if (ev->surface->output == output) {
2290                         wl_list_insert_list(&frame_callback_list,
2291                                             &ev->surface->frame_callback_list);
2292                         wl_list_init(&ev->surface->frame_callback_list);
2293
2294                         weston_output_take_feedback_list(output, ev->surface);
2295                 }
2296         }
2297
2298         compositor_accumulate_damage(ec);
2299
2300         pixman_region32_init(&output_damage);
2301         pixman_region32_intersect(&output_damage,
2302                                   &ec->primary_plane.damage, &output->region);
2303         pixman_region32_subtract(&output_damage,
2304                                  &output_damage, &ec->primary_plane.clip);
2305
2306         if (output->dirty)
2307                 weston_output_update_matrix(output);
2308
2309         r = output->repaint(output, &output_damage);
2310
2311         pixman_region32_fini(&output_damage);
2312
2313         output->repaint_needed = 0;
2314
2315         weston_compositor_repick(ec);
2316
2317         wl_list_for_each_safe(cb, cnext, &frame_callback_list, link) {
2318                 wl_callback_send_done(cb->resource, output->frame_time);
2319                 wl_resource_destroy(cb->resource);
2320         }
2321
2322         wl_list_for_each_safe(animation, next, &output->animation_list, link) {
2323                 animation->frame_counter++;
2324                 animation->frame(animation, output, output->frame_time);
2325         }
2326
2327         TL_POINT("core_repaint_posted", TLP_OUTPUT(output), TLP_END);
2328
2329         return r;
2330 }
2331
2332 static void
2333 weston_output_schedule_repaint_reset(struct weston_output *output)
2334 {
2335         output->repaint_scheduled = 0;
2336         TL_POINT("core_repaint_exit_loop", TLP_OUTPUT(output), TLP_END);
2337 }
2338
2339 static int
2340 output_repaint_timer_handler(void *data)
2341 {
2342         struct weston_output *output = data;
2343         struct weston_compositor *compositor = output->compositor;
2344         int ret;
2345
2346         /* If we're sleeping, drop the repaint machinery entirely; we will
2347          * explicitly repaint all outputs when we come back. */
2348         if (compositor->state == WESTON_COMPOSITOR_SLEEPING ||
2349             compositor->state == WESTON_COMPOSITOR_OFFSCREEN)
2350                 goto err;
2351
2352         /* We don't actually need to repaint this output; drop it from
2353          * repaint until something causes damage. */
2354         if (!output->repaint_needed)
2355                 goto err;
2356
2357         /* If repaint fails, we aren't going to get weston_output_finish_frame
2358          * to trigger a new repaint, so drop it from repaint and hope
2359          * something schedules a successful repaint later. */
2360         ret = weston_output_repaint(output);
2361         if (ret != 0)
2362                 goto err;
2363
2364         return 0;
2365
2366 err:
2367         weston_output_schedule_repaint_reset(output);
2368         return 0;
2369 }
2370
2371 WL_EXPORT void
2372 weston_output_finish_frame(struct weston_output *output,
2373                            const struct timespec *stamp,
2374                            uint32_t presented_flags)
2375 {
2376         struct weston_compositor *compositor = output->compositor;
2377         int32_t refresh_nsec;
2378         struct timespec now;
2379         struct timespec next;
2380         struct timespec remain;
2381         int msec_rel = 0;
2382
2383         TL_POINT("core_repaint_finished", TLP_OUTPUT(output),
2384                  TLP_VBLANK(stamp), TLP_END);
2385
2386         assert(stamp || (presented_flags & WP_PRESENTATION_FEEDBACK_INVALID));
2387
2388         /* If we haven't been supplied any timestamp at all, we don't have a
2389          * timebase to work against, so any delay just wastes time. Push a
2390          * repaint as soon as possible so we can get on with it. */
2391         if (!stamp)
2392                 goto out;
2393
2394         refresh_nsec = millihz_to_nsec(output->current_mode->refresh);
2395         weston_presentation_feedback_present_list(&output->feedback_list,
2396                                                   output, refresh_nsec, stamp,
2397                                                   output->msc,
2398                                                   presented_flags);
2399
2400         output->frame_time = timespec_to_msec(stamp);
2401         weston_compositor_read_presentation_clock(compositor, &now);
2402
2403         timespec_add_nsec(&next, stamp, refresh_nsec);
2404         timespec_add_msec(&next, &next, -compositor->repaint_msec);
2405         timespec_sub(&remain, &next, &now);
2406         msec_rel = timespec_to_msec(&remain);
2407
2408         if (msec_rel < -1000 || msec_rel > 1000) {
2409                 static bool warned;
2410
2411                 if (!warned)
2412                         weston_log("Warning: computed repaint delay is "
2413                                    "insane: %d msec\n", msec_rel);
2414                 warned = true;
2415
2416                 msec_rel = 0;
2417         }
2418
2419         /* Called from restart_repaint_loop and restart happens already after
2420          * the deadline given by repaint_msec? In that case we delay until
2421          * the deadline of the next frame, to give clients a more predictable
2422          * timing of the repaint cycle to lock on. */
2423         if (presented_flags == WP_PRESENTATION_FEEDBACK_INVALID && msec_rel < 0)
2424                 msec_rel += refresh_nsec / 1000000;
2425
2426 out:
2427         if (msec_rel < 1)
2428                 output_repaint_timer_handler(output);
2429         else
2430                 wl_event_source_timer_update(output->repaint_timer, msec_rel);
2431 }
2432
2433 static void
2434 idle_repaint(void *data)
2435 {
2436         struct weston_output *output = data;
2437
2438         output->start_repaint_loop(output);
2439 }
2440
2441 WL_EXPORT void
2442 weston_layer_entry_insert(struct weston_layer_entry *list,
2443                           struct weston_layer_entry *entry)
2444 {
2445         wl_list_insert(&list->link, &entry->link);
2446         entry->layer = list->layer;
2447 }
2448
2449 WL_EXPORT void
2450 weston_layer_entry_remove(struct weston_layer_entry *entry)
2451 {
2452         wl_list_remove(&entry->link);
2453         wl_list_init(&entry->link);
2454         entry->layer = NULL;
2455 }
2456
2457
2458 /** Initialize the weston_layer struct.
2459  *
2460  * \param compositor The compositor instance
2461  * \param layer The layer to initialize
2462  */
2463 WL_EXPORT void
2464 weston_layer_init(struct weston_layer *layer,
2465                   struct weston_compositor *compositor)
2466 {
2467         layer->compositor = compositor;
2468         wl_list_init(&layer->link);
2469         wl_list_init(&layer->view_list.link);
2470         layer->view_list.layer = layer;
2471         weston_layer_set_mask_infinite(layer);
2472 }
2473
2474 /** Sets the position of the layer in the layer list. The layer will be placed
2475  * below any layer with the same position value, if any.
2476  * This function is safe to call if the layer is already on the list, but the
2477  * layer may be moved below other layers at the same position, if any.
2478  *
2479  * \param layer The layer to modify
2480  * \param position The position the layer will be placed at
2481  */
2482 WL_EXPORT void
2483 weston_layer_set_position(struct weston_layer *layer,
2484                           enum weston_layer_position position)
2485 {
2486         struct weston_layer *below;
2487
2488         wl_list_remove(&layer->link);
2489
2490         /* layer_list is ordered from top to bottom, the last layer being the
2491          * background with the smallest position value */
2492
2493         layer->position = position;
2494         wl_list_for_each_reverse(below, &layer->compositor->layer_list, link) {
2495                 if (below->position >= layer->position) {
2496                         wl_list_insert(&below->link, &layer->link);
2497                         return;
2498                 }
2499         }
2500         wl_list_insert(&layer->compositor->layer_list, &layer->link);
2501 }
2502
2503 /** Hide a layer by taking it off the layer list.
2504  * This function is safe to call if the layer is not on the list.
2505  *
2506  * \param layer The layer to hide
2507  */
2508 WL_EXPORT void
2509 weston_layer_unset_position(struct weston_layer *layer)
2510 {
2511         wl_list_remove(&layer->link);
2512         wl_list_init(&layer->link);
2513 }
2514
2515 WL_EXPORT void
2516 weston_layer_set_mask(struct weston_layer *layer,
2517                       int x, int y, int width, int height)
2518 {
2519         struct weston_view *view;
2520
2521         layer->mask.x1 = x;
2522         layer->mask.x2 = x + width;
2523         layer->mask.y1 = y;
2524         layer->mask.y2 = y + height;
2525
2526         wl_list_for_each(view, &layer->view_list.link, layer_link.link) {
2527                 weston_view_geometry_dirty(view);
2528         }
2529 }
2530
2531 WL_EXPORT void
2532 weston_layer_set_mask_infinite(struct weston_layer *layer)
2533 {
2534         weston_layer_set_mask(layer, INT32_MIN, INT32_MIN,
2535                                      UINT32_MAX, UINT32_MAX);
2536 }
2537
2538 WL_EXPORT void
2539 weston_output_schedule_repaint(struct weston_output *output)
2540 {
2541         struct weston_compositor *compositor = output->compositor;
2542         struct wl_event_loop *loop;
2543
2544         if (compositor->state == WESTON_COMPOSITOR_SLEEPING ||
2545             compositor->state == WESTON_COMPOSITOR_OFFSCREEN)
2546                 return;
2547
2548         if (!output->repaint_needed)
2549                 TL_POINT("core_repaint_req", TLP_OUTPUT(output), TLP_END);
2550
2551         loop = wl_display_get_event_loop(compositor->wl_display);
2552         output->repaint_needed = 1;
2553         if (output->repaint_scheduled)
2554                 return;
2555
2556         wl_event_loop_add_idle(loop, idle_repaint, output);
2557         output->repaint_scheduled = 1;
2558         TL_POINT("core_repaint_enter_loop", TLP_OUTPUT(output), TLP_END);
2559 }
2560
2561 WL_EXPORT void
2562 weston_compositor_schedule_repaint(struct weston_compositor *compositor)
2563 {
2564         struct weston_output *output;
2565
2566         wl_list_for_each(output, &compositor->output_list, link)
2567                 weston_output_schedule_repaint(output);
2568 }
2569
2570 static void
2571 surface_destroy(struct wl_client *client, struct wl_resource *resource)
2572 {
2573         wl_resource_destroy(resource);
2574 }
2575
2576 static void
2577 surface_attach(struct wl_client *client,
2578                struct wl_resource *resource,
2579                struct wl_resource *buffer_resource, int32_t sx, int32_t sy)
2580 {
2581         struct weston_surface *surface = wl_resource_get_user_data(resource);
2582         struct weston_buffer *buffer = NULL;
2583
2584         if (buffer_resource) {
2585                 buffer = weston_buffer_from_resource(buffer_resource);
2586                 if (buffer == NULL) {
2587                         wl_client_post_no_memory(client);
2588                         return;
2589                 }
2590         }
2591
2592         /* Attach, attach, without commit in between does not send
2593          * wl_buffer.release. */
2594         weston_surface_state_set_buffer(&surface->pending, buffer);
2595
2596         surface->pending.sx = sx;
2597         surface->pending.sy = sy;
2598         surface->pending.newly_attached = 1;
2599 }
2600
2601 static void
2602 surface_damage(struct wl_client *client,
2603                struct wl_resource *resource,
2604                int32_t x, int32_t y, int32_t width, int32_t height)
2605 {
2606         struct weston_surface *surface = wl_resource_get_user_data(resource);
2607
2608         if (width <= 0 || height <= 0)
2609                 return;
2610
2611         pixman_region32_union_rect(&surface->pending.damage_surface,
2612                                    &surface->pending.damage_surface,
2613                                    x, y, width, height);
2614 }
2615
2616 static void
2617 surface_damage_buffer(struct wl_client *client,
2618                       struct wl_resource *resource,
2619                       int32_t x, int32_t y, int32_t width, int32_t height)
2620 {
2621         struct weston_surface *surface = wl_resource_get_user_data(resource);
2622
2623         if (width <= 0 || height <= 0)
2624                 return;
2625
2626         pixman_region32_union_rect(&surface->pending.damage_buffer,
2627                                    &surface->pending.damage_buffer,
2628                                    x, y, width, height);
2629 }
2630
2631 static void
2632 destroy_frame_callback(struct wl_resource *resource)
2633 {
2634         struct weston_frame_callback *cb = wl_resource_get_user_data(resource);
2635
2636         wl_list_remove(&cb->link);
2637         free(cb);
2638 }
2639
2640 static void
2641 surface_frame(struct wl_client *client,
2642               struct wl_resource *resource, uint32_t callback)
2643 {
2644         struct weston_frame_callback *cb;
2645         struct weston_surface *surface = wl_resource_get_user_data(resource);
2646
2647         cb = malloc(sizeof *cb);
2648         if (cb == NULL) {
2649                 wl_resource_post_no_memory(resource);
2650                 return;
2651         }
2652
2653         cb->resource = wl_resource_create(client, &wl_callback_interface, 1,
2654                                           callback);
2655         if (cb->resource == NULL) {
2656                 free(cb);
2657                 wl_resource_post_no_memory(resource);
2658                 return;
2659         }
2660
2661         wl_resource_set_implementation(cb->resource, NULL, cb,
2662                                        destroy_frame_callback);
2663
2664         wl_list_insert(surface->pending.frame_callback_list.prev, &cb->link);
2665 }
2666
2667 static void
2668 surface_set_opaque_region(struct wl_client *client,
2669                           struct wl_resource *resource,
2670                           struct wl_resource *region_resource)
2671 {
2672         struct weston_surface *surface = wl_resource_get_user_data(resource);
2673         struct weston_region *region;
2674
2675         if (region_resource) {
2676                 region = wl_resource_get_user_data(region_resource);
2677                 pixman_region32_copy(&surface->pending.opaque,
2678                                      &region->region);
2679         } else {
2680                 pixman_region32_clear(&surface->pending.opaque);
2681         }
2682 }
2683
2684 static void
2685 surface_set_input_region(struct wl_client *client,
2686                          struct wl_resource *resource,
2687                          struct wl_resource *region_resource)
2688 {
2689         struct weston_surface *surface = wl_resource_get_user_data(resource);
2690         struct weston_region *region;
2691
2692         if (region_resource) {
2693                 region = wl_resource_get_user_data(region_resource);
2694                 pixman_region32_copy(&surface->pending.input,
2695                                      &region->region);
2696         } else {
2697                 pixman_region32_fini(&surface->pending.input);
2698                 region_init_infinite(&surface->pending.input);
2699         }
2700 }
2701
2702 /* Cause damage to this sub-surface and all its children.
2703  *
2704  * This is useful when there are state changes that need an implicit
2705  * damage, e.g. a z-order change.
2706  */
2707 static void
2708 weston_surface_damage_subsurfaces(struct weston_subsurface *sub)
2709 {
2710         struct weston_subsurface *child;
2711
2712         weston_surface_damage(sub->surface);
2713         sub->reordered = false;
2714
2715         wl_list_for_each(child, &sub->surface->subsurface_list, parent_link)
2716                 if (child != sub)
2717                         weston_surface_damage_subsurfaces(child);
2718 }
2719
2720 static void
2721 weston_surface_commit_subsurface_order(struct weston_surface *surface)
2722 {
2723         struct weston_subsurface *sub;
2724
2725         wl_list_for_each_reverse(sub, &surface->subsurface_list_pending,
2726                                  parent_link_pending) {
2727                 wl_list_remove(&sub->parent_link);
2728                 wl_list_insert(&surface->subsurface_list, &sub->parent_link);
2729
2730                 if (sub->reordered)
2731                         weston_surface_damage_subsurfaces(sub);
2732         }
2733 }
2734
2735 static void
2736 weston_surface_build_buffer_matrix(const struct weston_surface *surface,
2737                                    struct weston_matrix *matrix)
2738 {
2739         const struct weston_buffer_viewport *vp = &surface->buffer_viewport;
2740         double src_width, src_height, dest_width, dest_height;
2741
2742         weston_matrix_init(matrix);
2743
2744         if (vp->buffer.src_width == wl_fixed_from_int(-1)) {
2745                 src_width = surface->width_from_buffer;
2746                 src_height = surface->height_from_buffer;
2747         } else {
2748                 src_width = wl_fixed_to_double(vp->buffer.src_width);
2749                 src_height = wl_fixed_to_double(vp->buffer.src_height);
2750         }
2751
2752         if (vp->surface.width == -1) {
2753                 dest_width = src_width;
2754                 dest_height = src_height;
2755         } else {
2756                 dest_width = vp->surface.width;
2757                 dest_height = vp->surface.height;
2758         }
2759
2760         if (src_width != dest_width || src_height != dest_height)
2761                 weston_matrix_scale(matrix,
2762                                     src_width / dest_width,
2763                                     src_height / dest_height, 1);
2764
2765         if (vp->buffer.src_width != wl_fixed_from_int(-1))
2766                 weston_matrix_translate(matrix,
2767                                         wl_fixed_to_double(vp->buffer.src_x),
2768                                         wl_fixed_to_double(vp->buffer.src_y),
2769                                         0);
2770
2771         switch (vp->buffer.transform) {
2772         case WL_OUTPUT_TRANSFORM_FLIPPED:
2773         case WL_OUTPUT_TRANSFORM_FLIPPED_90:
2774         case WL_OUTPUT_TRANSFORM_FLIPPED_180:
2775         case WL_OUTPUT_TRANSFORM_FLIPPED_270:
2776                 weston_matrix_scale(matrix, -1, 1, 1);
2777                 weston_matrix_translate(matrix,
2778                                         surface->width_from_buffer, 0, 0);
2779                 break;
2780         }
2781
2782         switch (vp->buffer.transform) {
2783         default:
2784         case WL_OUTPUT_TRANSFORM_NORMAL:
2785         case WL_OUTPUT_TRANSFORM_FLIPPED:
2786                 break;
2787         case WL_OUTPUT_TRANSFORM_90:
2788         case WL_OUTPUT_TRANSFORM_FLIPPED_90:
2789                 weston_matrix_rotate_xy(matrix, 0, 1);
2790                 weston_matrix_translate(matrix,
2791                                         surface->height_from_buffer, 0, 0);
2792                 break;
2793         case WL_OUTPUT_TRANSFORM_180:
2794         case WL_OUTPUT_TRANSFORM_FLIPPED_180:
2795                 weston_matrix_rotate_xy(matrix, -1, 0);
2796                 weston_matrix_translate(matrix,
2797                                         surface->width_from_buffer,
2798                                         surface->height_from_buffer, 0);
2799                 break;
2800         case WL_OUTPUT_TRANSFORM_270:
2801         case WL_OUTPUT_TRANSFORM_FLIPPED_270:
2802                 weston_matrix_rotate_xy(matrix, 0, -1);
2803                 weston_matrix_translate(matrix,
2804                                         0, surface->width_from_buffer, 0);
2805                 break;
2806         }
2807
2808         weston_matrix_scale(matrix, vp->buffer.scale, vp->buffer.scale, 1);
2809 }
2810
2811 /**
2812  * Compute a + b > c while being safe to overflows.
2813  */
2814 static bool
2815 fixed_sum_gt(wl_fixed_t a, wl_fixed_t b, wl_fixed_t c)
2816 {
2817         return (int64_t)a + (int64_t)b > (int64_t)c;
2818 }
2819
2820 static bool
2821 weston_surface_is_pending_viewport_source_valid(
2822         const struct weston_surface *surface)
2823 {
2824         const struct weston_surface_state *pend = &surface->pending;
2825         const struct weston_buffer_viewport *vp = &pend->buffer_viewport;
2826         int width_from_buffer = 0;
2827         int height_from_buffer = 0;
2828         wl_fixed_t w;
2829         wl_fixed_t h;
2830
2831         /* If viewport source rect is not set, it is always ok. */
2832         if (vp->buffer.src_width == wl_fixed_from_int(-1))
2833                 return true;
2834
2835         if (pend->newly_attached) {
2836                 if (pend->buffer) {
2837                         convert_size_by_transform_scale(&width_from_buffer,
2838                                                         &height_from_buffer,
2839                                                         pend->buffer->width,
2840                                                         pend->buffer->height,
2841                                                         vp->buffer.transform,
2842                                                         vp->buffer.scale);
2843                 } else {
2844                         /* No buffer: viewport is irrelevant. */
2845                         return true;
2846                 }
2847         } else {
2848                 width_from_buffer = surface->width_from_buffer;
2849                 height_from_buffer = surface->height_from_buffer;
2850         }
2851
2852         assert((width_from_buffer == 0) == (height_from_buffer == 0));
2853         assert(width_from_buffer >= 0 && height_from_buffer >= 0);
2854
2855         /* No buffer: viewport is irrelevant. */
2856         if (width_from_buffer == 0 || height_from_buffer == 0)
2857                 return true;
2858
2859         /* overflow checks for wl_fixed_from_int() */
2860         if (width_from_buffer > wl_fixed_to_int(INT32_MAX))
2861                 return false;
2862         if (height_from_buffer > wl_fixed_to_int(INT32_MAX))
2863                 return false;
2864
2865         w = wl_fixed_from_int(width_from_buffer);
2866         h = wl_fixed_from_int(height_from_buffer);
2867
2868         if (fixed_sum_gt(vp->buffer.src_x, vp->buffer.src_width, w))
2869                 return false;
2870         if (fixed_sum_gt(vp->buffer.src_y, vp->buffer.src_height, h))
2871                 return false;
2872
2873         return true;
2874 }
2875
2876 static bool
2877 fixed_is_integer(wl_fixed_t v)
2878 {
2879         return (v & 0xff) == 0;
2880 }
2881
2882 static bool
2883 weston_surface_is_pending_viewport_dst_size_int(
2884         const struct weston_surface *surface)
2885 {
2886         const struct weston_buffer_viewport *vp =
2887                 &surface->pending.buffer_viewport;
2888
2889         if (vp->surface.width != -1) {
2890                 assert(vp->surface.width > 0 && vp->surface.height > 0);
2891                 return true;
2892         }
2893
2894         return fixed_is_integer(vp->buffer.src_width) &&
2895                fixed_is_integer(vp->buffer.src_height);
2896 }
2897
2898 /* Translate pending damage in buffer co-ordinates to surface
2899  * co-ordinates and union it with a pixman_region32_t.
2900  * This should only be called after the buffer is attached.
2901  */
2902 static void
2903 apply_damage_buffer(pixman_region32_t *dest,
2904                     struct weston_surface *surface,
2905                     struct weston_surface_state *state)
2906 {
2907         struct weston_buffer *buffer = surface->buffer_ref.buffer;
2908
2909         /* wl_surface.damage_buffer needs to be clipped to the buffer,
2910          * translated into surface co-ordinates and unioned with
2911          * any other surface damage.
2912          * None of this makes sense if there is no buffer though.
2913          */
2914         if (buffer && pixman_region32_not_empty(&state->damage_buffer)) {
2915                 pixman_region32_t buffer_damage;
2916
2917                 pixman_region32_intersect_rect(&state->damage_buffer,
2918                                                &state->damage_buffer,
2919                                                0, 0, buffer->width,
2920                                                buffer->height);
2921                 pixman_region32_init(&buffer_damage);
2922                 weston_matrix_transform_region(&buffer_damage,
2923                                                &surface->buffer_to_surface_matrix,
2924                                                &state->damage_buffer);
2925                 pixman_region32_union(dest, dest, &buffer_damage);
2926                 pixman_region32_fini(&buffer_damage);
2927         }
2928         /* We should clear this on commit even if there was no buffer */
2929         pixman_region32_clear(&state->damage_buffer);
2930 }
2931
2932 static void
2933 weston_surface_commit_state(struct weston_surface *surface,
2934                             struct weston_surface_state *state)
2935 {
2936         struct weston_view *view;
2937         pixman_region32_t opaque;
2938
2939         /* wl_surface.set_buffer_transform */
2940         /* wl_surface.set_buffer_scale */
2941         /* wp_viewport.set_source */
2942         /* wp_viewport.set_destination */
2943         surface->buffer_viewport = state->buffer_viewport;
2944
2945         /* wl_surface.attach */
2946         if (state->newly_attached)
2947                 weston_surface_attach(surface, state->buffer);
2948         weston_surface_state_set_buffer(state, NULL);
2949
2950         weston_surface_build_buffer_matrix(surface,
2951                                            &surface->surface_to_buffer_matrix);
2952         weston_matrix_invert(&surface->buffer_to_surface_matrix,
2953                              &surface->surface_to_buffer_matrix);
2954
2955         if (state->newly_attached || state->buffer_viewport.changed) {
2956                 weston_surface_update_size(surface);
2957                 if (surface->committed)
2958                         surface->committed(surface, state->sx, state->sy);
2959         }
2960
2961         state->sx = 0;
2962         state->sy = 0;
2963         state->newly_attached = 0;
2964         state->buffer_viewport.changed = 0;
2965
2966         /* wl_surface.damage and wl_surface.damage_buffer */
2967         if (weston_timeline_enabled_ &&
2968             (pixman_region32_not_empty(&state->damage_surface) ||
2969              pixman_region32_not_empty(&state->damage_buffer)))
2970                 TL_POINT("core_commit_damage", TLP_SURFACE(surface), TLP_END);
2971
2972         pixman_region32_union(&surface->damage, &surface->damage,
2973                               &state->damage_surface);
2974
2975         apply_damage_buffer(&surface->damage, surface, state);
2976
2977         pixman_region32_intersect_rect(&surface->damage, &surface->damage,
2978                                        0, 0, surface->width, surface->height);
2979         pixman_region32_clear(&state->damage_surface);
2980
2981         /* wl_surface.set_opaque_region */
2982         pixman_region32_init(&opaque);
2983         pixman_region32_intersect_rect(&opaque, &state->opaque,
2984                                        0, 0, surface->width, surface->height);
2985
2986         if (!pixman_region32_equal(&opaque, &surface->opaque)) {
2987                 pixman_region32_copy(&surface->opaque, &opaque);
2988                 wl_list_for_each(view, &surface->views, surface_link)
2989                         weston_view_geometry_dirty(view);
2990         }
2991
2992         pixman_region32_fini(&opaque);
2993
2994         /* wl_surface.set_input_region */
2995         pixman_region32_intersect_rect(&surface->input, &state->input,
2996                                        0, 0, surface->width, surface->height);
2997
2998         /* wl_surface.frame */
2999         wl_list_insert_list(&surface->frame_callback_list,
3000                             &state->frame_callback_list);
3001         wl_list_init(&state->frame_callback_list);
3002
3003         /* XXX:
3004          * What should happen with a feedback request, if there
3005          * is no wl_buffer attached for this commit?
3006          */
3007
3008         /* presentation.feedback */
3009         wl_list_insert_list(&surface->feedback_list,
3010                             &state->feedback_list);
3011         wl_list_init(&state->feedback_list);
3012
3013         wl_signal_emit(&surface->commit_signal, surface);
3014 }
3015
3016 static void
3017 weston_surface_commit(struct weston_surface *surface)
3018 {
3019         weston_surface_commit_state(surface, &surface->pending);
3020
3021         weston_surface_commit_subsurface_order(surface);
3022
3023         weston_surface_schedule_repaint(surface);
3024 }
3025
3026 static void
3027 weston_subsurface_commit(struct weston_subsurface *sub);
3028
3029 static void
3030 weston_subsurface_parent_commit(struct weston_subsurface *sub,
3031                                 int parent_is_synchronized);
3032
3033 static void
3034 surface_commit(struct wl_client *client, struct wl_resource *resource)
3035 {
3036         struct weston_surface *surface = wl_resource_get_user_data(resource);
3037         struct weston_subsurface *sub = weston_surface_to_subsurface(surface);
3038
3039         if (!weston_surface_is_pending_viewport_source_valid(surface)) {
3040                 assert(surface->viewport_resource);
3041
3042                 wl_resource_post_error(surface->viewport_resource,
3043                         WP_VIEWPORT_ERROR_OUT_OF_BUFFER,
3044                         "wl_surface@%d has viewport source outside buffer",
3045                         wl_resource_get_id(resource));
3046                 return;
3047         }
3048
3049         if (!weston_surface_is_pending_viewport_dst_size_int(surface)) {
3050                 assert(surface->viewport_resource);
3051
3052                 wl_resource_post_error(surface->viewport_resource,
3053                         WP_VIEWPORT_ERROR_BAD_SIZE,
3054                         "wl_surface@%d viewport dst size not integer",
3055                         wl_resource_get_id(resource));
3056                 return;
3057         }
3058
3059         if (sub) {
3060                 weston_subsurface_commit(sub);
3061                 return;
3062         }
3063
3064         weston_surface_commit(surface);
3065
3066         wl_list_for_each(sub, &surface->subsurface_list, parent_link) {
3067                 if (sub->surface != surface)
3068                         weston_subsurface_parent_commit(sub, 0);
3069         }
3070 }
3071
3072 static void
3073 surface_set_buffer_transform(struct wl_client *client,
3074                              struct wl_resource *resource, int transform)
3075 {
3076         struct weston_surface *surface = wl_resource_get_user_data(resource);
3077
3078         /* if wl_output.transform grows more members this will need to be updated. */
3079         if (transform < 0 ||
3080             transform > WL_OUTPUT_TRANSFORM_FLIPPED_270) {
3081                 wl_resource_post_error(resource,
3082                         WL_SURFACE_ERROR_INVALID_TRANSFORM,
3083                         "buffer transform must be a valid transform "
3084                         "('%d' specified)", transform);
3085                 return;
3086         }
3087
3088         surface->pending.buffer_viewport.buffer.transform = transform;
3089         surface->pending.buffer_viewport.changed = 1;
3090 }
3091
3092 static void
3093 surface_set_buffer_scale(struct wl_client *client,
3094                          struct wl_resource *resource,
3095                          int32_t scale)
3096 {
3097         struct weston_surface *surface = wl_resource_get_user_data(resource);
3098
3099         if (scale < 1) {
3100                 wl_resource_post_error(resource,
3101                         WL_SURFACE_ERROR_INVALID_SCALE,
3102                         "buffer scale must be at least one "
3103                         "('%d' specified)", scale);
3104                 return;
3105         }
3106
3107         surface->pending.buffer_viewport.buffer.scale = scale;
3108         surface->pending.buffer_viewport.changed = 1;
3109 }
3110
3111 static const struct wl_surface_interface surface_interface = {
3112         surface_destroy,
3113         surface_attach,
3114         surface_damage,
3115         surface_frame,
3116         surface_set_opaque_region,
3117         surface_set_input_region,
3118         surface_commit,
3119         surface_set_buffer_transform,
3120         surface_set_buffer_scale,
3121         surface_damage_buffer
3122 };
3123
3124 static void
3125 compositor_create_surface(struct wl_client *client,
3126                           struct wl_resource *resource, uint32_t id)
3127 {
3128         struct weston_compositor *ec = wl_resource_get_user_data(resource);
3129         struct weston_surface *surface;
3130
3131         surface = weston_surface_create(ec);
3132         if (surface == NULL) {
3133                 wl_resource_post_no_memory(resource);
3134                 return;
3135         }
3136
3137         surface->resource =
3138                 wl_resource_create(client, &wl_surface_interface,
3139                                    wl_resource_get_version(resource), id);
3140         if (surface->resource == NULL) {
3141                 weston_surface_destroy(surface);
3142                 wl_resource_post_no_memory(resource);
3143                 return;
3144         }
3145         wl_resource_set_implementation(surface->resource, &surface_interface,
3146                                        surface, destroy_surface);
3147
3148         wl_signal_emit(&ec->create_surface_signal, surface);
3149 }
3150
3151 static void
3152 destroy_region(struct wl_resource *resource)
3153 {
3154         struct weston_region *region = wl_resource_get_user_data(resource);
3155
3156         pixman_region32_fini(&region->region);
3157         free(region);
3158 }
3159
3160 static void
3161 region_destroy(struct wl_client *client, struct wl_resource *resource)
3162 {
3163         wl_resource_destroy(resource);
3164 }
3165
3166 static void
3167 region_add(struct wl_client *client, struct wl_resource *resource,
3168            int32_t x, int32_t y, int32_t width, int32_t height)
3169 {
3170         struct weston_region *region = wl_resource_get_user_data(resource);
3171
3172         pixman_region32_union_rect(&region->region, &region->region,
3173                                    x, y, width, height);
3174 }
3175
3176 static void
3177 region_subtract(struct wl_client *client, struct wl_resource *resource,
3178                 int32_t x, int32_t y, int32_t width, int32_t height)
3179 {
3180         struct weston_region *region = wl_resource_get_user_data(resource);
3181         pixman_region32_t rect;
3182
3183         pixman_region32_init_rect(&rect, x, y, width, height);
3184         pixman_region32_subtract(&region->region, &region->region, &rect);
3185         pixman_region32_fini(&rect);
3186 }
3187
3188 static const struct wl_region_interface region_interface = {
3189         region_destroy,
3190         region_add,
3191         region_subtract
3192 };
3193
3194 static void
3195 compositor_create_region(struct wl_client *client,
3196                          struct wl_resource *resource, uint32_t id)
3197 {
3198         struct weston_region *region;
3199
3200         region = malloc(sizeof *region);
3201         if (region == NULL) {
3202                 wl_resource_post_no_memory(resource);
3203                 return;
3204         }
3205
3206         pixman_region32_init(&region->region);
3207
3208         region->resource =
3209                 wl_resource_create(client, &wl_region_interface, 1, id);
3210         if (region->resource == NULL) {
3211                 free(region);
3212                 wl_resource_post_no_memory(resource);
3213                 return;
3214         }
3215         wl_resource_set_implementation(region->resource, &region_interface,
3216                                        region, destroy_region);
3217 }
3218
3219 static const struct wl_compositor_interface compositor_interface = {
3220         compositor_create_surface,
3221         compositor_create_region
3222 };
3223
3224 static void
3225 weston_subsurface_commit_from_cache(struct weston_subsurface *sub)
3226 {
3227         struct weston_surface *surface = sub->surface;
3228
3229         weston_surface_commit_state(surface, &sub->cached);
3230         weston_buffer_reference(&sub->cached_buffer_ref, NULL);
3231
3232         weston_surface_commit_subsurface_order(surface);
3233
3234         weston_surface_schedule_repaint(surface);
3235
3236         sub->has_cached_data = 0;
3237 }
3238
3239 static void
3240 weston_subsurface_commit_to_cache(struct weston_subsurface *sub)
3241 {
3242         struct weston_surface *surface = sub->surface;
3243
3244         /*
3245          * If this commit would cause the surface to move by the
3246          * attach(dx, dy) parameters, the old damage region must be
3247          * translated to correspond to the new surface coordinate system
3248          * origin.
3249          */
3250         pixman_region32_translate(&sub->cached.damage_surface,
3251                                   -surface->pending.sx, -surface->pending.sy);
3252         pixman_region32_union(&sub->cached.damage_surface,
3253                               &sub->cached.damage_surface,
3254                               &surface->pending.damage_surface);
3255         pixman_region32_clear(&surface->pending.damage_surface);
3256
3257         if (surface->pending.newly_attached) {
3258                 sub->cached.newly_attached = 1;
3259                 weston_surface_state_set_buffer(&sub->cached,
3260                                                 surface->pending.buffer);
3261                 weston_buffer_reference(&sub->cached_buffer_ref,
3262                                         surface->pending.buffer);
3263                 weston_presentation_feedback_discard_list(
3264                                         &sub->cached.feedback_list);
3265         }
3266         sub->cached.sx += surface->pending.sx;
3267         sub->cached.sy += surface->pending.sy;
3268
3269         apply_damage_buffer(&sub->cached.damage_surface, surface, &surface->pending);
3270
3271         sub->cached.buffer_viewport.changed |=
3272                 surface->pending.buffer_viewport.changed;
3273         sub->cached.buffer_viewport.buffer =
3274                 surface->pending.buffer_viewport.buffer;
3275         sub->cached.buffer_viewport.surface =
3276                 surface->pending.buffer_viewport.surface;
3277
3278         weston_surface_reset_pending_buffer(surface);
3279
3280         pixman_region32_copy(&sub->cached.opaque, &surface->pending.opaque);
3281
3282         pixman_region32_copy(&sub->cached.input, &surface->pending.input);
3283
3284         wl_list_insert_list(&sub->cached.frame_callback_list,
3285                             &surface->pending.frame_callback_list);
3286         wl_list_init(&surface->pending.frame_callback_list);
3287
3288         wl_list_insert_list(&sub->cached.feedback_list,
3289                             &surface->pending.feedback_list);
3290         wl_list_init(&surface->pending.feedback_list);
3291
3292         sub->has_cached_data = 1;
3293 }
3294
3295 static bool
3296 weston_subsurface_is_synchronized(struct weston_subsurface *sub)
3297 {
3298         while (sub) {
3299                 if (sub->synchronized)
3300                         return true;
3301
3302                 if (!sub->parent)
3303                         return false;
3304
3305                 sub = weston_surface_to_subsurface(sub->parent);
3306         }
3307
3308         return false;
3309 }
3310
3311 static void
3312 weston_subsurface_commit(struct weston_subsurface *sub)
3313 {
3314         struct weston_surface *surface = sub->surface;
3315         struct weston_subsurface *tmp;
3316
3317         /* Recursive check for effectively synchronized. */
3318         if (weston_subsurface_is_synchronized(sub)) {
3319                 weston_subsurface_commit_to_cache(sub);
3320         } else {
3321                 if (sub->has_cached_data) {
3322                         /* flush accumulated state from cache */
3323                         weston_subsurface_commit_to_cache(sub);
3324                         weston_subsurface_commit_from_cache(sub);
3325                 } else {
3326                         weston_surface_commit(surface);
3327                 }
3328
3329                 wl_list_for_each(tmp, &surface->subsurface_list, parent_link) {
3330                         if (tmp->surface != surface)
3331                                 weston_subsurface_parent_commit(tmp, 0);
3332                 }
3333         }
3334 }
3335
3336 static void
3337 weston_subsurface_synchronized_commit(struct weston_subsurface *sub)
3338 {
3339         struct weston_surface *surface = sub->surface;
3340         struct weston_subsurface *tmp;
3341
3342         /* From now on, commit_from_cache the whole sub-tree, regardless of
3343          * the synchronized mode of each child. This sub-surface or some
3344          * of its ancestors were synchronized, so we are synchronized
3345          * all the way down.
3346          */
3347
3348         if (sub->has_cached_data)
3349                 weston_subsurface_commit_from_cache(sub);
3350
3351         wl_list_for_each(tmp, &surface->subsurface_list, parent_link) {
3352                 if (tmp->surface != surface)
3353                         weston_subsurface_parent_commit(tmp, 1);
3354         }
3355 }
3356
3357 static void
3358 weston_subsurface_parent_commit(struct weston_subsurface *sub,
3359                                 int parent_is_synchronized)
3360 {
3361         struct weston_view *view;
3362         if (sub->position.set) {
3363                 wl_list_for_each(view, &sub->surface->views, surface_link)
3364                         weston_view_set_position(view,
3365                                                  sub->position.x,
3366                                                  sub->position.y);
3367
3368                 sub->position.set = 0;
3369         }
3370
3371         if (parent_is_synchronized || sub->synchronized)
3372                 weston_subsurface_synchronized_commit(sub);
3373 }
3374
3375 static int
3376 subsurface_get_label(struct weston_surface *surface, char *buf, size_t len)
3377 {
3378         return snprintf(buf, len, "sub-surface");
3379 }
3380
3381 static void
3382 subsurface_committed(struct weston_surface *surface, int32_t dx, int32_t dy)
3383 {
3384         struct weston_view *view;
3385
3386         wl_list_for_each(view, &surface->views, surface_link)
3387                 weston_view_set_position(view,
3388                                          view->geometry.x + dx,
3389                                          view->geometry.y + dy);
3390
3391         /* No need to check parent mappedness, because if parent is not
3392          * mapped, parent is not in a visible layer, so this sub-surface
3393          * will not be drawn either.
3394          */
3395
3396         if (!weston_surface_is_mapped(surface)) {
3397                 surface->is_mapped = true;
3398
3399                 /* Cannot call weston_view_update_transform(),
3400                  * because that would call it also for the parent surface,
3401                  * which might not be mapped yet. That would lead to
3402                  * inconsistent state, where the window could never be
3403                  * mapped.
3404                  *
3405                  * Instead just force the is_mapped flag on, to make
3406                  * weston_surface_is_mapped() return true, so that when the
3407                  * parent surface does get mapped, this one will get
3408                  * included, too. See view_list_add().
3409                  */
3410         }
3411 }
3412
3413 static struct weston_subsurface *
3414 weston_surface_to_subsurface(struct weston_surface *surface)
3415 {
3416         if (surface->committed == subsurface_committed)
3417                 return surface->committed_private;
3418
3419         return NULL;
3420 }
3421
3422 WL_EXPORT struct weston_surface *
3423 weston_surface_get_main_surface(struct weston_surface *surface)
3424 {
3425         struct weston_subsurface *sub;
3426
3427         while (surface && (sub = weston_surface_to_subsurface(surface)))
3428                 surface = sub->parent;
3429
3430         return surface;
3431 }
3432
3433 WL_EXPORT int
3434 weston_surface_set_role(struct weston_surface *surface,
3435                         const char *role_name,
3436                         struct wl_resource *error_resource,
3437                         uint32_t error_code)
3438 {
3439         assert(role_name);
3440
3441         if (surface->role_name == NULL ||
3442             surface->role_name == role_name ||
3443             strcmp(surface->role_name, role_name) == 0) {
3444                 surface->role_name = role_name;
3445
3446                 return 0;
3447         }
3448
3449         wl_resource_post_error(error_resource, error_code,
3450                                "Cannot assign role %s to wl_surface@%d,"
3451                                " already has role %s\n",
3452                                role_name,
3453                                wl_resource_get_id(surface->resource),
3454                                surface->role_name);
3455         return -1;
3456 }
3457
3458 WL_EXPORT const char *
3459 weston_surface_get_role(struct weston_surface *surface)
3460 {
3461         return surface->role_name;
3462 }
3463
3464 WL_EXPORT void
3465 weston_surface_set_label_func(struct weston_surface *surface,
3466                               int (*desc)(struct weston_surface *,
3467                                           char *, size_t))
3468 {
3469         surface->get_label = desc;
3470         surface->timeline.force_refresh = 1;
3471 }
3472
3473 /** Get the size of surface contents
3474  *
3475  * \param surface The surface to query.
3476  * \param width Returns the width of raw contents.
3477  * \param height Returns the height of raw contents.
3478  *
3479  * Retrieves the raw surface content size in pixels for the given surface.
3480  * This is the whole content size in buffer pixels. If the surface
3481  * has no content or the renderer does not implement this feature,
3482  * zeroes are returned.
3483  *
3484  * This function is used to determine the buffer size needed for
3485  * a weston_surface_copy_content() call.
3486  */
3487 WL_EXPORT void
3488 weston_surface_get_content_size(struct weston_surface *surface,
3489                                 int *width, int *height)
3490 {
3491         struct weston_renderer *rer = surface->compositor->renderer;
3492
3493         if (!rer->surface_get_content_size) {
3494                 *width = 0;
3495                 *height = 0;
3496                 return;
3497         }
3498
3499         rer->surface_get_content_size(surface, width, height);
3500 }
3501
3502 /** Get the bounding box of a surface and its subsurfaces
3503  *
3504  * \param surface The surface to query.
3505  * \return The bounding box relative to the surface origin.
3506  *
3507  */
3508 WL_EXPORT struct weston_geometry
3509 weston_surface_get_bounding_box(struct weston_surface *surface)
3510 {
3511         pixman_region32_t region;
3512         pixman_box32_t *box;
3513         struct weston_subsurface *subsurface;
3514
3515         pixman_region32_init_rect(&region,
3516                                   0, 0,
3517                                   surface->width, surface->height);
3518
3519         wl_list_for_each(subsurface, &surface->subsurface_list, parent_link)
3520                 pixman_region32_union_rect(&region, &region,
3521                                            subsurface->position.x,
3522                                            subsurface->position.y,
3523                                            subsurface->surface->width,
3524                                            subsurface->surface->height);
3525
3526         box = pixman_region32_extents(&region);
3527         struct weston_geometry geometry = {
3528                 .x = box->x1,
3529                 .y = box->y1,
3530                 .width = box->x2 - box->x1,
3531                 .height = box->y2 - box->y1,
3532         };
3533
3534         pixman_region32_fini(&region);
3535
3536         return geometry;
3537 }
3538
3539 /** Copy surface contents to system memory.
3540  *
3541  * \param surface The surface to copy from.
3542  * \param target Pointer to the target memory buffer.
3543  * \param size Size of the target buffer in bytes.
3544  * \param src_x X location on contents to copy from.
3545  * \param src_y Y location on contents to copy from.
3546  * \param width Width in pixels of the area to copy.
3547  * \param height Height in pixels of the area to copy.
3548  * \return 0 for success, -1 for failure.
3549  *
3550  * Surface contents are maintained by the renderer. They can be in a
3551  * reserved weston_buffer or as a copy, e.g. a GL texture, or something
3552  * else.
3553  *
3554  * Surface contents are copied into memory pointed to by target,
3555  * which has size bytes of space available. The target memory
3556  * may be larger than needed, but being smaller returns an error.
3557  * The extra bytes in target may or may not be written; their content is
3558  * unspecified. Size must be large enough to hold the image.
3559  *
3560  * The image in the target memory will be arranged in rows from
3561  * top to bottom, and pixels on a row from left to right. The pixel
3562  * format is PIXMAN_a8b8g8r8, 4 bytes per pixel, and stride is exactly
3563  * width * 4.
3564  *
3565  * Parameters src_x and src_y define the upper-left corner in buffer
3566  * coordinates (pixels) to copy from. Parameters width and height
3567  * define the size of the area to copy in pixels.
3568  *
3569  * The rectangle defined by src_x, src_y, width, height must fit in
3570  * the surface contents. Otherwise an error is returned.
3571  *
3572  * Use surface_get_data_size to determine the content size; the
3573  * needed target buffer size and rectangle limits.
3574  *
3575  * CURRENT IMPLEMENTATION RESTRICTIONS:
3576  * - the machine must be little-endian due to Pixman formats.
3577  *
3578  * NOTE: Pixman formats are premultiplied.
3579  */
3580 WL_EXPORT int
3581 weston_surface_copy_content(struct weston_surface *surface,
3582                             void *target, size_t size,
3583                             int src_x, int src_y,
3584                             int width, int height)
3585 {
3586         struct weston_renderer *rer = surface->compositor->renderer;
3587         int cw, ch;
3588         const size_t bytespp = 4; /* PIXMAN_a8b8g8r8 */
3589
3590         if (!rer->surface_copy_content)
3591                 return -1;
3592
3593         weston_surface_get_content_size(surface, &cw, &ch);
3594
3595         if (src_x < 0 || src_y < 0)
3596                 return -1;
3597
3598         if (width <= 0 || height <= 0)
3599                 return -1;
3600
3601         if (src_x + width > cw || src_y + height > ch)
3602                 return -1;
3603
3604         if (width * bytespp * height > size)
3605                 return -1;
3606
3607         return rer->surface_copy_content(surface, target, size,
3608                                          src_x, src_y, width, height);
3609 }
3610
3611 static void
3612 subsurface_set_position(struct wl_client *client,
3613                         struct wl_resource *resource, int32_t x, int32_t y)
3614 {
3615         struct weston_subsurface *sub = wl_resource_get_user_data(resource);
3616
3617         if (!sub)
3618                 return;
3619
3620         sub->position.x = x;
3621         sub->position.y = y;
3622         sub->position.set = 1;
3623 }
3624
3625 static struct weston_subsurface *
3626 subsurface_find_sibling(struct weston_subsurface *sub,
3627                        struct weston_surface *surface)
3628 {
3629         struct weston_surface *parent = sub->parent;
3630         struct weston_subsurface *sibling;
3631
3632         wl_list_for_each(sibling, &parent->subsurface_list, parent_link) {
3633                 if (sibling->surface == surface && sibling != sub)
3634                         return sibling;
3635         }
3636
3637         return NULL;
3638 }
3639
3640 static struct weston_subsurface *
3641 subsurface_sibling_check(struct weston_subsurface *sub,
3642                          struct weston_surface *surface,
3643                          const char *request)
3644 {
3645         struct weston_subsurface *sibling;
3646
3647         sibling = subsurface_find_sibling(sub, surface);
3648         if (!sibling) {
3649                 wl_resource_post_error(sub->resource,
3650                         WL_SUBSURFACE_ERROR_BAD_SURFACE,
3651                         "%s: wl_surface@%d is not a parent or sibling",
3652                         request, wl_resource_get_id(surface->resource));
3653                 return NULL;
3654         }
3655
3656         assert(sibling->parent == sub->parent);
3657
3658         return sibling;
3659 }
3660
3661 static void
3662 subsurface_place_above(struct wl_client *client,
3663                        struct wl_resource *resource,
3664                        struct wl_resource *sibling_resource)
3665 {
3666         struct weston_subsurface *sub = wl_resource_get_user_data(resource);
3667         struct weston_surface *surface =
3668                 wl_resource_get_user_data(sibling_resource);
3669         struct weston_subsurface *sibling;
3670
3671         if (!sub)
3672                 return;
3673
3674         sibling = subsurface_sibling_check(sub, surface, "place_above");
3675         if (!sibling)
3676                 return;
3677
3678         wl_list_remove(&sub->parent_link_pending);
3679         wl_list_insert(sibling->parent_link_pending.prev,
3680                        &sub->parent_link_pending);
3681
3682         sub->reordered = true;
3683 }
3684
3685 static void
3686 subsurface_place_below(struct wl_client *client,
3687                        struct wl_resource *resource,
3688                        struct wl_resource *sibling_resource)
3689 {
3690         struct weston_subsurface *sub = wl_resource_get_user_data(resource);
3691         struct weston_surface *surface =
3692                 wl_resource_get_user_data(sibling_resource);
3693         struct weston_subsurface *sibling;
3694
3695         if (!sub)
3696                 return;
3697
3698         sibling = subsurface_sibling_check(sub, surface, "place_below");
3699         if (!sibling)
3700                 return;
3701
3702         wl_list_remove(&sub->parent_link_pending);
3703         wl_list_insert(&sibling->parent_link_pending,
3704                        &sub->parent_link_pending);
3705
3706         sub->reordered = true;
3707 }
3708
3709 static void
3710 subsurface_set_sync(struct wl_client *client, struct wl_resource *resource)
3711 {
3712         struct weston_subsurface *sub = wl_resource_get_user_data(resource);
3713
3714         if (sub)
3715                 sub->synchronized = 1;
3716 }
3717
3718 static void
3719 subsurface_set_desync(struct wl_client *client, struct wl_resource *resource)
3720 {
3721         struct weston_subsurface *sub = wl_resource_get_user_data(resource);
3722
3723         if (sub && sub->synchronized) {
3724                 sub->synchronized = 0;
3725
3726                 /* If sub became effectively desynchronized, flush. */
3727                 if (!weston_subsurface_is_synchronized(sub))
3728                         weston_subsurface_synchronized_commit(sub);
3729         }
3730 }
3731
3732 static void
3733 weston_subsurface_unlink_parent(struct weston_subsurface *sub)
3734 {
3735         wl_list_remove(&sub->parent_link);
3736         wl_list_remove(&sub->parent_link_pending);
3737         wl_list_remove(&sub->parent_destroy_listener.link);
3738         sub->parent = NULL;
3739 }
3740
3741 static void
3742 weston_subsurface_destroy(struct weston_subsurface *sub);
3743
3744 static void
3745 subsurface_handle_surface_destroy(struct wl_listener *listener, void *data)
3746 {
3747         struct weston_subsurface *sub =
3748                 container_of(listener, struct weston_subsurface,
3749                              surface_destroy_listener);
3750         assert(data == sub->surface);
3751
3752         /* The protocol object (wl_resource) is left inert. */
3753         if (sub->resource)
3754                 wl_resource_set_user_data(sub->resource, NULL);
3755
3756         weston_subsurface_destroy(sub);
3757 }
3758
3759 static void
3760 subsurface_handle_parent_destroy(struct wl_listener *listener, void *data)
3761 {
3762         struct weston_subsurface *sub =
3763                 container_of(listener, struct weston_subsurface,
3764                              parent_destroy_listener);
3765         assert(data == sub->parent);
3766         assert(sub->surface != sub->parent);
3767
3768         if (weston_surface_is_mapped(sub->surface))
3769                 weston_surface_unmap(sub->surface);
3770
3771         weston_subsurface_unlink_parent(sub);
3772 }
3773
3774 static void
3775 subsurface_resource_destroy(struct wl_resource *resource)
3776 {
3777         struct weston_subsurface *sub = wl_resource_get_user_data(resource);
3778
3779         if (sub)
3780                 weston_subsurface_destroy(sub);
3781 }
3782
3783 static void
3784 subsurface_destroy(struct wl_client *client, struct wl_resource *resource)
3785 {
3786         wl_resource_destroy(resource);
3787 }
3788
3789 static void
3790 weston_subsurface_link_parent(struct weston_subsurface *sub,
3791                               struct weston_surface *parent)
3792 {
3793         sub->parent = parent;
3794         sub->parent_destroy_listener.notify = subsurface_handle_parent_destroy;
3795         wl_signal_add(&parent->destroy_signal,
3796                       &sub->parent_destroy_listener);
3797
3798         wl_list_insert(&parent->subsurface_list, &sub->parent_link);
3799         wl_list_insert(&parent->subsurface_list_pending,
3800                        &sub->parent_link_pending);
3801 }
3802
3803 static void
3804 weston_subsurface_link_surface(struct weston_subsurface *sub,
3805                                struct weston_surface *surface)
3806 {
3807         sub->surface = surface;
3808         sub->surface_destroy_listener.notify =
3809                 subsurface_handle_surface_destroy;
3810         wl_signal_add(&surface->destroy_signal,
3811                       &sub->surface_destroy_listener);
3812 }
3813
3814 static void
3815 weston_subsurface_destroy(struct weston_subsurface *sub)
3816 {
3817         struct weston_view *view, *next;
3818
3819         assert(sub->surface);
3820
3821         if (sub->resource) {
3822                 assert(weston_surface_to_subsurface(sub->surface) == sub);
3823                 assert(sub->parent_destroy_listener.notify ==
3824                        subsurface_handle_parent_destroy);
3825
3826                 wl_list_for_each_safe(view, next, &sub->surface->views, surface_link) {
3827                         weston_view_unmap(view);
3828                         weston_view_destroy(view);
3829                 }
3830
3831                 if (sub->parent)
3832                         weston_subsurface_unlink_parent(sub);
3833
3834                 weston_surface_state_fini(&sub->cached);
3835                 weston_buffer_reference(&sub->cached_buffer_ref, NULL);
3836
3837                 sub->surface->committed = NULL;
3838                 sub->surface->committed_private = NULL;
3839                 weston_surface_set_label_func(sub->surface, NULL);
3840         } else {
3841                 /* the dummy weston_subsurface for the parent itself */
3842                 assert(sub->parent_destroy_listener.notify == NULL);
3843                 wl_list_remove(&sub->parent_link);
3844                 wl_list_remove(&sub->parent_link_pending);
3845         }
3846
3847         wl_list_remove(&sub->surface_destroy_listener.link);
3848         free(sub);
3849 }
3850
3851 static const struct wl_subsurface_interface subsurface_implementation = {
3852         subsurface_destroy,
3853         subsurface_set_position,
3854         subsurface_place_above,
3855         subsurface_place_below,
3856         subsurface_set_sync,
3857         subsurface_set_desync
3858 };
3859
3860 static struct weston_subsurface *
3861 weston_subsurface_create(uint32_t id, struct weston_surface *surface,
3862                          struct weston_surface *parent)
3863 {
3864         struct weston_subsurface *sub;
3865         struct wl_client *client = wl_resource_get_client(surface->resource);
3866
3867         sub = zalloc(sizeof *sub);
3868         if (sub == NULL)
3869                 return NULL;
3870
3871         wl_list_init(&sub->unused_views);
3872
3873         sub->resource =
3874                 wl_resource_create(client, &wl_subsurface_interface, 1, id);
3875         if (!sub->resource) {
3876                 free(sub);
3877                 return NULL;
3878         }
3879
3880         wl_resource_set_implementation(sub->resource,
3881                                        &subsurface_implementation,
3882                                        sub, subsurface_resource_destroy);
3883         weston_subsurface_link_surface(sub, surface);
3884         weston_subsurface_link_parent(sub, parent);
3885         weston_surface_state_init(&sub->cached);
3886         sub->cached_buffer_ref.buffer = NULL;
3887         sub->synchronized = 1;
3888
3889         return sub;
3890 }
3891
3892 /* Create a dummy subsurface for having the parent itself in its
3893  * sub-surface lists. Makes stacking order manipulation easy.
3894  */
3895 static struct weston_subsurface *
3896 weston_subsurface_create_for_parent(struct weston_surface *parent)
3897 {
3898         struct weston_subsurface *sub;
3899
3900         sub = zalloc(sizeof *sub);
3901         if (sub == NULL)
3902                 return NULL;
3903
3904         weston_subsurface_link_surface(sub, parent);
3905         sub->parent = parent;
3906         wl_list_insert(&parent->subsurface_list, &sub->parent_link);
3907         wl_list_insert(&parent->subsurface_list_pending,
3908                        &sub->parent_link_pending);
3909
3910         return sub;
3911 }
3912
3913 static void
3914 subcompositor_get_subsurface(struct wl_client *client,
3915                              struct wl_resource *resource,
3916                              uint32_t id,
3917                              struct wl_resource *surface_resource,
3918                              struct wl_resource *parent_resource)
3919 {
3920         struct weston_surface *surface =
3921                 wl_resource_get_user_data(surface_resource);
3922         struct weston_surface *parent =
3923                 wl_resource_get_user_data(parent_resource);
3924         struct weston_subsurface *sub;
3925         static const char where[] = "get_subsurface: wl_subsurface@";
3926
3927         if (surface == parent) {
3928                 wl_resource_post_error(resource,
3929                         WL_SUBCOMPOSITOR_ERROR_BAD_SURFACE,
3930                         "%s%d: wl_surface@%d cannot be its own parent",
3931                         where, id, wl_resource_get_id(surface_resource));
3932                 return;
3933         }
3934
3935         if (weston_surface_to_subsurface(surface)) {
3936                 wl_resource_post_error(resource,
3937                         WL_SUBCOMPOSITOR_ERROR_BAD_SURFACE,
3938                         "%s%d: wl_surface@%d is already a sub-surface",
3939                         where, id, wl_resource_get_id(surface_resource));
3940                 return;
3941         }
3942
3943         if (weston_surface_set_role(surface, "wl_subsurface", resource,
3944                                     WL_SUBCOMPOSITOR_ERROR_BAD_SURFACE) < 0)
3945                 return;
3946
3947         if (weston_surface_get_main_surface(parent) == surface) {
3948                 wl_resource_post_error(resource,
3949                         WL_SUBCOMPOSITOR_ERROR_BAD_SURFACE,
3950                         "%s%d: wl_surface@%d is an ancestor of parent",
3951                         where, id, wl_resource_get_id(surface_resource));
3952                 return;
3953         }
3954
3955         /* make sure the parent is in its own list */
3956         if (wl_list_empty(&parent->subsurface_list)) {
3957                 if (!weston_subsurface_create_for_parent(parent)) {
3958                         wl_resource_post_no_memory(resource);
3959                         return;
3960                 }
3961         }
3962
3963         sub = weston_subsurface_create(id, surface, parent);
3964         if (!sub) {
3965                 wl_resource_post_no_memory(resource);
3966                 return;
3967         }
3968
3969         surface->committed = subsurface_committed;
3970         surface->committed_private = sub;
3971         weston_surface_set_label_func(surface, subsurface_get_label);
3972 }
3973
3974 static void
3975 subcompositor_destroy(struct wl_client *client, struct wl_resource *resource)
3976 {
3977         wl_resource_destroy(resource);
3978 }
3979
3980 static const struct wl_subcompositor_interface subcompositor_interface = {
3981         subcompositor_destroy,
3982         subcompositor_get_subsurface
3983 };
3984
3985 static void
3986 bind_subcompositor(struct wl_client *client,
3987                    void *data, uint32_t version, uint32_t id)
3988 {
3989         struct weston_compositor *compositor = data;
3990         struct wl_resource *resource;
3991
3992         resource =
3993                 wl_resource_create(client, &wl_subcompositor_interface, 1, id);
3994         if (resource == NULL) {
3995                 wl_client_post_no_memory(client);
3996                 return;
3997         }
3998         wl_resource_set_implementation(resource, &subcompositor_interface,
3999                                        compositor, NULL);
4000 }
4001
4002 /** Set a DPMS mode on all of the compositor's outputs
4003  *
4004  * \param compositor The compositor instance
4005  * \param state The DPMS state the outputs will be set to
4006  */
4007 static void
4008 weston_compositor_dpms(struct weston_compositor *compositor,
4009                        enum dpms_enum state)
4010 {
4011         struct weston_output *output;
4012
4013         wl_list_for_each(output, &compositor->output_list, link)
4014                 if (output->set_dpms)
4015                         output->set_dpms(output, state);
4016 }
4017
4018 /** Restores the compositor to active status
4019  *
4020  * \param compositor The compositor instance
4021  *
4022  * If the compositor was in a sleeping mode, all outputs are powered
4023  * back on via DPMS.  Otherwise if the compositor was inactive
4024  * (idle/locked, offscreen, or sleeping) then the compositor's wake
4025  * signal will fire.
4026  *
4027  * Restarts the idle timer.
4028  */
4029 WL_EXPORT void
4030 weston_compositor_wake(struct weston_compositor *compositor)
4031 {
4032         uint32_t old_state = compositor->state;
4033
4034         /* The state needs to be changed before emitting the wake
4035          * signal because that may try to schedule a repaint which
4036          * will not work if the compositor is still sleeping */
4037         compositor->state = WESTON_COMPOSITOR_ACTIVE;
4038
4039         switch (old_state) {
4040         case WESTON_COMPOSITOR_SLEEPING:
4041         case WESTON_COMPOSITOR_IDLE:
4042         case WESTON_COMPOSITOR_OFFSCREEN:
4043                 weston_compositor_dpms(compositor, WESTON_DPMS_ON);
4044                 wl_signal_emit(&compositor->wake_signal, compositor);
4045                 /* fall through */
4046         default:
4047                 wl_event_source_timer_update(compositor->idle_source,
4048                                              compositor->idle_time * 1000);
4049         }
4050 }
4051
4052 /** Turns off rendering and frame events for the compositor.
4053  *
4054  * \param compositor The compositor instance
4055  *
4056  * This is used for example to prevent further rendering while the
4057  * compositor is shutting down.
4058  *
4059  * Stops the idle timer.
4060  */
4061 WL_EXPORT void
4062 weston_compositor_offscreen(struct weston_compositor *compositor)
4063 {
4064         switch (compositor->state) {
4065         case WESTON_COMPOSITOR_OFFSCREEN:
4066                 return;
4067         case WESTON_COMPOSITOR_SLEEPING:
4068         default:
4069                 compositor->state = WESTON_COMPOSITOR_OFFSCREEN;
4070                 wl_event_source_timer_update(compositor->idle_source, 0);
4071         }
4072 }
4073
4074 /** Powers down all attached output devices
4075  *
4076  * \param compositor The compositor instance
4077  *
4078  * Causes rendering to the outputs to cease, and no frame events to be
4079  * sent.  Only powers down the outputs if the compositor is not already
4080  * in sleep mode.
4081  *
4082  * Stops the idle timer.
4083  */
4084 WL_EXPORT void
4085 weston_compositor_sleep(struct weston_compositor *compositor)
4086 {
4087         if (compositor->state == WESTON_COMPOSITOR_SLEEPING)
4088                 return;
4089
4090         wl_event_source_timer_update(compositor->idle_source, 0);
4091         compositor->state = WESTON_COMPOSITOR_SLEEPING;
4092         weston_compositor_dpms(compositor, WESTON_DPMS_OFF);
4093 }
4094
4095 /** Sets compositor to idle mode
4096  *
4097  * \param data The compositor instance
4098  *
4099  * This is called when the idle timer fires.  Once the compositor is in
4100  * idle mode it requires a wake action (e.g. via
4101  * weston_compositor_wake()) to restore it.  The compositor's
4102  * idle_signal will be triggered when the idle event occurs.
4103  *
4104  * Idleness can be inhibited by setting the compositor's idle_inhibit
4105  * property.
4106  */
4107 static int
4108 idle_handler(void *data)
4109 {
4110         struct weston_compositor *compositor = data;
4111
4112         if (compositor->idle_inhibit)
4113                 return 1;
4114
4115         compositor->state = WESTON_COMPOSITOR_IDLE;
4116         wl_signal_emit(&compositor->idle_signal, compositor);
4117
4118         return 1;
4119 }
4120
4121 WL_EXPORT void
4122 weston_plane_init(struct weston_plane *plane,
4123                         struct weston_compositor *ec,
4124                         int32_t x, int32_t y)
4125 {
4126         pixman_region32_init(&plane->damage);
4127         pixman_region32_init(&plane->clip);
4128         plane->x = x;
4129         plane->y = y;
4130         plane->compositor = ec;
4131
4132         /* Init the link so that the call to wl_list_remove() when releasing
4133          * the plane without ever stacking doesn't lead to a crash */
4134         wl_list_init(&plane->link);
4135 }
4136
4137 WL_EXPORT void
4138 weston_plane_release(struct weston_plane *plane)
4139 {
4140         struct weston_view *view;
4141
4142         pixman_region32_fini(&plane->damage);
4143         pixman_region32_fini(&plane->clip);
4144
4145         wl_list_for_each(view, &plane->compositor->view_list, link) {
4146                 if (view->plane == plane)
4147                         view->plane = NULL;
4148         }
4149
4150         wl_list_remove(&plane->link);
4151 }
4152
4153 WL_EXPORT void
4154 weston_compositor_stack_plane(struct weston_compositor *ec,
4155                               struct weston_plane *plane,
4156                               struct weston_plane *above)
4157 {
4158         if (above)
4159                 wl_list_insert(above->link.prev, &plane->link);
4160         else
4161                 wl_list_insert(&ec->plane_list, &plane->link);
4162 }
4163
4164 static void
4165 output_release(struct wl_client *client, struct wl_resource *resource)
4166 {
4167         wl_resource_destroy(resource);
4168 }
4169
4170 static const struct wl_output_interface output_interface = {
4171         output_release,
4172 };
4173
4174
4175 static void unbind_resource(struct wl_resource *resource)
4176 {
4177         wl_list_remove(wl_resource_get_link(resource));
4178 }
4179
4180 static void
4181 bind_output(struct wl_client *client,
4182             void *data, uint32_t version, uint32_t id)
4183 {
4184         struct weston_output *output = data;
4185         struct weston_mode *mode;
4186         struct wl_resource *resource;
4187
4188         resource = wl_resource_create(client, &wl_output_interface,
4189                                       version, id);
4190         if (resource == NULL) {
4191                 wl_client_post_no_memory(client);
4192                 return;
4193         }
4194
4195         wl_list_insert(&output->resource_list, wl_resource_get_link(resource));
4196         wl_resource_set_implementation(resource, &output_interface, data, unbind_resource);
4197
4198         wl_output_send_geometry(resource,
4199                                 output->x,
4200                                 output->y,
4201                                 output->mm_width,
4202                                 output->mm_height,
4203                                 output->subpixel,
4204                                 output->make, output->model,
4205                                 output->transform);
4206         if (version >= WL_OUTPUT_SCALE_SINCE_VERSION)
4207                 wl_output_send_scale(resource,
4208                                      output->current_scale);
4209
4210         wl_list_for_each (mode, &output->mode_list, link) {
4211                 wl_output_send_mode(resource,
4212                                     mode->flags,
4213                                     mode->width,
4214                                     mode->height,
4215                                     mode->refresh);
4216         }
4217
4218         if (version >= WL_OUTPUT_DONE_SINCE_VERSION)
4219                 wl_output_send_done(resource);
4220 }
4221
4222 /* Move other outputs when one is resized so the space remains contiguous. */
4223 static void
4224 weston_compositor_reflow_outputs(struct weston_compositor *compositor,
4225                                 struct weston_output *resized_output, int delta_width)
4226 {
4227         struct weston_output *output;
4228         bool start_resizing = false;
4229
4230         if (!delta_width)
4231                 return;
4232
4233         wl_list_for_each(output, &compositor->output_list, link) {
4234                 if (output == resized_output) {
4235                         start_resizing = true;
4236                         continue;
4237                 }
4238
4239                 if (start_resizing) {
4240                         weston_output_move(output, output->x + delta_width, output->y);
4241                         output->dirty = 1;
4242                 }
4243         }
4244 }
4245
4246 WL_EXPORT void
4247 weston_output_update_matrix(struct weston_output *output)
4248 {
4249         float magnification;
4250
4251         weston_matrix_init(&output->matrix);
4252         weston_matrix_translate(&output->matrix, -output->x, -output->y, 0);
4253
4254         if (output->zoom.active) {
4255                 magnification = 1 / (1 - output->zoom.spring_z.current);
4256                 weston_output_update_zoom(output);
4257                 weston_matrix_translate(&output->matrix, -output->zoom.trans_x,
4258                                         -output->zoom.trans_y, 0);
4259                 weston_matrix_scale(&output->matrix, magnification,
4260                                     magnification, 1.0);
4261         }
4262
4263         switch (output->transform) {
4264         case WL_OUTPUT_TRANSFORM_FLIPPED:
4265         case WL_OUTPUT_TRANSFORM_FLIPPED_90:
4266         case WL_OUTPUT_TRANSFORM_FLIPPED_180:
4267         case WL_OUTPUT_TRANSFORM_FLIPPED_270:
4268                 weston_matrix_translate(&output->matrix, -output->width, 0, 0);
4269                 weston_matrix_scale(&output->matrix, -1, 1, 1);
4270                 break;
4271         }
4272
4273         switch (output->transform) {
4274         default:
4275         case WL_OUTPUT_TRANSFORM_NORMAL:
4276         case WL_OUTPUT_TRANSFORM_FLIPPED:
4277                 break;
4278         case WL_OUTPUT_TRANSFORM_90:
4279         case WL_OUTPUT_TRANSFORM_FLIPPED_90:
4280                 weston_matrix_translate(&output->matrix, 0, -output->height, 0);
4281                 weston_matrix_rotate_xy(&output->matrix, 0, 1);
4282                 break;
4283         case WL_OUTPUT_TRANSFORM_180:
4284         case WL_OUTPUT_TRANSFORM_FLIPPED_180:
4285                 weston_matrix_translate(&output->matrix,
4286                                         -output->width, -output->height, 0);
4287                 weston_matrix_rotate_xy(&output->matrix, -1, 0);
4288                 break;
4289         case WL_OUTPUT_TRANSFORM_270:
4290         case WL_OUTPUT_TRANSFORM_FLIPPED_270:
4291                 weston_matrix_translate(&output->matrix, -output->width, 0, 0);
4292                 weston_matrix_rotate_xy(&output->matrix, 0, -1);
4293                 break;
4294         }
4295
4296         if (output->current_scale != 1)
4297                 weston_matrix_scale(&output->matrix,
4298                                     output->current_scale,
4299                                     output->current_scale, 1);
4300
4301         output->dirty = 0;
4302
4303         weston_matrix_invert(&output->inverse_matrix, &output->matrix);
4304 }
4305
4306 static void
4307 weston_output_transform_scale_init(struct weston_output *output, uint32_t transform, uint32_t scale)
4308 {
4309         output->transform = transform;
4310         output->native_scale = scale;
4311         output->current_scale = scale;
4312
4313         convert_size_by_transform_scale(&output->width, &output->height,
4314                                         output->current_mode->width,
4315                                         output->current_mode->height,
4316                                         transform, scale);
4317 }
4318
4319 static void
4320 weston_output_init_geometry(struct weston_output *output, int x, int y)
4321 {
4322         output->x = x;
4323         output->y = y;
4324
4325         pixman_region32_init(&output->previous_damage);
4326         pixman_region32_init_rect(&output->region, x, y,
4327                                   output->width,
4328                                   output->height);
4329 }
4330
4331 WL_EXPORT void
4332 weston_output_move(struct weston_output *output, int x, int y)
4333 {
4334         struct wl_resource *resource;
4335
4336         output->move_x = x - output->x;
4337         output->move_y = y - output->y;
4338
4339         if (output->move_x == 0 && output->move_y == 0)
4340                 return;
4341
4342         weston_output_init_geometry(output, x, y);
4343
4344         output->dirty = 1;
4345
4346         /* Move views on this output. */
4347         wl_signal_emit(&output->compositor->output_moved_signal, output);
4348
4349         /* Notify clients of the change for output position. */
4350         wl_resource_for_each(resource, &output->resource_list) {
4351                 wl_output_send_geometry(resource,
4352                                         output->x,
4353                                         output->y,
4354                                         output->mm_width,
4355                                         output->mm_height,
4356                                         output->subpixel,
4357                                         output->make,
4358                                         output->model,
4359                                         output->transform);
4360
4361                 if (wl_resource_get_version(resource) >= WL_OUTPUT_DONE_SINCE_VERSION)
4362                         wl_output_send_done(resource);
4363         }
4364 }
4365
4366 /** Adds an output to the compositor's output list and
4367  *  send the compositor's output_created signal.
4368  *
4369  * \param compositor The compositor instance.
4370  * \param output The output to be added.
4371  */
4372 WL_EXPORT void
4373 weston_compositor_add_output(struct weston_compositor *compositor,
4374                              struct weston_output *output)
4375 {
4376         struct weston_view *view, *next;
4377
4378         wl_list_insert(compositor->output_list.prev, &output->link);
4379         wl_signal_emit(&compositor->output_created_signal, output);
4380
4381         wl_list_for_each_safe(view, next, &compositor->view_list, link)
4382                 weston_view_geometry_dirty(view);
4383 }
4384
4385 WL_EXPORT void
4386 weston_output_transform_coordinate(struct weston_output *output,
4387                                    double device_x, double device_y,
4388                                    double *x, double *y)
4389 {
4390         struct weston_vector p = { {
4391                 device_x,
4392                 device_y,
4393                 0.0,
4394                 1.0 } };
4395
4396         weston_matrix_transform(&output->inverse_matrix, &p);
4397
4398         *x = p.f[0] / p.f[3];
4399         *y = p.f[1] / p.f[3];
4400 }
4401
4402 /** Undoes changes to an output done by weston_output_enable()
4403  *
4404  * \param output The weston_output object that needs the changes undone.
4405  *
4406  * Removes the repaint timer.
4407  * Destroys the Wayland global assigned to the output.
4408  * Destroys pixman regions allocated to the output.
4409  * Deallocates output's ID and updates compositor's output_id_pool.
4410  */
4411 static void
4412 weston_output_enable_undo(struct weston_output *output)
4413 {
4414         wl_event_source_remove(output->repaint_timer);
4415
4416         wl_global_destroy(output->global);
4417
4418         pixman_region32_fini(&output->region);
4419         pixman_region32_fini(&output->previous_damage);
4420         output->compositor->output_id_pool &= ~(1u << output->id);
4421
4422         output->enabled = false;
4423 }
4424
4425 /** Removes output from compositor's output list
4426  *
4427  * \param output The weston_output object that is being removed.
4428  *
4429  * Presentation feedback is discarded.
4430  * Compositor is notified that outputs were changed and
4431  * applies the necessary changes.
4432  * All views assigned to the weston_output object are
4433  * moved to a new output.
4434  * Signal is emitted to notify all users of the weston_output
4435  * object that the output is being destroyed.
4436  * wl_output protocol objects referencing this weston_output
4437  * are made inert.
4438  */
4439 static void
4440 weston_compositor_remove_output(struct weston_output *output)
4441 {
4442         struct wl_resource *resource;
4443         struct weston_view *view;
4444
4445         assert(output->destroying);
4446
4447         wl_list_for_each(view, &output->compositor->view_list, link) {
4448                 if (view->output_mask & (1u << output->id))
4449                         weston_view_assign_output(view);
4450         }
4451
4452         weston_presentation_feedback_discard_list(&output->feedback_list);
4453
4454         weston_compositor_reflow_outputs(output->compositor, output, output->width);
4455         wl_list_remove(&output->link);
4456
4457         wl_signal_emit(&output->compositor->output_destroyed_signal, output);
4458         wl_signal_emit(&output->destroy_signal, output);
4459
4460         wl_resource_for_each(resource, &output->resource_list) {
4461                 wl_resource_set_destructor(resource, NULL);
4462         }
4463 }
4464
4465 /** Sets the output scale for a given output.
4466  *
4467  * \param output The weston_output object that the scale is set for.
4468  * \param scale  Scale factor for the given output.
4469  *
4470  * It only supports setting scale for an output that
4471  * is not enabled and it can only be ran once.
4472  */
4473 WL_EXPORT void
4474 weston_output_set_scale(struct weston_output *output,
4475                         int32_t scale)
4476 {
4477         /* We can only set scale on a disabled output */
4478         assert(!output->enabled);
4479
4480         /* We only want to set scale once */
4481         assert(!output->scale);
4482
4483         output->scale = scale;
4484 }
4485
4486 /** Sets the output transform for a given output.
4487  *
4488  * \param output    The weston_output object that the transform is set for.
4489  * \param transform Transform value for the given output.
4490  *
4491  * It only supports setting transform for an output that is
4492  * not enabled and it can only be ran once.
4493  *
4494  * Refer to wl_output::transform section located at
4495  * https://wayland.freedesktop.org/docs/html/apa.html#protocol-spec-wl_output
4496  * for list of values that can be passed to this function.
4497  */
4498 WL_EXPORT void
4499 weston_output_set_transform(struct weston_output *output,
4500                             uint32_t transform)
4501 {
4502         /* We can only set transform on a disabled output */
4503         assert(!output->enabled);
4504
4505         /* We only want to set transform once */
4506         assert(output->transform == UINT32_MAX);
4507
4508         output->transform = transform;
4509 }
4510
4511 /** Initializes a weston_output object with enough data so
4512  ** an output can be configured.
4513  *
4514  * \param output     The weston_output object to initialize
4515  * \param compositor The compositor instance.
4516  *
4517  * Sets initial values for fields that are expected to be
4518  * configured either by compositors or backends.
4519  */
4520 WL_EXPORT void
4521 weston_output_init(struct weston_output *output,
4522                    struct weston_compositor *compositor)
4523 {
4524         output->compositor = compositor;
4525         output->destroying = 0;
4526
4527         /* Backends must set output->name */
4528         assert(output->name);
4529
4530         wl_list_init(&output->link);
4531
4532         output->enabled = false;
4533
4534         /* Add some (in)sane defaults which can be used
4535          * for checking if an output was properly configured
4536          */
4537         output->mm_width = 0;
4538         output->mm_height = 0;
4539         output->scale = 0;
4540         /* Can't use -1 on uint32_t and 0 is valid enum value */
4541         output->transform = UINT32_MAX;
4542 }
4543
4544 /** Adds weston_output object to pending output list.
4545  *
4546  * \param output     The weston_output object to add
4547  * \param compositor The compositor instance.
4548  *
4549  * Also notifies the compositor that an output is pending for
4550  * configuration.
4551  */
4552 WL_EXPORT void
4553 weston_compositor_add_pending_output(struct weston_output *output,
4554                                      struct weston_compositor *compositor)
4555 {
4556         wl_list_insert(compositor->pending_output_list.prev, &output->link);
4557         wl_signal_emit(&compositor->output_pending_signal, output);
4558 }
4559
4560 /** Constructs a weston_output object that can be used by the compositor.
4561  *
4562  * \param output The weston_output object that needs to be enabled.
4563  *
4564  * Output coordinates are calculated and each new output is by default
4565  * assigned to the right of previous one.
4566  *
4567  * Sets up the transformation, zoom, and geometry of the output using
4568  * the properties that need to be configured by the compositor.
4569  *
4570  * Establishes a repaint timer for the output with the relevant display
4571  * object's event loop. See output_repaint_timer_handler().
4572  *
4573  * The output is assigned an ID. Weston can support up to 32 distinct
4574  * outputs, with IDs numbered from 0-31; the compositor's output_id_pool
4575  * is referred to and used to find the first available ID number, and
4576  * then this ID is marked as used in output_id_pool.
4577  *
4578  * The output is also assigned a Wayland global with the wl_output
4579  * external interface.
4580  *
4581  * Backend specific function is called to set up the output output.
4582  *
4583  * Output is added to the compositor's output list
4584  *
4585  * If the backend specific function fails, the weston_output object
4586  * is returned to a state it was before calling this function and
4587  * is added to the compositor's pending_output_list in case it needs
4588  * to be reconfigured or just so it can be destroyed at shutdown.
4589  *
4590  * 0 is returned on success, -1 on failure.
4591  */
4592 WL_EXPORT int
4593 weston_output_enable(struct weston_output *output)
4594 {
4595         struct weston_compositor *c = output->compositor;
4596         struct weston_output *iterator;
4597         struct wl_event_loop *loop;
4598         int x = 0, y = 0;
4599
4600         assert(output->enable);
4601
4602         iterator = container_of(c->output_list.prev,
4603                                 struct weston_output, link);
4604
4605         if (!wl_list_empty(&c->output_list))
4606                 x = iterator->x + iterator->width;
4607
4608         /* Make sure the scale is set up */
4609         assert(output->scale);
4610
4611         /* Make sure we have a transform set */
4612         assert(output->transform != UINT32_MAX);
4613
4614         /* Remove it from pending/disabled output list */
4615         wl_list_remove(&output->link);
4616
4617         /* Verify we haven't reached the limit of 32 available output IDs */
4618         assert(ffs(~c->output_id_pool) > 0);
4619
4620         output->x = x;
4621         output->y = y;
4622         output->dirty = 1;
4623         output->original_scale = output->scale;
4624
4625         weston_output_transform_scale_init(output, output->transform, output->scale);
4626         weston_output_init_zoom(output);
4627
4628         weston_output_init_geometry(output, x, y);
4629         weston_output_damage(output);
4630
4631         wl_signal_init(&output->frame_signal);
4632         wl_signal_init(&output->destroy_signal);
4633         wl_list_init(&output->animation_list);
4634         wl_list_init(&output->resource_list);
4635         wl_list_init(&output->feedback_list);
4636         wl_list_init(&output->link);
4637
4638         loop = wl_display_get_event_loop(c->wl_display);
4639         output->repaint_timer = wl_event_loop_add_timer(loop,
4640                                         output_repaint_timer_handler, output);
4641
4642         /* Invert the output id pool and look for the lowest numbered
4643          * switch (the least significant bit).  Take that bit's position
4644          * as our ID, and mark it used in the compositor's output_id_pool.
4645          */
4646         output->id = ffs(~output->compositor->output_id_pool) - 1;
4647         output->compositor->output_id_pool |= 1u << output->id;
4648
4649         output->global =
4650                 wl_global_create(c->wl_display, &wl_output_interface, 3,
4651                                  output, bind_output);
4652
4653         output->enabled = true;
4654
4655         /* Enable the output (set up the crtc or create a
4656          * window representing the output, set up the
4657          * renderer, etc)
4658          */
4659         if (output->enable(output) < 0) {
4660                 weston_log("Enabling output \"%s\" failed.\n", output->name);
4661
4662                 weston_output_enable_undo(output);
4663                 wl_list_insert(output->compositor->pending_output_list.prev,
4664                                &output->link);
4665                 return -1;
4666         }
4667
4668         weston_compositor_add_output(output->compositor, output);
4669
4670         return 0;
4671 }
4672
4673 /** Converts a weston_output object to a pending output state, so it
4674  ** can be configured again or destroyed.
4675  *
4676  * \param output The weston_output object that needs to be disabled.
4677  *
4678  * See weston_output_init() for more information on the
4679  * state output is returned to.
4680  *
4681  * Calls a backend specific function to disable an output, in case
4682  * such function exists.
4683  *
4684  * If the output is being used by the compositor, it is first removed
4685  * from weston's output_list (see weston_compositor_remove_output())
4686  * and is returned to a state it was before weston_output_enable()
4687  * was ran (see weston_output_enable_undo()).
4688  *
4689  * Output is added to pending_output_list so it will get destroyed
4690  * if the output does not get configured again when the compositor
4691  * shuts down. If an output is to be used immediately, it needs to
4692  * be manually removed from the list (the compositor specific functions
4693  * for handling pending outputs will take care of that).
4694  *
4695  * If backend specific disable function returns negative value,
4696  * this function will return too. It can be used as an indicator
4697  * that output cannot be disabled at the present time. In that case
4698  * backend needs to make sure the output is disabled when it is
4699  * possible.
4700  */
4701 WL_EXPORT void
4702 weston_output_disable(struct weston_output *output)
4703 {
4704         assert(output->disable);
4705
4706         /* Should we rename this? */
4707         output->destroying = 1;
4708
4709         if (output->disable(output) < 0)
4710                 return;
4711
4712         if (output->enabled) {
4713                 weston_compositor_remove_output(output);
4714                 weston_output_enable_undo(output);
4715
4716                 /* We need to preserve it somewhere so it can be destroyed on shutdown
4717                    if nobody wants to configure it again */
4718                 wl_list_insert(output->compositor->pending_output_list.prev, &output->link);
4719         }
4720
4721         output->destroying = 0;
4722 }
4723
4724 /** Emits a signal to indicate that there are outputs waiting to be configured.
4725  *
4726  * \param compositor The compositor instance
4727  */
4728 WL_EXPORT void
4729 weston_pending_output_coldplug(struct weston_compositor *compositor)
4730 {
4731         struct weston_output *output, *next;
4732
4733         wl_list_for_each_safe(output, next, &compositor->pending_output_list, link)
4734                 wl_signal_emit(&compositor->output_pending_signal, output);
4735 }
4736
4737 WL_EXPORT void
4738 weston_output_destroy(struct weston_output *output)
4739 {
4740         output->destroying = 1;
4741
4742         if (output->enabled) {
4743                 weston_compositor_remove_output(output);
4744                 weston_output_enable_undo(output);
4745         }
4746
4747         free(output->name);
4748 }
4749
4750 static void
4751 destroy_viewport(struct wl_resource *resource)
4752 {
4753         struct weston_surface *surface =
4754                 wl_resource_get_user_data(resource);
4755
4756         if (!surface)
4757                 return;
4758
4759         surface->viewport_resource = NULL;
4760         surface->pending.buffer_viewport.buffer.src_width =
4761                 wl_fixed_from_int(-1);
4762         surface->pending.buffer_viewport.surface.width = -1;
4763         surface->pending.buffer_viewport.changed = 1;
4764 }
4765
4766 static void
4767 viewport_destroy(struct wl_client *client,
4768                  struct wl_resource *resource)
4769 {
4770         wl_resource_destroy(resource);
4771 }
4772
4773 static void
4774 viewport_set_source(struct wl_client *client,
4775                     struct wl_resource *resource,
4776                     wl_fixed_t src_x,
4777                     wl_fixed_t src_y,
4778                     wl_fixed_t src_width,
4779                     wl_fixed_t src_height)
4780 {
4781         struct weston_surface *surface =
4782                 wl_resource_get_user_data(resource);
4783
4784         if (!surface) {
4785                 wl_resource_post_error(resource,
4786                         WP_VIEWPORT_ERROR_NO_SURFACE,
4787                         "wl_surface for this viewport is no longer exists");
4788                 return;
4789         }
4790
4791         assert(surface->viewport_resource == resource);
4792         assert(surface->resource);
4793
4794         if (src_width == wl_fixed_from_int(-1) &&
4795             src_height == wl_fixed_from_int(-1) &&
4796             src_x == wl_fixed_from_int(-1) &&
4797             src_y == wl_fixed_from_int(-1)) {
4798                 /* unset source rect */
4799                 surface->pending.buffer_viewport.buffer.src_width =
4800                         wl_fixed_from_int(-1);
4801                 surface->pending.buffer_viewport.changed = 1;
4802                 return;
4803         }
4804
4805         if (src_width <= 0 || src_height <= 0 || src_x < 0 || src_y < 0) {
4806                 wl_resource_post_error(resource,
4807                         WP_VIEWPORT_ERROR_BAD_VALUE,
4808                         "wl_surface@%d viewport source "
4809                         "w=%f <= 0, h=%f <= 0, x=%f < 0, or y=%f < 0",
4810                         wl_resource_get_id(surface->resource),
4811                         wl_fixed_to_double(src_width),
4812                         wl_fixed_to_double(src_height),
4813                         wl_fixed_to_double(src_x),
4814                         wl_fixed_to_double(src_y));
4815                 return;
4816         }
4817
4818         surface->pending.buffer_viewport.buffer.src_x = src_x;
4819         surface->pending.buffer_viewport.buffer.src_y = src_y;
4820         surface->pending.buffer_viewport.buffer.src_width = src_width;
4821         surface->pending.buffer_viewport.buffer.src_height = src_height;
4822         surface->pending.buffer_viewport.changed = 1;
4823 }
4824
4825 static void
4826 viewport_set_destination(struct wl_client *client,
4827                          struct wl_resource *resource,
4828                          int32_t dst_width,
4829                          int32_t dst_height)
4830 {
4831         struct weston_surface *surface =
4832                 wl_resource_get_user_data(resource);
4833
4834         if (!surface) {
4835                 wl_resource_post_error(resource,
4836                         WP_VIEWPORT_ERROR_NO_SURFACE,
4837                         "wl_surface for this viewport no longer exists");
4838                 return;
4839         }
4840
4841         assert(surface->viewport_resource == resource);
4842
4843         if (dst_width == -1 && dst_height == -1) {
4844                 /* unset destination size */
4845                 surface->pending.buffer_viewport.surface.width = -1;
4846                 surface->pending.buffer_viewport.changed = 1;
4847                 return;
4848         }
4849
4850         if (dst_width <= 0 || dst_height <= 0) {
4851                 wl_resource_post_error(resource,
4852                         WP_VIEWPORT_ERROR_BAD_VALUE,
4853                         "destination size must be positive (%dx%d)",
4854                         dst_width, dst_height);
4855                 return;
4856         }
4857
4858         surface->pending.buffer_viewport.surface.width = dst_width;
4859         surface->pending.buffer_viewport.surface.height = dst_height;
4860         surface->pending.buffer_viewport.changed = 1;
4861 }
4862
4863 static const struct wp_viewport_interface viewport_interface = {
4864         viewport_destroy,
4865         viewport_set_source,
4866         viewport_set_destination
4867 };
4868
4869 static void
4870 viewporter_destroy(struct wl_client *client,
4871                    struct wl_resource *resource)
4872 {
4873         wl_resource_destroy(resource);
4874 }
4875
4876 static void
4877 viewporter_get_viewport(struct wl_client *client,
4878                         struct wl_resource *viewporter,
4879                         uint32_t id,
4880                         struct wl_resource *surface_resource)
4881 {
4882         int version = wl_resource_get_version(viewporter);
4883         struct weston_surface *surface =
4884                 wl_resource_get_user_data(surface_resource);
4885         struct wl_resource *resource;
4886
4887         if (surface->viewport_resource) {
4888                 wl_resource_post_error(viewporter,
4889                         WP_VIEWPORTER_ERROR_VIEWPORT_EXISTS,
4890                         "a viewport for that surface already exists");
4891                 return;
4892         }
4893
4894         resource = wl_resource_create(client, &wp_viewport_interface,
4895                                       version, id);
4896         if (resource == NULL) {
4897                 wl_client_post_no_memory(client);
4898                 return;
4899         }
4900
4901         wl_resource_set_implementation(resource, &viewport_interface,
4902                                        surface, destroy_viewport);
4903
4904         surface->viewport_resource = resource;
4905 }
4906
4907 static const struct wp_viewporter_interface viewporter_interface = {
4908         viewporter_destroy,
4909         viewporter_get_viewport
4910 };
4911
4912 static void
4913 bind_viewporter(struct wl_client *client,
4914                 void *data, uint32_t version, uint32_t id)
4915 {
4916         struct wl_resource *resource;
4917
4918         resource = wl_resource_create(client, &wp_viewporter_interface,
4919                                       version, id);
4920         if (resource == NULL) {
4921                 wl_client_post_no_memory(client);
4922                 return;
4923         }
4924
4925         wl_resource_set_implementation(resource, &viewporter_interface,
4926                                        NULL, NULL);
4927 }
4928
4929 static void
4930 destroy_presentation_feedback(struct wl_resource *feedback_resource)
4931 {
4932         struct weston_presentation_feedback *feedback;
4933
4934         feedback = wl_resource_get_user_data(feedback_resource);
4935
4936         wl_list_remove(&feedback->link);
4937         free(feedback);
4938 }
4939
4940 static void
4941 presentation_destroy(struct wl_client *client, struct wl_resource *resource)
4942 {
4943         wl_resource_destroy(resource);
4944 }
4945
4946 static void
4947 presentation_feedback(struct wl_client *client,
4948                       struct wl_resource *presentation_resource,
4949                       struct wl_resource *surface_resource,
4950                       uint32_t callback)
4951 {
4952         struct weston_surface *surface;
4953         struct weston_presentation_feedback *feedback;
4954
4955         surface = wl_resource_get_user_data(surface_resource);
4956
4957         feedback = zalloc(sizeof *feedback);
4958         if (feedback == NULL)
4959                 goto err_calloc;
4960
4961         feedback->resource = wl_resource_create(client,
4962                                         &wp_presentation_feedback_interface,
4963                                         1, callback);
4964         if (!feedback->resource)
4965                 goto err_create;
4966
4967         wl_resource_set_implementation(feedback->resource, NULL, feedback,
4968                                        destroy_presentation_feedback);
4969
4970         wl_list_insert(&surface->pending.feedback_list, &feedback->link);
4971
4972         return;
4973
4974 err_create:
4975         free(feedback);
4976
4977 err_calloc:
4978         wl_client_post_no_memory(client);
4979 }
4980
4981 static const struct wp_presentation_interface presentation_implementation = {
4982         presentation_destroy,
4983         presentation_feedback
4984 };
4985
4986 static void
4987 bind_presentation(struct wl_client *client,
4988                   void *data, uint32_t version, uint32_t id)
4989 {
4990         struct weston_compositor *compositor = data;
4991         struct wl_resource *resource;
4992
4993         resource = wl_resource_create(client, &wp_presentation_interface,
4994                                       version, id);
4995         if (resource == NULL) {
4996                 wl_client_post_no_memory(client);
4997                 return;
4998         }
4999
5000         wl_resource_set_implementation(resource, &presentation_implementation,
5001                                        compositor, NULL);
5002         wp_presentation_send_clock_id(resource, compositor->presentation_clock);
5003 }
5004
5005 static void
5006 compositor_bind(struct wl_client *client,
5007                 void *data, uint32_t version, uint32_t id)
5008 {
5009         struct weston_compositor *compositor = data;
5010         struct wl_resource *resource;
5011
5012         resource = wl_resource_create(client, &wl_compositor_interface,
5013                                       version, id);
5014         if (resource == NULL) {
5015                 wl_client_post_no_memory(client);
5016                 return;
5017         }
5018
5019         wl_resource_set_implementation(resource, &compositor_interface,
5020                                        compositor, NULL);
5021 }
5022
5023 WL_EXPORT int
5024 weston_environment_get_fd(const char *env)
5025 {
5026         char *e;
5027         int fd, flags;
5028
5029         e = getenv(env);
5030         if (!e || !safe_strtoint(e, &fd))
5031                 return -1;
5032
5033         flags = fcntl(fd, F_GETFD);
5034         if (flags == -1)
5035                 return -1;
5036
5037         fcntl(fd, F_SETFD, flags | FD_CLOEXEC);
5038         unsetenv(env);
5039
5040         return fd;
5041 }
5042
5043 static void
5044 timeline_key_binding_handler(struct weston_keyboard *keyboard, uint32_t time,
5045                              uint32_t key, void *data)
5046 {
5047         struct weston_compositor *compositor = data;
5048
5049         if (weston_timeline_enabled_)
5050                 weston_timeline_close();
5051         else
5052                 weston_timeline_open(compositor);
5053 }
5054
5055 /** Create the compositor.
5056  *
5057  * This functions creates and initializes a compositor instance.
5058  *
5059  * \param display The Wayland display to be used.
5060  * \param user_data A pointer to an object that can later be retrieved
5061  * using the \ref weston_compositor_get_user_data function.
5062  * \return The compositor instance on success or NULL on failure.
5063  */
5064 WL_EXPORT struct weston_compositor *
5065 weston_compositor_create(struct wl_display *display, void *user_data)
5066 {
5067         struct weston_compositor *ec;
5068         struct wl_event_loop *loop;
5069
5070         ec = zalloc(sizeof *ec);
5071         if (!ec)
5072                 return NULL;
5073
5074         ec->wl_display = display;
5075         ec->user_data = user_data;
5076         wl_signal_init(&ec->destroy_signal);
5077         wl_signal_init(&ec->create_surface_signal);
5078         wl_signal_init(&ec->activate_signal);
5079         wl_signal_init(&ec->transform_signal);
5080         wl_signal_init(&ec->kill_signal);
5081         wl_signal_init(&ec->idle_signal);
5082         wl_signal_init(&ec->wake_signal);
5083         wl_signal_init(&ec->show_input_panel_signal);
5084         wl_signal_init(&ec->hide_input_panel_signal);
5085         wl_signal_init(&ec->update_input_panel_signal);
5086         wl_signal_init(&ec->seat_created_signal);
5087         wl_signal_init(&ec->output_pending_signal);
5088         wl_signal_init(&ec->output_created_signal);
5089         wl_signal_init(&ec->output_destroyed_signal);
5090         wl_signal_init(&ec->output_moved_signal);
5091         wl_signal_init(&ec->output_resized_signal);
5092         wl_signal_init(&ec->session_signal);
5093         ec->session_active = 1;
5094
5095         ec->output_id_pool = 0;
5096         ec->repaint_msec = DEFAULT_REPAINT_WINDOW;
5097
5098         ec->activate_serial = 1;
5099
5100         if (!wl_global_create(ec->wl_display, &wl_compositor_interface, 4,
5101                               ec, compositor_bind))
5102                 goto fail;
5103
5104         if (!wl_global_create(ec->wl_display, &wl_subcompositor_interface, 1,
5105                               ec, bind_subcompositor))
5106                 goto fail;
5107
5108         if (!wl_global_create(ec->wl_display, &wp_viewporter_interface, 1,
5109                               ec, bind_viewporter))
5110                 goto fail;
5111
5112         if (!wl_global_create(ec->wl_display, &wp_presentation_interface, 1,
5113                               ec, bind_presentation))
5114                 goto fail;
5115
5116         if (weston_input_init(ec) != 0)
5117                 goto fail;
5118
5119         wl_list_init(&ec->view_list);
5120         wl_list_init(&ec->plane_list);
5121         wl_list_init(&ec->layer_list);
5122         wl_list_init(&ec->seat_list);
5123         wl_list_init(&ec->pending_output_list);
5124         wl_list_init(&ec->output_list);
5125         wl_list_init(&ec->key_binding_list);
5126         wl_list_init(&ec->modifier_binding_list);
5127         wl_list_init(&ec->button_binding_list);
5128         wl_list_init(&ec->touch_binding_list);
5129         wl_list_init(&ec->axis_binding_list);
5130         wl_list_init(&ec->debug_binding_list);
5131
5132         wl_list_init(&ec->plugin_api_list);
5133
5134         weston_plane_init(&ec->primary_plane, ec, 0, 0);
5135         weston_compositor_stack_plane(ec, &ec->primary_plane, NULL);
5136
5137         wl_data_device_manager_init(ec->wl_display);
5138
5139         wl_display_init_shm(ec->wl_display);
5140
5141         loop = wl_display_get_event_loop(ec->wl_display);
5142         ec->idle_source = wl_event_loop_add_timer(loop, idle_handler, ec);
5143
5144         weston_layer_init(&ec->fade_layer, ec);
5145         weston_layer_init(&ec->cursor_layer, ec);
5146
5147         weston_layer_set_position(&ec->fade_layer, WESTON_LAYER_POSITION_FADE);
5148         weston_layer_set_position(&ec->cursor_layer,
5149                                   WESTON_LAYER_POSITION_CURSOR);
5150
5151         weston_compositor_add_debug_binding(ec, KEY_T,
5152                                             timeline_key_binding_handler, ec);
5153
5154         return ec;
5155
5156 fail:
5157         free(ec);
5158         return NULL;
5159 }
5160
5161 WL_EXPORT void
5162 weston_compositor_shutdown(struct weston_compositor *ec)
5163 {
5164         struct weston_output *output, *next;
5165
5166         wl_event_source_remove(ec->idle_source);
5167
5168         /* Destroy all outputs associated with this compositor */
5169         wl_list_for_each_safe(output, next, &ec->output_list, link)
5170                 output->destroy(output);
5171
5172         /* Destroy all pending outputs associated with this compositor */
5173         wl_list_for_each_safe(output, next, &ec->pending_output_list, link)
5174                 output->destroy(output);
5175
5176         if (ec->renderer)
5177                 ec->renderer->destroy(ec);
5178
5179         weston_binding_list_destroy_all(&ec->key_binding_list);
5180         weston_binding_list_destroy_all(&ec->modifier_binding_list);
5181         weston_binding_list_destroy_all(&ec->button_binding_list);
5182         weston_binding_list_destroy_all(&ec->touch_binding_list);
5183         weston_binding_list_destroy_all(&ec->axis_binding_list);
5184         weston_binding_list_destroy_all(&ec->debug_binding_list);
5185
5186         weston_plane_release(&ec->primary_plane);
5187 }
5188
5189 WL_EXPORT void
5190 weston_compositor_exit_with_code(struct weston_compositor *compositor,
5191                                  int exit_code)
5192 {
5193         if (compositor->exit_code == EXIT_SUCCESS)
5194                 compositor->exit_code = exit_code;
5195
5196         weston_compositor_exit(compositor);
5197 }
5198
5199 WL_EXPORT void
5200 weston_compositor_set_default_pointer_grab(struct weston_compositor *ec,
5201                         const struct weston_pointer_grab_interface *interface)
5202 {
5203         struct weston_seat *seat;
5204
5205         ec->default_pointer_grab = interface;
5206         wl_list_for_each(seat, &ec->seat_list, link) {
5207                 struct weston_pointer *pointer = weston_seat_get_pointer(seat);
5208
5209                 if (pointer)
5210                         weston_pointer_set_default_grab(pointer, interface);
5211         }
5212 }
5213
5214 WL_EXPORT int
5215 weston_compositor_set_presentation_clock(struct weston_compositor *compositor,
5216                                          clockid_t clk_id)
5217 {
5218         struct timespec ts;
5219
5220         if (clock_gettime(clk_id, &ts) < 0)
5221                 return -1;
5222
5223         compositor->presentation_clock = clk_id;
5224
5225         return 0;
5226 }
5227
5228 /*
5229  * For choosing the software clock, when the display hardware or API
5230  * does not expose a compatible presentation timestamp.
5231  */
5232 WL_EXPORT int
5233 weston_compositor_set_presentation_clock_software(
5234                                         struct weston_compositor *compositor)
5235 {
5236         /* In order of preference */
5237         static const clockid_t clocks[] = {
5238                 CLOCK_MONOTONIC_RAW,    /* no jumps, no crawling */
5239                 CLOCK_MONOTONIC_COARSE, /* no jumps, may crawl, fast & coarse */
5240                 CLOCK_MONOTONIC,        /* no jumps, may crawl */
5241                 CLOCK_REALTIME_COARSE,  /* may jump and crawl, fast & coarse */
5242                 CLOCK_REALTIME          /* may jump and crawl */
5243         };
5244         unsigned i;
5245
5246         for (i = 0; i < ARRAY_LENGTH(clocks); i++)
5247                 if (weston_compositor_set_presentation_clock(compositor,
5248                                                              clocks[i]) == 0)
5249                         return 0;
5250
5251         weston_log("Error: no suitable presentation clock available.\n");
5252
5253         return -1;
5254 }
5255
5256 /** Read the current time from the Presentation clock
5257  *
5258  * \param compositor
5259  * \param ts[out] The current time.
5260  *
5261  * \note Reading the current time in user space is always imprecise to some
5262  * degree.
5263  *
5264  * This function is never meant to fail. If reading the clock does fail,
5265  * an error message is logged and a zero time is returned. Callers are not
5266  * supposed to detect or react to failures.
5267  */
5268 WL_EXPORT void
5269 weston_compositor_read_presentation_clock(
5270                         const struct weston_compositor *compositor,
5271                         struct timespec *ts)
5272 {
5273         static bool warned;
5274         int ret;
5275
5276         ret = clock_gettime(compositor->presentation_clock, ts);
5277         if (ret < 0) {
5278                 ts->tv_sec = 0;
5279                 ts->tv_nsec = 0;
5280
5281                 if (!warned)
5282                         weston_log("Error: failure to read "
5283                                    "the presentation clock %#x: '%m' (%d)\n",
5284                                    compositor->presentation_clock, errno);
5285                 warned = true;
5286         }
5287 }
5288
5289 /** Import dmabuf buffer into current renderer
5290  *
5291  * \param compositor
5292  * \param buffer the dmabuf buffer to import
5293  * \return true on usable buffers, false otherwise
5294  *
5295  * This function tests that the linux_dmabuf_buffer is usable
5296  * for the current renderer. Returns false on unusable buffers. Usually
5297  * usability is tested by importing the dmabufs for composition.
5298  *
5299  * This hook is also used for detecting if the renderer supports
5300  * dmabufs at all. If the renderer hook is NULL, dmabufs are not
5301  * supported.
5302  * */
5303 WL_EXPORT bool
5304 weston_compositor_import_dmabuf(struct weston_compositor *compositor,
5305                                 struct linux_dmabuf_buffer *buffer)
5306 {
5307         struct weston_renderer *renderer;
5308
5309         renderer = compositor->renderer;
5310
5311         if (renderer->import_dmabuf == NULL)
5312                 return false;
5313
5314         return renderer->import_dmabuf(compositor, buffer);
5315 }
5316
5317 WL_EXPORT void
5318 weston_version(int *major, int *minor, int *micro)
5319 {
5320         *major = WESTON_VERSION_MAJOR;
5321         *minor = WESTON_VERSION_MINOR;
5322         *micro = WESTON_VERSION_MICRO;
5323 }
5324
5325 WL_EXPORT void *
5326 weston_load_module(const char *name, const char *entrypoint)
5327 {
5328         const char *builddir = getenv("WESTON_BUILD_DIR");
5329         char path[PATH_MAX];
5330         void *module, *init;
5331         size_t len;
5332
5333         if (name == NULL)
5334                 return NULL;
5335
5336         if (name[0] != '/') {
5337                 if (builddir)
5338                         len = snprintf(path, sizeof path, "%s/.libs/%s",
5339                                        builddir, name);
5340                 else
5341                         len = snprintf(path, sizeof path, "%s/%s",
5342                                        LIBWESTON_MODULEDIR, name);
5343         } else {
5344                 len = snprintf(path, sizeof path, "%s", name);
5345         }
5346
5347         /* snprintf returns the length of the string it would've written,
5348          * _excluding_ the NUL byte. So even being equal to the size of
5349          * our buffer is an error here. */
5350         if (len >= sizeof path)
5351                 return NULL;
5352
5353         module = dlopen(path, RTLD_NOW | RTLD_NOLOAD);
5354         if (module) {
5355                 weston_log("Module '%s' already loaded\n", path);
5356                 dlclose(module);
5357                 return NULL;
5358         }
5359
5360         weston_log("Loading module '%s'\n", path);
5361         module = dlopen(path, RTLD_NOW);
5362         if (!module) {
5363                 weston_log("Failed to load module: %s\n", dlerror());
5364                 return NULL;
5365         }
5366
5367         init = dlsym(module, entrypoint);
5368         if (!init) {
5369                 weston_log("Failed to lookup init function: %s\n", dlerror());
5370                 dlclose(module);
5371                 return NULL;
5372         }
5373
5374         return init;
5375 }
5376
5377
5378 /** Destroys the compositor.
5379  *
5380  * This function cleans up the compositor state and destroys it.
5381  *
5382  * \param compositor The compositor to be destroyed.
5383  */
5384 WL_EXPORT void
5385 weston_compositor_destroy(struct weston_compositor *compositor)
5386 {
5387         /* prevent further rendering while shutting down */
5388         compositor->state = WESTON_COMPOSITOR_OFFSCREEN;
5389
5390         wl_signal_emit(&compositor->destroy_signal, compositor);
5391
5392         weston_compositor_xkb_destroy(compositor);
5393
5394         if (compositor->backend)
5395                 compositor->backend->destroy(compositor);
5396
5397         weston_plugin_api_destroy_list(compositor);
5398
5399         free(compositor);
5400 }
5401
5402 /** Instruct the compositor to exit.
5403  *
5404  * This functions does not directly destroy the compositor object, it merely
5405  * command it to start the tear down process. It is not guaranteed that the
5406  * tear down will happen immediately.
5407  *
5408  * \param compositor The compositor to tear down.
5409  */
5410 WL_EXPORT void
5411 weston_compositor_exit(struct weston_compositor *compositor)
5412 {
5413         compositor->exit(compositor);
5414 }
5415
5416 /** Return the user data stored in the compositor.
5417  *
5418  * This function returns the user data pointer set with user_data parameter
5419  * to the \ref weston_compositor_create function.
5420  */
5421 WL_EXPORT void *
5422 weston_compositor_get_user_data(struct weston_compositor *compositor)
5423 {
5424         return compositor->user_data;
5425 }
5426
5427 static const char * const backend_map[] = {
5428         [WESTON_BACKEND_DRM] =          "drm-backend.so",
5429         [WESTON_BACKEND_FBDEV] =        "fbdev-backend.so",
5430         [WESTON_BACKEND_HEADLESS] =     "headless-backend.so",
5431         [WESTON_BACKEND_RDP] =          "rdp-backend.so",
5432         [WESTON_BACKEND_WAYLAND] =      "wayland-backend.so",
5433         [WESTON_BACKEND_X11] =          "x11-backend.so",
5434 };
5435
5436 /** Load a backend into a weston_compositor
5437  *
5438  * A backend must be loaded to make a weston_compositor work. A backend
5439  * provides input and output capabilities, and determines the renderer to use.
5440  *
5441  * \param compositor A compositor that has not had a backend loaded yet.
5442  * \param backend Name of the backend file.
5443  * \param config_base A pointer to a backend-specific configuration
5444  * structure's 'base' member.
5445  *
5446  * \return 0 on success, or -1 on error.
5447  */
5448 WL_EXPORT int
5449 weston_compositor_load_backend(struct weston_compositor *compositor,
5450                                enum weston_compositor_backend backend,
5451                                struct weston_backend_config *config_base)
5452 {
5453         int (*backend_init)(struct weston_compositor *c,
5454                             struct weston_backend_config *config_base);
5455
5456         if (backend >= ARRAY_LENGTH(backend_map))
5457                 return -1;
5458
5459         backend_init = weston_load_module(backend_map[backend], "weston_backend_init");
5460         if (!backend_init)
5461                 return -1;
5462
5463         return backend_init(compositor, config_base);
5464 }
5465
5466 WL_EXPORT int
5467 weston_compositor_load_xwayland(struct weston_compositor *compositor)
5468 {
5469         int (*module_init)(struct weston_compositor *ec);
5470
5471         module_init = weston_load_module("xwayland.so", "weston_module_init");
5472         if (!module_init)
5473                 return -1;
5474         if (module_init(compositor) < 0)
5475                 return -1;
5476         return 0;
5477 }