Fix Window Manager crush when application terminated
[apps/agl-service-windowmanager-2017.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
20 #include "window_manager.hpp"
21 #include "json_helper.hpp"
22 #include "applist.hpp"
23
24 extern "C"
25 {
26 #include <systemd/sd-event.h>
27 }
28
29 using std::string;
30 using std::vector;
31
32 namespace wm
33 {
34
35 static const uint64_t kTimeOut = 3ULL; /* 3s */
36
37 /* DrawingArea name used by "{layout}.{area}" */
38 const char kNameLayoutNormal[] = "normal";
39 const char kNameLayoutSplit[]  = "split";
40 const char kNameAreaFull[]     = "full";
41 const char kNameAreaMain[]     = "main";
42 const char kNameAreaSub[]      = "sub";
43
44 /* Key for json obejct */
45 const char kKeyDrawingName[] = "drawing_name";
46 const char kKeyDrawingArea[] = "drawing_area";
47 const char kKeyDrawingRect[] = "drawing_rect";
48 const char kKeyX[]           = "x";
49 const char kKeyY[]           = "y";
50 const char kKeyWidth[]       = "width";
51 const char kKeyHeight[]      = "height";
52 const char kKeyWidthPixel[]  = "width_pixel";
53 const char kKeyHeightPixel[] = "height_pixel";
54 const char kKeyWidthMm[]     = "width_mm";
55 const char kKeyHeightMm[]    = "height_mm";
56 const char kKeyScale[]       = "scale";
57 const char kKeyIds[]         = "ids";
58
59 static sd_event_source *g_timer_ev_src = nullptr;
60 static AppList g_app_list;
61 static WindowManager *g_context;
62
63 namespace
64 {
65
66 // using nlohmann::json;
67
68 /* result<json> file_to_json(char const *filename)
69 {
70     json j;
71     std::ifstream i(filename);
72     if (i.fail())
73     {
74         HMI_DEBUG("Could not open config file, so use default layer information");
75         j = default_layers_json;
76     }
77     else
78     {
79         i >> j;
80     }
81
82     return Ok(j);
83 }
84
85 struct result<layer_map> load_layer_map(char const *filename)
86 {
87     HMI_DEBUG("loading IDs from %s", filename);
88
89     auto j = file_to_json(filename);
90     if (j.is_err())
91     {
92         return Err<layer_map>(j.unwrap_err());
93     }
94     json jids = j.unwrap();
95
96     return to_layer_map(jids);
97 } */
98
99 static int processTimerHandler(sd_event_source *s, uint64_t usec, void *userdata)
100 {
101     HMI_NOTICE("Time out occurs because the client replys endDraw slow, so revert the request");
102     reinterpret_cast<wm::WindowManager *>(userdata)->timerHandler();
103     return 0;
104 }
105
106 static void onStateTransitioned(vector<WMAction> actions)
107 {
108     g_context->startTransitionWrapper(actions);
109 }
110
111 static void onError()
112 {
113     g_context->processError(WMError::LAYOUT_CHANGE_FAIL);
114 }
115 } // namespace
116
117 /**
118  * WindowManager Impl
119  */
120 WindowManager::WindowManager()
121     : chooks{this},
122       id_alloc{}
123 {
124     const char *path = getenv("AFM_APP_INSTALL_DIR");
125     if (!path)
126     {
127         HMI_ERROR("AFM_APP_INSTALL_DIR is not defined");
128     }
129     string root = path;
130
131     this->lc = std::make_shared<LayerControl>(root);
132
133     HMI_DEBUG("Layer Controller initialized");
134
135 /*     try
136     {
137         {
138             auto l = load_layer_map(path.c_str());
139             if (l.is_ok())
140             {
141                 this->layers = l.unwrap();
142             }
143             else
144             {
145                 HMI_ERROR("%s", l.err().value());
146             }
147         }
148     }
149     catch (std::exception &e)
150     {
151         HMI_ERROR("Loading of configuration failed: %s", e.what());
152     } */
153 }
154
155 int WindowManager::init()
156 {
157     /* if (!this->display->ok())
158     {
159         return -1;
160     }
161
162     if (this->layers.mapping.empty())
163     {
164         HMI_ERROR("No surface -> layer mapping loaded");
165         return -1;
166     } */
167
168     // TODO: application requests by old role,
169     //       so create role map (old, new)
170     // Load old_role.db
171     LayerControlCallbacks lmcb;
172     lmcb.surfaceCreated = [&](unsigned pid, unsigned surface){
173         this->surface_created(surface);
174         };
175     lmcb.surfaceDestroyed = [&](unsigned surface){
176         this->surface_removed(surface);
177     };
178     this->lc->init(lmcb);
179     this->loadOldRoleDb();
180
181     // Store my context for calling callback from PolicyManager
182     g_context = this;
183
184     // Initialize PMWrapper
185     this->pmw.initialize();
186
187     // Register callback to PolicyManager
188     this->pmw.registerCallback(onStateTransitioned, onError);
189
190     // Make afb event
191     for (int i = Event_Val_Min; i <= Event_Val_Max; i++)
192     {
193         map_afb_event[kListEventName[i]] = afb_daemon_make_event(kListEventName[i]);
194     }
195
196     const struct rect css_bg = this->lc->getAreaSize("fullscreen");
197     Screen screen = this->lc->getScreenInfo();
198     rectangle dp_bg(screen.width(), screen.height());
199
200     dp_bg.set_aspect(static_cast<double>(css_bg.w) / css_bg.h);
201     dp_bg.fit(screen.width(), screen.height());
202     dp_bg.center(screen.width(), screen.height());
203     HMI_DEBUG("SCALING: CSS BG(%dx%d) -> DDP %dx%d,(%dx%d)",
204               css_bg.w, css_bg.h, dp_bg.left(), dp_bg.top(), dp_bg.width(), dp_bg.height());
205
206     double scale = static_cast<double>(dp_bg.height()) / css_bg.h;
207     this->lc->setupArea(dp_bg, scale);
208
209     /* this->display->add_global_handler(
210         "wl_output", [this](wl_registry *r, uint32_t name, uint32_t v) {
211             this->outputs.emplace_back(std::make_unique<wl::output>(r, name, v));
212         });
213
214     this->display->add_global_handler(
215         "ivi_wm", [this](wl_registry *r, uint32_t name, uint32_t v) {
216             this->controller =
217                 std::make_unique<struct compositor::controller>(r, name, v);
218
219             // Init controller hooks
220             this->controller->chooks = &this->chooks;
221
222             // This protocol needs the output, so lets just add our mapping here...
223             this->controller->add_proxy_to_id_mapping(
224                 this->outputs.front()->proxy.get(),
225                 wl_proxy_get_id(reinterpret_cast<struct wl_proxy *>(
226                     this->outputs.front()->proxy.get())));
227
228             // Create screen
229             this->controller->create_screen(this->outputs.front()->proxy.get());
230
231             // Set display to controller
232             this->controller->display = this->display;
233         });
234
235     // First level objects
236     this->display->roundtrip();
237     // Second level objects
238     this->display->roundtrip();
239     // Third level objects
240     this->display->roundtrip(); */
241
242     return 0; //init_layers();
243 }
244
245 /* int WindowManager::dispatch_pending_events()
246 {
247     if (this->pop_pending_events())
248     {
249         this->display->dispatch_pending();
250         return 0;
251     }
252     return -1;
253 }
254
255 void WindowManager::set_pending_events()
256 {
257     this->pending_events.store(true, std::memory_order_release);
258 } */
259
260 result<int> WindowManager::api_request_surface(char const *appid, char const *drawing_name)
261 {
262     // TODO: application requests by old role,
263     //       so convert role old to new
264     const char *role = this->convertRoleOldToNew(drawing_name);
265     string l_name;
266     string s_appid = appid;
267     string s_role = role;
268
269     if(!g_app_list.contains(s_appid))
270     {
271         // auto lid = this->layers.get_layer_id(string(role));
272         unsigned l_id = this->lc->getNewLayerID(s_role, &l_name);
273         if (l_id == 0)
274         {
275             /**
276          * register drawing_name as fallback and make it displayed.
277          */
278             // lid = this->layers.get_layer_id(string("fallback"));
279             l_id = this->lc->getNewLayerID("fallback", &l_name);
280             HMI_DEBUG("%s is not registered in layers.json, then fallback as normal app", role);
281             if (l_id == 0)
282             {
283                 return Err<int>("Designated role does not match any role, fallback is disabled");
284             }
285         }
286         this->lc->createNewLayer(l_id);
287         // add client into the db
288         g_app_list.addClient(s_appid, l_id, s_role);
289     }
290
291     // generate surface ID for ivi-shell application
292
293     auto rname = this->id_alloc.lookup(string(role));
294     if (!rname)
295     {
296         // name does not exist yet, allocate surface id...
297         auto id = int(this->id_alloc.generate_id(role));
298         this->tmp_surface2app[id] = s_appid;
299
300         // this->layers.add_surface(id, *lid);
301
302         // set the main_surface[_name] here and now
303         // if (!this->layers.main_surface_name.empty() &&
304         //     this->layers.main_surface_name == drawing_name)
305         // {
306         //     this->layers.main_surface = id;
307         //     HMI_DEBUG("Set main_surface id to %u", id);
308         // }
309
310
311
312         /* if(g_app_list.contains(appid_str))
313         {
314             // add surface into app
315             auto client = g_app_list.lookUpClient(appid_str);
316             // client.addSurface(id);
317         }
318         else
319         {
320             g_app_list.addClient(appid_str, l_id, id, string(role));
321         } */
322
323         // Set role map of (new, old)
324         this->rolenew2old[role] = string(drawing_name);
325
326         return Ok<int>(id);
327     }
328
329     // Check currently registered drawing names if it is already there.
330     return Err<int>("Surface already present");
331 }
332
333 char const *WindowManager::api_request_surface(char const *appid, char const *drawing_name,
334                                      char const *ivi_id)
335 {
336     // TODO: application requests by old role,
337     //       so convert role old to new
338     const char *role = this->convertRoleOldToNew(drawing_name);
339     string str = role;
340     string l_name;
341
342     // auto lid = this->layers.get_layer_id(string(role));
343     unsigned lid = this->lc->getNewLayerID(str, &l_name);
344     unsigned sid = std::stol(ivi_id);
345
346     if (lid == 0)
347     {
348         //register drawing_name as fallback and make it displayed.
349         lid = this->lc->getNewLayerID(str, &l_name);
350         HMI_DEBUG("%s is not registered in layers.json, then fallback as normal app", role);
351         if (lid == 0)
352         {
353             return "Drawing name does not match any role, fallback is disabled";
354         }
355     }
356
357     this->lc->createNewLayer(lid);
358
359     auto rname = this->id_alloc.lookup(str);
360
361     if (rname)
362     {
363         return "Surface already present";
364     }
365
366     // register pair drawing_name and ivi_id
367     this->id_alloc.register_name_id(role, sid);
368     // this->layers.add_surface(sid, *lid);
369
370     // this surface is already created
371     // HMI_DEBUG("surface_id is %u, layer_id is %u", sid, *lid);
372
373     // this->controller->layers[*lid]->add_surface(sid);
374     // this->layout_commit();
375
376     // add client into the db
377     string appid_str(appid);
378     g_app_list.addClient(appid_str, lid, string(role));
379
380     // Set role map of (new, old)
381     this->rolenew2old[role] = string(drawing_name);
382
383     return nullptr;
384 }
385
386 /**
387  * This function is substitute of requestSurface
388  * If surface creation is faster than application request of this function,
389  * WM will bind surfaceID with application and role.
390  * If surface creation is slower than application request of thie function,
391  * WM will put Client into pending list.
392  *
393  * Note :
394  * Application can request with pid but this is temporary solution for now.
395  * This will be removed.
396  * */
397 bool WindowManager::api_set_role(char const *appid, char const *drawing_name, unsigned pid){
398     string id = appid;
399     string role = drawing_name;
400     string l_name;
401     unsigned surface = 0;
402     WMError wm_err = WMError::UNKNOWN;
403     bool ret = false;
404
405     // get layer ID which role should be in
406     // auto lid = this->layers.get_layer_id(role);
407     unsigned lid = this->lc->getNewLayerID(role, &l_name);
408     if (lid == 0)
409     {
410         // lid = this->layers.get_layer_id(string("fallback"));
411         HMI_DEBUG("%s is not registered in layers.json, then fallback as normal app", role.c_str());
412         if (lid == 0)
413         {
414             HMI_ERROR("Drawing name does not match any role, fallback is disabled");
415             return ret;
416         }
417     }
418
419     if(0 != pid){
420         // search floating surfaceID from pid if pid is designated.
421         wm_err = g_app_list.popFloatingSurface(pid, &surface);
422     }
423     else{
424         // get floating surface with appid. If WM queries appid from pid,
425         // WM can bind surface and role with appid(not implemented yet)
426         //wm_err = g_app_list.popFloatingSurface(id);
427     }
428     if(wm_err != WMError::SUCCESS){
429         HMI_ERROR("No floating surface for app: %s", id.c_str());
430         g_app_list.addFloatingClient(id, lid, role);
431         HMI_NOTICE("%s : Waiting for surface creation", id.c_str());
432         return ret;
433     }
434
435     ret = true;
436     if (g_app_list.contains(id))
437     {
438         HMI_INFO("Add role: %s with surface: %d. Client %s has multi surfaces.",
439                  role.c_str(), surface, id.c_str());
440         auto client = g_app_list.lookUpClient(id);
441         client->appendRole(role);
442     }
443     else{
444         HMI_INFO("Create new client: %s, surface: %d into layer: %d with role: %s",
445                  id.c_str(), surface, lid, role.c_str());
446         g_app_list.addClient(id, lid, role);
447     }
448
449     // register pair drawing_name and ivi_id
450     this->id_alloc.register_name_id(role.c_str(), surface);
451     // this->layers.add_surface(surface, *lid);
452
453     // this surface is already created
454     HMI_DEBUG("surface_id is %u, layer_id is %u", surface, lid);
455
456     // const auto &o_layer = this->layers.get_layer(*lid);
457     /* auto rect = o_layer.value().rect;
458     if(rect.w < 0)
459     {
460         rect.w = this->controller->output_size.w + 1 + rect.w;
461     }
462     if(rect.h < 0)
463     {
464         rect.h = this->controller->output_size.h + 1 + rect.h;
465     } */
466
467     // this->controller->layers[*lid]->add_surface(surface);
468     // this->layout_commit();
469
470     return ret;
471 }
472
473 void WindowManager::api_activate_surface(char const *appid, char const *drawing_name,
474                                char const *drawing_area, const reply_func &reply)
475 {
476     ;
477
478     // TODO: application requests by old role,
479     //       so convert role old to new
480     const char *c_role = this->convertRoleOldToNew(drawing_name);
481
482     string id = appid;
483     string role = c_role;
484     string area = drawing_area;
485
486     if(!g_app_list.contains(id))
487     {
488         reply("app doesn't request 'requestSurface' or 'setRole' yet");
489         return;
490     }
491     auto client = g_app_list.lookUpClient(id);
492
493     // unsigned srfc = client->surfaceID(role);
494     // unsigned layer = client->layerID();
495
496     // g_app_list.removeFloatingSurface(client->surfaceID());
497     // g_app_list.removeFloatingSurface(client);
498
499     Task task = Task::TASK_ALLOCATE;
500     unsigned req_num = 0;
501     WMError ret = WMError::UNKNOWN;
502
503     ret = this->setRequest(id, role, area, task, &req_num);
504
505     //vector<WMLayerState> current_states = this->lc->getCurrentStates();
506     // ret = this->setRequest(id, role, area, task, current_states, &req_num);
507
508     if(ret != WMError::SUCCESS)
509     {
510         HMI_ERROR(errorDescription(ret));
511         reply("Failed to set request");
512         return;
513     }
514
515     reply(nullptr);
516     if (req_num != g_app_list.currentRequestNumber())
517     {
518         // Add request, then invoked after the previous task is finished
519         HMI_SEQ_DEBUG(req_num, "request is accepted");
520         return;
521     }
522
523     /*
524      * Do allocate tasks
525      */
526     ret = this->checkPolicy(req_num);
527
528     if (ret != WMError::SUCCESS)
529     {
530         //this->emit_error()
531         HMI_SEQ_ERROR(req_num, errorDescription(ret));
532         g_app_list.removeRequest(req_num);
533         this->processNextRequest();
534     }
535 }
536
537 void WindowManager::api_deactivate_surface(char const *appid, char const *drawing_name,
538                                  const reply_func &reply)
539 {
540     ;
541
542     // TODO: application requests by old role,
543     //       so convert role old to new
544     const char *c_role = this->convertRoleOldToNew(drawing_name);
545
546     /*
547     * Check Phase
548     */
549     string id = appid;
550     string role = c_role;
551     string area = ""; //drawing_area;
552     Task task = Task::TASK_RELEASE;
553     unsigned req_num = 0;
554     WMError ret = WMError::UNKNOWN;
555
556     ret = this->setRequest(id, role, area, task, &req_num);
557     //vector<WMLayerState> current_states = this->lc->getCurrentStates();
558     // ret = this->setRequest(id, role, area, task, current_states, &req_num);
559
560     if (ret != WMError::SUCCESS)
561     {
562         HMI_ERROR(errorDescription(ret));
563         reply("Failed to set request");
564         return;
565     }
566
567     reply(nullptr);
568     if (req_num != g_app_list.currentRequestNumber())
569     {
570         // Add request, then invoked after the previous task is finished
571         HMI_SEQ_DEBUG(req_num, "request is accepted");
572         return;
573     }
574
575     /*
576     * Do allocate tasks
577     */
578     ret = this->checkPolicy(req_num);
579
580     if (ret != WMError::SUCCESS)
581     {
582         //this->emit_error()
583         HMI_SEQ_ERROR(req_num, errorDescription(ret));
584         g_app_list.removeRequest(req_num);
585         this->processNextRequest();
586     }
587 }
588
589 void WindowManager::api_enddraw(char const *appid, char const *drawing_name)
590 {
591     // TODO: application requests by old role,
592     //       so convert role old to new
593     const char *c_role = this->convertRoleOldToNew(drawing_name);
594
595     string id = appid;
596     string role = c_role;
597     unsigned current_req = g_app_list.currentRequestNumber();
598     bool result = g_app_list.setEndDrawFinished(current_req, id, role);
599
600     if (!result)
601     {
602         HMI_ERROR("%s is not in transition state", id.c_str());
603         return;
604     }
605
606     if (g_app_list.endDrawFullfilled(current_req))
607     {
608         // do task for endDraw
609         this->stopTimer();
610         WMError ret = this->doEndDraw(current_req);
611
612         if(ret != WMError::SUCCESS)
613         {
614             //this->emit_error();
615
616             // Undo state of PolicyManager
617             this->pmw.undoState();
618             this->lc->undoUpdate();
619         }
620         this->emitScreenUpdated(current_req);
621         HMI_SEQ_INFO(current_req, "Finish request status: %s", errorDescription(ret));
622
623         g_app_list.removeRequest(current_req);
624
625         this->processNextRequest();
626     }
627     else
628     {
629         HMI_SEQ_INFO(current_req, "Wait other App call endDraw");
630         return;
631     }
632 }
633
634 result<json_object *> WindowManager::api_get_display_info()
635 {
636     /* if (!this->display->ok())
637     {
638         return Err<json_object *>("Wayland compositor is not available");
639     } */
640
641     // Set display info
642 /*     size o_size = this->controller->output_size;
643     size p_size = this->controller->physical_size; */
644     Screen screen = this->lc->getScreenInfo();
645
646     json_object *object = json_object_new_object();
647     json_object_object_add(object, kKeyWidthPixel, json_object_new_int(screen.width()));
648     json_object_object_add(object, kKeyHeightPixel, json_object_new_int(screen.height()));
649     // TODO: set size
650     json_object_object_add(object, kKeyWidthMm, json_object_new_int(0));
651     json_object_object_add(object, kKeyHeightMm, json_object_new_int(0));
652     json_object_object_add(object, kKeyScale, json_object_new_double(this->lc->scale()));
653
654     return Ok<json_object *>(object);
655 }
656
657 result<json_object *> WindowManager::api_get_area_info(char const *drawing_name)
658 {
659     HMI_DEBUG("called");
660
661     // TODO: application requests by old role,
662     //       so convert role old to new
663     const char *role = this->convertRoleOldToNew(drawing_name);
664
665     // Check drawing name, surface/layer id
666     auto const &surface_id = this->id_alloc.lookup(string(role));
667     if (!surface_id)
668     {
669         return Err<json_object *>("Surface does not exist");
670     }
671
672     /* if (!this->controller->surface_exists(*surface_id))
673     {
674         return Err<json_object *>("Surface does not exist in controller!");
675     } */
676
677     /* // auto layer_id = this->layers.get_layer_id(*surface_id);
678     if (!layer_id)
679     {
680         return Err<json_object *>("Surface is not on any layer!");
681     } */
682
683     // Set area rectangle
684     rect area_info = this->area_info[*surface_id];
685     json_object *object = json_object_new_object();
686     json_object_object_add(object, kKeyX, json_object_new_int(area_info.x));
687     json_object_object_add(object, kKeyY, json_object_new_int(area_info.y));
688     json_object_object_add(object, kKeyWidth, json_object_new_int(area_info.w));
689     json_object_object_add(object, kKeyHeight, json_object_new_int(area_info.h));
690
691     return Ok<json_object *>(object);
692 }
693
694 void WindowManager::api_ping() { /* this->dispatch_pending_events(); */ }
695
696 void WindowManager::send_event(char const *evname, char const *label)
697 {
698     HMI_DEBUG("%s: %s(%s)", __func__, evname, label);
699
700     json_object *j = json_object_new_object();
701     json_object_object_add(j, kKeyDrawingName, json_object_new_string(label));
702
703     int ret = afb_event_push(this->map_afb_event[evname], j);
704     if (ret != 0)
705     {
706         HMI_DEBUG("afb_event_push failed: %m");
707     }
708 }
709
710 void WindowManager::send_event(char const *evname, char const *label, char const *area,
711                      int x, int y, int w, int h)
712 {
713     HMI_DEBUG("%s: %s(%s, %s) x:%d y:%d w:%d h:%d",
714               __func__, evname, label, area, x, y, w, h);
715
716     json_object *j_rect = json_object_new_object();
717     json_object_object_add(j_rect, kKeyX, json_object_new_int(x));
718     json_object_object_add(j_rect, kKeyY, json_object_new_int(y));
719     json_object_object_add(j_rect, kKeyWidth, json_object_new_int(w));
720     json_object_object_add(j_rect, kKeyHeight, json_object_new_int(h));
721
722     json_object *j = json_object_new_object();
723     json_object_object_add(j, kKeyDrawingName, json_object_new_string(label));
724     json_object_object_add(j, kKeyDrawingArea, json_object_new_string(area));
725     json_object_object_add(j, kKeyDrawingRect, j_rect);
726
727     int ret = afb_event_push(this->map_afb_event[evname], j);
728     if (ret != 0)
729     {
730         HMI_DEBUG("afb_event_push failed: %m");
731     }
732 }
733
734 /**
735  * proxied events
736  */
737 void WindowManager::surface_created(uint32_t surface_id)
738 {
739     if(this->tmp_surface2app.count(surface_id) != 0)
740     {
741         string appid = this->tmp_surface2app[surface_id];
742         this->tmp_surface2app.erase(surface_id);
743         if(g_app_list.contains(appid))
744         {
745             auto client = g_app_list.lookUpClient(appid);
746             WMError ret = client->addSurface(surface_id);
747             HMI_INFO("Add surface %d to \"%s\"", surface_id, appid.c_str());
748             if(ret != WMError::SUCCESS)
749             {
750                 HMI_ERROR("Failed to add surface to client %s", client->appID().c_str());
751             }
752         }
753     }
754     else
755     {
756         HMI_NOTICE("Unknown surface %d", surface_id);
757     }
758     /* this->controller->get_surface_properties(surface_id, IVI_WM_PARAM_SIZE);
759
760     auto layer_id = this->layers.get_layer_id(surface_id);
761     if (!layer_id)
762     {
763         HMI_DEBUG("Newly created surfce %d is not associated with any layer!",
764                   surface_id);
765         return;
766     }
767
768     HMI_DEBUG("surface_id is %u, layer_id is %u", surface_id, *layer_id);
769
770     this->controller->layers[*layer_id]->add_surface(surface_id);
771     this->layout_commit(); */
772 }
773
774 void WindowManager::surface_removed(uint32_t surface_id)
775 {
776     HMI_DEBUG("Delete surface_id %u", surface_id);
777     this->id_alloc.remove_id(surface_id);
778     // this->layers.remove_surface(surface_id);
779     g_app_list.removeSurface(surface_id);
780 }
781
782 void WindowManager::surface_properties(unsigned surface_id, unsigned pid)
783 {
784     HMI_DEBUG("get surface properties");
785
786     // search pid from surfaceID
787     /*json_object *response;
788     afb_service_call_sync("afm-main", "runners", nullptr, &response);
789
790     // retrieve appid from pid from application manager
791     string appid = "";
792     if(response == nullptr)
793     {
794         HMI_ERROR("No runners");
795     }
796     else
797     {
798         // check appid then add it to the client
799         HMI_INFO("Runners:%s", json_object_get_string(response));
800         int size = json_object_array_length(response);
801         for(int i = 0; i < size; i++)
802         {
803             json_object *j = json_object_array_get_idx(response, i);
804             const char* id = jh::getStringFromJson(j, "id");
805             int runid      = jh::getIntFromJson(j, "runid");
806             if(id && (runid > 0))
807             {
808                 if(runid == pid)
809                 {
810                     appid = id;
811                     break;
812                 }
813             }
814         }
815     }
816     json_object_put(response);
817
818     g_app_list.addFloatingSurface(appid, surface_id, pid);*/
819 }
820
821 void WindowManager::removeClient(const string &appid)
822 {
823     HMI_DEBUG("Remove clinet %s from list", appid.c_str());
824     g_app_list.removeClient(appid);
825 }
826
827 void WindowManager::exceptionProcessForTransition()
828 {
829     unsigned req_num = g_app_list.currentRequestNumber();
830     HMI_SEQ_NOTICE(req_num, "Process exception handling for request. Remove current request %d", req_num);
831     g_app_list.removeRequest(req_num);
832     HMI_SEQ_NOTICE(g_app_list.currentRequestNumber(), "Process next request if exists");
833     this->processNextRequest();
834 }
835
836 void WindowManager::timerHandler()
837 {
838     unsigned req_num = g_app_list.currentRequestNumber();
839     HMI_SEQ_DEBUG(req_num, "Timer expired remove Request");
840     g_app_list.reqDump();
841     g_app_list.removeRequest(req_num);
842     this->processNextRequest();
843 }
844
845 void WindowManager::startTransitionWrapper(vector<WMAction> &actions)
846 {
847     WMError ret;
848     // req_num is guaranteed by Window Manager
849     unsigned req_num = g_app_list.currentRequestNumber();
850
851     if (actions.empty())
852     {
853         if (g_app_list.haveRequest())
854         {
855             HMI_SEQ_DEBUG(req_num, "There is no WMAction for this request");
856             goto proc_remove_request;
857         }
858         else
859         {
860             HMI_SEQ_DEBUG(req_num, "There is no request");
861             return;
862         }
863     }
864
865     for (auto &act : actions)
866     {
867         if ("" != act.role)
868         {
869             bool found;
870             auto const &surface_id = this->id_alloc.lookup(act.role.c_str());
871             if(surface_id == nullopt)
872             {
873                 goto proc_remove_request;
874             }
875             std::string appid = g_app_list.getAppID(*surface_id, &found);
876             if (!found)
877             {
878                 if (TaskVisible::INVISIBLE == act.visible)
879                 {
880                     // App is killed, so do not set this action
881                     continue;
882                 }
883                 else
884                 {
885                     HMI_SEQ_ERROR(req_num, "appid which is visible is not found");
886                     ret = WMError::FAIL;
887                     goto error;
888                 }
889             }
890             auto client = g_app_list.lookUpClient(appid);
891             act.req_num = req_num;
892             act.client = client;
893         }
894
895         ret = g_app_list.setAction(req_num, act);
896         if (ret != WMError::SUCCESS)
897         {
898             HMI_SEQ_ERROR(req_num, "Setting action is failed");
899             goto error;
900         }
901     }
902
903     HMI_SEQ_DEBUG(req_num, "Start transition.");
904     ret = this->startTransition(req_num);
905     if (ret != WMError::SUCCESS)
906     {
907         if (ret == WMError::NO_LAYOUT_CHANGE)
908         {
909             goto proc_remove_request;
910         }
911         else
912         {
913             HMI_SEQ_ERROR(req_num, "Transition state is failed");
914             goto error;
915         }
916     }
917
918     return;
919
920 error:
921     //this->emit_error()
922     HMI_SEQ_ERROR(req_num, errorDescription(ret));
923     this->pmw.undoState();
924
925 proc_remove_request:
926     g_app_list.removeRequest(req_num);
927     this->processNextRequest();
928 }
929
930 void WindowManager::processError(WMError error)
931 {
932     unsigned req_num = g_app_list.currentRequestNumber();
933
934     //this->emit_error()
935     HMI_SEQ_ERROR(req_num, errorDescription(error));
936     g_app_list.removeRequest(req_num);
937     this->processNextRequest();
938 }
939
940 /*
941  ******* Private Functions *******
942  */
943
944 /**
945  * init_layers()
946  */
947 int WindowManager::init_layers()
948 {
949     /* if (!this->controller)
950     {
951         HMI_ERROR("ivi_controller global not available");
952         return -1;
953     }
954
955     if (this->outputs.empty())
956     {
957         HMI_ERROR("no output was set up!");
958         return -1;
959     }
960
961     auto &c = this->controller;
962
963     auto &o = this->outputs.front();
964     auto &s = c->screens.begin()->second;
965     auto &layers = c->layers;
966
967     // Write output dimensions to ivi controller...
968     c->output_size = compositor::size{uint32_t(o->width), uint32_t(o->height)};
969     c->physical_size = compositor::size{uint32_t(o->physical_width),
970                                         uint32_t(o->physical_height)};
971
972
973     HMI_DEBUG("SCALING: screen (%dx%d), physical (%dx%d)",
974               o->width, o->height, o->physical_width, o->physical_height);
975
976     // this->layers.loadAreaDb();
977
978     const compositor::rect css_bg = this->layers.getAreaSize("fullscreen");
979     rectangle dp_bg(o->width, o->height);
980
981     dp_bg.set_aspect(static_cast<double>(css_bg.w) / css_bg.h);
982     dp_bg.fit(o->width, o->height);
983     dp_bg.center(o->width, o->height);
984     HMI_DEBUG("SCALING: CSS BG(%dx%d) -> DDP %dx%d,(%dx%d)",
985               css_bg.w, css_bg.h, dp_bg.left(), dp_bg.top(), dp_bg.width(), dp_bg.height());
986
987     // Clear scene
988     // layers.clear();
989
990     // Clear screen
991     // s->clear();
992
993     // Quick and dirty setup of layers
994     for (auto const &i : this->layers.mapping)
995     {
996         c->layer_create(i.second.layer_id, dp_bg.width(), dp_bg.height());
997         auto &l = layers[i.second.layer_id];
998         l->set_destination_rectangle(dp_bg.left(), dp_bg.top(), dp_bg.width(), dp_bg.height());
999         l->set_visibility(1);
1000         HMI_DEBUG("Setting up layer %s (%d) for surface role match \"%s\"",
1001                   i.second.name.c_str(), i.second.layer_id, i.second.role.c_str());
1002     }
1003
1004     // Add layers to screen
1005     s->set_render_order(this->layers.layers);
1006
1007     this->layout_commit();
1008
1009     c->scale = static_cast<double>(dp_bg.height()) / css_bg.h;
1010     this->layers.setupArea(c->scale);
1011  */
1012     return 0;
1013 }
1014
1015 void WindowManager::surface_set_layout(int surface_id, const string& area)
1016 {
1017     /* if (!this->controller->surface_exists(surface_id))
1018     {
1019         HMI_ERROR("Surface %d does not exist", surface_id);
1020         return;
1021     }
1022
1023     auto o_layer_id = this->layers.get_layer_id(surface_id);
1024
1025     if (!o_layer_id)
1026     {
1027         HMI_ERROR("Surface %d is not associated with any layer!", surface_id);
1028         return;
1029     }
1030
1031     uint32_t layer_id = *o_layer_id;
1032
1033     auto const &layer = this->layers.get_layer(layer_id);
1034     auto rect = this->layers.getAreaSize(area);
1035     HMI_SEQ_DEBUG(g_app_list.currentRequestNumber(), "%s : x:%d y:%d w:%d h:%d", area.c_str(),
1036                     rect.x, rect.y, rect.w, rect.h);
1037     auto &s = this->controller->surfaces[surface_id];
1038
1039     int x = rect.x;
1040     int y = rect.y;
1041     int w = rect.w;
1042     int h = rect.h;
1043
1044     HMI_DEBUG("surface_set_layout for surface %u on layer %u", surface_id,
1045               layer_id);
1046
1047     // set destination to the display rectangle
1048     s->set_destination_rectangle(x, y, w, h);
1049
1050     // update area information
1051     this->area_info[surface_id].x = x;
1052     this->area_info[surface_id].y = y;
1053     this->area_info[surface_id].w = w;
1054     this->area_info[surface_id].h = h;
1055
1056     HMI_DEBUG("Surface %u now on layer %u with rect { %d, %d, %d, %d }",
1057               surface_id, layer_id, x, y, w, h); */
1058 }
1059
1060 void WindowManager::layout_commit()
1061 {
1062 /*     this->controller->commit_changes();
1063     this->display->flush(); */
1064 }
1065
1066 void WindowManager::emit_activated(char const *label)
1067 {
1068     this->send_event(kListEventName[Event_Active], label);
1069 }
1070
1071 void WindowManager::emit_deactivated(char const *label)
1072 {
1073     this->send_event(kListEventName[Event_Inactive], label);
1074 }
1075
1076 void WindowManager::emit_syncdraw(char const *label, char const *area, int x, int y, int w, int h)
1077 {
1078     this->send_event(kListEventName[Event_SyncDraw], label, area, x, y, w, h);
1079 }
1080
1081 void WindowManager::emit_syncdraw(const string &role, const string &area)
1082 {
1083     rect rect = this->lc->getAreaSize(area);
1084     this->send_event(kListEventName[Event_SyncDraw],
1085         role.c_str(), area.c_str(), rect.x, rect.y, rect.w, rect.h);
1086 }
1087
1088 void WindowManager::emit_flushdraw(char const *label)
1089 {
1090     this->send_event(kListEventName[Event_FlushDraw], label);
1091 }
1092
1093 void WindowManager::emit_visible(char const *label, bool is_visible)
1094 {
1095     this->send_event(is_visible ? kListEventName[Event_Visible] : kListEventName[Event_Invisible], label);
1096 }
1097
1098 void WindowManager::emit_invisible(char const *label)
1099 {
1100     return emit_visible(label, false);
1101 }
1102
1103 void WindowManager::emit_visible(char const *label) { return emit_visible(label, true); }
1104
1105 void WindowManager::activate(int id)
1106 {
1107     /* auto ip = this->controller->sprops.find(id);
1108     if (ip != this->controller->sprops.end())
1109     {
1110         this->controller->surfaces[id]->set_visibility(1);
1111         */
1112         char const *label =
1113             this->id_alloc.lookup(id).value_or("unknown-name").c_str();
1114
1115         /* // FOR CES DEMO >>>
1116         if ((0 == strcmp(label, "radio")) ||
1117             (0 == strcmp(label, "music")) ||
1118             (0 == strcmp(label, "video")) ||
1119             (0 == strcmp(label, "map")))
1120         {
1121             for (auto i = surface_bg.begin(); i != surface_bg.end(); ++i)
1122             {
1123                 if (id == *i)
1124                 {
1125                     // Remove id
1126                     this->surface_bg.erase(i);
1127
1128                     // Remove from BG layer (999)
1129                     HMI_DEBUG("Remove %s(%d) from BG layer", label, id);
1130                     this->controller->layers[999]->remove_surface(id);
1131
1132                     // Add to FG layer (1001)
1133                     HMI_DEBUG("Add %s(%d) to FG layer", label, id);
1134                     this->controller->layers[1001]->add_surface(id);
1135
1136                     for (int j : this->surface_bg)
1137                     {
1138                         HMI_DEBUG("Stored id:%d", j);
1139                     }
1140                     break;
1141                 }
1142             }
1143         }
1144         // <<< FOR CES DEMO
1145
1146         this->layout_commit(); */
1147
1148         // TODO: application requests by old role,
1149         //       so convert role new to old for emitting event
1150         const char* old_role = this->rolenew2old[label].c_str();
1151
1152         this->emit_visible(old_role);
1153         this->emit_activated(old_role);
1154     // }
1155 }
1156
1157 void WindowManager::deactivate(int id)
1158 {
1159     /* auto ip = this->controller->sprops.find(id);
1160     if (ip != this->controller->sprops.end())
1161     {*/
1162         char const *label =
1163             this->id_alloc.lookup(id).value_or("unknown-name").c_str();
1164
1165         /*// FOR CES DEMO >>>
1166         if ((0 == strcmp(label, "radio")) ||
1167             (0 == strcmp(label, "music")) ||
1168             (0 == strcmp(label, "video")) ||
1169             (0 == strcmp(label, "map")))
1170         {
1171
1172             // Store id
1173             this->surface_bg.push_back(id);
1174
1175             // Remove from FG layer (1001)
1176             HMI_DEBUG("Remove %s(%d) from FG layer", label, id);
1177             this->controller->layers[1001]->remove_surface(id);
1178
1179             // Add to BG layer (999)
1180             HMI_DEBUG("Add %s(%d) to BG layer", label, id);
1181             this->controller->layers[999]->add_surface(id);
1182
1183             for (int j : surface_bg)
1184             {
1185                 HMI_DEBUG("Stored id:%d", j);
1186             }
1187         }
1188         else
1189         {
1190             this->controller->surfaces[id]->set_visibility(0);
1191         }
1192         // <<< FOR CES DEMO
1193
1194         this->layout_commit(); */
1195
1196         // TODO: application requests by old role,
1197         //       so convert role new to old for emitting event
1198         const char* old_role = this->rolenew2old[label].c_str();
1199
1200         this->emit_deactivated(old_role);
1201         this->emit_invisible(old_role);
1202     // }
1203 }
1204
1205 WMError WindowManager::setRequest(const string& appid, const string &role, const string &area,
1206                             Task task, unsigned* req_num)
1207 {
1208     if (!g_app_list.contains(appid))
1209     {
1210         return WMError::NOT_REGISTERED;
1211     }
1212
1213     auto client = g_app_list.lookUpClient(appid);
1214
1215     /*
1216      * Queueing Phase
1217      */
1218     unsigned current = g_app_list.currentRequestNumber();
1219     unsigned requested_num = g_app_list.getRequestNumber(appid);
1220     if (requested_num != 0)
1221     {
1222         HMI_SEQ_INFO(requested_num,
1223             "%s %s %s request is already queued", appid.c_str(), role.c_str(), area.c_str());
1224         return REQ_REJECTED;
1225     }
1226
1227     WMRequest req = WMRequest(appid, role, area, task);
1228     unsigned new_req = g_app_list.addRequest(req);
1229     *req_num = new_req;
1230     g_app_list.reqDump();
1231
1232     HMI_SEQ_DEBUG(current, "%s start sequence with %s, %s", appid.c_str(), role.c_str(), area.c_str());
1233
1234     return WMError::SUCCESS;
1235 }
1236
1237 WMError WindowManager::checkPolicy(unsigned req_num)
1238 {
1239     /*
1240     * Check Policy
1241     */
1242     // get current trigger
1243     bool found = false;
1244     WMError ret = WMError::LAYOUT_CHANGE_FAIL;
1245     auto trigger = g_app_list.getRequest(req_num, &found);
1246     if (!found)
1247     {
1248         ret = WMError::NO_ENTRY;
1249         return ret;
1250     }
1251     string req_area = trigger.area;
1252
1253     if (trigger.task == Task::TASK_ALLOCATE)
1254     {
1255         const char *msg = this->check_surface_exist(trigger.role.c_str());
1256
1257         if (msg)
1258         {
1259             HMI_SEQ_ERROR(req_num, msg);
1260             return ret;
1261         }
1262     }
1263
1264     // Input event data to PolicyManager
1265     if (0 > this->pmw.setInputEventData(trigger.task, trigger.role, trigger.area))
1266     {
1267         HMI_SEQ_ERROR(req_num, "Failed to set input event data to PolicyManager");
1268         return ret;
1269     }
1270
1271     // Execute state transition of PolicyManager
1272     if (0 > this->pmw.executeStateTransition())
1273     {
1274         HMI_SEQ_ERROR(req_num, "Failed to execute state transition of PolicyManager");
1275         return ret;
1276     }
1277
1278     ret = WMError::SUCCESS;
1279
1280     g_app_list.reqDump();
1281
1282     return ret;
1283 }
1284
1285 WMError WindowManager::startTransition(unsigned req_num)
1286 {
1287     bool sync_draw_happen = false;
1288     bool found = false;
1289     WMError ret = WMError::SUCCESS;
1290     auto actions = g_app_list.getActions(req_num, &found);
1291     if (!found)
1292     {
1293         ret = WMError::NO_ENTRY;
1294         HMI_SEQ_ERROR(req_num,
1295             "Window Manager bug :%s : Action is not set", errorDescription(ret));
1296         return ret;
1297     }
1298
1299     g_app_list.reqDump();
1300     for (const auto &action : actions)
1301     {
1302         if (action.visible == TaskVisible::VISIBLE)
1303         {
1304             sync_draw_happen = true;
1305
1306             // TODO: application requests by old role,
1307             //       so convert role new to old for emitting event
1308             string old_role = this->rolenew2old[action.role];
1309
1310             this->emit_syncdraw(old_role, action.area);
1311             /* TODO: emit event for app not subscriber
1312             if(g_app_list.contains(y.appid))
1313                 g_app_list.lookUpClient(y.appid)->emit_syncdraw(y.role, y.area); */
1314         }
1315     }
1316
1317     if (sync_draw_happen)
1318     {
1319         this->setTimer();
1320     }
1321     else
1322     {
1323         // deactivate only, no syncDraw
1324         // Make it deactivate here
1325         for (const auto &x : actions)
1326         {
1327             this->lc->visibilityChange(x);
1328             /* if (g_app_list.contains(x.appid))
1329             {
1330                 auto client = g_app_list.lookUpClient(x.appid);
1331                 //this->deactivate(client->surfaceID(x.role));
1332             } */
1333         }
1334         this->lc->renderLayers();
1335         ret = WMError::NO_LAYOUT_CHANGE;
1336     }
1337     return ret;
1338 }
1339
1340 WMError WindowManager::doEndDraw(unsigned req_num)
1341 {
1342     // get actions
1343     bool found;
1344     auto actions = g_app_list.getActions(req_num, &found);
1345     WMError ret = WMError::SUCCESS;
1346     if (!found)
1347     {
1348         ret = WMError::NO_ENTRY;
1349         return ret;
1350     }
1351
1352     HMI_SEQ_INFO(req_num, "do endDraw");
1353
1354     // layout change and make it visible
1355     for (const auto &act : actions)
1356     {
1357         if(act.visible != TaskVisible::NO_CHANGE)
1358         {
1359             // layout change
1360             ret = this->lc->layoutChange(act);
1361             if(ret != WMError::SUCCESS)
1362             {
1363                 HMI_SEQ_WARNING(req_num,
1364                     "Failed to manipulate surfaces while state change : %s", errorDescription(ret));
1365                 return ret;
1366             }
1367             ret = this->lc->visibilityChange(act);
1368             if (ret != WMError::SUCCESS)
1369             {
1370                 HMI_SEQ_WARNING(req_num,
1371                     "Failed to manipulate surfaces while state change : %s", errorDescription(ret));
1372                 return ret;
1373             }
1374             HMI_SEQ_DEBUG(req_num, "visible %s", act.role.c_str());
1375             //this->lc_enddraw(act.role.c_str());
1376         }
1377     }
1378     this->lc->renderLayers();
1379
1380     HMI_SEQ_INFO(req_num, "emit flushDraw");
1381
1382     for(const auto &act_flush : actions)
1383     {
1384         if(act_flush.visible == TaskVisible::VISIBLE)
1385         {
1386             // TODO: application requests by old role,
1387             //       so convert role new to old for emitting event
1388             string old_role = this->rolenew2old[act_flush.role];
1389
1390             this->emit_flushdraw(old_role.c_str());
1391         }
1392     }
1393
1394     return ret;
1395 }
1396
1397 WMError WindowManager::layoutChange(const WMAction &action)
1398 {
1399     if (action.visible == TaskVisible::INVISIBLE)
1400     {
1401         // Visibility is not change -> no redraw is required
1402         return WMError::SUCCESS;
1403     }
1404     WMError ret = this->lc->layoutChange(action);
1405     /* auto client = g_app_list.lookUpClient(action.appid);
1406     unsigned surface = client->surfaceID(action.role);
1407     if (surface == 0)
1408     {
1409         HMI_SEQ_ERROR(g_app_list.currentRequestNumber(),
1410                       "client doesn't have surface with role(%s)", action.role.c_str());
1411         return WMError::NOT_REGISTERED;
1412     }
1413     // Layout Manager
1414     WMError ret = this->setSurfaceSize(surface, action.area); */
1415     return ret;
1416 }
1417
1418 WMError WindowManager::visibilityChange(const WMAction &action)
1419 {
1420     HMI_SEQ_DEBUG(g_app_list.currentRequestNumber(), "Change visibility");
1421     /* if(!g_app_list.contains(action.appid)){
1422         return WMError::NOT_REGISTERED;
1423     }
1424     auto client = g_app_list.lookUpClient(action.appid);
1425     unsigned surface = client->surfaceID(action.role);
1426     if(surface == 0)
1427     {
1428         HMI_SEQ_ERROR(g_app_list.currentRequestNumber(),
1429                       "client doesn't have surface with role(%s)", action.role.c_str());
1430         return WMError::NOT_REGISTERED;
1431     } */
1432     WMError ret = this->lc->visibilityChange(action);
1433
1434 /*     if (action.visible != TaskVisible::INVISIBLE)
1435     {
1436         this->activate(surface); // Layout Manager task
1437     }
1438     else
1439     {
1440         this->deactivate(surface); // Layout Manager task
1441     } */
1442     return ret;
1443 }
1444
1445 WMError WindowManager::setSurfaceSize(unsigned surface, const string &area)
1446 {
1447     this->surface_set_layout(surface, area);
1448
1449     return WMError::SUCCESS;
1450 }
1451
1452 void WindowManager::emitScreenUpdated(unsigned req_num)
1453 {
1454     // Get visible apps
1455     HMI_SEQ_DEBUG(req_num, "emit screen updated");
1456     bool found = false;
1457     auto actions = g_app_list.getActions(req_num, &found);
1458
1459     // create json object
1460     json_object *j = json_object_new_object();
1461     json_object *jarray = json_object_new_array();
1462
1463     for(const auto& action: actions)
1464     {
1465         if(action.visible != TaskVisible::INVISIBLE)
1466         {
1467             json_object_array_add(jarray, json_object_new_string(action.client->appID().c_str()));
1468         }
1469     }
1470     json_object_object_add(j, kKeyIds, jarray);
1471     HMI_SEQ_INFO(req_num, "Visible app: %s", json_object_get_string(j));
1472
1473     int ret = afb_event_push(
1474         this->map_afb_event[kListEventName[Event_ScreenUpdated]], j);
1475     if (ret != 0)
1476     {
1477         HMI_DEBUG("afb_event_push failed: %m");
1478     }
1479 }
1480
1481 void WindowManager::setTimer()
1482 {
1483     struct timespec ts;
1484     if (clock_gettime(CLOCK_BOOTTIME, &ts) != 0) {
1485         HMI_ERROR("Could't set time (clock_gettime() returns with error");
1486         return;
1487     }
1488
1489     HMI_SEQ_DEBUG(g_app_list.currentRequestNumber(), "Timer set activate");
1490     if (g_timer_ev_src == nullptr)
1491     {
1492         // firsttime set into sd_event
1493         int ret = sd_event_add_time(afb_daemon_get_event_loop(), &g_timer_ev_src,
1494             CLOCK_BOOTTIME, (uint64_t)(ts.tv_sec + kTimeOut) * 1000000ULL, 1, processTimerHandler, this);
1495         if (ret < 0)
1496         {
1497             HMI_ERROR("Could't set timer");
1498         }
1499     }
1500     else
1501     {
1502         // update timer limitation after second time
1503         sd_event_source_set_time(g_timer_ev_src, (uint64_t)(ts.tv_sec + kTimeOut) * 1000000ULL);
1504         sd_event_source_set_enabled(g_timer_ev_src, SD_EVENT_ONESHOT);
1505     }
1506 }
1507
1508 void WindowManager::stopTimer()
1509 {
1510     unsigned req_num = g_app_list.currentRequestNumber();
1511     HMI_SEQ_DEBUG(req_num, "Timer stop");
1512     int rc = sd_event_source_set_enabled(g_timer_ev_src, SD_EVENT_OFF);
1513     if (rc < 0)
1514     {
1515         HMI_SEQ_ERROR(req_num, "Timer stop failed");
1516     }
1517 }
1518
1519 void WindowManager::processNextRequest()
1520 {
1521     g_app_list.next();
1522     g_app_list.reqDump();
1523     unsigned req_num = g_app_list.currentRequestNumber();
1524     if (g_app_list.haveRequest())
1525     {
1526         HMI_SEQ_DEBUG(req_num, "Process next request");
1527         WMError rc = checkPolicy(req_num);
1528         if (rc != WMError::SUCCESS)
1529         {
1530             HMI_SEQ_ERROR(req_num, errorDescription(rc));
1531         }
1532     }
1533     else
1534     {
1535         HMI_SEQ_DEBUG(req_num, "Nothing Request. Waiting Request");
1536     }
1537 }
1538
1539 const char* WindowManager::convertRoleOldToNew(char const *old_role)
1540 {
1541     const char *new_role = nullptr;
1542
1543     for (auto const &on : this->roleold2new)
1544     {
1545         std::regex regex = std::regex(on.first);
1546         if (std::regex_match(old_role, regex))
1547         {
1548             // role is old. So convert to new.
1549             new_role = on.second.c_str();
1550             break;
1551         }
1552     }
1553
1554     if (nullptr == new_role)
1555     {
1556         // role is new or fallback.
1557         new_role = old_role;
1558     }
1559
1560     HMI_DEBUG("old:%s -> new:%s", old_role, new_role);
1561
1562     return new_role;
1563 }
1564
1565 int WindowManager::loadOldRoleDb()
1566 {
1567     // Get afm application installed dir
1568     char const *afm_app_install_dir = getenv("AFM_APP_INSTALL_DIR");
1569     HMI_DEBUG("afm_app_install_dir:%s", afm_app_install_dir);
1570
1571     string file_name;
1572     if (!afm_app_install_dir)
1573     {
1574         HMI_ERROR("AFM_APP_INSTALL_DIR is not defined");
1575     }
1576     else
1577     {
1578         file_name = string(afm_app_install_dir) + string("/etc/old_roles.db");
1579     }
1580
1581     // Load old_role.db
1582     json_object* json_obj;
1583     int ret = jh::inputJsonFilie(file_name.c_str(), &json_obj);
1584     if (0 > ret)
1585     {
1586         HMI_ERROR("Could not open old_role.db, so use default old_role information");
1587         json_obj = json_tokener_parse(kDefaultOldRoleDb);
1588     }
1589     HMI_DEBUG("json_obj dump:%s", json_object_get_string(json_obj));
1590
1591     // Perse apps
1592     json_object* json_cfg;
1593     if (!json_object_object_get_ex(json_obj, "old_roles", &json_cfg))
1594     {
1595         HMI_ERROR("Parse Error!!");
1596         return -1;
1597     }
1598
1599     int len = json_object_array_length(json_cfg);
1600     HMI_DEBUG("json_cfg len:%d", len);
1601     HMI_DEBUG("json_cfg dump:%s", json_object_get_string(json_cfg));
1602
1603     for (int i=0; i<len; i++)
1604     {
1605         json_object* json_tmp = json_object_array_get_idx(json_cfg, i);
1606
1607         const char* old_role = jh::getStringFromJson(json_tmp, "name");
1608         if (nullptr == old_role)
1609         {
1610             HMI_ERROR("Parse Error!!");
1611             return -1;
1612         }
1613
1614         const char* new_role = jh::getStringFromJson(json_tmp, "new");
1615         if (nullptr == new_role)
1616         {
1617             HMI_ERROR("Parse Error!!");
1618             return -1;
1619         }
1620
1621         this->roleold2new[old_role] = string(new_role);
1622     }
1623
1624     // Check
1625     for(auto itr = this->roleold2new.begin();
1626       itr != this->roleold2new.end(); ++itr)
1627     {
1628         HMI_DEBUG(">>> role old:%s new:%s",
1629                   itr->first.c_str(), itr->second.c_str());
1630     }
1631
1632     // Release json_object
1633     json_object_put(json_obj);
1634
1635     return 0;
1636 }
1637
1638 const char *WindowManager::check_surface_exist(const char *drawing_name)
1639 {
1640     auto const &surface_id = this->id_alloc.lookup(string(drawing_name));
1641     if (!surface_id)
1642     {
1643         return "Surface does not exist";
1644     }
1645
1646     /* if (!this->controller->surface_exists(*surface_id))
1647     {
1648         return "Surface does not exist in controller!";
1649     } */
1650
1651     /* auto layer_id = this->layers.get_layer_id(*surface_id);
1652
1653     if (!layer_id)
1654     {
1655         return "Surface is not on any layer!";
1656     } */
1657
1658     HMI_DEBUG("surface %d is detected", *surface_id);
1659     return nullptr;
1660 }
1661
1662 const char* WindowManager::kDefaultOldRoleDb = "{ \
1663     \"old_roles\": [ \
1664         { \
1665             \"name\": \"HomeScreen\", \
1666             \"new\": \"homescreen\" \
1667         }, \
1668         { \
1669             \"name\": \"Music\", \
1670             \"new\": \"music\" \
1671         }, \
1672         { \
1673             \"name\": \"MediaPlayer\", \
1674             \"new\": \"music\" \
1675         }, \
1676         { \
1677             \"name\": \"Video\", \
1678             \"new\": \"video\" \
1679         }, \
1680         { \
1681             \"name\": \"VideoPlayer\", \
1682             \"new\": \"video\" \
1683         }, \
1684         { \
1685             \"name\": \"WebBrowser\", \
1686             \"new\": \"browser\" \
1687         }, \
1688         { \
1689             \"name\": \"Radio\", \
1690             \"new\": \"radio\" \
1691         }, \
1692         { \
1693             \"name\": \"Phone\", \
1694             \"new\": \"phone\" \
1695         }, \
1696         { \
1697             \"name\": \"Navigation\", \
1698             \"new\": \"map\" \
1699         }, \
1700         { \
1701             \"name\": \"HVAC\", \
1702             \"new\": \"hvac\" \
1703         }, \
1704         { \
1705             \"name\": \"Settings\", \
1706             \"new\": \"settings\" \
1707         }, \
1708         { \
1709             \"name\": \"Dashboard\", \
1710             \"new\": \"dashboard\" \
1711         }, \
1712         { \
1713             \"name\": \"POI\", \
1714             \"new\": \"poi\" \
1715         }, \
1716         { \
1717             \"name\": \"Mixer\", \
1718             \"new\": \"mixer\" \
1719         }, \
1720         { \
1721             \"name\": \"Restriction\", \
1722             \"new\": \"restriction\" \
1723         }, \
1724         { \
1725             \"name\": \"^OnScreen.*\", \
1726             \"new\": \"on_screen\" \
1727         } \
1728     ] \
1729 }";
1730
1731 /**
1732  * controller_hooks
1733  */
1734 void controller_hooks::surface_created(uint32_t surface_id)
1735 {
1736     this->wmgr->surface_created(surface_id);
1737 }
1738
1739 void controller_hooks::surface_removed(uint32_t surface_id)
1740 {
1741     this->wmgr->surface_removed(surface_id);
1742 }
1743
1744 void controller_hooks::surface_visibility(uint32_t /*surface_id*/,
1745                                           uint32_t /*v*/) {}
1746
1747 void controller_hooks::surface_destination_rectangle(uint32_t /*surface_id*/,
1748                                                      uint32_t /*x*/,
1749                                                      uint32_t /*y*/,
1750                                                      uint32_t /*w*/,
1751                                                      uint32_t /*h*/) {}
1752
1753 void controller_hooks::surface_properties(uint32_t surface_id, uint32_t pid)
1754 {
1755     this->wmgr->surface_properties(surface_id, pid);
1756 }
1757
1758 } // namespace wm