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