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