9e7408cbdf785ff5e46ff1aace8b31ab853495fa
[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->transform = tx;
152 }
153
154 void output::mode(uint32_t flags, int32_t w, int32_t h, int32_t r) {
155    HMI_DEBUG("wm", "wl::output %s @ %p f %x w %i h %i r %i", __func__,
156             this->proxy.get(), flags, w, h, r);
157    if ((flags & WL_OUTPUT_MODE_CURRENT) != 0u) {
158       this->width = w;
159       this->height = h;
160       this->refresh = r;
161    }
162 }
163
164 void output::done() {
165    HMI_DEBUG("wm", "wl::output %s @ %p done", __func__, this->proxy.get());
166    // Pivot and flipped
167    if (this->transform == WL_OUTPUT_TRANSFORM_90 ||
168        this->transform == WL_OUTPUT_TRANSFORM_270 ||
169        this->transform == WL_OUTPUT_TRANSFORM_FLIPPED_90 ||
170        this->transform == WL_OUTPUT_TRANSFORM_FLIPPED_270) {
171       std::swap(this->width, this->height);
172    }
173 }
174
175 void output::scale(int32_t factor) {
176    HMI_DEBUG("wm", "wl::output %s @ %p f %i", __func__, this->proxy.get(), factor);
177 }
178 }  // namespace wl
179
180 /**
181  * namespace compositor
182  */
183 namespace compositor {
184
185 /**
186  * controller
187  */
188 namespace {
189 void controller_screen(void *data, struct ivi_controller * /*ivi_controller*/,
190                        uint32_t id_screen,
191                        struct ivi_controller_screen *screen) {
192    static_cast<struct controller *>(data)->controller_screen(id_screen, screen);
193 }
194
195 void controller_layer(void *data, struct ivi_controller * /*ivi_controller*/,
196                       uint32_t id_layer) {
197    static_cast<struct controller *>(data)->controller_layer(id_layer);
198 }
199
200 void controller_surface(void *data, struct ivi_controller * /*ivi_controller*/,
201                         uint32_t id_surface) {
202    static_cast<struct controller *>(data)->controller_surface(id_surface);
203 }
204
205 void controller_error(void *data, struct ivi_controller * /*ivi_controller*/,
206                       int32_t object_id, int32_t object_type,
207                       int32_t error_code, const char *error_text) {
208    static_cast<struct controller *>(data)->controller_error(
209       object_id, object_type, error_code, error_text);
210 }
211
212 constexpr struct ivi_controller_listener listener = {
213    controller_screen, controller_layer, controller_surface, controller_error};
214 }  // namespace compositor
215
216 controller::controller(struct wl_registry *r, uint32_t name, uint32_t version)
217    : wayland_proxy(
218         wl_registry_bind(r, name, &ivi_controller_interface, version)),
219      output_size{} {
220    ivi_controller_add_listener(this->proxy.get(), &listener, this);
221 }
222
223 void controller::layer_create(uint32_t id, int32_t w, int32_t h) {
224    this->layers[id] = std::make_unique<struct layer>(id, w, h, this);
225 }
226
227 void controller::surface_create(uint32_t id) {
228    this->surfaces[id] = std::make_unique<struct surface>(id, this);
229
230    // configure surface to wxh dimensions
231    this->surfaces[id]->set_configuration(this->output_size.w, this->output_size.h);
232 }
233
234 void controller::controller_screen(uint32_t id,
235                                    struct ivi_controller_screen *screen) {
236    HMI_DEBUG("wm", "compositor::controller @ %p screen %u (%x) @ %p", this->proxy.get(),
237             id, id, screen);
238    this->screens[id] = std::make_unique<struct screen>(id, this, screen);
239 }
240
241 void controller::controller_layer(uint32_t id) {
242    HMI_DEBUG("wm", "compositor::controller @ %p layer %u (%x)", this->proxy.get(), id, id);
243    if (this->layers.find(id) != this->layers.end()) {
244       HMI_DEBUG("wm", "WindowManager has created layer %u (%x) already", id, id);
245    } else {
246       auto &l = this->layers[id] = std::make_unique<struct layer>(id, this);
247       l->clear_surfaces();
248    }
249 }
250
251 void controller::controller_surface(uint32_t id) {
252    HMI_DEBUG("wm", "compositor::controller @ %p surface %u (%x)", this->proxy.get(), id,
253             id);
254    if (this->surfaces.find(id) == this->surfaces.end()) {
255       this->surfaces[id] = std::make_unique<struct surface>(id, this);
256       this->chooks->surface_created(id);
257
258       // configure surface to wxh dimensions
259       this->surfaces[id]->set_configuration(this->output_size.w, this->output_size.h);
260    }
261 }
262
263 void controller::controller_error(int32_t object_id, int32_t object_type,
264                                   int32_t error_code, const char *error_text) {
265    HMI_DEBUG("wm", "compositor::controller @ %p error o %i t %i c %i text %s",
266             this->proxy.get(), object_id, object_type, error_code, error_text);
267 }
268
269 /**
270  * layer
271  */
272 namespace {
273 void layer_visibility(void *data,
274                       struct ivi_controller_layer * /*ivi_controller_layer*/,
275                       int32_t visibility) {
276    auto l = static_cast<struct layer *>(data);
277    l->parent->layer_visibility(l, visibility);
278 }
279
280 void layer_opacity(void *data,
281                    struct ivi_controller_layer * /*ivi_controller_layer*/,
282                    wl_fixed_t opacity) {
283    auto l = static_cast<struct layer *>(data);
284    l->parent->layer_opacity(l, float(wl_fixed_to_double(opacity)));
285 }
286
287 void layer_source_rectangle(
288    void *data, struct ivi_controller_layer * /*ivi_controller_layer*/,
289    int32_t x, int32_t y, int32_t width, int32_t height) {
290    auto l = static_cast<struct layer *>(data);
291    l->parent->layer_source_rectangle(l, x, y, width, height);
292 }
293
294 void layer_destination_rectangle(
295    void *data, struct ivi_controller_layer * /*ivi_controller_layer*/,
296    int32_t x, int32_t y, int32_t width, int32_t height) {
297    auto l = static_cast<struct layer *>(data);
298    l->parent->layer_destination_rectangle(l, x, y, width, height);
299 }
300
301 void layer_configuration(void *data,
302                          struct ivi_controller_layer * /*ivi_controller_layer*/,
303                          int32_t width, int32_t height) {
304    auto l = static_cast<struct layer *>(data);
305    l->parent->layer_configuration(l, width, height);
306 }
307
308 void layer_orientation(void *data,
309                        struct ivi_controller_layer * /*ivi_controller_layer*/,
310                        int32_t orientation) {
311    auto l = static_cast<struct layer *>(data);
312    l->parent->layer_orientation(l, orientation);
313 }
314
315 void layer_screen(void *data,
316                   struct ivi_controller_layer * /*ivi_controller_layer*/,
317                   struct wl_output *screen) {
318    auto l = static_cast<struct layer *>(data);
319    l->parent->layer_screen(l, screen);
320 }
321
322 void layer_destroyed(void *data,
323                      struct ivi_controller_layer * /*ivi_controller_layer*/) {
324    auto l = static_cast<struct layer *>(data);
325    l->parent->layer_destroyed(l);
326 }
327
328 constexpr struct ivi_controller_layer_listener layer_listener = {
329    layer_visibility,       layer_opacity,
330    layer_source_rectangle, layer_destination_rectangle,
331    layer_configuration,    layer_orientation,
332    layer_screen,           layer_destroyed,
333 };
334 }  // namespace
335
336 layer::layer(uint32_t i, struct controller *c) : layer(i, 0, 0, c) {}
337
338 layer::layer(uint32_t i, int32_t w, int32_t h, struct controller *c)
339    : wayland_proxy(ivi_controller_layer_create(c->proxy.get(), i, w, h),
340                    [c, i](ivi_controller_layer *l) {
341                       HMI_DEBUG("wm", "~layer layer %i @ %p", i, l);
342                       c->remove_proxy_to_id_mapping(l);
343                       ivi_controller_layer_destroy(l, 1);
344                    }),
345      controller_child(c, i) {
346    this->parent->add_proxy_to_id_mapping(this->proxy.get(), i);
347    ivi_controller_layer_add_listener(this->proxy.get(), &layer_listener, this);
348 }
349
350 void layer::set_visibility(uint32_t visibility) {
351    ivi_controller_layer_set_visibility(this->proxy.get(), visibility);
352 }
353
354 void layer::set_opacity(wl_fixed_t opacity) {
355    ivi_controller_layer_set_opacity(this->proxy.get(), opacity);
356 }
357
358 void layer::set_source_rectangle(int32_t x, int32_t y, int32_t width,
359                                  int32_t height) {
360    ivi_controller_layer_set_source_rectangle(this->proxy.get(), x, y, width,
361                                              height);
362 }
363
364 void layer::set_destination_rectangle(int32_t x, int32_t y, int32_t width,
365                                       int32_t height) {
366    ivi_controller_layer_set_destination_rectangle(this->proxy.get(), x, y,
367                                                   width, height);
368 }
369
370 void layer::set_configuration(int32_t width, int32_t height) {
371    ivi_controller_layer_set_configuration(this->proxy.get(), width, height);
372 }
373
374 void layer::set_orientation(int32_t orientation) {
375    ivi_controller_layer_set_orientation(this->proxy.get(), orientation);
376 }
377
378 void layer::screenshot(const char *filename) {
379    ivi_controller_layer_screenshot(this->proxy.get(), filename);
380 }
381
382 void layer::clear_surfaces() {
383    ivi_controller_layer_clear_surfaces(this->proxy.get());
384 }
385
386 void layer::add_surface(struct surface *surface) {
387    ivi_controller_layer_add_surface(this->proxy.get(), surface->proxy.get());
388 }
389
390 void layer::remove_surface(struct surface *surface) {
391    ivi_controller_layer_remove_surface(this->proxy.get(), surface->proxy.get());
392 }
393
394 void layer::set_render_order(std::vector<uint32_t> const &ro) {
395    struct wl_array wlro {
396       .size = ro.size() * sizeof(ro[0]), .alloc = ro.capacity() * sizeof(ro[0]),
397       .data = const_cast<void *>(static_cast<void const *>(ro.data()))
398    };
399    ivi_controller_layer_set_render_order(this->proxy.get(), &wlro);
400 }
401
402 void controller::layer_visibility(struct layer *l, int32_t visibility) {
403    HMI_DEBUG("wm", "compositor::layer %s @ %d v %i", __func__, l->id, visibility);
404    this->lprops[l->id].visibility = visibility;
405 }
406
407 void controller::layer_opacity(struct layer *l, float opacity) {
408    HMI_DEBUG("wm", "compositor::layer %s @ %d o %f", __func__, l->id, opacity);
409    this->lprops[l->id].opacity = opacity;
410 }
411
412 void controller::layer_source_rectangle(struct layer *l, int32_t x, int32_t y,
413                                         int32_t width, int32_t height) {
414    HMI_DEBUG("wm", "compositor::layer %s @ %d x %i y %i w %i h %i", __func__,
415             l->id, x, y, width, height);
416    this->lprops[l->id].src_rect = rect{width, height, x, y};
417 }
418
419 void controller::layer_destination_rectangle(struct layer *l, int32_t x,
420                                              int32_t y, int32_t width,
421                                              int32_t height) {
422    HMI_DEBUG("wm", "compositor::layer %s @ %d x %i y %i w %i h %i", __func__,
423             l->id, x, y, width, height);
424    this->lprops[l->id].dst_rect = rect{width, height, x, y};
425 }
426
427 void controller::layer_configuration(struct layer *l, int32_t width,
428                                      int32_t height) {
429    HMI_DEBUG("wm", "compositor::layer %s @ %d w %i h %i", __func__, l->id,
430             width, height);
431    this->lprops[l->id].size = size{uint32_t(width), uint32_t(height)};
432 }
433
434 void controller::layer_orientation(struct layer *l, int32_t orientation) {
435    HMI_DEBUG("wm", "compositor::layer %s @ %d o %i", __func__, l->id,
436             orientation);
437    this->lprops[l->id].orientation = orientation;
438 }
439
440 void controller::layer_screen(struct layer *l, struct wl_output *screen) {
441    HMI_DEBUG("wm", "compositor::layer %s @ %d s %p", __func__, l->id, screen);
442 }
443
444 void controller::layer_destroyed(struct layer *l) {
445    HMI_DEBUG("wm", "compositor::layer %s @ %d", __func__, l->id);
446    this->lprops.erase(l->id);
447    this->layers.erase(l->id);
448 }
449
450 /**
451  * surface
452  */
453 namespace {
454
455 void surface_visibility(
456    void *data, struct ivi_controller_surface * /*ivi_controller_surface*/,
457    int32_t visibility) {
458    auto s = static_cast<struct surface *>(data);
459    s->parent->surface_visibility(s, visibility);
460 }
461
462 void surface_opacity(void *data,
463                      struct ivi_controller_surface * /*ivi_controller_surface*/,
464                      wl_fixed_t opacity) {
465    auto s = static_cast<struct surface *>(data);
466    s->parent->surface_opacity(s, float(wl_fixed_to_double(opacity)));
467 }
468
469 void surface_source_rectangle(
470    void *data, struct ivi_controller_surface * /*ivi_controller_surface*/,
471    int32_t x, int32_t y, int32_t width, int32_t height) {
472    auto s = static_cast<struct surface *>(data);
473    s->parent->surface_source_rectangle(s, x, y, width, height);
474 }
475
476 void surface_destination_rectangle(
477    void *data, struct ivi_controller_surface * /*ivi_controller_surface*/,
478    int32_t x, int32_t y, int32_t width, int32_t height) {
479    auto s = static_cast<struct surface *>(data);
480    s->parent->surface_destination_rectangle(s, x, y, width, height);
481 }
482
483 void surface_configuration(
484    void *data, struct ivi_controller_surface * /*ivi_controller_surface*/,
485    int32_t width, int32_t height) {
486    auto s = static_cast<struct surface *>(data);
487    s->parent->surface_configuration(s, width, height);
488 }
489
490 void surface_orientation(
491    void *data, struct ivi_controller_surface * /*ivi_controller_surface*/,
492    int32_t orientation) {
493    auto s = static_cast<struct surface *>(data);
494    s->parent->surface_orientation(s, orientation);
495 }
496
497 void surface_pixelformat(
498    void *data, struct ivi_controller_surface * /*ivi_controller_surface*/,
499    int32_t pixelformat) {
500    auto s = static_cast<struct surface *>(data);
501    s->parent->surface_pixelformat(s, pixelformat);
502 }
503
504 void surface_layer(void *data,
505                    struct ivi_controller_surface * /*ivi_controller_surface*/,
506                    struct ivi_controller_layer *layer) {
507    auto s = static_cast<struct surface *>(data);
508    s->parent->surface_layer(s, layer);
509 }
510
511 void surface_stats(void *data,
512                    struct ivi_controller_surface * /*ivi_controller_surface*/,
513                    uint32_t redraw_count, uint32_t frame_count,
514                    uint32_t update_count, uint32_t pid,
515                    const char *process_name) {
516    auto s = static_cast<struct surface *>(data);
517    s->parent->surface_stats(s, redraw_count, frame_count, update_count, pid,
518                             process_name);
519 }
520
521 void surface_destroyed(
522    void *data, struct ivi_controller_surface * /*ivi_controller_surface*/) {
523    auto s = static_cast<struct surface *>(data);
524    s->parent->surface_destroyed(s);
525 }
526
527 void surface_content(void *data,
528                      struct ivi_controller_surface * /*ivi_controller_surface*/,
529                      int32_t content_state) {
530    auto s = static_cast<struct surface *>(data);
531    s->parent->surface_content(s, content_state);
532 }
533
534 constexpr struct ivi_controller_surface_listener surface_listener = {
535    surface_visibility,
536    surface_opacity,
537    surface_source_rectangle,
538    surface_destination_rectangle,
539    surface_configuration,
540    surface_orientation,
541    surface_pixelformat,
542    surface_layer,
543    surface_stats,
544    surface_destroyed,
545    surface_content,
546 };
547 }  // namespace
548
549 surface::surface(uint32_t i, struct controller *c)
550    : wayland_proxy(ivi_controller_surface_create(c->proxy.get(), i),
551                    [c, i](ivi_controller_surface *s) {
552                       HMI_DEBUG("wm", "~surface surface %i @ %p", i, s);
553                       c->remove_proxy_to_id_mapping(s);
554                       ivi_controller_surface_destroy(s, 1);
555                    }),
556      controller_child(c, i) {
557    this->parent->add_proxy_to_id_mapping(this->proxy.get(), i);
558    ivi_controller_surface_add_listener(this->proxy.get(), &surface_listener,
559                                        this);
560 }
561
562 void surface::set_visibility(uint32_t visibility) {
563    ivi_controller_surface_set_visibility(this->proxy.get(), visibility);
564 }
565
566 void surface::set_opacity(wl_fixed_t opacity) {
567    ivi_controller_surface_set_opacity(this->proxy.get(), opacity);
568 }
569
570 void surface::set_source_rectangle(int32_t x, int32_t y, int32_t width,
571                                    int32_t height) {
572    ivi_controller_surface_set_source_rectangle(this->proxy.get(), x, y, width,
573                                                height);
574 }
575
576 void surface::set_destination_rectangle(int32_t x, int32_t y, int32_t width,
577                                         int32_t height) {
578    ivi_controller_surface_set_destination_rectangle(this->proxy.get(), x, y,
579                                                     width, height);
580 }
581
582 void surface::set_configuration(int32_t width, int32_t height) {
583    ivi_controller_surface_set_configuration(this->proxy.get(), width, height);
584 }
585
586 void surface::set_orientation(int32_t orientation) {
587    ivi_controller_surface_set_orientation(this->proxy.get(), orientation);
588 }
589
590 void surface::screenshot(const char *filename) {
591    ivi_controller_surface_screenshot(this->proxy.get(), filename);
592 }
593
594 void surface::send_stats() {
595    ivi_controller_surface_send_stats(this->proxy.get());
596 }
597
598 void surface::destroy(int32_t destroy_scene_object) {
599    ivi_controller_surface_destroy(this->proxy.get(), destroy_scene_object);
600 }
601
602 void controller::surface_visibility(struct surface *s, int32_t visibility) {
603    HMI_DEBUG("wm", "compositor::surface %s @ %d v %i", __func__, s->id,
604             visibility);
605    this->sprops[s->id].visibility = visibility;
606    this->chooks->surface_visibility(s->id, visibility);
607 }
608
609 void controller::surface_opacity(struct surface *s, float opacity) {
610    HMI_DEBUG("wm", "compositor::surface %s @ %d o %f", __func__, s->id,
611             opacity);
612    this->sprops[s->id].opacity = opacity;
613 }
614
615 void controller::surface_source_rectangle(struct surface *s, int32_t x,
616                                           int32_t y, int32_t width,
617                                           int32_t height) {
618    HMI_DEBUG("wm", "compositor::surface %s @ %d x %i y %i w %i h %i", __func__,
619             s->id, x, y, width, height);
620    this->sprops[s->id].src_rect = rect{width, height, x, y};
621 }
622
623 void controller::surface_destination_rectangle(struct surface *s, int32_t x,
624                                                int32_t y, int32_t width,
625                                                int32_t height) {
626    HMI_DEBUG("wm", "compositor::surface %s @ %d x %i y %i w %i h %i", __func__,
627             s->id, x, y, width, height);
628    this->sprops[s->id].dst_rect = rect{width, height, x, y};
629    this->chooks->surface_destination_rectangle(s->id, x, y, width, height);
630 }
631
632 void controller::surface_configuration(struct surface *s, int32_t width,
633                                        int32_t height) {
634    HMI_DEBUG("wm", "compositor::surface %s @ %d w %i h %i", __func__, s->id,
635             width, height);
636    this->sprops[s->id].size = size{uint32_t(width), uint32_t(height)};
637 }
638
639 void controller::surface_orientation(struct surface *s, int32_t orientation) {
640    HMI_DEBUG("wm", "compositor::surface %s @ %d o %i", __func__, s->id,
641             orientation);
642    this->sprops[s->id].orientation = orientation;
643 }
644
645 void controller::surface_pixelformat(struct surface * s,
646                                      int32_t pixelformat) {
647    HMI_DEBUG("wm", "compositor::surface %s @ %d f %i", __func__, s->id,
648             pixelformat);
649 }
650
651 void controller::surface_layer(struct surface * s,
652                                struct ivi_controller_layer *layer) {
653    HMI_DEBUG("wm", "compositor::surface %s @ %d l %u @ %p", __func__, s->id,
654             this->layer_proxy_to_id[uintptr_t(layer)], layer);
655 }
656
657 void controller::surface_stats(struct surface *s, uint32_t redraw_count,
658                                uint32_t frame_count, uint32_t update_count,
659                                uint32_t pid, const char *process_name) {
660    HMI_DEBUG("wm", "compositor::surface %s @ %d r %u f %u u %u pid %u p %s", __func__,
661             s->id, redraw_count, frame_count, update_count, pid,
662             process_name);
663 }
664
665 void controller::surface_destroyed(struct surface *s) {
666    HMI_DEBUG("wm", "compositor::surface %s @ %d", __func__, s->id);
667    this->chooks->surface_removed(s->id);
668    this->sprops.erase(s->id);
669    this->surfaces.erase(s->id);
670 }
671
672 void controller::surface_content(struct surface *s, int32_t content_state) {
673    HMI_DEBUG("wm", "compositor::surface %s @ %d s %i", __func__, s->id,
674             content_state);
675    if (content_state == IVI_CONTROLLER_SURFACE_CONTENT_STATE_CONTENT_REMOVED) {
676       this->chooks->surface_removed(s->id);
677       this->sprops.erase(s->id);
678       this->surfaces.erase(s->id);
679    }
680 }
681
682 void controller::add_proxy_to_id_mapping(struct ivi_controller_surface *p,
683                                          uint32_t id) {
684    HMI_DEBUG("wm", "Add surface proxy mapping for %p (%u)", p, id);
685    this->surface_proxy_to_id[uintptr_t(p)] = id;
686    this->sprops[id].id = id;
687 }
688
689 void controller::remove_proxy_to_id_mapping(struct ivi_controller_surface *p) {
690    HMI_DEBUG("wm", "Remove surface proxy mapping for %p", p);
691    this->surface_proxy_to_id.erase(uintptr_t(p));
692 }
693
694 void controller::add_proxy_to_id_mapping(struct ivi_controller_layer *p,
695                                          uint32_t id) {
696    HMI_DEBUG("wm", "Add layer proxy mapping for %p (%u)", p, id);
697    this->layer_proxy_to_id[uintptr_t(p)] = id;
698    this->lprops[id].id = id;
699 }
700
701 void controller::remove_proxy_to_id_mapping(struct ivi_controller_layer *p) {
702    HMI_DEBUG("wm", "Remove layer proxy mapping for %p", p);
703    this->layer_proxy_to_id.erase(uintptr_t(p));
704 }
705
706 void controller::add_proxy_to_id_mapping(struct wl_output *p, uint32_t id) {
707    HMI_DEBUG("wm", "Add screen proxy mapping for %p (%u)", p, id);
708    this->screen_proxy_to_id[uintptr_t(p)] = id;
709 }
710
711 void controller::remove_proxy_to_id_mapping(struct wl_output *p) {
712    HMI_DEBUG("wm", "Remove screen proxy mapping for %p", p);
713    this->screen_proxy_to_id.erase(uintptr_t(p));
714 }
715
716 /**
717  * screen
718  */
719 screen::screen(uint32_t i, struct controller *c,
720                struct ivi_controller_screen *p)
721    : wayland_proxy(p), controller_child(c, i) {
722    HMI_DEBUG("wm", "compositor::screen @ %p id %u", p, i);
723 }
724
725 void screen::clear() { ivi_controller_screen_clear(this->proxy.get()); }
726
727 void screen::add_layer(layer *l) {
728    ivi_controller_screen_add_layer(this->proxy.get(), l->proxy.get());
729 }
730
731 void screen::set_render_order(std::vector<uint32_t> const &ro) {
732    struct wl_array wlro {
733       .size = ro.size() * sizeof(ro[0]), .alloc = ro.capacity() * sizeof(ro[0]),
734       .data = const_cast<void *>(static_cast<void const *>(ro.data()))
735    };
736    ivi_controller_screen_set_render_order(this->proxy.get(), &wlro);
737 }
738
739 }  // namespace compositor