a72f4a500b90fcf1caf708cdb97152e451d07ef1
[apps/agl-service-windowmanager.git] / src / window_manager.cpp
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 #include <fstream>
18 #include <regex>
19 #include <sstream>
20
21 #include "window_manager.hpp"
22 #include "json_helper.hpp"
23 #include "applist.hpp"
24
25 extern "C"
26 {
27 #include <systemd/sd-event.h>
28 }
29
30 using std::string;
31 using std::vector;
32
33 namespace wm
34 {
35
36 static const uint64_t kTimeOut = 3ULL; /* 3s */
37
38 /* DrawingArea name used by "{layout}.{area}" */
39 const char kNameLayoutNormal[] = "normal";
40 const char kNameLayoutSplit[]  = "split";
41 const char kNameAreaFull[]     = "full";
42 const char kNameAreaMain[]     = "main";
43 const char kNameAreaSub[]      = "sub";
44
45 /* Key for json obejct */
46 const char kKeyDrawingName[] = "drawing_name";
47 const char kKeyDrawingArea[] = "drawing_area";
48 const char kKeyDrawingRect[] = "drawing_rect";
49 const char kKeyX[]           = "x";
50 const char kKeyY[]           = "y";
51 const char kKeyWidth[]       = "width";
52 const char kKeyHeight[]      = "height";
53 const char kKeyWidthPixel[]  = "width_pixel";
54 const char kKeyHeightPixel[] = "height_pixel";
55 const char kKeyWidthMm[]     = "width_mm";
56 const char kKeyHeightMm[]    = "height_mm";
57 const char kKeyScale[]       = "scale";
58 const char kKeyIds[]         = "ids";
59
60 static sd_event_source *g_timer_ev_src = nullptr;
61 static AppList g_app_list;
62 static WindowManager *g_context;
63
64 namespace
65 {
66
67 static int processTimerHandler(sd_event_source *s, uint64_t usec, void *userdata)
68 {
69     HMI_NOTICE("Time out occurs because the client replys endDraw slow, so revert the request");
70     reinterpret_cast<wm::WindowManager *>(userdata)->timerHandler();
71     return 0;
72 }
73
74 static void onStateTransitioned(vector<WMAction> actions)
75 {
76     g_context->startTransitionWrapper(actions);
77 }
78
79 static void onError()
80 {
81     g_context->processError(WMError::LAYOUT_CHANGE_FAIL);
82 }
83 } // namespace
84
85 /**
86  * WindowManager Impl
87  */
88 WindowManager::WindowManager()
89     : id_alloc{}
90 {
91     const char *path = getenv("AFM_APP_INSTALL_DIR");
92     if (!path)
93     {
94         HMI_ERROR("AFM_APP_INSTALL_DIR is not defined");
95     }
96     string root = path;
97
98     this->lc = std::make_shared<LayerControl>(root);
99
100     HMI_DEBUG("Layer Controller initialized");
101 }
102
103 int WindowManager::init()
104 {
105     // TODO: application requests by old role,
106     //       so create role map (old, new)
107     // Load old_role.db
108     LayerControlCallbacks lmcb;
109     lmcb.surfaceCreated = [&](unsigned pid, unsigned surface){
110         this->surface_created(pid, surface);
111         };
112     lmcb.surfaceDestroyed = [&](unsigned surface){
113         this->surface_removed(surface);
114     };
115     this->lc->init(lmcb);
116     this->loadOldRoleDb();
117
118     // Store my context for calling callback from PolicyManager
119     g_context = this;
120
121     // Initialize PMWrapper
122     this->pmw.initialize();
123
124     // Register callback to PolicyManager
125     this->pmw.registerCallback(onStateTransitioned, onError);
126
127     // Make afb event
128     for (int i = Event_Val_Min; i <= Event_Val_Max; i++)
129     {
130         map_afb_event[kListEventName[i]] = afb_daemon_make_event(kListEventName[i]);
131     }
132
133     const struct rect css_bg = this->lc->getAreaSize("fullscreen");
134     Screen screen = this->lc->getScreenInfo();
135     rectangle dp_bg(screen.width(), screen.height());
136
137     dp_bg.set_aspect(static_cast<double>(css_bg.w) / css_bg.h);
138     dp_bg.fit(screen.width(), screen.height());
139     dp_bg.center(screen.width(), screen.height());
140     HMI_DEBUG("SCALING: CSS BG(%dx%d) -> DDP %dx%d,(%dx%d)",
141               css_bg.w, css_bg.h, dp_bg.left(), dp_bg.top(), dp_bg.width(), dp_bg.height());
142
143     double scale = static_cast<double>(dp_bg.height()) / css_bg.h;
144     this->lc->setupArea(dp_bg, scale);
145
146     return 0; //init_layers();
147 }
148
149 result<int> WindowManager::api_request_surface(char const *appid, char const *drawing_name)
150 {
151     // TODO: application requests by old role,
152     //       so convert role old to new
153     const char *role = this->convertRoleOldToNew(drawing_name);
154     string l_name;
155     string s_appid = appid;
156     string s_role = role;
157
158     if(!g_app_list.contains(s_appid))
159     {
160         // auto lid = this->layers.get_layer_id(string(role));
161         unsigned l_id = this->lc->getNewLayerID(s_role, &l_name);
162         if (l_id == 0)
163         {
164             /**
165              * register drawing_name as fallback and make it displayed.
166              */
167             l_id = this->lc->getNewLayerID("fallback", &l_name);
168             HMI_DEBUG("%s is not registered in layers.json, then fallback as normal app", role);
169             if (l_id == 0)
170             {
171                 return Err<int>("Designated role does not match any role, fallback is disabled");
172             }
173         }
174         this->lc->createNewLayer(l_id);
175         // add client into the db
176         g_app_list.addClient(s_appid, l_id, s_role);
177     }
178
179     // generate surface ID for ivi-shell application
180
181     auto rname = this->id_alloc.lookup(string(role));
182     if (!rname)
183     {
184         // name does not exist yet, allocate surface id...
185         auto id = int(this->id_alloc.generate_id(role));
186         this->tmp_surface2app[id] = {s_appid, 0};
187
188         // Set role map of (new, old)
189         this->rolenew2old[role] = string(drawing_name);
190
191         return Ok<int>(id);
192     }
193
194     // Check currently registered drawing names if it is already there.
195     return Err<int>("Surface already present");
196 }
197
198 char const *WindowManager::api_request_surface(char const *appid, char const *drawing_name,
199                                      char const *ivi_id)
200 {
201     unsigned sid = std::stol(ivi_id);
202
203     HMI_DEBUG("This API(requestSurfaceXDG) is for XDG Application using runXDG");
204     /*
205      * IVI-shell doesn't send surface_size event via ivi-wm protocol
206      * if the application is using XDG surface.
207      * So WM has to set surface size with original size here
208      */
209     WMError ret = this->lc->setXDGSurfaceOriginSize(sid);
210     if(ret != SUCCESS)
211     {
212         HMI_ERROR("%s", errorDescription(ret));
213         HMI_WARNING("The main user of this API is runXDG");
214         return "fail";
215     }
216
217     // TODO: application requests by old role,
218     //       so convert role old to new
219     const char *role = this->convertRoleOldToNew(drawing_name);
220     string s_role = role;
221     string s_appid = appid;
222     string l_name;
223
224     if(!g_app_list.contains(s_appid))
225     {
226         // auto lid = this->layers.get_layer_id(string(role));
227         unsigned l_id = this->lc->getNewLayerID(s_role, &l_name);
228         if (l_id == 0)
229         {
230             /**
231              * register drawing_name as fallback and make it displayed.
232              */
233             l_id = this->lc->getNewLayerID("fallback", &l_name);
234             HMI_DEBUG("%s is not registered in layers.json, then fallback as normal app", role);
235             if (l_id == 0)
236             {
237                 return "Designated role does not match any role, fallback is disabled";
238             }
239         }
240         this->lc->createNewLayer(l_id);
241         // add client into the db
242         g_app_list.addClient(s_appid, l_id, s_role);
243     }
244
245     auto rname = this->id_alloc.lookup(s_role);
246     if (rname)
247     {
248         return "Surface already present";
249     }
250
251     // register pair drawing_name and ivi_id
252     this->id_alloc.register_name_id(role, sid);
253
254     auto client = g_app_list.lookUpClient(s_appid);
255     client->addSurface(sid);
256
257     // Set role map of (new, old)
258     this->rolenew2old[role] = string(drawing_name);
259
260     return nullptr;
261 }
262
263 bool WindowManager::api_set_role(char const *appid, char const *drawing_name)
264 {
265     bool ret = false;
266
267     // TODO: application requests by old role,
268     //       so convert role old to new
269     const char *role = this->convertRoleOldToNew(drawing_name);
270     string s_role = role;
271     string s_appid = appid;
272     string l_name;
273
274     // Create WMClient
275     if(!g_app_list.contains(s_appid))
276     {
277         // auto lid = this->layers.get_layer_id(string(role));
278         unsigned l_id = this->lc->getNewLayerID(s_role, &l_name);
279         if (l_id == 0)
280         {
281             /**
282              * register drawing_name as fallback and make it displayed.
283              */
284             l_id = this->lc->getNewLayerID("fallback", &l_name);
285             HMI_DEBUG("%s is not registered in layers.json, then fallback as normal app", role);
286             if (l_id == 0)
287             {
288                 HMI_ERROR("Designated role does not match any role, fallback is disabled");
289                 return ret;
290             }
291         }
292         this->lc->createNewLayer(l_id);
293         // add client into the db
294         g_app_list.addClient(s_appid, l_id, s_role);
295         // Set role map of (new, old)
296         this->rolenew2old[role] = s_role;
297     }
298
299     // for(auto itr = this->tmp_surface2app.begin();
300     //         itr != this->tmp_surface2app.end() ; ++itr)
301     // {
302     for(auto& x : this->tmp_surface2app)
303     {
304         if(x.second.appid == s_appid)
305         {
306             unsigned surface = x.first;
307             auto client = g_app_list.lookUpClient(s_appid);
308             client->addSurface(surface);
309             this->tmp_surface2app.erase(surface);
310             this->id_alloc.register_name_id(s_role, surface);
311             break;
312         }
313     }
314
315 /*     if(0 != pid){
316         // search floating surfaceID from pid if pid is designated.
317         wm_err = g_app_list.popFloatingSurface(pid, &surface);
318     }
319     else{
320         // get floating surface with appid. If WM queries appid from pid,
321         // WM can bind surface and role with appid(not implemented yet)
322         //wm_err = g_app_list.popFloatingSurface(id);
323     }
324     if(wm_err != WMError::SUCCESS){
325         HMI_ERROR("No floating surface for app: %s", id.c_str());
326         g_app_list.addFloatingClient(id, lid, role);
327         HMI_NOTICE("%s : Waiting for surface creation", id.c_str());
328         return ret;
329     }
330
331     ret = true;
332     if (g_app_list.contains(id))
333     {
334         HMI_INFO("Add role: %s with surface: %d. Client %s has multi surfaces.",
335                  role.c_str(), surface, id.c_str());
336         auto client = g_app_list.lookUpClient(id);
337         client->appendRole(role);
338     }
339     else{
340         HMI_INFO("Create new client: %s, surface: %d into layer: %d with role: %s",
341                  id.c_str(), surface, lid, role.c_str());
342         g_app_list.addClient(id, lid, role);
343     } */
344
345     // register pair drawing_name and ivi_id
346
347     return true;
348 }
349
350 void WindowManager::api_activate_surface(char const *appid, char const *drawing_name,
351                                char const *drawing_area, const reply_func &reply)
352 {
353     // TODO: application requests by old role,
354     //       so convert role old to new
355     const char *c_role = this->convertRoleOldToNew(drawing_name);
356
357     string id = appid;
358     string role = c_role;
359     string area = drawing_area;
360
361     if(!g_app_list.contains(id))
362     {
363         reply("app doesn't request 'requestSurface' or 'setRole' yet");
364         return;
365     }
366     auto client = g_app_list.lookUpClient(id);
367
368     // unsigned srfc = client->surfaceID(role);
369     // unsigned layer = client->layerID();
370
371     // g_app_list.removeFloatingSurface(client->surfaceID());
372     // g_app_list.removeFloatingSurface(client);
373
374     Task task = Task::TASK_ALLOCATE;
375     unsigned req_num = 0;
376     WMError ret = WMError::UNKNOWN;
377
378     ret = this->setRequest(id, role, area, task, &req_num);
379
380     //vector<WMLayerState> current_states = this->lc->getCurrentStates();
381     // ret = this->setRequest(id, role, area, task, current_states, &req_num);
382
383     if(ret != WMError::SUCCESS)
384     {
385         HMI_ERROR(errorDescription(ret));
386         reply("Failed to set request");
387         return;
388     }
389
390     reply(nullptr);
391     if (req_num != g_app_list.currentRequestNumber())
392     {
393         // Add request, then invoked after the previous task is finished
394         HMI_SEQ_DEBUG(req_num, "request is accepted");
395         return;
396     }
397
398     /*
399      * Do allocate tasks
400      */
401     ret = this->checkPolicy(req_num);
402
403     if (ret != WMError::SUCCESS)
404     {
405         //this->emit_error()
406         HMI_SEQ_ERROR(req_num, errorDescription(ret));
407         g_app_list.removeRequest(req_num);
408         this->processNextRequest();
409     }
410 }
411
412 void WindowManager::api_deactivate_surface(char const *appid, char const *drawing_name,
413                                  const reply_func &reply)
414 {
415     // TODO: application requests by old role,
416     //       so convert role old to new
417     const char *c_role = this->convertRoleOldToNew(drawing_name);
418
419     /*
420     * Check Phase
421     */
422     string id = appid;
423     string role = c_role;
424     string area = ""; //drawing_area;
425     Task task = Task::TASK_RELEASE;
426     unsigned req_num = 0;
427     WMError ret = WMError::UNKNOWN;
428
429     ret = this->setRequest(id, role, area, task, &req_num);
430
431     if (ret != WMError::SUCCESS)
432     {
433         HMI_ERROR(errorDescription(ret));
434         reply("Failed to set request");
435         return;
436     }
437
438     reply(nullptr);
439     if (req_num != g_app_list.currentRequestNumber())
440     {
441         // Add request, then invoked after the previous task is finished
442         HMI_SEQ_DEBUG(req_num, "request is accepted");
443         return;
444     }
445
446     /*
447     * Do allocate tasks
448     */
449     ret = this->checkPolicy(req_num);
450
451     if (ret != WMError::SUCCESS)
452     {
453         //this->emit_error()
454         HMI_SEQ_ERROR(req_num, errorDescription(ret));
455         g_app_list.removeRequest(req_num);
456         this->processNextRequest();
457     }
458 }
459
460 void WindowManager::api_enddraw(char const *appid, char const *drawing_name)
461 {
462     // TODO: application requests by old role,
463     //       so convert role old to new
464     const char *c_role = this->convertRoleOldToNew(drawing_name);
465
466     string id = appid;
467     string role = c_role;
468     unsigned current_req = g_app_list.currentRequestNumber();
469     bool result = g_app_list.setEndDrawFinished(current_req, id, role);
470
471     if (!result)
472     {
473         HMI_ERROR("%s is not in transition state", id.c_str());
474         return;
475     }
476
477     if (g_app_list.endDrawFullfilled(current_req))
478     {
479         // do task for endDraw
480         this->stopTimer();
481         WMError ret = this->doEndDraw(current_req);
482
483         if(ret != WMError::SUCCESS)
484         {
485             //this->emit_error();
486
487             // Undo state of PolicyManager
488             this->pmw.undoState();
489             this->lc->undoUpdate();
490         }
491         this->emitScreenUpdated(current_req);
492         HMI_SEQ_INFO(current_req, "Finish request status: %s", errorDescription(ret));
493
494         g_app_list.removeRequest(current_req);
495
496         this->processNextRequest();
497     }
498     else
499     {
500         HMI_SEQ_INFO(current_req, "Wait other App call endDraw");
501         return;
502     }
503 }
504
505 bool WindowManager::api_client_set_render_order(char const* appid, const vector<string>& render_order)
506 {
507     bool ret = false;
508     return ret;
509 }
510
511 result<json_object *> WindowManager::api_get_display_info()
512 {
513     Screen screen = this->lc->getScreenInfo();
514
515     json_object *object = json_object_new_object();
516     json_object_object_add(object, kKeyWidthPixel, json_object_new_int(screen.width()));
517     json_object_object_add(object, kKeyHeightPixel, json_object_new_int(screen.height()));
518     // TODO: set size
519     json_object_object_add(object, kKeyWidthMm, json_object_new_int(0));
520     json_object_object_add(object, kKeyHeightMm, json_object_new_int(0));
521     json_object_object_add(object, kKeyScale, json_object_new_double(this->lc->scale()));
522
523     return Ok<json_object *>(object);
524 }
525
526 result<json_object *> WindowManager::api_get_area_info(char const *drawing_name)
527 {
528     HMI_DEBUG("called");
529
530     // TODO: application requests by old role,
531     //       so convert role old to new
532     const char *role = this->convertRoleOldToNew(drawing_name);
533
534     // Check drawing name, surface/layer id
535     auto const &surface_id = this->id_alloc.lookup(string(role));
536     if (!surface_id)
537     {
538         return Err<json_object *>("Surface does not exist");
539     }
540
541     // Set area rectangle
542     rect area_info = this->area_info[*surface_id];
543     json_object *object = json_object_new_object();
544     json_object_object_add(object, kKeyX, json_object_new_int(area_info.x));
545     json_object_object_add(object, kKeyY, json_object_new_int(area_info.y));
546     json_object_object_add(object, kKeyWidth, json_object_new_int(area_info.w));
547     json_object_object_add(object, kKeyHeight, json_object_new_int(area_info.h));
548
549     return Ok<json_object *>(object);
550 }
551
552 void WindowManager::send_event(char const *evname, char const *label)
553 {
554     HMI_DEBUG("%s: %s(%s)", __func__, evname, label);
555
556     json_object *j = json_object_new_object();
557     json_object_object_add(j, kKeyDrawingName, json_object_new_string(label));
558
559     int ret = afb_event_push(this->map_afb_event[evname], j);
560     if (ret != 0)
561     {
562         HMI_DEBUG("afb_event_push failed: %m");
563     }
564 }
565
566 void WindowManager::send_event(char const *evname, char const *label, char const *area,
567                      int x, int y, int w, int h)
568 {
569     HMI_DEBUG("%s: %s(%s, %s) x:%d y:%d w:%d h:%d",
570               __func__, evname, label, area, x, y, w, h);
571
572     json_object *j_rect = json_object_new_object();
573     json_object_object_add(j_rect, kKeyX, json_object_new_int(x));
574     json_object_object_add(j_rect, kKeyY, json_object_new_int(y));
575     json_object_object_add(j_rect, kKeyWidth, json_object_new_int(w));
576     json_object_object_add(j_rect, kKeyHeight, json_object_new_int(h));
577
578     json_object *j = json_object_new_object();
579     json_object_object_add(j, kKeyDrawingName, json_object_new_string(label));
580     json_object_object_add(j, kKeyDrawingArea, json_object_new_string(area));
581     json_object_object_add(j, kKeyDrawingRect, j_rect);
582
583     int ret = afb_event_push(this->map_afb_event[evname], j);
584     if (ret != 0)
585     {
586         HMI_DEBUG("afb_event_push failed: %m");
587     }
588 }
589
590 /**
591  * proxied events
592  */
593 void WindowManager::surface_created(unsigned pid, unsigned surface_id)
594 {
595     if(this->tmp_surface2app.count(surface_id) != 0)
596     {
597         string appid = this->tmp_surface2app[surface_id].appid;
598         auto client = g_app_list.lookUpClient(appid);
599         if(client != nullptr)
600         {
601             WMError ret = client->addSurface(surface_id);
602             HMI_INFO("Add surface %d to \"%s\"", surface_id, appid.c_str());
603             if(ret != WMError::SUCCESS)
604             {
605                 HMI_ERROR("Failed to add surface to client %s", client->appID().c_str());
606             }
607         }
608         this->tmp_surface2app.erase(surface_id);
609     }
610     else
611     {
612         HMI_NOTICE("Unknown surface %d", surface_id);
613         // retrieve ppid
614         std::ostringstream os;
615         os << pid ;
616         string path = "/proc/" + os.str() + "/stat";
617         std::ifstream ifs(path.c_str());
618         string str;
619         unsigned ppid = 0;
620         if(!ifs.fail() && std::getline(ifs, str))
621         {
622             std::sscanf(str.data(), "%*d %*s %*c %d", &ppid);
623             HMI_INFO("Retrieve ppid %d", ppid);
624         }
625         else
626         {
627             HMI_ERROR("Failed to open /proc/%d/stat", pid);
628             HMI_ERROR("File system may be different");
629             return;
630         }
631         // search pid from surfaceID
632         json_object *response;
633         afb_service_call_sync("afm-main", "runners", nullptr, &response);
634
635         // retrieve appid from pid from application manager
636         string appid = "";
637         if(response == nullptr)
638         {
639             HMI_ERROR("No runners");
640         }
641         else
642         {
643             // check appid then add it to the client
644             HMI_INFO("Runners:%s", json_object_get_string(response));
645             int size = json_object_array_length(response);
646             for(int i = 0; i < size; i++)
647             {
648                 json_object *j = json_object_array_get_idx(response, i);
649                 const char* id = jh::getStringFromJson(j, "id");
650                 int runid      = jh::getIntFromJson(j, "runid");
651                 if(id && (runid > 0))
652                 {
653                     if(runid == ppid)
654                     {
655                         appid = id;
656                         break;
657                     }
658                 }
659             }
660             if(appid == "")
661             {
662                 HMI_ERROR("Not found");
663             }
664         }
665         json_object_put(response);
666         auto client = g_app_list.lookUpClient(appid);
667         if(client != nullptr)
668         {
669             client->addSurface(surface_id);
670             this->id_alloc.register_name_id(client->role(), surface_id);
671         }
672         else
673         {
674             /*
675              * Store tmp surface and appid for application
676              * who requests setRole after creating shell surface
677              */
678             this->tmp_surface2app.emplace(surface_id, TmpClient{appid, ppid});
679         }
680     }
681 }
682
683 void WindowManager::surface_removed(unsigned surface_id)
684 {
685     HMI_DEBUG("Delete surface_id %u", surface_id);
686     this->id_alloc.remove_id(surface_id);
687     // this->layers.remove_surface(surface_id);
688     g_app_list.removeSurface(surface_id);
689 }
690
691 void WindowManager::removeClient(const string &appid)
692 {
693     HMI_DEBUG("Remove clinet %s from list", appid.c_str());
694     auto client = g_app_list.lookUpClient(appid);
695     this->lc->terminateApp(client);
696     g_app_list.removeClient(appid);
697 }
698
699 void WindowManager::exceptionProcessForTransition()
700 {
701     unsigned req_num = g_app_list.currentRequestNumber();
702     HMI_SEQ_NOTICE(req_num, "Process exception handling for request. Remove current request %d", req_num);
703     g_app_list.removeRequest(req_num);
704     HMI_SEQ_NOTICE(g_app_list.currentRequestNumber(), "Process next request if exists");
705     this->processNextRequest();
706 }
707
708 void WindowManager::timerHandler()
709 {
710     unsigned req_num = g_app_list.currentRequestNumber();
711     HMI_SEQ_DEBUG(req_num, "Timer expired remove Request");
712     g_app_list.reqDump();
713     g_app_list.removeRequest(req_num);
714     this->processNextRequest();
715 }
716
717 void WindowManager::startTransitionWrapper(vector<WMAction> &actions)
718 {
719     WMError ret;
720     // req_num is guaranteed by Window Manager
721     unsigned req_num = g_app_list.currentRequestNumber();
722
723     if (actions.empty())
724     {
725         if (g_app_list.haveRequest())
726         {
727             HMI_SEQ_DEBUG(req_num, "There is no WMAction for this request");
728             goto proc_remove_request;
729         }
730         else
731         {
732             HMI_SEQ_DEBUG(req_num, "There is no request");
733             return;
734         }
735     }
736
737     for (auto &act : actions)
738     {
739         if ("" != act.role)
740         {
741             bool found;
742             auto const &surface_id = this->id_alloc.lookup(act.role.c_str());
743             if(surface_id == nullopt)
744             {
745                 goto proc_remove_request;
746             }
747             std::string appid = g_app_list.getAppID(*surface_id, &found);
748             if (!found)
749             {
750                 if (TaskVisible::INVISIBLE == act.visible)
751                 {
752                     // App is killed, so do not set this action
753                     continue;
754                 }
755                 else
756                 {
757                     HMI_SEQ_ERROR(req_num, "appid which is visible is not found");
758                     ret = WMError::FAIL;
759                     goto error;
760                 }
761             }
762             auto client = g_app_list.lookUpClient(appid);
763             act.req_num = req_num;
764             act.client = client;
765         }
766
767         ret = g_app_list.setAction(req_num, act);
768         if (ret != WMError::SUCCESS)
769         {
770             HMI_SEQ_ERROR(req_num, "Setting action is failed");
771             goto error;
772         }
773     }
774
775     HMI_SEQ_DEBUG(req_num, "Start transition.");
776     ret = this->startTransition(req_num);
777     if (ret != WMError::SUCCESS)
778     {
779         if (ret == WMError::NO_LAYOUT_CHANGE)
780         {
781             goto proc_remove_request;
782         }
783         else
784         {
785             HMI_SEQ_ERROR(req_num, "Transition state is failed");
786             goto error;
787         }
788     }
789
790     return;
791
792 error:
793     //this->emit_error()
794     HMI_SEQ_ERROR(req_num, errorDescription(ret));
795     this->pmw.undoState();
796
797 proc_remove_request:
798     g_app_list.removeRequest(req_num);
799     this->processNextRequest();
800 }
801
802 void WindowManager::processError(WMError error)
803 {
804     unsigned req_num = g_app_list.currentRequestNumber();
805
806     //this->emit_error()
807     HMI_SEQ_ERROR(req_num, errorDescription(error));
808     g_app_list.removeRequest(req_num);
809     this->processNextRequest();
810 }
811
812 /*
813  ******* Private Functions *******
814  */
815
816 void WindowManager::emit_activated(char const *label)
817 {
818     this->send_event(kListEventName[Event_Active], label);
819 }
820
821 void WindowManager::emit_deactivated(char const *label)
822 {
823     this->send_event(kListEventName[Event_Inactive], label);
824 }
825
826 void WindowManager::emit_syncdraw(char const *label, char const *area, int x, int y, int w, int h)
827 {
828     this->send_event(kListEventName[Event_SyncDraw], label, area, x, y, w, h);
829 }
830
831 void WindowManager::emit_syncdraw(const string &role, const string &area)
832 {
833     rect rect = this->lc->getAreaSize(area);
834     this->send_event(kListEventName[Event_SyncDraw],
835         role.c_str(), area.c_str(), rect.x, rect.y, rect.w, rect.h);
836 }
837
838 void WindowManager::emit_flushdraw(char const *label)
839 {
840     this->send_event(kListEventName[Event_FlushDraw], label);
841 }
842
843 void WindowManager::emit_visible(char const *label, bool is_visible)
844 {
845     this->send_event(is_visible ? kListEventName[Event_Visible] : kListEventName[Event_Invisible], label);
846 }
847
848 void WindowManager::emit_invisible(char const *label)
849 {
850     return emit_visible(label, false);
851 }
852
853 void WindowManager::emit_visible(char const *label) { return emit_visible(label, true); }
854
855 void WindowManager::activate(int id)
856 {
857     // TODO: application requests by old role,
858     //       so convert role new to old for emitting event
859     /* const char* old_role = this->rolenew2old[label].c_str();
860
861     this->emit_visible(old_role);
862     this->emit_activated(old_role); */
863 }
864
865 void WindowManager::deactivate(int id)
866 {
867     // TODO: application requests by old role,
868     //       so convert role new to old for emitting event
869     /* const char* old_role = this->rolenew2old[label].c_str();
870
871     this->emit_deactivated(old_role);
872     this->emit_invisible(old_role); */
873 }
874
875 WMError WindowManager::setRequest(const string& appid, const string &role, const string &area,
876                             Task task, unsigned* req_num)
877 {
878     if (!g_app_list.contains(appid))
879     {
880         return WMError::NOT_REGISTERED;
881     }
882
883     auto client = g_app_list.lookUpClient(appid);
884
885     /*
886      * Queueing Phase
887      */
888     unsigned current = g_app_list.currentRequestNumber();
889     unsigned requested_num = g_app_list.getRequestNumber(appid);
890     if (requested_num != 0)
891     {
892         HMI_SEQ_INFO(requested_num,
893             "%s %s %s request is already queued", appid.c_str(), role.c_str(), area.c_str());
894         return REQ_REJECTED;
895     }
896
897     WMRequest req = WMRequest(appid, role, area, task);
898     unsigned new_req = g_app_list.addRequest(req);
899     *req_num = new_req;
900     g_app_list.reqDump();
901
902     HMI_SEQ_DEBUG(current, "%s start sequence with %s, %s", appid.c_str(), role.c_str(), area.c_str());
903
904     return WMError::SUCCESS;
905 }
906
907 WMError WindowManager::checkPolicy(unsigned req_num)
908 {
909     /*
910     * Check Policy
911     */
912     // get current trigger
913     bool found = false;
914     WMError ret = WMError::LAYOUT_CHANGE_FAIL;
915     auto trigger = g_app_list.getRequest(req_num, &found);
916     if (!found)
917     {
918         ret = WMError::NO_ENTRY;
919         return ret;
920     }
921     string req_area = trigger.area;
922
923     if (trigger.task == Task::TASK_ALLOCATE)
924     {
925         const char *msg = this->check_surface_exist(trigger.role.c_str());
926
927         if (msg)
928         {
929             HMI_SEQ_ERROR(req_num, msg);
930             return ret;
931         }
932     }
933
934     // Input event data to PolicyManager
935     if (0 > this->pmw.setInputEventData(trigger.task, trigger.role, trigger.area))
936     {
937         HMI_SEQ_ERROR(req_num, "Failed to set input event data to PolicyManager");
938         return ret;
939     }
940
941     // Execute state transition of PolicyManager
942     if (0 > this->pmw.executeStateTransition())
943     {
944         HMI_SEQ_ERROR(req_num, "Failed to execute state transition of PolicyManager");
945         return ret;
946     }
947
948     ret = WMError::SUCCESS;
949
950     g_app_list.reqDump();
951
952     return ret;
953 }
954
955 WMError WindowManager::startTransition(unsigned req_num)
956 {
957     bool sync_draw_happen = false;
958     bool found = false;
959     WMError ret = WMError::SUCCESS;
960     auto actions = g_app_list.getActions(req_num, &found);
961     if (!found)
962     {
963         ret = WMError::NO_ENTRY;
964         HMI_SEQ_ERROR(req_num,
965             "Window Manager bug :%s : Action is not set", errorDescription(ret));
966         return ret;
967     }
968
969     g_app_list.reqDump();
970     for (const auto &action : actions)
971     {
972         if (action.visible == TaskVisible::VISIBLE)
973         {
974             sync_draw_happen = true;
975
976             // TODO: application requests by old role,
977             //       so convert role new to old for emitting event
978             string old_role = this->rolenew2old[action.role];
979
980             this->emit_syncdraw(old_role, action.area);
981             /* TODO: emit event for app not subscriber
982             if(g_app_list.contains(y.appid))
983                 g_app_list.lookUpClient(y.appid)->emit_syncdraw(y.role, y.area); */
984         }
985     }
986
987     if (sync_draw_happen)
988     {
989         this->setTimer();
990     }
991     else
992     {
993         // deactivate only, no syncDraw
994         // Make it deactivate here
995         for (const auto &x : actions)
996         {
997             this->lc->visibilityChange(x);
998             string old_role = this->rolenew2old[x.role];
999             emit_deactivated(old_role.c_str());
1000
1001             /* if (g_app_list.contains(x.appid))
1002             {
1003                 auto client = g_app_list.lookUpClient(x.appid);
1004                 //this->deactivate(client->surfaceID(x.role));
1005             } */
1006         }
1007         this->lc->renderLayers();
1008         ret = WMError::NO_LAYOUT_CHANGE;
1009     }
1010     return ret;
1011 }
1012
1013 WMError WindowManager::doEndDraw(unsigned req_num)
1014 {
1015     // get actions
1016     bool found;
1017     auto actions = g_app_list.getActions(req_num, &found);
1018     WMError ret = WMError::SUCCESS;
1019     if (!found)
1020     {
1021         ret = WMError::NO_ENTRY;
1022         return ret;
1023     }
1024
1025     HMI_SEQ_INFO(req_num, "do endDraw");
1026
1027     // layout change and make it visible
1028     for (const auto &act : actions)
1029     {
1030         if(act.visible != TaskVisible::NO_CHANGE)
1031         {
1032             // layout change
1033             ret = this->lc->layoutChange(act);
1034             if(ret != WMError::SUCCESS)
1035             {
1036                 HMI_SEQ_WARNING(req_num,
1037                     "Failed to manipulate surfaces while state change : %s", errorDescription(ret));
1038                 return ret;
1039             }
1040             ret = this->lc->visibilityChange(act);
1041
1042             // Emit active/deactive event
1043             string old_role = this->rolenew2old[act.role];
1044             if(act.visible == VISIBLE)
1045             {
1046                 emit_activated(old_role.c_str());
1047             }
1048             else
1049             {
1050                 emit_deactivated(old_role.c_str());
1051             }
1052
1053             if (ret != WMError::SUCCESS)
1054             {
1055                 HMI_SEQ_WARNING(req_num,
1056                     "Failed to manipulate surfaces while state change : %s", errorDescription(ret));
1057                 return ret;
1058             }
1059             HMI_SEQ_DEBUG(req_num, "visible %s", act.role.c_str());
1060         }
1061     }
1062     this->lc->renderLayers();
1063
1064     HMI_SEQ_INFO(req_num, "emit flushDraw");
1065
1066     for(const auto &act_flush : actions)
1067     {
1068         if(act_flush.visible == TaskVisible::VISIBLE)
1069         {
1070             // TODO: application requests by old role,
1071             //       so convert role new to old for emitting event
1072             string old_role = this->rolenew2old[act_flush.role];
1073
1074             this->emit_flushdraw(old_role.c_str());
1075         }
1076     }
1077
1078     return ret;
1079 }
1080
1081 void WindowManager::emitScreenUpdated(unsigned req_num)
1082 {
1083     // Get visible apps
1084     HMI_SEQ_DEBUG(req_num, "emit screen updated");
1085     bool found = false;
1086     auto actions = g_app_list.getActions(req_num, &found);
1087
1088     // create json object
1089     json_object *j = json_object_new_object();
1090     json_object *jarray = json_object_new_array();
1091
1092     for(const auto& action: actions)
1093     {
1094         if(action.visible != TaskVisible::INVISIBLE)
1095         {
1096             json_object_array_add(jarray, json_object_new_string(action.client->appID().c_str()));
1097         }
1098     }
1099     json_object_object_add(j, kKeyIds, jarray);
1100     HMI_SEQ_INFO(req_num, "Visible app: %s", json_object_get_string(j));
1101
1102     int ret = afb_event_push(
1103         this->map_afb_event[kListEventName[Event_ScreenUpdated]], j);
1104     if (ret != 0)
1105     {
1106         HMI_DEBUG("afb_event_push failed: %m");
1107     }
1108 }
1109
1110 void WindowManager::setTimer()
1111 {
1112     struct timespec ts;
1113     if (clock_gettime(CLOCK_BOOTTIME, &ts) != 0) {
1114         HMI_ERROR("Could't set time (clock_gettime() returns with error");
1115         return;
1116     }
1117
1118     HMI_SEQ_DEBUG(g_app_list.currentRequestNumber(), "Timer set activate");
1119     if (g_timer_ev_src == nullptr)
1120     {
1121         // firsttime set into sd_event
1122         int ret = sd_event_add_time(afb_daemon_get_event_loop(), &g_timer_ev_src,
1123             CLOCK_BOOTTIME, (uint64_t)(ts.tv_sec + kTimeOut) * 1000000ULL, 1, processTimerHandler, this);
1124         if (ret < 0)
1125         {
1126             HMI_ERROR("Could't set timer");
1127         }
1128     }
1129     else
1130     {
1131         // update timer limitation after second time
1132         sd_event_source_set_time(g_timer_ev_src, (uint64_t)(ts.tv_sec + kTimeOut) * 1000000ULL);
1133         sd_event_source_set_enabled(g_timer_ev_src, SD_EVENT_ONESHOT);
1134     }
1135 }
1136
1137 void WindowManager::stopTimer()
1138 {
1139     unsigned req_num = g_app_list.currentRequestNumber();
1140     HMI_SEQ_DEBUG(req_num, "Timer stop");
1141     int rc = sd_event_source_set_enabled(g_timer_ev_src, SD_EVENT_OFF);
1142     if (rc < 0)
1143     {
1144         HMI_SEQ_ERROR(req_num, "Timer stop failed");
1145     }
1146 }
1147
1148 void WindowManager::processNextRequest()
1149 {
1150     g_app_list.next();
1151     g_app_list.reqDump();
1152     unsigned req_num = g_app_list.currentRequestNumber();
1153     if (g_app_list.haveRequest())
1154     {
1155         HMI_SEQ_DEBUG(req_num, "Process next request");
1156         WMError rc = checkPolicy(req_num);
1157         if (rc != WMError::SUCCESS)
1158         {
1159             HMI_SEQ_ERROR(req_num, errorDescription(rc));
1160         }
1161     }
1162     else
1163     {
1164         HMI_SEQ_DEBUG(req_num, "Nothing Request. Waiting Request");
1165     }
1166 }
1167
1168 const char* WindowManager::convertRoleOldToNew(char const *old_role)
1169 {
1170     const char *new_role = nullptr;
1171
1172     for (auto const &on : this->roleold2new)
1173     {
1174         std::regex regex = std::regex(on.first);
1175         if (std::regex_match(old_role, regex))
1176         {
1177             // role is old. So convert to new.
1178             new_role = on.second.c_str();
1179             break;
1180         }
1181     }
1182
1183     if (nullptr == new_role)
1184     {
1185         // role is new or fallback.
1186         new_role = old_role;
1187     }
1188
1189     HMI_DEBUG("old:%s -> new:%s", old_role, new_role);
1190
1191     return new_role;
1192 }
1193
1194 int WindowManager::loadOldRoleDb()
1195 {
1196     // Get afm application installed dir
1197     char const *afm_app_install_dir = getenv("AFM_APP_INSTALL_DIR");
1198     HMI_DEBUG("afm_app_install_dir:%s", afm_app_install_dir);
1199
1200     string file_name;
1201     if (!afm_app_install_dir)
1202     {
1203         HMI_ERROR("AFM_APP_INSTALL_DIR is not defined");
1204     }
1205     else
1206     {
1207         file_name = string(afm_app_install_dir) + string("/etc/old_roles.db");
1208     }
1209
1210     // Load old_role.db
1211     json_object* json_obj;
1212     int ret = jh::inputJsonFilie(file_name.c_str(), &json_obj);
1213     if (0 > ret)
1214     {
1215         HMI_ERROR("Could not open old_role.db, so use default old_role information");
1216         json_obj = json_tokener_parse(kDefaultOldRoleDb);
1217     }
1218     HMI_DEBUG("json_obj dump:%s", json_object_get_string(json_obj));
1219
1220     // Perse apps
1221     json_object* json_cfg;
1222     if (!json_object_object_get_ex(json_obj, "old_roles", &json_cfg))
1223     {
1224         HMI_ERROR("Parse Error!!");
1225         return -1;
1226     }
1227
1228     int len = json_object_array_length(json_cfg);
1229     HMI_DEBUG("json_cfg len:%d", len);
1230     HMI_DEBUG("json_cfg dump:%s", json_object_get_string(json_cfg));
1231
1232     for (int i=0; i<len; i++)
1233     {
1234         json_object* json_tmp = json_object_array_get_idx(json_cfg, i);
1235
1236         const char* old_role = jh::getStringFromJson(json_tmp, "name");
1237         if (nullptr == old_role)
1238         {
1239             HMI_ERROR("Parse Error!!");
1240             return -1;
1241         }
1242
1243         const char* new_role = jh::getStringFromJson(json_tmp, "new");
1244         if (nullptr == new_role)
1245         {
1246             HMI_ERROR("Parse Error!!");
1247             return -1;
1248         }
1249
1250         this->roleold2new[old_role] = string(new_role);
1251     }
1252
1253     // Check
1254     for(auto itr = this->roleold2new.begin();
1255       itr != this->roleold2new.end(); ++itr)
1256     {
1257         HMI_DEBUG(">>> role old:%s new:%s",
1258                   itr->first.c_str(), itr->second.c_str());
1259     }
1260
1261     // Release json_object
1262     json_object_put(json_obj);
1263
1264     return 0;
1265 }
1266
1267 const char *WindowManager::check_surface_exist(const char *drawing_name)
1268 {
1269     auto const &surface_id = this->id_alloc.lookup(string(drawing_name));
1270     if (!surface_id)
1271     {
1272         return "Surface does not exist";
1273     }
1274
1275     /* if (!this->controller->surface_exists(*surface_id))
1276     {
1277         return "Surface does not exist in controller!";
1278     } */
1279
1280     /* auto layer_id = this->layers.get_layer_id(*surface_id);
1281
1282     if (!layer_id)
1283     {
1284         return "Surface is not on any layer!";
1285     } */
1286
1287     HMI_DEBUG("surface %d is detected", *surface_id);
1288     return nullptr;
1289 }
1290
1291 const char* WindowManager::kDefaultOldRoleDb = "{ \
1292     \"old_roles\": [ \
1293         { \
1294             \"name\": \"HomeScreen\", \
1295             \"new\": \"homescreen\" \
1296         }, \
1297         { \
1298             \"name\": \"Music\", \
1299             \"new\": \"music\" \
1300         }, \
1301         { \
1302             \"name\": \"MediaPlayer\", \
1303             \"new\": \"music\" \
1304         }, \
1305         { \
1306             \"name\": \"Video\", \
1307             \"new\": \"video\" \
1308         }, \
1309         { \
1310             \"name\": \"VideoPlayer\", \
1311             \"new\": \"video\" \
1312         }, \
1313         { \
1314             \"name\": \"WebBrowser\", \
1315             \"new\": \"browser\" \
1316         }, \
1317         { \
1318             \"name\": \"Radio\", \
1319             \"new\": \"radio\" \
1320         }, \
1321         { \
1322             \"name\": \"Phone\", \
1323             \"new\": \"phone\" \
1324         }, \
1325         { \
1326             \"name\": \"Navigation\", \
1327             \"new\": \"map\" \
1328         }, \
1329         { \
1330             \"name\": \"HVAC\", \
1331             \"new\": \"hvac\" \
1332         }, \
1333         { \
1334             \"name\": \"Settings\", \
1335             \"new\": \"settings\" \
1336         }, \
1337         { \
1338             \"name\": \"Dashboard\", \
1339             \"new\": \"dashboard\" \
1340         }, \
1341         { \
1342             \"name\": \"POI\", \
1343             \"new\": \"poi\" \
1344         }, \
1345         { \
1346             \"name\": \"Mixer\", \
1347             \"new\": \"mixer\" \
1348         }, \
1349         { \
1350             \"name\": \"Restriction\", \
1351             \"new\": \"restriction\" \
1352         }, \
1353         { \
1354             \"name\": \"^OnScreen.*\", \
1355             \"new\": \"on_screen\" \
1356         } \
1357     ] \
1358 }";
1359
1360 } // namespace wm