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