Remove comment out code
[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 #include "wm_error.hpp"
37
38 namespace wl
39 {
40 struct display;
41 }
42
43 namespace compositor
44 {
45 struct controller;
46 }
47
48 namespace wm
49 {
50
51 using std::experimental::optional;
52
53 /* DrawingArea name used by "{layout}.{area}" */
54 extern const char kNameLayoutNormal[];
55 extern const char kNameLayoutSplit[];
56 extern const char kNameAreaFull[];
57 extern const char kNameAreaMain[];
58 extern const char kNameAreaSub[];
59
60 /* Key for json obejct */
61 extern const char kKeyDrawingName[];
62 extern const char kKeyDrawingArea[];
63 extern const char kKeyDrawingRect[];
64 extern const char kKeyX[];
65 extern const char kKeyY[];
66 extern const char kKeyWidth[];
67 extern const char kKeyHeigh[];
68 extern const char kKeyWidthPixel[];
69 extern const char kKeyHeightPixel[];
70 extern const char kKeyWidthMm[];
71 extern const char kKeyHeightMm[];
72
73 struct id_allocator
74 {
75     unsigned next = 1;
76
77     // Surfaces that where requested but not yet created
78     std::unordered_map<unsigned, std::string> id2name;
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->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_Error,
161
162         Event_Val_Max = Event_Error,
163     };
164
165     const std::vector<const char *> kListEventName{
166         "active",
167         "inactive",
168         "visible",
169         "invisible",
170         "syncdraw",
171         "flushdraw",
172         "error"};
173
174     struct controller_hooks chooks;
175
176     // This is the one thing, we do not own.
177     struct wl::display *display;
178
179     std::unique_ptr<struct compositor::controller> controller;
180     std::vector<std::unique_ptr<struct wl::output>> outputs;
181
182     struct config config;
183
184     // track current layouts separately
185     layer_map layers;
186
187     // ID allocation and proxy methods for lookup
188     struct id_allocator id_alloc;
189
190     // Set by AFB API when wayland events need to be dispatched
191     std::atomic<bool> pending_events;
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     void removeClient(const std::string &appid);
233     void exeptionProcessForTransition();
234     bool subscribeEventForApp(const std::string &appid, afb_req req, const std::string &evname);
235     // Do not use this function
236     //static int processTimerHandler(sd_event_source *s, uint64_t usec, void *userdata);
237     void timerHandler();
238
239   private:
240     optional<int> lookup_id(char const *name);
241     optional<std::string> lookup_name(int id);
242
243     bool pop_pending_events();
244
245     int init_layers();
246
247     void surface_set_layout(int surface_id, const std::string& area = "");
248     void layout_commit();
249
250     // TMC WM Events to clients
251     void emit_activated(char const *label);
252     void emit_deactivated(char const *label);
253     void emit_syncdraw(char const *label, char const *area, int x, int y, int w, int h);
254     void emit_syncdraw(const std::string &role, const std::string &area);
255     void emit_flushdraw(char const *label);
256     void emit_visible(char const *label, bool is_visible);
257     void emit_invisible(char const *label);
258     void emit_visible(char const *label);
259
260     WMError setRequest(const std::string &appid, const std::string &role, const std::string &area,
261                              Task task, unsigned *req_num);
262     WMError doTransition(unsigned sequence_number);
263     WMError checkPolicy(unsigned req_num);
264     WMError startTransition(unsigned req_num);
265     WMError setInvisibleTask(const std::string &role, bool split);
266
267     WMError doEndDraw(unsigned req_num);
268     WMError layoutChange(const WMAction &action);
269     WMError visibilityChange(const WMAction &action);
270     WMError setSurfaceSize(unsigned surface, const std::string& area);
271     WMError changeCurrentState(unsigned req_num);
272
273     void setTimer();
274     void stopTimer();
275     void processNextRequest();
276
277     const char *check_surface_exist(const char *drawing_name);
278
279     void activate(int id);
280     void deactivate(int id);
281
282     bool can_split(struct LayoutState const &state, int new_id);
283
284   private:
285     std::unordered_map<std::string, struct compositor::rect> area2size;
286 };
287
288 } // namespace wm
289
290 #endif // TMCAGLWM_APP_HPP