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