Merge "Enable fallback, then display applications" into eel
[apps/agl-service-windowmanager.git] / src / wayland.cpp
1 /*
2  * Copyright (c) 2017 TOYOTA MOTOR CORPORATION
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <utility>
18
19 #include "util.hpp"
20 #include "wayland.hpp"
21 #include "hmi-debug.h"
22
23 /**
24  * namespace wl
25  */
26 namespace wl {
27
28 /**
29  * display
30  */
31 display::display()
32    : d(std::unique_ptr<struct wl_display, void (*)(struct wl_display *)>(
33         wl_display_connect(nullptr), &wl_display_disconnect)),
34      r(d.get()) {}
35
36 bool display::ok() const { return d && wl_display_get_error(d.get()) == 0; }
37
38 void display::roundtrip() { wl_display_roundtrip(this->d.get()); }
39
40 int display::dispatch() { return wl_display_dispatch(this->d.get()); }
41
42 int display::dispatch_pending() { return wl_display_dispatch_pending(this->d.get()); }
43
44 int display::read_events() {
45    ST();
46    while (wl_display_prepare_read(this->d.get()) == -1) {
47       STN(pending_events_dispatch);
48       if (wl_display_dispatch_pending(this->d.get()) == -1) {
49          return -1;
50       }
51    }
52
53    if (wl_display_flush(this->d.get()) == -1) {
54       return -1;
55    }
56
57    if (wl_display_read_events(this->d.get()) == -1) {
58       wl_display_cancel_read(this->d.get());
59    }
60
61    return 0;
62 }
63
64 void display::flush() { wl_display_flush(this->d.get()); }
65
66 int display::get_fd() const { return wl_display_get_fd(this->d.get()); }
67
68 int display::get_error() { return wl_display_get_error(this->d.get()); }
69
70 /**
71  * registry
72  */
73 namespace {
74 void registry_global(void *data, struct wl_registry * /*r*/, uint32_t name,
75                      char const *iface, uint32_t v) {
76    static_cast<struct registry *>(data)->global(name, iface, v);
77 }
78
79 void registry_global_remove(void *data, struct wl_registry * /*r*/,
80                             uint32_t name) {
81    static_cast<struct registry *>(data)->global_remove(name);
82 }
83
84 constexpr struct wl_registry_listener registry_listener = {
85    registry_global, registry_global_remove};
86 }  // namespace
87
88 registry::registry(struct wl_display *d)
89    : wayland_proxy(d == nullptr ? nullptr : wl_display_get_registry(d)) {
90    if (this->proxy != nullptr) {
91       wl_registry_add_listener(this->proxy.get(), &registry_listener, this);
92    }
93 }
94
95 void registry::add_global_handler(char const *iface, binder bind) {
96    this->bindings[iface] = std::move(bind);
97 }
98
99 void registry::global(uint32_t name, char const *iface, uint32_t v) {
100    auto b = this->bindings.find(iface);
101    if (b != this->bindings.end()) {
102       b->second(this->proxy.get(), name, v);
103    }
104    HMI_DEBUG("wm", "wl::registry @ %p global n %u i %s v %u", this->proxy.get(), name,
105             iface, v);
106 }
107
108 void registry::global_remove(uint32_t /*name*/) {}
109
110 /**
111  * output
112  */
113 namespace {
114 void output_geometry(void *data, struct wl_output * /*wl_output*/, int32_t x,
115                      int32_t y, int32_t physical_width, int32_t physical_height,
116                      int32_t subpixel, const char *make, const char *model,
117                      int32_t transform) {
118    static_cast<struct output *>(data)->geometry(
119       x, y, physical_width, physical_height, subpixel, make, model, transform);
120 }
121
122 void output_mode(void *data, struct wl_output * /*wl_output*/, uint32_t flags,
123                  int32_t width, int32_t height, int32_t refresh) {
124    static_cast<struct output *>(data)->mode(flags, width, height, refresh);
125 }
126
127 void output_done(void *data, struct wl_output * /*wl_output*/) {
128    static_cast<struct output *>(data)->done();
129 }
130
131 void output_scale(void *data, struct wl_output * /*wl_output*/,
132                   int32_t factor) {
133    static_cast<struct output *>(data)->scale(factor);
134 }
135
136 constexpr struct wl_output_listener output_listener = {
137    output_geometry, output_mode, output_done, output_scale};
138 }  // namespace
139
140 output::output(struct wl_registry *r, uint32_t name, uint32_t v)
141    : wayland_proxy(wl_registry_bind(r, name, &wl_output_interface, v)) {
142    wl_output_add_listener(this->proxy.get(), &output_listener, this);
143 }
144
145 void output::geometry(int32_t x, int32_t y, int32_t pw, int32_t ph,
146                       int32_t subpel, char const *make, char const *model,
147                       int32_t tx) {
148    HMI_DEBUG("wm",
149       "wl::output %s @ %p x %i y %i w %i h %i spel %x make %s model %s tx %i",
150       __func__, this->proxy.get(), x, y, pw, ph, subpel, make, model, tx);
151    this->physical_width = pw;
152    this->physical_height = ph;
153    this->transform = tx;
154 }
155
156 void output::mode(uint32_t flags, int32_t w, int32_t h, int32_t r) {
157    HMI_DEBUG("wm", "wl::output %s @ %p f %x w %i h %i r %i", __func__,
158             this->proxy.get(), flags, w, h, r);
159    if ((flags & WL_OUTPUT_MODE_CURRENT) != 0u) {
160       this->width = w;
161       this->height = h;
162       this->refresh = r;
163    }
164 }
165
166 void output::done() {
167    HMI_DEBUG("wm", "wl::output %s @ %p done", __func__, this->proxy.get());
168    // Pivot and flipped
169    if (this->transform == WL_OUTPUT_TRANSFORM_90 ||
170        this->transform == WL_OUTPUT_TRANSFORM_270 ||
171        this->transform == WL_OUTPUT_TRANSFORM_FLIPPED_90 ||
172        this->transform == WL_OUTPUT_TRANSFORM_FLIPPED_270) {
173       std::swap(this->width, this->height);
174       std::swap(this->physical_width, this->physical_height);
175    }
176 }
177
178 void output::scale(int32_t factor) {
179    HMI_DEBUG("wm", "wl::output %s @ %p f %i", __func__, this->proxy.get(), factor);
180 }
181 }  // namespace wl
182
183 /**
184  * namespace compositor
185  */
186 namespace compositor {
187
188 /**
189  * controller
190  */
191 namespace {
192 void controller_screen(void *data, struct ivi_controller * /*ivi_controller*/,
193                        uint32_t id_screen,
194                        struct ivi_controller_screen *screen) {
195    static_cast<struct controller *>(data)->controller_screen(id_screen, screen);
196 }
197
198 void controller_layer(void *data, struct ivi_controller * /*ivi_controller*/,
199                       uint32_t id_layer) {
200    static_cast<struct controller *>(data)->controller_layer(id_layer);
201 }
202
203 void controller_surface(void *data, struct ivi_controller * /*ivi_controller*/,
204                         uint32_t id_surface) {
205    static_cast<struct controller *>(data)->controller_surface(id_surface);
206 }
207
208 void controller_error(void *data, struct ivi_controller * /*ivi_controller*/,
209                       int32_t object_id, int32_t object_type,
210                       int32_t error_code, const char *error_text) {
211    static_cast<struct controller *>(data)->controller_error(
212       object_id, object_type, error_code, error_text);
213 }
214
215 constexpr struct ivi_controller_listener listener = {
216    controller_screen, controller_layer, controller_surface, controller_error};
217 }  // namespace compositor
218
219 controller::controller(struct wl_registry *r, uint32_t name, uint32_t version)
220    : wayland_proxy(
221         wl_registry_bind(r, name, &ivi_controller_interface, version)),
222      output_size{} {
223    ivi_controller_add_listener(this->proxy.get(), &listener, this);
224 }
225
226 void controller::layer_create(uint32_t id, int32_t w, int32_t h) {
227    this->layers[id] = std::make_unique<struct layer>(id, w, h, this);
228 }
229
230 void controller::surface_create(uint32_t id) {
231    this->surfaces[id] = std::make_unique<struct surface>(id, this);
232
233    // configure surface to wxh dimensions
234    this->surfaces[id]->set_configuration(this->output_size.w, this->output_size.h);
235 }
236
237 void controller::controller_screen(uint32_t id,
238                                    struct ivi_controller_screen *screen) {
239    HMI_DEBUG("wm", "compositor::controller @ %p screen %u (%x) @ %p", this->proxy.get(),
240             id, id, screen);
241    this->screens[id] = std::make_unique<struct screen>(id, this, screen);
242 }
243
244 void controller::controller_layer(uint32_t id) {
245    HMI_DEBUG("wm", "compositor::controller @ %p layer %u (%x)", this->proxy.get(), id, id);
246    if (this->layers.find(id) != this->layers.end()) {
247       HMI_DEBUG("wm", "WindowManager has created layer %u (%x) already", id, id);
248    } else {
249       auto &l = this->layers[id] = std::make_unique<struct layer>(id, this);
250       l->clear_surfaces();
251    }
252 }
253
254 void controller::controller_surface(uint32_t id) {
255    HMI_DEBUG("wm", "compositor::controller @ %p surface %u (%x)", this->proxy.get(), id,
256             id);
257    if (this->surfaces.find(id) == this->surfaces.end()) {
258       this->surfaces[id] = std::make_unique<struct surface>(id, this);
259       this->chooks->surface_created(id);
260
261       // configure surface to wxh dimensions
262       this->surfaces[id]->set_configuration(this->output_size.w, this->output_size.h);
263    }
264 }
265
266 void controller::controller_error(int32_t object_id, int32_t object_type,
267                                   int32_t error_code, const char *error_text) {
268    HMI_DEBUG("wm", "compositor::controller @ %p error o %i t %i c %i text %s",
269             this->proxy.get(), object_id, object_type, error_code, error_text);
270 }
271
272 /**
273  * layer
274  */
275 namespace {
276 void layer_visibility(void *data,
277                       struct ivi_controller_layer * /*ivi_controller_layer*/,
278                       int32_t visibility) {
279    auto l = static_cast<struct layer *>(data);
280    l->parent->layer_visibility(l, visibility);
281 }
282
283 void layer_opacity(void *data,
284                    struct ivi_controller_layer * /*ivi_controller_layer*/,
285                    wl_fixed_t opacity) {
286    auto l = static_cast<struct layer *>(data);
287    l->parent->layer_opacity(l, float(wl_fixed_to_double(opacity)));
288 }
289
290 void layer_source_rectangle(
291    void *data, struct ivi_controller_layer * /*ivi_controller_layer*/,
292    int32_t x, int32_t y, int32_t width, int32_t height) {
293    auto l = static_cast<struct layer *>(data);
294    l->parent->layer_source_rectangle(l, x, y, width, height);
295 }
296
297 void layer_destination_rectangle(
298    void *data, struct ivi_controller_layer * /*ivi_controller_layer*/,
299    int32_t x, int32_t y, int32_t width, int32_t height) {
300    auto l = static_cast<struct layer *>(data);
301    l->parent->layer_destination_rectangle(l, x, y, width, height);
302 }
303
304 void layer_configuration(void *data,
305                          struct ivi_controller_layer * /*ivi_controller_layer*/,
306                          int32_t width, int32_t height) {
307    auto l = static_cast<struct layer *>(data);
308    l->parent->layer_configuration(l, width, height);
309 }
310
311 void layer_orientation(void *data,
312                        struct ivi_controller_layer * /*ivi_controller_layer*/,
313                        int32_t orientation) {
314    auto l = static_cast<struct layer *>(data);
315    l->parent->layer_orientation(l, orientation);
316 }
317
318 void layer_screen(void *data,
319                   struct ivi_controller_layer * /*ivi_controller_layer*/,
320                   struct wl_output *screen) {
321    auto l = static_cast<struct layer *>(data);
322    l->parent->layer_screen(l, screen);
323 }
324
325 void layer_destroyed(void *data,
326                      struct ivi_controller_layer * /*ivi_controller_layer*/) {
327    auto l = static_cast<struct layer *>(data);
328    l->parent->layer_destroyed(l);
329 }
330
331 constexpr struct ivi_controller_layer_listener layer_listener = {
332    layer_visibility,       layer_opacity,
333    layer_source_rectangle, layer_destination_rectangle,
334    layer_configuration,    layer_orientation,
335    layer_screen,           layer_destroyed,
336 };
337 }  // namespace
338
339 layer::layer(uint32_t i, struct controller *c) : layer(i, 0, 0, c) {}
340
341 layer::layer(uint32_t i, int32_t w, int32_t h, struct controller *c)
342    : wayland_proxy(ivi_controller_layer_create(c->proxy.get(), i, w, h),
343                    [c, i](ivi_controller_layer *l) {
344                       HMI_DEBUG("wm", "~layer layer %i @ %p", i, l);
345                       c->remove_proxy_to_id_mapping(l);
346                       ivi_controller_layer_destroy(l, 1);
347                    }),
348      controller_child(c, i) {
349    this->parent->add_proxy_to_id_mapping(this->proxy.get(), i);
350    ivi_controller_layer_add_listener(this->proxy.get(), &layer_listener, this);
351 }
352
353 void layer::set_visibility(uint32_t visibility) {
354    ivi_controller_layer_set_visibility(this->proxy.get(), visibility);
355 }
356
357 void layer::set_opacity(wl_fixed_t opacity) {
358    ivi_controller_layer_set_opacity(this->proxy.get(), opacity);
359 }
360
361 void layer::set_source_rectangle(int32_t x, int32_t y, int32_t width,
362                                  int32_t height) {
363    ivi_controller_layer_set_source_rectangle(this->proxy.get(), x, y, width,
364                                              height);
365 }
366
367 void layer::set_destination_rectangle(int32_t x, int32_t y, int32_t width,
368                                       int32_t height) {
369    ivi_controller_layer_set_destination_rectangle(this->proxy.get(), x, y,
370                                                   width, height);
371 }
372
373 void layer::set_configuration(int32_t width, int32_t height) {
374    ivi_controller_layer_set_configuration(this->proxy.get(), width, height);
375 }
376
377 void layer::set_orientation(int32_t orientation) {
378    ivi_controller_layer_set_orientation(this->proxy.get(), orientation);
379 }
380
381 void layer::screenshot(const char *filename) {
382    ivi_controller_layer_screenshot(this->proxy.get(), filename);
383 }
384
385 void layer::clear_surfaces() {
386    ivi_controller_layer_clear_surfaces(this->proxy.get());
387 }
388
389 void layer::add_surface(struct surface *surface) {
390    ivi_controller_layer_add_surface(this->proxy.get(), surface->proxy.get());
391 }
392
393 void layer::remove_surface(struct surface *surface) {
394    ivi_controller_layer_remove_surface(this->proxy.get(), surface->proxy.get());
395 }
396
397 void layer::set_render_order(std::vector<uint32_t> const &ro) {
398    struct wl_array wlro {
399       .size = ro.size() * sizeof(ro[0]), .alloc = ro.capacity() * sizeof(ro[0]),
400       .data = const_cast<void *>(static_cast<void const *>(ro.data()))
401    };
402    ivi_controller_layer_set_render_order(this->proxy.get(), &wlro);
403 }
404
405 void controller::layer_visibility(struct layer *l, int32_t visibility) {
406    HMI_DEBUG("wm", "compositor::layer %s @ %d v %i", __func__, l->id, visibility);
407    this->lprops[l->id].visibility = visibility;
408 }
409
410 void controller::layer_opacity(struct layer *l, float opacity) {
411    HMI_DEBUG("wm", "compositor::layer %s @ %d o %f", __func__, l->id, opacity);
412    this->lprops[l->id].opacity = opacity;
413 }
414
415 void controller::layer_source_rectangle(struct layer *l, int32_t x, int32_t y,
416                                         int32_t width, int32_t height) {
417    HMI_DEBUG("wm", "compositor::layer %s @ %d x %i y %i w %i h %i", __func__,
418             l->id, x, y, width, height);
419    this->lprops[l->id].src_rect = rect{width, height, x, y};
420 }
421
422 void controller::layer_destination_rectangle(struct layer *l, int32_t x,
423                                              int32_t y, int32_t width,
424                                              int32_t height) {
425    HMI_DEBUG("wm", "compositor::layer %s @ %d x %i y %i w %i h %i", __func__,
426             l->id, x, y, width, height);
427    this->lprops[l->id].dst_rect = rect{width, height, x, y};
428 }
429
430 void controller::layer_configuration(struct layer *l, int32_t width,
431                                      int32_t height) {
432    HMI_DEBUG("wm", "compositor::layer %s @ %d w %i h %i", __func__, l->id,
433             width, height);
434    this->lprops[l->id].size = size{uint32_t(width), uint32_t(height)};
435 }
436
437 void controller::layer_orientation(struct layer *l, int32_t orientation) {
438    HMI_DEBUG("wm", "compositor::layer %s @ %d o %i", __func__, l->id,
439             orientation);
440    this->lprops[l->id].orientation = orientation;
441 }
442
443 void controller::layer_screen(struct layer *l, struct wl_output *screen) {
444    HMI_DEBUG("wm", "compositor::layer %s @ %d s %p", __func__, l->id, screen);
445 }
446
447 void controller::layer_destroyed(struct layer *l) {
448    HMI_DEBUG("wm", "compositor::layer %s @ %d", __func__, l->id);
449    this->lprops.erase(l->id);
450    this->layers.erase(l->id);
451 }
452
453 /**
454  * surface
455  */
456 namespace {
457
458 void surface_visibility(
459    void *data, struct ivi_controller_surface * /*ivi_controller_surface*/,
460    int32_t visibility) {
461    auto s = static_cast<struct surface *>(data);
462    s->parent->surface_visibility(s, visibility);
463 }
464
465 void surface_opacity(void *data,
466                      struct ivi_controller_surface * /*ivi_controller_surface*/,
467                      wl_fixed_t opacity) {
468    auto s = static_cast<struct surface *>(data);
469    s->parent->surface_opacity(s, float(wl_fixed_to_double(opacity)));
470 }
471
472 void surface_source_rectangle(
473    void *data, struct ivi_controller_surface * /*ivi_controller_surface*/,
474    int32_t x, int32_t y, int32_t width, int32_t height) {
475    auto s = static_cast<struct surface *>(data);
476    s->parent->surface_source_rectangle(s, x, y, width, height);
477 }
478
479 void surface_destination_rectangle(
480    void *data, struct ivi_controller_surface * /*ivi_controller_surface*/,
481    int32_t x, int32_t y, int32_t width, int32_t height) {
482    auto s = static_cast<struct surface *>(data);
483    s->parent->surface_destination_rectangle(s, x, y, width, height);
484 }
485
486 void surface_configuration(
487    void *data, struct ivi_controller_surface * /*ivi_controller_surface*/,
488    int32_t width, int32_t height) {
489    auto s = static_cast<struct surface *>(data);
490    s->parent->surface_configuration(s, width, height);
491 }
492
493 void surface_orientation(
494    void *data, struct ivi_controller_surface * /*ivi_controller_surface*/,
495    int32_t orientation) {
496    auto s = static_cast<struct surface *>(data);
497    s->parent->surface_orientation(s, orientation);
498 }
499
500 void surface_pixelformat(
501    void *data, struct ivi_controller_surface * /*ivi_controller_surface*/,
502    int32_t pixelformat) {
503    auto s = static_cast<struct surface *>(data);
504    s->parent->surface_pixelformat(s, pixelformat);
505 }
506
507 void surface_layer(void *data,
508                    struct ivi_controller_surface * /*ivi_controller_surface*/,
509                    struct ivi_controller_layer *layer) {
510    auto s = static_cast<struct surface *>(data);
511    s->parent->surface_layer(s, layer);
512 }
513
514 void surface_stats(void *data,
515                    struct ivi_controller_surface * /*ivi_controller_surface*/,
516                    uint32_t redraw_count, uint32_t frame_count,
517                    uint32_t update_count, uint32_t pid,
518                    const char *process_name) {
519    auto s = static_cast<struct surface *>(data);
520    s->parent->surface_stats(s, redraw_count, frame_count, update_count, pid,
521                             process_name);
522 }
523
524 void surface_destroyed(
525    void *data, struct ivi_controller_surface * /*ivi_controller_surface*/) {
526    auto s = static_cast<struct surface *>(data);
527    s->parent->surface_destroyed(s);
528 }
529
530 void surface_content(void *data,
531                      struct ivi_controller_surface * /*ivi_controller_surface*/,
532                      int32_t content_state) {
533    auto s = static_cast<struct surface *>(data);
534    s->parent->surface_content(s, content_state);
535 }
536
537 constexpr struct ivi_controller_surface_listener surface_listener = {
538    surface_visibility,
539    surface_opacity,
540    surface_source_rectangle,
541    surface_destination_rectangle,
542    surface_configuration,
543    surface_orientation,
544    surface_pixelformat,
545    surface_layer,
546    surface_stats,
547    surface_destroyed,
548    surface_content,
549 };
550 }  // namespace
551
552 surface::surface(uint32_t i, struct controller *c)
553    : wayland_proxy(ivi_controller_surface_create(c->proxy.get(), i),
554                    [c, i](ivi_controller_surface *s) {
555                       HMI_DEBUG("wm", "~surface surface %i @ %p", i, s);
556                       c->remove_proxy_to_id_mapping(s);
557                       ivi_controller_surface_destroy(s, 1);
558                    }),
559      controller_child(c, i) {
560    this->parent->add_proxy_to_id_mapping(this->proxy.get(), i);
561    ivi_controller_surface_add_listener(this->proxy.get(), &surface_listener,
562                                        this);
563 }
564
565 void surface::set_visibility(uint32_t visibility) {
566    ivi_controller_surface_set_visibility(this->proxy.get(), visibility);
567 }
568
569 void surface::set_opacity(wl_fixed_t opacity) {
570    ivi_controller_surface_set_opacity(this->proxy.get(), opacity);
571 }
572
573 void surface::set_source_rectangle(int32_t x, int32_t y, int32_t width,
574                                    int32_t height) {
575    ivi_controller_surface_set_source_rectangle(this->proxy.get(), x, y, width,
576                                                height);
577 }
578
579 void surface::set_destination_rectangle(int32_t x, int32_t y, int32_t width,
580                                         int32_t height) {
581    ivi_controller_surface_set_destination_rectangle(this->proxy.get(), x, y,
582                                                     width, height);
583 }
584
585 void surface::set_configuration(int32_t width, int32_t height) {
586    ivi_controller_surface_set_configuration(this->proxy.get(), width, height);
587 }
588
589 void surface::set_orientation(int32_t orientation) {
590    ivi_controller_surface_set_orientation(this->proxy.get(), orientation);
591 }
592
593 void surface::screenshot(const char *filename) {
594    ivi_controller_surface_screenshot(this->proxy.get(), filename);
595 }
596
597 void surface::send_stats() {
598    ivi_controller_surface_send_stats(this->proxy.get());
599 }
600
601 void surface::destroy(int32_t destroy_scene_object) {
602    ivi_controller_surface_destroy(this->proxy.get(), destroy_scene_object);
603 }
604
605 void controller::surface_visibility(struct surface *s, int32_t visibility) {
606    HMI_DEBUG("wm", "compositor::surface %s @ %d v %i", __func__, s->id,
607             visibility);
608    this->sprops[s->id].visibility = visibility;
609    this->chooks->surface_visibility(s->id, visibility);
610 }
611
612 void controller::surface_opacity(struct surface *s, float opacity) {
613    HMI_DEBUG("wm", "compositor::surface %s @ %d o %f", __func__, s->id,
614             opacity);
615    this->sprops[s->id].opacity = opacity;
616 }
617
618 void controller::surface_source_rectangle(struct surface *s, int32_t x,
619                                           int32_t y, int32_t width,
620                                           int32_t height) {
621    HMI_DEBUG("wm", "compositor::surface %s @ %d x %i y %i w %i h %i", __func__,
622             s->id, x, y, width, height);
623    this->sprops[s->id].src_rect = rect{width, height, x, y};
624 }
625
626 void controller::surface_destination_rectangle(struct surface *s, int32_t x,
627                                                int32_t y, int32_t width,
628                                                int32_t height) {
629    HMI_DEBUG("wm", "compositor::surface %s @ %d x %i y %i w %i h %i", __func__,
630             s->id, x, y, width, height);
631    this->sprops[s->id].dst_rect = rect{width, height, x, y};
632    this->chooks->surface_destination_rectangle(s->id, x, y, width, height);
633 }
634
635 void controller::surface_configuration(struct surface *s, int32_t width,
636                                        int32_t height) {
637    HMI_DEBUG("wm", "compositor::surface %s @ %d w %i h %i", __func__, s->id,
638             width, height);
639    this->sprops[s->id].size = size{uint32_t(width), uint32_t(height)};
640 }
641
642 void controller::surface_orientation(struct surface *s, int32_t orientation) {
643    HMI_DEBUG("wm", "compositor::surface %s @ %d o %i", __func__, s->id,
644             orientation);
645    this->sprops[s->id].orientation = orientation;
646 }
647
648 void controller::surface_pixelformat(struct surface * s,
649                                      int32_t pixelformat) {
650    HMI_DEBUG("wm", "compositor::surface %s @ %d f %i", __func__, s->id,
651             pixelformat);
652 }
653
654 void controller::surface_layer(struct surface * s,
655                                struct ivi_controller_layer *layer) {
656    HMI_DEBUG("wm", "compositor::surface %s @ %d l %u @ %p", __func__, s->id,
657             this->layer_proxy_to_id[uintptr_t(layer)], layer);
658 }
659
660 void controller::surface_stats(struct surface *s, uint32_t redraw_count,
661                                uint32_t frame_count, uint32_t update_count,
662                                uint32_t pid, const char *process_name) {
663    HMI_DEBUG("wm", "compositor::surface %s @ %d r %u f %u u %u pid %u p %s", __func__,
664             s->id, redraw_count, frame_count, update_count, pid,
665             process_name);
666 }
667
668 void controller::surface_destroyed(struct surface *s) {
669    HMI_DEBUG("wm", "compositor::surface %s @ %d", __func__, s->id);
670    this->chooks->surface_removed(s->id);
671    this->sprops.erase(s->id);
672    this->surfaces.erase(s->id);
673 }
674
675 void controller::surface_content(struct surface *s, int32_t content_state) {
676    HMI_DEBUG("wm", "compositor::surface %s @ %d s %i", __func__, s->id,
677             content_state);
678    if (content_state == IVI_CONTROLLER_SURFACE_CONTENT_STATE_CONTENT_REMOVED) {
679       this->chooks->surface_removed(s->id);
680       this->sprops.erase(s->id);
681       this->surfaces.erase(s->id);
682    }
683 }
684
685 void controller::add_proxy_to_id_mapping(struct ivi_controller_surface *p,
686                                          uint32_t id) {
687    HMI_DEBUG("wm", "Add surface proxy mapping for %p (%u)", p, id);
688    this->surface_proxy_to_id[uintptr_t(p)] = id;
689    this->sprops[id].id = id;
690 }
691
692 void controller::remove_proxy_to_id_mapping(struct ivi_controller_surface *p) {
693    HMI_DEBUG("wm", "Remove surface proxy mapping for %p", p);
694    this->surface_proxy_to_id.erase(uintptr_t(p));
695 }
696
697 void controller::add_proxy_to_id_mapping(struct ivi_controller_layer *p,
698                                          uint32_t id) {
699    HMI_DEBUG("wm", "Add layer proxy mapping for %p (%u)", p, id);
700    this->layer_proxy_to_id[uintptr_t(p)] = id;
701    this->lprops[id].id = id;
702 }
703
704 void controller::remove_proxy_to_id_mapping(struct ivi_controller_layer *p) {
705    HMI_DEBUG("wm", "Remove layer proxy mapping for %p", p);
706    this->layer_proxy_to_id.erase(uintptr_t(p));
707 }
708
709 void controller::add_proxy_to_id_mapping(struct wl_output *p, uint32_t id) {
710    HMI_DEBUG("wm", "Add screen proxy mapping for %p (%u)", p, id);
711    this->screen_proxy_to_id[uintptr_t(p)] = id;
712 }
713
714 void controller::remove_proxy_to_id_mapping(struct wl_output *p) {
715    HMI_DEBUG("wm", "Remove screen proxy mapping for %p", p);
716    this->screen_proxy_to_id.erase(uintptr_t(p));
717 }
718
719 /**
720  * screen
721  */
722 screen::screen(uint32_t i, struct controller *c,
723                struct ivi_controller_screen *p)
724    : wayland_proxy(p), controller_child(c, i) {
725    HMI_DEBUG("wm", "compositor::screen @ %p id %u", p, i);
726 }
727
728 void screen::clear() { ivi_controller_screen_clear(this->proxy.get()); }
729
730 void screen::add_layer(layer *l) {
731    ivi_controller_screen_add_layer(this->proxy.get(), l->proxy.get());
732 }
733
734 void screen::set_render_order(std::vector<uint32_t> const &ro) {
735    struct wl_array wlro {
736       .size = ro.size() * sizeof(ro[0]), .alloc = ro.capacity() * sizeof(ro[0]),
737       .data = const_cast<void *>(static_cast<void const *>(ro.data()))
738    };
739    ivi_controller_screen_set_render_order(this->proxy.get(), &wlro);
740 }
741
742 }  // namespace compositor