Format source codes
[apps/agl-service-windowmanager-2017.git] / src / app.hpp
1 /*
2  * Copyright (c) 2017 TOYOTA MOTOR CORPORATION
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 #ifndef TMCAGLWM_APP_HPP
18 #define TMCAGLWM_APP_HPP
19
20 #include <json-c/json.h>
21
22 #include <atomic>
23 #include <memory>
24 #include <unordered_map>
25 #include <unordered_set>
26 #include <experimental/optional>
27 #include "config.hpp"
28 #include "controller_hooks.hpp"
29 #include "layers.hpp"
30 #include "layout.hpp"
31 #include "policy.hpp"
32 #include "result.hpp"
33 #include "wayland_ivi_wm.hpp"
34 #include "hmi-debug.h"
35
36 namespace wl
37 {
38 struct display;
39 }
40
41 namespace compositor
42 {
43 struct controller;
44 }
45
46 namespace wm
47 {
48
49 using std::experimental::optional;
50
51 /* DrawingArea name used by "{layout}.{area}" */
52 extern const char kNameLayoutNormal[];
53 extern const char kNameLayoutSplit[];
54 extern const char kNameAreaFull[];
55 extern const char kNameAreaMain[];
56 extern const char kNameAreaSub[];
57
58 /* Key for json obejct */
59 extern const char kKeyDrawingName[];
60 extern const char kKeyDrawingArea[];
61 extern const char kKeyDrawingRect[];
62 extern const char kKeyX[];
63 extern const char kKeyY[];
64 extern const char kKeyWidth[];
65 extern const char kKeyHeigh[];
66 extern const char kKeyWidthPixel[];
67 extern const char kKeyHeightPixel[];
68 extern const char kKeyWidthMm[];
69 extern const char kKeyHeightMm[];
70
71 struct id_allocator
72 {
73     unsigned next = 1;
74
75     // Surfaces that where requested but not yet created
76     std::unordered_map<unsigned, std::string> id2name;
77     // std::unordered_set<unsigned> pending_surfaces;
78     std::unordered_map<std::string, unsigned> name2id;
79
80     id_allocator(id_allocator const &) = delete;
81     id_allocator(id_allocator &&) = delete;
82     id_allocator &operator=(id_allocator const &);
83     id_allocator &operator=(id_allocator &&) = delete;
84
85     // Insert and return a new ID
86     unsigned generate_id(std::string const &name)
87     {
88         unsigned sid = this->next++;
89         this->id2name[sid] = name;
90         // this->pending_surfaces.insert({sid});
91         this->name2id[name] = sid;
92         HMI_DEBUG("wm", "allocated new id %u with name %s", sid, name.c_str());
93         return sid;
94     }
95
96     // Insert a new ID which defined outside
97     void register_name_id(std::string const &name, unsigned sid)
98     {
99         this->id2name[sid] = name;
100         this->name2id[name] = sid;
101         HMI_DEBUG("wm", "register id %u with name %s", sid, name.c_str());
102         return;
103     }
104
105     // Lookup by ID or by name
106     optional<unsigned> lookup(std::string const &name) const
107     {
108         auto i = this->name2id.find(name);
109         return i == this->name2id.end() ? nullopt : optional<unsigned>(i->second);
110     }
111
112     optional<std::string> lookup(unsigned id) const
113     {
114         auto i = this->id2name.find(id);
115         return i == this->id2name.end() ? nullopt
116                                         : optional<std::string>(i->second);
117     }
118
119     // Remove a surface id and name
120     void remove_id(std::string const &name)
121     {
122         auto i = this->name2id.find(name);
123         if (i != this->name2id.end())
124         {
125             this->id2name.erase(i->second);
126             this->name2id.erase(i);
127         }
128     }
129
130     void remove_id(unsigned id)
131     {
132         auto i = this->id2name.find(id);
133         if (i != this->id2name.end())
134         {
135             this->name2id.erase(i->second);
136             this->id2name.erase(i);
137         }
138     }
139 };
140
141 struct App
142 {
143
144     typedef std::unordered_map<uint32_t, struct compositor::rect> rect_map;
145     typedef std::function<void(const char *err_msg)> reply_func;
146
147     enum EventType
148     {
149         Event_Val_Min = 0,
150
151         Event_Active = Event_Val_Min,
152         Event_Inactive,
153
154         Event_Visible,
155         Event_Invisible,
156
157         Event_SyncDraw,
158         Event_FlushDraw,
159
160         Event_Val_Max = Event_FlushDraw,
161     };
162
163     const std::vector<const char *> kListEventName{
164         "active",
165         "inactive",
166         "visible",
167         "invisible",
168         "syncdraw",
169         "flushdraw"};
170
171     struct controller_hooks chooks;
172
173     // This is the one thing, we do not own.
174     struct wl::display *display;
175
176     std::unique_ptr<struct compositor::controller> controller;
177     std::vector<std::unique_ptr<struct wl::output>> outputs;
178
179     struct config config;
180
181     // track current layouts separately
182     layer_map layers;
183
184     // ID allocation and proxy methods for lookup
185     struct id_allocator id_alloc;
186
187     // Set by AFB API when wayland events need to be dispatched
188     std::atomic<bool> pending_events;
189
190     std::vector<int> pending_end_draw;
191
192     Policy policy;
193
194     std::map<const char *, struct afb_event> map_afb_event;
195
196     // Surface are info (x, y, w, h)
197     rect_map area_info;
198
199     // FOR CES DEMO
200     std::vector<int> surface_bg;
201
202     explicit App(wl::display *d);
203     ~App() = default;
204
205     App(App const &) = delete;
206     App &operator=(App const &) = delete;
207     App(App &&) = delete;
208     App &operator=(App &&) = delete;
209
210     int init();
211
212     int dispatch_pending_events();
213
214     void set_pending_events();
215
216     result<int> api_request_surface(char const *drawing_name);
217     char const *api_request_surface(char const *drawing_name, char const *ivi_id);
218     void api_activate_surface(char const *drawing_name, char const *drawing_area, const reply_func &reply);
219     void api_deactivate_surface(char const *drawing_name, const reply_func &reply);
220     void api_enddraw(char const *drawing_name);
221     result<json_object *> api_get_display_info();
222     result<json_object *> api_get_area_info(char const *drawing_name);
223     void api_ping();
224     void send_event(char const *evname, char const *label);
225     void send_event(char const *evname, char const *label, char const *area, int x, int y, int w, int h);
226
227     // Events from the compositor we are interested in
228     void surface_created(uint32_t surface_id);
229     void surface_removed(uint32_t surface_id);
230
231   private:
232     optional<int> lookup_id(char const *name);
233     optional<std::string> lookup_name(int id);
234
235     bool pop_pending_events();
236
237     void enqueue_flushdraw(int surface_id);
238     void check_flushdraw(int surface_id);
239
240     int init_layers();
241
242     void surface_set_layout(int surface_id, optional<int> sub_surface_id = nullopt);
243     void layout_commit();
244
245     // TMC WM Events to clients
246     void emit_activated(char const *label);
247     void emit_deactivated(char const *label);
248     void emit_syncdraw(char const *label, char const *area, int x, int y, int w, int h);
249     void emit_flushdraw(char const *label);
250     void emit_visible(char const *label, bool is_visible);
251     void emit_invisible(char const *label);
252     void emit_visible(char const *label);
253
254     void activate(int id);
255     void deactivate(int id);
256     void deactivate_main_surface();
257
258     bool can_split(struct LayoutState const &state, int new_id);
259     void try_layout(struct LayoutState &state,
260                     struct LayoutState const &new_layout,
261                     std::function<void(LayoutState const &nl)> apply);
262 };
263
264 } // namespace wm
265
266 #endif // TMCAGLWM_APP_HPP