wayland: added genivi::rect and genivi::size and props to genivi::surface
[staging/windowmanager.git] / src / wayland.hpp
1 #ifndef WM_WAYLAND_HPP
2 #define WM_WAYLAND_HPP
3
4 #include "ivi-controller-client-protocol.h"
5
6 #include "util.h"
7
8 #include <functional>
9 #include <map>
10 #include <memory>
11 #include <vector>
12
13 //                      _                 _
14 // __      ____ _ _   _| | __ _ _ __   __| |     _ __  _ __ _____  ___   _
15 // \ \ /\ / / _` | | | | |/ _` | '_ \ / _` |    | '_ \| '__/ _ \ \/ / | | |
16 //  \ V  V / (_| | |_| | | (_| | | | | (_| |    | |_) | | | (_) >  <| |_| |
17 //   \_/\_/ \__,_|\__, |_|\__,_|_| |_|\__,_|____| .__/|_|  \___/_/\_\\__, |
18 //                |___/                   |_____|_|                  |___/
19 template <typename ProxyT>
20 struct wayland_proxy {
21    ProxyT *proxy;
22
23    wayland_proxy(void *p) : proxy(static_cast<ProxyT *>(p)) {}
24
25    virtual ~wayland_proxy() {
26       // If this is the nullptr, then it means it already was destroyed by a
27       // custom wayland dtor
28       if (this->proxy) {
29          logdebug("%s %p @ %p", __func__, this, this->proxy);
30          wl_proxy_destroy(reinterpret_cast<struct wl_proxy *>(this->proxy));
31       }
32    }
33 };
34
35 //                                                                  _
36 //  _ __   __ _ _ __ ___   ___  ___ _ __   __ _  ___ ___  __      _| |
37 // | '_ \ / _` | '_ ` _ \ / _ \/ __| '_ \ / _` |/ __/ _ \ \ \ /\ / / |
38 // | | | | (_| | | | | | |  __/\__ \ |_) | (_| | (_|  __/  \ V  V /| |
39 // |_| |_|\__,_|_| |_| |_|\___||___/ .__/ \__,_|\___\___|   \_/\_/ |_|
40 //                                 |_|
41 namespace wl {
42 struct registry;
43
44 //      _ _           _
45 //   __| (_)___ _ __ | | __ _ _   _
46 //  / _` | / __| '_ \| |/ _` | | | |
47 // | (_| | \__ \ |_) | | (_| | |_| |
48 //  \__,_|_|___/ .__/|_|\__,_|\__, |
49 //             |_|            |___/
50 struct display {
51    std::unique_ptr<struct wl_display, std::function<void(struct wl_display *)>>
52       d;
53    std::unique_ptr<struct registry> r;
54
55    display();
56    ~display();
57    bool ok() const;
58    void roundtrip();
59    int dispatch();
60    void flush();
61    int get_fd() const;
62 };
63
64 //                 _     _
65 //  _ __ ___  __ _(_)___| |_ _ __ _   _
66 // | '__/ _ \/ _` | / __| __| '__| | | |
67 // | | |  __/ (_| | \__ \ |_| |  | |_| |
68 // |_|  \___|\__, |_|___/\__|_|   \__, |
69 //           |___/                |___/
70 struct registry : public wayland_proxy<struct wl_registry> {
71    typedef std::function<void(struct wl_registry *, uint32_t, uint32_t)> binder;
72    std::map<std::string, binder> bindings;
73
74    registry(struct wl_display *d);
75    ~registry();
76
77    void add_global_handler(char const *iface, binder bind);
78
79    // Events
80    void global(uint32_t name, char const *iface, uint32_t v);
81    void global_remove(uint32_t name);
82 };
83
84 //              _               _
85 //   ___  _   _| |_ _ __  _   _| |_
86 //  / _ \| | | | __| '_ \| | | | __|
87 // | (_) | |_| | |_| |_) | |_| | |_
88 //  \___/ \__,_|\__| .__/ \__,_|\__|
89 //                 |_|
90 struct output : wayland_proxy<struct wl_output> {
91    output(struct wl_registry *registry, uint32_t name, uint32_t version);
92
93    // Events
94    void geometry(int32_t x, int32_t y, int32_t pw, int32_t ph, int32_t subpel,
95                  char const *make, char const *model, int32_t tx);
96    void mode(uint32_t flags, int32_t w, int32_t h, int32_t r);
97    void done();
98    void scale(int32_t factor);
99 };
100 }
101
102 //  _ __   __ _ _ __ ___   ___  ___ _ __   __ _  ___ ___
103 // | '_ \ / _` | '_ ` _ \ / _ \/ __| '_ \ / _` |/ __/ _ \
104 // | | | | (_| | | | | | |  __/\__ \ |_) | (_| | (_|  __/
105 // |_| |_|\__,_|_| |_| |_|\___||___/ .__/ \__,_|\___\___|
106 //                                 |_|
107 //                   _       _
108 //   __ _  ___ _ __ (_)_   _(_)
109 //  / _` |/ _ \ '_ \| \ \ / / |
110 // | (_| |  __/ | | | |\ V /| |
111 //  \__, |\___|_| |_|_| \_/ |_|
112 //  |___/
113 namespace genivi {
114
115 struct size {
116    uint32_t w, h;
117 };
118
119 struct rect {
120    uint32_t w, h;
121    int32_t x, y;
122 };
123
124 struct controller;
125
126 struct controlled_entity {
127    struct controller *parent;
128    uint32_t id;
129
130    controlled_entity(struct controller *c, uint32_t i) : parent(c), id(i) {}
131    virtual ~controlled_entity() {}
132 };
133
134 //                  __
135 //  ___ _   _ _ __ / _| __ _  ___ ___
136 // / __| | | | '__| |_ / _` |/ __/ _ \
137 // \__ \ |_| | |  |  _| (_| | (_|  __/
138 // |___/\__,_|_|  |_|  \__,_|\___\___|
139 //
140 struct surface : public wayland_proxy<struct ivi_controller_surface>,
141                  controlled_entity {
142    struct rect dst_rect;
143    struct rect src_rect;
144    struct size size;
145    int32_t orientation;
146    int32_t visibility;
147    float opacity;
148
149    surface(uint32_t i, struct controller *c);
150    ~surface() override;
151
152    // Requests
153    inline void set_visibility(uint32_t visibility) {
154       ivi_controller_surface_set_visibility(this->proxy, visibility);
155    }
156
157    inline void set_opacity(wl_fixed_t opacity) {
158       ivi_controller_surface_set_opacity(this->proxy, opacity);
159    }
160
161    inline void set_source_rectangle(int32_t x, int32_t y, int32_t width,
162                                     int32_t height) {
163       ivi_controller_surface_set_source_rectangle(this->proxy, x, y, width,
164                                                   height);
165    }
166
167    inline void set_destination_rectangle(int32_t x, int32_t y, int32_t width,
168                                          int32_t height) {
169       ivi_controller_surface_set_destination_rectangle(this->proxy, x, y, width,
170                                                        height);
171    }
172
173    inline void set_configuration(int32_t width, int32_t height) {
174       ivi_controller_surface_set_configuration(this->proxy, width, height);
175    }
176
177    inline void set_orientation(int32_t orientation) {
178       ivi_controller_surface_set_orientation(this->proxy, orientation);
179    }
180
181    inline void screenshot(const char *filename) {
182       ivi_controller_surface_screenshot(this->proxy, filename);
183    }
184
185    inline void send_stats() { ivi_controller_surface_send_stats(this->proxy); }
186
187    inline void destroy(int32_t destroy_scene_object) {
188       ivi_controller_surface_destroy(this->proxy, destroy_scene_object);
189    }
190 };
191
192 //  _
193 // | | __ _ _   _  ___ _ __
194 // | |/ _` | | | |/ _ \ '__|
195 // | | (_| | |_| |  __/ |
196 // |_|\__,_|\__, |\___|_|
197 //          |___/
198 struct layer : public wayland_proxy<struct ivi_controller_layer>,
199                controlled_entity {
200    layer(uint32_t i, struct controller *c);
201    ~layer() override;
202
203    // Requests
204    inline void set_visibility(uint32_t visibility) {
205       ivi_controller_layer_set_visibility(this->proxy, visibility);
206    }
207
208    inline void set_opacity(wl_fixed_t opacity) {
209       ivi_controller_layer_set_opacity(this->proxy, opacity);
210    }
211
212    inline void set_source_rectangle(int32_t x, int32_t y, int32_t width,
213                                     int32_t height) {
214       ivi_controller_layer_set_source_rectangle(this->proxy, x, y, width,
215                                                 height);
216    }
217
218    inline void set_destination_rectangle(int32_t x, int32_t y, int32_t width,
219                                          int32_t height) {
220       ivi_controller_layer_set_destination_rectangle(this->proxy, x, y, width,
221                                                      height);
222    }
223
224    inline void set_configuration(int32_t width, int32_t height) {
225       ivi_controller_layer_set_configuration(this->proxy, width, height);
226    }
227
228    inline void set_orientation(int32_t orientation) {
229       ivi_controller_layer_set_orientation(this->proxy, orientation);
230    }
231
232    inline void screenshot(const char *filename) {
233       ivi_controller_layer_screenshot(this->proxy, filename);
234    }
235
236    inline void clear_surfaces() {
237       ivi_controller_layer_clear_surfaces(this->proxy);
238    }
239
240    inline void add_surface(struct surface *surface) {
241       ivi_controller_layer_add_surface(this->proxy, surface->proxy);
242    }
243
244    inline void remove_surface(struct surface *surface) {
245       ivi_controller_layer_remove_surface(this->proxy, surface->proxy);
246    }
247
248    inline void set_render_order(struct wl_array *surfaces) {
249       ivi_controller_layer_set_render_order(this->proxy, surfaces);
250    }
251 };
252
253 //
254 //  ___  ___ _ __ ___  ___ _ __
255 // / __|/ __| '__/ _ \/ _ \ '_ \
256 // \__ \ (__| | |  __/  __/ | | |
257 // |___/\___|_|  \___|\___|_| |_|
258 //
259 struct screen : public wayland_proxy<struct ivi_controller_screen>,
260                 controlled_entity {
261    screen(uint32_t i, struct controller *c, struct ivi_controller_screen *p);
262 };
263
264 //                  _             _ _
265 //   ___ ___  _ __ | |_ _ __ ___ | | | ___ _ __
266 //  / __/ _ \| '_ \| __| '__/ _ \| | |/ _ \ '__|
267 // | (_| (_) | | | | |_| | | (_) | | |  __/ |
268 //  \___\___/|_| |_|\__|_|  \___/|_|_|\___|_|
269 //
270 struct controller : public wayland_proxy<struct ivi_controller> {
271    std::map<uint32_t, std::unique_ptr<struct surface>> surfaces;
272    std::map<uint32_t, std::unique_ptr<struct layer>> layers;
273    std::map<uint32_t, std::unique_ptr<struct screen>> screens;
274
275    controller(struct wl_registry *r, uint32_t name, uint32_t version);
276    ~controller() override;
277
278    // Events
279    // controller
280    void controller_screen(uint32_t id, struct ivi_controller_screen *screen);
281    void controller_layer(uint32_t id);
282    void controller_surface(uint32_t id);
283    void controller_error(int32_t oid, int32_t otype, int32_t code,
284                          char const *text);
285
286    // surface
287    void surface_visibility(uint32_t id, int32_t visibility);
288    void surface_opacity(uint32_t id, float opacity);
289    void surface_source_rectangle(uint32_t id, int32_t x, int32_t y,
290                                  int32_t width, int32_t height);
291    void surface_destination_rectangle(uint32_t id, int32_t x, int32_t y,
292                                       int32_t width, int32_t height);
293    void surface_configuration(uint32_t id, int32_t width, int32_t height);
294    void surface_orientation(uint32_t id, int32_t orientation);
295    void surface_pixelformat(uint32_t id, int32_t pixelformat);
296    void surface_layer(uint32_t id, struct ivi_controller_layer *layer);
297    void surface_stats(uint32_t id, uint32_t redraw_count, uint32_t frame_count,
298                       uint32_t update_count, uint32_t pid,
299                       const char *process_name);
300    void surface_destroyed(uint32_t id);
301    void surface_content(uint32_t id, int32_t content_state);
302
303    // layer
304    void layer_visibility(uint32_t id, int32_t visibility);
305    void layer_opacity(uint32_t id, float opacity);
306    void layer_source_rectangle(uint32_t id, int32_t x, int32_t y, int32_t width,
307                                int32_t height);
308    void layer_destination_rectangle(uint32_t id, int32_t x, int32_t y,
309                                     int32_t width, int32_t height);
310    void layer_configuration(uint32_t id, int32_t width, int32_t height);
311    void layer_orientation(uint32_t id, int32_t orientation);
312    void layer_screen(uint32_t id, struct wl_output *screen);
313    void layer_destroyed(uint32_t id);
314 };
315 }
316
317 #endif  // !WM_WAYLAND_HPP