main: exit on compositor hangup
[staging/windowmanager.git] / src / main.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 "app.hpp"
18 #include "json_helper.hpp"
19 #include "util.hpp"
20 #include "wayland.hpp"
21
22 #include <algorithm>
23 #include <mutex>
24
25 #include <json.h>
26
27 extern "C" {
28 #include <afb/afb-binding.h>
29 #include <systemd/sd-event.h>
30 }
31
32 namespace {
33 std::mutex binding_m;
34
35 struct afb_instance {
36    std::unique_ptr<wl::display> display;
37    wm::App app;
38
39    afb_instance() : display{new wl::display}, app{this->display.get()} {}
40
41    int init();
42 };
43
44 struct afb_instance *g_afb_instance;
45
46 int afb_instance::init() {
47    if (!this->display->ok()) {
48       return -1;
49    }
50
51    return this->app.init();
52 }
53
54 int display_event_callback(sd_event_source *evs, int /*fd*/, uint32_t events,
55                            void * /*data*/) {
56    std::lock_guard<std::mutex> guard(binding_m);
57
58    if ((events & EPOLLHUP) != 0) {
59       logerror("The compositor hung up, dying now.");
60       delete g_afb_instance;
61       g_afb_instance = nullptr;
62       goto error;
63    }
64
65    if ((events & EPOLLIN) != 0u) {
66       if (g_afb_instance->app.dispatch_events() == -1) {
67          goto error;
68       }
69    }
70
71    return 0;
72
73 error:
74    sd_event_source_unref(evs);
75    exit(1);
76    return -1;
77 }
78
79 //  _     _           _ _                 _       _ _    ____
80 // | |__ (_)_ __   __| (_)_ __   __ _    (_)_ __ (_) |_ / /\ \
81 // | '_ \| | '_ \ / _` | | '_ \ / _` |   | | '_ \| | __| |  | |
82 // | |_) | | | | | (_| | | | | | (_| |   | | | | | | |_| |  | |
83 // |_.__/|_|_| |_|\__,_|_|_| |_|\__, |___|_|_| |_|_|\__| |  | |
84 //                              |___/_____|             \_\/_/
85 int binding_init_() {
86    lognotice("WinMan ver. %s", WINMAN_VERSION_STRING);
87
88    if (g_afb_instance != nullptr) {
89       logerror("Wayland context already initialized?");
90       return 0;
91    }
92
93    if (getenv("XDG_RUNTIME_DIR") == nullptr) {
94       logerror("Environment variable XDG_RUNTIME_DIR not set");
95       goto error;
96    }
97
98    g_afb_instance = new afb_instance;
99    if (g_afb_instance->init() == -1) {
100       logerror("Could not connect to compositor");
101       goto error;
102    }
103
104    {
105       int ret = sd_event_add_io(afb_daemon_get_event_loop(), nullptr,
106                                 g_afb_instance->display->get_fd(), EPOLLIN,
107                                 display_event_callback, g_afb_instance);
108       if (ret < 0) {
109          logerror("Could not initialize afb_instance event handler: %d", -ret);
110          goto error;
111       }
112    }
113
114    atexit([] { delete g_afb_instance; });
115
116    return 0;
117
118 error:
119    delete g_afb_instance;
120    g_afb_instance = nullptr;
121    return -1;
122 }
123
124 int binding_init() noexcept {
125    try {
126       return binding_init_();
127    } catch (std::exception &e) {
128       logerror("Uncaught exception in binding_init(): %s", e.what());
129    }
130    return -1;
131 }
132
133 }  // namespace
134
135 #include "afb_binding_glue.inl"
136
137 // XXX implement send_event right here...
138 namespace wm {
139 void binding_api::send_event(char const *evname, char const *label) {
140    logdebug("%s: %s(%s)", __func__, evname, label);
141    int ret = afb_daemon_broadcast_event(evname, json_object_new_string(label));
142    if (ret != 0) {
143       logdebug("afb_event_broadcast failed: %m");
144    }
145 }
146 }
147
148 extern "C" const struct afb_binding_v2 afbBindingV2 = {
149    "winman", nullptr, nullptr, winman_verbs, nullptr, binding_init, nullptr, 1};