app: some comments and erorrs regarding IDs configuration
[staging/windowmanager.git] / src / app.cpp
1 //
2 // Created by mfritzsc on 7/11/17.
3 //
4
5 #include "app.hpp"
6 #include "json_helper.hpp"
7 #include "layers.hpp"
8 #include "layout.hpp"
9 #include "util.hpp"
10 #include "wayland.hpp"
11
12 #include <cstdio>
13 #include <memory>
14
15 #include <cassert>
16
17 #include <json-c/json.h>
18
19 #include <bits/signum.h>
20 #include <csignal>
21 #include <fstream>
22 #include <json.hpp>
23
24 namespace wm {
25
26 namespace {
27 App *g_app;
28
29 using json = nlohmann::json;
30
31 struct wm::area area_from_json(json const &j) {
32    DB(j);
33    return wm::area{
34       j["name"].get<std::string>(),
35       {
36          get<int32_t>(j["width"]), get<int32_t>(j["height"]),
37          get<int32_t>(j["x"]), get<int32_t>(j["y"]),
38       },
39       get<uint32_t>(j["zorder"]),
40    };
41 }
42
43 result<struct layout> layout_from_json(json const &j) {
44    DB(j);
45    auto &ja = j["areas"];
46
47    auto l = layout{j["name"].get<std::string>(), uint32_t(ja.size()), {}};
48
49    if (ja.size() > layout::MAX_N_AREAS) {
50       return Err<struct layout>("Invalid number of areas in layout");
51    }
52
53    logdebug("Loading layout '%s' with %u areas", l.name.c_str(),
54             unsigned(ja.size()));
55
56    std::transform(std::cbegin(ja), std::cend(ja), std::begin(l.areas),
57                   area_from_json);
58
59    return Ok(l);
60 }
61
62 result<json> file_to_json(char const *filename) {
63    std::ifstream i(filename);
64    if (i.fail()) {
65       return Err<json>("Could not open config file");
66    }
67    json j;
68    i >> j;
69    return Ok(j);
70 }
71
72 struct result<layouts_type> load_layout(char const *filename) {
73    DB("loading layout from " << filename);
74
75    auto j = file_to_json(filename);
76    if (j.is_err()) {
77       return Err<layouts_type>(j.unwrap_err());
78    }
79    json jlayouts = j.unwrap();
80
81    auto layouts = layouts_type();
82    layouts.reserve(jlayouts.size());
83    std::transform(std::cbegin(jlayouts), std::cend(jlayouts),
84                   std::back_inserter(layouts), layout_from_json);
85
86    return Ok(layouts);
87 }
88
89 struct result<surface_id_to_layer_map>
90    load_layer_ids(char const *filename) {
91    DB("loading IDs from " << filename);
92
93    auto j = file_to_json(filename);
94    if (j.is_err()) {
95       return Err<surface_id_to_layer_map>(j.unwrap_err());
96    }
97    json jids = j.unwrap();
98
99    return to_surface_id_to_layer_map(jids);
100 }
101
102 }  // namespace
103
104 //       _                    _                  _                 _
105 //   ___| | __ _ ___ ___     / \   _ __  _ __   (_)_ __ ___  _ __ | |
106 //  / __| |/ _` / __/ __|   / _ \ | '_ \| '_ \  | | '_ ` _ \| '_ \| |
107 // | (__| | (_| \__ \__ \  / ___ \| |_) | |_) | | | | | | | | |_) | |
108 //  \___|_|\__,_|___/___/ /_/   \_\ .__/| .__/  |_|_| |_| |_| .__/|_|
109 //                                |_|   |_|                 |_|
110 App::App(wl::display *d)
111    : api{this},
112      chooks{this},
113      display{d},
114      controller{},
115      outputs(),
116      layouts(),
117      surface2layer() {
118    assert(g_app == nullptr);
119    g_app = this;
120
121    {
122       auto l = load_layer_ids("../ids.json");
123       if (l.is_ok()) {
124          this->surface2layer = l.unwrap();
125       } else {
126          logerror("%s", l.err().value());
127       }
128    }
129
130    {
131       auto l = load_layout("../layout.json");
132       if (l.is_ok()) {
133          this->layouts = l.unwrap();
134       } else {
135          logerror("%s", l.err().value());
136       }
137    }
138 }
139
140 App::~App() { g_app = nullptr; }
141
142 int App::init() {
143    if (!this->display->ok()) {
144       return -1;
145    }
146
147    if (this->surface2layer.mapping.empty()) {
148       logerror("No surface -> layer mapping loaded");
149       return -1;
150    }
151
152    this->display->add_global_handler(
153       "wl_output", [this](wl_registry *r, uint32_t name, uint32_t v) {
154          this->outputs.emplace_back(std::make_unique<wl::output>(r, name, v));
155       });
156
157    this->display->add_global_handler(
158       "ivi_controller", [this](wl_registry *r, uint32_t name, uint32_t v) {
159          this->controller = std::make_unique<genivi::controller>(r, name, v);
160
161          // Init controller hooks
162          this->controller->chooks = &this->chooks;
163
164          // XXX: This protocol needs the output, so lets just add our mapping
165          // here...
166          this->controller->add_proxy_to_id_mapping(
167             this->outputs.back()->proxy.get(),
168             wl_proxy_get_id(reinterpret_cast<struct wl_proxy *>(
169                this->outputs.back()->proxy.get())));
170       });
171
172    // First level objects
173    this->display->roundtrip();
174    // Second level objects
175    this->display->roundtrip();
176    // Third level objects
177    this->display->roundtrip();
178
179    return init_layout();
180 }
181
182 int App::dispatch_events() {
183    int ret = this->display->dispatch();
184    if (ret == -1) {
185       logerror("wl_display_dipatch() returned error %d",
186                this->display->get_error());
187       return -1;
188    }
189    this->display->flush();
190
191    // execute pending tasks, that is layout changes etc.
192    this->controller->execute_pending();
193    this->display->roundtrip();
194
195    return 0;
196 }
197
198 //  _       _ _       _                         _    ____
199 // (_)_ __ (_) |_    | | __ _ _   _  ___  _   _| |_ / /\ \
200 // | | '_ \| | __|   | |/ _` | | | |/ _ \| | | | __| |  | |
201 // | | | | | | |_    | | (_| | |_| | (_) | |_| | |_| |  | |
202 // |_|_| |_|_|\__|___|_|\__,_|\__, |\___/ \__,_|\__| |  | |
203 //              |_____|       |___/                 \_\/_/
204 int App::init_layout() {
205    if (!this->controller) {
206       logerror("ivi_controller global not available");
207       return -1;
208    }
209
210    if (this->outputs.empty()) {
211       logerror("no output was set up!");
212       return -1;
213    }
214
215    auto &c = this->controller;
216
217    auto &o = this->outputs.front();
218    auto &s = c->screens.begin()->second;
219    auto &layers = c->layers;
220
221    // XXX: Write output dimensions to ivi controller...
222    c->output_size = genivi::size{uint32_t(o->width), uint32_t(o->height)};
223
224    // Clear scene
225    layers.clear();
226
227    // Clear screen
228    s->clear();
229
230    // Quick and dirty setup of layers
231    // XXX: This likely needs to be sorted by order (note, we don't (yet?)
232    // do any zorder arrangement).
233    for (auto const &i : this->surface2layer.mapping) {
234       c->layer_create(i.layer_id, o->width, o->height);
235       auto &l = layers[i.layer_id];
236       l->set_destination_rectangle(0, 0, o->width, o->height);
237       l->set_visibility(1);
238       logdebug("Setting up layer %s (%d) for surfaces %d-%d", i.name.c_str(),
239                i.layer_id, i.id_min, i.id_max);
240    }
241
242    // Add layers to screen (XXX: are they sorted correctly?)
243    s->set_render_order(this->surface2layer.layers);
244
245    c->commit_changes();
246
247    this->display->flush();
248
249    return 0;
250 }
251
252 //                      _          _   _____                 _
253 //  _ __  _ __ _____  _(_) ___  __| | | ____|_   _____ _ __ | |_ ___
254 // | '_ \| '__/ _ \ \/ / |/ _ \/ _` | |  _| \ \ / / _ \ '_ \| __/ __|
255 // | |_) | | | (_) >  <| |  __/ (_| | | |___ \ V /  __/ | | | |_\__ \
256 // | .__/|_|  \___/_/\_\_|\___|\__,_| |_____| \_/ \___|_| |_|\__|___/
257 // |_|
258 void App::surface_created(uint32_t surface_id) {
259    DB("surface_id is " << surface_id);
260    int layer_id =
261       this->surface2layer.get_layer_for_surface(surface_id).value_or(-1);
262    if (layer_id == -1) {
263       logerror("Surface %d (0x%x) is not part of any layer!", surface_id,
264                surface_id);
265    } else {
266       auto rect = this->surface2layer.get_rect_for_surface(surface_id).value();
267       this->controller->add_task(
268          "fullscreen surface",
269          [layer_id, surface_id, rect](struct genivi::controller *c) {
270             auto &s = c->surfaces[surface_id];
271
272             int x = rect.x;
273             int y = rect.y;
274             int w = rect.w;
275             int h = rect.h;
276
277             // less-than-0 values refer to MAX + 1 - $VALUE
278             // e.g. MAX is either screen width or height
279             if (w < 0) {
280                w = c->output_size.w + 1 + w;
281             }
282             if (h < 0) {
283                h = c->output_size.h + 1 + h;
284             }
285             logdebug("Computed rect={ %d, %d, %d, %d }", x, y, w, h);
286
287             // configure surface to wxh dimensions
288             s->set_configuration(w, h);
289             // set source rect to "entire surface"
290             s->set_source_rectangle(0, 0, w, h);
291             // set destination to the display rectangle
292             s->set_destination_rectangle(x, y, w, h);
293
294             s->set_visibility(1);
295             c->layers[layer_id]->add_surface(s.get());
296             logdebug("Surface %u now on layer %u", surface_id, layer_id);
297          });
298    }
299 }
300
301 void App::surface_removed(uint32_t surface_id) {
302    DB("surface_id is " << surface_id);
303 }
304
305 //  _     _           _ _                            _   _                 _
306 // | |__ (_)_ __   __| (_)_ __   __ _     __ _ _ __ (_) (_)_ __ ___  _ __ | |
307 // | '_ \| | '_ \ / _` | | '_ \ / _` |   / _` | '_ \| | | | '_ ` _ \| '_ \| |
308 // | |_) | | | | | (_| | | | | | (_| |  | (_| | |_) | | | | | | | | | |_) | |
309 // |_.__/|_|_| |_|\__,_|_|_| |_|\__, |___\__,_| .__/|_| |_|_| |_| |_| .__/|_|
310 //                              |___/_____|   |_|                   |_|
311 binding_api::result_type binding_api::register_surface(uint32_t appid,
312                                                        uint32_t surfid) {
313    logdebug("%s appid %u surfid %u", __func__, appid, surfid);
314    if (appid > 0xff) {
315       return Err<json_object *>("invalid appid");
316    }
317
318    if (surfid > 0xffff) {
319       return Err<json_object *>("invalid surfaceid");
320    }
321
322    return Ok(json_object_new_int((appid << 16) + surfid));
323 }
324
325 binding_api::result_type binding_api::debug_layers() {
326    logdebug("%s", __func__);
327    return Ok(to_json(this->app->controller->lprops));
328 }
329
330 binding_api::result_type binding_api::debug_surfaces() {
331    logdebug("%s", __func__);
332    return Ok(to_json(this->app->controller->sprops));
333 }
334
335 binding_api::result_type binding_api::debug_status() {
336    logdebug("%s", __func__);
337    json_object *jr = json_object_new_object();
338    json_object_object_add(jr, "surfaces",
339                           to_json(this->app->controller->sprops));
340    json_object_object_add(jr, "layers", to_json(this->app->controller->lprops));
341    return Ok(jr);
342 }
343
344 binding_api::result_type binding_api::debug_terminate() {
345    logdebug("%s", __func__);
346    raise(SIGKILL);  // XXX afb-daemon kills it's pgroup using TERM, which
347                     // doesn't play well with perf
348    return Ok(json_object_new_object());
349 }
350
351 //                  _             _ _            _                 _
352 //   ___ ___  _ __ | |_ _ __ ___ | | | ___ _ __ | |__   ___   ___ | | _____
353 //  / __/ _ \| '_ \| __| '__/ _ \| | |/ _ \ '__|| '_ \ / _ \ / _ \| |/ / __|
354 // | (_| (_) | | | | |_| | | (_) | | |  __/ |   | | | | (_) | (_) |   <\__ \
355 //  \___\___/|_| |_|\__|_|  \___/|_|_|\___|_|___|_| |_|\___/ \___/|_|\_\___/
356 //                                         |_____|
357 void controller_hooks::surface_created(uint32_t surface_id) {
358    this->app->surface_created(surface_id);
359 }
360
361 void controller_hooks::surface_removed(uint32_t surface_id) {
362    this->app->surface_removed(surface_id);
363 }
364
365 }  // namespace wm