app: when loading config, handle returned errors
[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    this->display->add_global_handler(
148       "wl_output", [this](wl_registry *r, uint32_t name, uint32_t v) {
149          this->outputs.emplace_back(std::make_unique<wl::output>(r, name, v));
150       });
151
152    this->display->add_global_handler(
153       "ivi_controller", [this](wl_registry *r, uint32_t name, uint32_t v) {
154          this->controller = std::make_unique<genivi::controller>(r, name, v);
155
156          // Init controller hooks
157          this->controller->chooks = &this->chooks;
158
159          // XXX: This protocol needs the output, so lets just add our mapping
160          // here...
161          this->controller->add_proxy_to_id_mapping(
162             this->outputs.back()->proxy.get(),
163             wl_proxy_get_id(reinterpret_cast<struct wl_proxy *>(
164                this->outputs.back()->proxy.get())));
165       });
166
167    // First level objects
168    this->display->roundtrip();
169    // Second level objects
170    this->display->roundtrip();
171    // Third level objects
172    this->display->roundtrip();
173
174    return init_layout();
175 }
176
177 int App::dispatch_events() {
178    int ret = this->display->dispatch();
179    if (ret == -1) {
180       logerror("wl_display_dipatch() returned error %d",
181                this->display->get_error());
182       return -1;
183    }
184    this->display->flush();
185
186    // execute pending tasks, that is layout changes etc.
187    this->controller->execute_pending();
188    this->display->roundtrip();
189
190    return 0;
191 }
192
193 //  _       _ _       _                         _    ____
194 // (_)_ __ (_) |_    | | __ _ _   _  ___  _   _| |_ / /\ \
195 // | | '_ \| | __|   | |/ _` | | | |/ _ \| | | | __| |  | |
196 // | | | | | | |_    | | (_| | |_| | (_) | |_| | |_| |  | |
197 // |_|_| |_|_|\__|___|_|\__,_|\__, |\___/ \__,_|\__| |  | |
198 //              |_____|       |___/                 \_\/_/
199 int App::init_layout() {
200    if (!this->controller) {
201       logerror("ivi_controller global not available");
202       return -1;
203    }
204
205    if (this->outputs.empty()) {
206       logerror("no output was set up!");
207       return -1;
208    }
209
210    auto &c = this->controller;
211
212    auto &o = this->outputs.front();
213    auto &s = c->screens.begin()->second;
214    auto &layers = c->layers;
215
216    // XXX: Write output dimensions to ivi controller...
217    c->output_size = genivi::size{uint32_t(o->width), uint32_t(o->height)};
218
219    // Clear scene
220    layers.clear();
221
222    // Clear screen
223    s->clear();
224
225    // Quick and dirty setup of layers
226    // XXX: This likely needs to be sorted by order (note, we don't (yet?)
227    // do any zorder arrangement).
228    for (auto const &i : this->surface2layer.mapping) {
229       c->layer_create(i.layer_id, o->width, o->height);
230       auto &l = layers[i.layer_id];
231       l->set_destination_rectangle(0, 0, o->width, o->height);
232       l->set_visibility(1);
233       logdebug("Setting up layer %s (%d) for surfaces %d-%d", i.name.c_str(),
234                i.layer_id, i.id_min, i.id_max);
235    }
236
237    // Add layers to screen (XXX: are they sorted correctly?)
238    s->set_render_order(this->surface2layer.layers);
239
240    c->commit_changes();
241
242    this->display->flush();
243
244    return 0;
245 }
246
247 //                      _          _   _____                 _
248 //  _ __  _ __ _____  _(_) ___  __| | | ____|_   _____ _ __ | |_ ___
249 // | '_ \| '__/ _ \ \/ / |/ _ \/ _` | |  _| \ \ / / _ \ '_ \| __/ __|
250 // | |_) | | | (_) >  <| |  __/ (_| | | |___ \ V /  __/ | | | |_\__ \
251 // | .__/|_|  \___/_/\_\_|\___|\__,_| |_____| \_/ \___|_| |_|\__|___/
252 // |_|
253 void App::surface_created(uint32_t surface_id) {
254    DB("surface_id is " << surface_id);
255    int layer_id =
256       this->surface2layer.get_layer_for_surface(surface_id).value_or(-1);
257    if (layer_id == -1) {
258       logerror("Surface %d (0x%x) is not part of any layer!", surface_id,
259                surface_id);
260    } else {
261       auto rect = this->surface2layer.get_rect_for_surface(surface_id).value();
262       this->controller->add_task(
263          "fullscreen surface",
264          [layer_id, surface_id, rect](struct genivi::controller *c) {
265             auto &s = c->surfaces[surface_id];
266
267             int x = rect.x;
268             int y = rect.y;
269             int w = rect.w;
270             int h = rect.h;
271
272             if (w < 0) {
273                w = c->output_size.w + 1 + w;
274             }
275             if (h < 0) {
276                h = c->output_size.h + 1 + h;
277             }
278             logdebug("Computed rect={ %d, %d, %d, %d }", x, y, w, h);
279
280             s->set_configuration(w, h);
281             s->set_source_rectangle(0, 0, w, h);
282             s->set_destination_rectangle(x, y, w, h);
283
284             s->set_visibility(1);
285             c->layers[layer_id]->add_surface(s.get());
286             logdebug("Surface %u now on layer %u", surface_id, layer_id);
287          });
288    }
289 }
290
291 void App::surface_removed(uint32_t surface_id) {
292    DB("surface_id is " << surface_id);
293 }
294
295 //  _     _           _ _                            _   _                 _
296 // | |__ (_)_ __   __| (_)_ __   __ _     __ _ _ __ (_) (_)_ __ ___  _ __ | |
297 // | '_ \| | '_ \ / _` | | '_ \ / _` |   / _` | '_ \| | | | '_ ` _ \| '_ \| |
298 // | |_) | | | | | (_| | | | | | (_| |  | (_| | |_) | | | | | | | | | |_) | |
299 // |_.__/|_|_| |_|\__,_|_|_| |_|\__, |___\__,_| .__/|_| |_|_| |_| |_| .__/|_|
300 //                              |___/_____|   |_|                   |_|
301 binding_api::result_type binding_api::register_surface(uint32_t appid,
302                                                        uint32_t surfid) {
303    logdebug("%s appid %u surfid %u", __func__, appid, surfid);
304    if (appid > 0xff) {
305       return Err<json_object *>("invalid appid");
306    }
307
308    if (surfid > 0xffff) {
309       return Err<json_object *>("invalid surfaceid");
310    }
311
312    return Ok(json_object_new_int((appid << 16) + surfid));
313 }
314
315 binding_api::result_type binding_api::debug_layers() {
316    logdebug("%s", __func__);
317    return Ok(to_json(this->app->controller->lprops));
318 }
319
320 binding_api::result_type binding_api::debug_surfaces() {
321    logdebug("%s", __func__);
322    return Ok(to_json(this->app->controller->sprops));
323 }
324
325 binding_api::result_type binding_api::debug_status() {
326    logdebug("%s", __func__);
327    json_object *jr = json_object_new_object();
328    json_object_object_add(jr, "surfaces",
329                           to_json(this->app->controller->sprops));
330    json_object_object_add(jr, "layers", to_json(this->app->controller->lprops));
331    return Ok(jr);
332 }
333
334 binding_api::result_type binding_api::debug_terminate() {
335    logdebug("%s", __func__);
336    raise(SIGKILL);  // XXX afb-daemon kills it's pgroup using TERM, which
337                     // doesn't play well with perf
338    return Ok(json_object_new_object());
339 }
340
341 //                  _             _ _            _                 _
342 //   ___ ___  _ __ | |_ _ __ ___ | | | ___ _ __ | |__   ___   ___ | | _____
343 //  / __/ _ \| '_ \| __| '__/ _ \| | |/ _ \ '__|| '_ \ / _ \ / _ \| |/ / __|
344 // | (_| (_) | | | | |_| | | (_) | | |  __/ |   | | | | (_) | (_) |   <\__ \
345 //  \___\___/|_| |_|\__|_|  \___/|_|_|\___|_|___|_| |_|\___/ \___/|_|\_\___/
346 //                                         |_____|
347 void controller_hooks::surface_created(uint32_t surface_id) {
348    this->app->surface_created(surface_id);
349 }
350
351 void controller_hooks::surface_removed(uint32_t surface_id) {
352    this->app->surface_removed(surface_id);
353 }
354
355 }  // namespace wm