Change xml file to xml.in
[apps/native/menu-screen.git] / src / menu_screen.c
1 /*
2  * MENU-SCREEN
3  *
4  * Copyright (c) 2009-2015 Samsung Electronics Co., Ltd All Rights Reserved
5  *
6  * Contact: Jin Yoon <jinny.yoon@samsung.com>
7  *          Junkyu Han <junkyu.han@samsung.com>
8
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  * http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  */
22
23 #include <ail.h>
24 #include <app.h>
25 #include <appcore-efl.h>
26 #include <aul.h>
27 #include <Elementary.h>
28 #include <stdbool.h>
29 #include <system_info.h>
30 #include <vconf.h>
31 #include <app_preference.h>
32 #include <system_settings.h>
33 #include <pkgmgr-info.h>
34
35 #include "conf.h"
36 #include "item.h"
37 #include "key.h"
38 #include "layout.h"
39 #include "mapbuf.h"
40 #include "menu_screen.h"
41 #include "mouse.h"
42 #include "page.h"
43 #include "page_scroller.h"
44 #include "pkgmgr.h"
45 #include "util.h"
46
47 #define MENU_SCREEN_ENGINE "file/private/org.tizen.menu-screen/engine"
48
49 #define LAYOUT_EDJE_PORTRAIT EDJEDIR"/layout_portrait.edj"
50 #define LAYOUT_GROUP_NAME "layout"
51
52
53
54 // Define prototype of the "hidden API of AUL"
55 extern int aul_listen_app_dead_signal(int (*func)(int signal, void *data), void *data);
56 static struct {
57         int state;
58         int root_width;
59         int root_height;
60         int is_tts;
61         int booting_state;
62         Evas *evas;
63         Ecore_Evas *ee;
64         Evas_Object *win;
65         Elm_Theme *theme;
66         bool is_done;
67 } menu_screen_info = {
68         .state = APP_STATE_PAUSE,
69         .is_tts = false,
70         .booting_state = 0,
71         .evas = NULL,
72         .ee = NULL,
73         .win = NULL,
74         .theme = NULL,
75         .is_done = false,
76 };
77
78
79
80 HAPI Evas *menu_screen_get_evas(void)
81 {
82         return menu_screen_info.evas;
83 }
84
85
86
87 HAPI int menu_screen_get_root_width(void)
88 {
89         return menu_screen_info.root_width;
90 }
91
92
93
94 HAPI int menu_screen_get_root_height(void)
95 {
96         return menu_screen_info.root_height;
97 }
98
99
100
101 HAPI Evas_Object *menu_screen_get_win(void)
102 {
103         return menu_screen_info.win;
104 }
105
106
107
108 HAPI Elm_Theme *menu_screen_get_theme(void)
109 {
110         return menu_screen_info.theme;
111 }
112
113
114
115 HAPI bool menu_screen_get_done(void)
116 {
117         return menu_screen_info.is_done;
118 }
119
120
121
122 HAPI void menu_screen_set_done(bool is_done)
123 {
124         menu_screen_info.is_done = is_done;
125 }
126
127
128
129 HAPI int menu_screen_get_state(void)
130 {
131         return menu_screen_info.state;
132 }
133
134
135
136 HAPI int menu_screen_is_tts(void)
137 {
138         return menu_screen_info.is_tts;
139 }
140
141
142 static Eina_Bool _appcore_flush_cb(void *data)
143 {
144         if (APP_STATE_PAUSE != menu_screen_info.state) return ECORE_CALLBACK_CANCEL;
145         if (0 != appcore_flush_memory()) _E("Cannot flush memory");
146         return ECORE_CALLBACK_CANCEL;
147 }
148
149
150
151 HAPI void menu_screen_inc_booting_state(void)
152 {
153         menu_screen_info.booting_state++;
154         if (BOOTING_STATE_DONE > menu_screen_info.booting_state) return;
155
156         menu_screen_error_e ret = MENU_SCREEN_ERROR_OK;
157         do {
158                 ret = pkgmgr_reserve_list_pop_request();
159         } while (MENU_SCREEN_ERROR_OK == ret);
160
161         /*  Cache memory is cleared when the application paused (every time, after 5 seconds (in appcore)),
162         *  but after running in a minimized mode (HIDE_LAUNCH) application have status AS_RUNNING.
163         *  Application have status AS_PAUSED only after change of visibility to hidden condition by user (on hiding window)
164         *  Cleaning must be performed only once after application loading in hidden condition
165         *  (and stay in a hidden condition at time of cleaning).
166         */
167         if (APP_STATE_PAUSE == menu_screen_info.state)
168                 ecore_timer_add(5, _appcore_flush_cb, NULL);
169 }
170
171
172
173 HAPI void menu_screen_dec_booting_state(void)
174 {
175         menu_screen_info.booting_state --;
176 }
177
178
179
180 HAPI int menu_screen_get_booting_state(void)
181 {
182         return menu_screen_info.booting_state;
183 }
184
185
186
187 static bool _is_emulator_on(void)
188 {
189         int ret;
190         char *model = NULL;
191
192         ret = system_info_get_platform_string("tizen.org/system/model_name", &model);
193         if (SYSTEM_INFO_ERROR_NONE != ret) {
194                 if (model) {
195                         free(model);
196                 }
197                 return false;
198         }
199
200         if (!strncmp(model, "Emulator", strlen(model))) {
201                 _D("This model is on Emulator");
202                 free(model);
203                 return true;
204         }
205
206         _D("This model is NOT on Emulator");
207         free(model);
208         return false;
209 }
210
211
212
213 static menu_screen_error_e _create_canvas(char *name, char *title)
214 {
215         char *buf;
216
217         if (_is_emulator_on()) {
218                 _D("ELM_ENGINE is set as [software_x11]");
219                 elm_config_accel_preference_set("opengl");
220         } else {
221                 buf = vconf_get_str(MENU_SCREEN_ENGINE);
222                 if (buf) {
223                         _D("ELM_ENGINE is set as [%s]", buf);
224                         elm_config_accel_preference_set(buf);
225                         free(buf);
226                 } else {
227                         _D("ELM_ENGINE is set as [gl]");
228                         elm_config_accel_preference_set("gl");
229                 }
230         }
231
232         menu_screen_info.win = elm_win_add(NULL, name, ELM_WIN_BASIC);
233         retv_if(NULL == menu_screen_info.win, MENU_SCREEN_ERROR_FAIL);
234
235         if (title) {
236                 elm_win_title_set(menu_screen_info.win, title);
237         }
238         _D("elm_scale: %f", elm_app_base_scale_get());
239         _D("config_scale: %f", elm_config_scale_get());
240
241         elm_win_borderless_set(menu_screen_info.win, EINA_TRUE);
242         elm_win_screen_size_get(menu_screen_info.win, NULL, NULL, &menu_screen_info.root_width, &menu_screen_info.root_height);
243         _D("menu-screen window size:: width: %d, height: %d", menu_screen_info.root_width, menu_screen_info.root_height);
244
245 #if 0
246         ecore_x_icccm_name_class_set(elm_win_xwindow_get(menu_screen_info.win), "MENU_SCREEN", "MENU_SCREEN");
247         ATOM_WM_WINDOW_ROLE = ecore_x_atom_get("WM_WINDOW_ROLE");
248         if (ATOM_WM_WINDOW_ROLE) {
249                 ecore_x_window_prop_string_set(elm_win_xwindow_get(menu_screen_info.win), ATOM_WM_WINDOW_ROLE, "MENU_SCREEN");
250         } else {
251                 _D("Failed to set the window role as MENU_SCREEN");
252         }
253 #endif
254
255         elm_win_role_set(menu_screen_info.win, "MENU_SCREEN");
256         evas_object_resize(menu_screen_info.win, menu_screen_get_root_width(), menu_screen_get_root_height());
257
258         menu_screen_info.evas = evas_object_evas_get(menu_screen_info.win);
259         if (!menu_screen_info.evas) {
260                 _E("[%s] Failed to get the evas object", __func__);
261         }
262
263         menu_screen_info.ee = ecore_evas_ecore_evas_get(menu_screen_info.evas);
264         if (!menu_screen_info.ee) {
265                 _E("[%s] Failed to get ecore_evas object", __func__);
266         }
267
268         evas_object_size_hint_min_set(menu_screen_info.win, menu_screen_info.root_width, menu_screen_info.root_height);
269         evas_object_size_hint_max_set(menu_screen_info.win, menu_screen_info.root_width, menu_screen_info.root_height);
270         evas_object_resize(menu_screen_info.win, menu_screen_info.root_width, menu_screen_info.root_height);
271         evas_object_show(menu_screen_info.win);
272
273         return MENU_SCREEN_ERROR_OK;
274 }
275
276
277
278 static void _destroy_canvas(void)
279 {
280         evas_object_del(menu_screen_info.win);
281 }
282
283
284
285 static int _dead_cb(int pid, void *data)
286 {
287         return EXIT_SUCCESS;
288 }
289
290
291
292 static void _create_bg(void)
293 {
294         _D("Create BG");
295         char *buf = NULL;
296         Evas_Object *bg;
297         int width;
298         int height;
299
300         if (system_settings_get_value_string(SYSTEM_SETTINGS_KEY_WALLPAPER_HOME_SCREEN, &buf) < 0) {
301                 _E("Failed to get a wallpaper: %d\n", SYSTEM_SETTINGS_KEY_WALLPAPER_HOME_SCREEN);
302         }
303         _D("Menu-screen bg's image : %s", buf);
304
305         width = menu_screen_get_root_width();
306         height = menu_screen_get_root_height();
307
308         bg = evas_object_data_get(menu_screen_get_win(), "bg");
309         if (!bg) {
310                 Evas_Object *rect;
311
312                 rect = evas_object_rectangle_add(menu_screen_get_evas());
313                 ret_if(!rect);
314                 evas_object_data_set(menu_screen_get_win(), "rect", rect);
315                 evas_object_color_set(rect, 0, 0, 0, 255);
316                 evas_object_size_hint_min_set(rect, width, height);
317                 evas_object_size_hint_max_set(rect, width, height);
318                 elm_win_resize_object_add(menu_screen_get_win(), rect);
319                 evas_object_show(rect);
320
321                 bg = elm_image_add(menu_screen_get_win());
322                 if (NULL == bg) {
323                         free(buf);
324                         return;
325                 }
326                 evas_object_data_set(menu_screen_get_win(), "bg", bg);
327         }
328
329         elm_image_aspect_fixed_set(bg, EINA_TRUE);
330         elm_image_fill_outside_set(bg, EINA_TRUE);
331         elm_image_preload_disabled_set(bg, EINA_FALSE);
332
333         evas_object_size_hint_min_set(bg, width, height);
334         evas_object_size_hint_max_set(bg, width, height);
335         if (!elm_image_file_set(bg, buf, NULL)) {
336                 _E("Failed to set image file : %s", buf);
337         }
338
339         elm_win_resize_object_add(menu_screen_get_win(), bg);
340         evas_object_show(bg);
341
342         free(buf);
343 }
344
345
346
347
348 static void _destroy_bg()
349 {
350         Evas_Object *rect;
351         Evas_Object *bg;
352
353         rect = evas_object_data_del(menu_screen_get_win(), "rect");
354         evas_object_del(rect);
355
356         bg = evas_object_data_del(menu_screen_get_win(), "bg");
357         evas_object_del(bg);
358 }
359
360
361
362 static void _change_bg_cb(system_settings_key_e key, void *data)
363 {
364         _D("Background image is changed.");
365         _create_bg();
366 }
367
368
369
370 static void _init_theme(void)
371 {
372         menu_screen_info.theme = elm_theme_new();
373         elm_theme_ref_set(menu_screen_info.theme, NULL);
374         elm_theme_extension_add(menu_screen_info.theme, EDJEDIR"/index.edj");
375 }
376
377
378
379 static void _fini_theme(void)
380 {
381         elm_theme_extension_del(menu_screen_info.theme, EDJEDIR"/index.edj");
382         elm_theme_free(menu_screen_info.theme);
383         menu_screen_info.theme = NULL;
384
385 }
386
387
388
389 static Evas_Object *_create_conformant(Evas_Object *win)
390 {
391         Evas_Object *conformant;
392
393         conformant = elm_conformant_add(win);
394         retv_if(NULL == conformant, NULL);
395
396         evas_object_size_hint_weight_set(conformant, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
397         elm_win_indicator_mode_set(menu_screen_info.win, ELM_WIN_INDICATOR_SHOW);
398         elm_object_signal_emit(conformant, "elm,state,indicator,overlap", "elm");
399         evas_object_data_set(conformant, "win", win);
400         evas_object_show(conformant);
401
402         elm_win_resize_object_add(win, conformant);
403         elm_win_conformant_set(win, EINA_TRUE);
404
405         return conformant;
406 }
407
408
409
410 static void _destroy_conformant(Evas_Object *conformant)
411 {
412         evas_object_data_del(conformant, "win");
413         evas_object_del(conformant);
414 }
415
416
417 static char *_replace_str(char *str, const char *before, const char *after)
418 {
419         retv_if(NULL == str, NULL);
420         retv_if(NULL == before, NULL);
421         retv_if(NULL == after, NULL);
422
423         size_t before_len = strlen(before);
424         retv_if(before_len < 1, str);
425
426         size_t after_len = strlen(after);
427         size_t i, count = 0;
428         if (after_len != before_len) {
429                 for (i = 0; str[i] != '\0';) {
430                         if (0 == memcmp(&str[i], before, before_len)) {
431                                 count++;
432                                 i += before_len;
433                         } else {
434                                 i++;
435                         }
436                 }
437         } else {
438                 i = strlen(str);
439         }
440
441         char *result;
442         result = malloc(i + 1 + count * (after_len - before_len));
443         retv_if(result == NULL, NULL);
444
445         char *sr;
446         sr = result;
447         while (*str) {
448                 if (0 == memcmp(str, before, before_len)) {
449                         memcpy(sr, after, after_len);
450                         sr += after_len;
451                         str += before_len;
452                 } else {
453                         *sr++ = *str++;
454                 }
455         }
456         *sr = '\0';
457
458         return result;
459 }
460
461
462
463 static bool _create_cb(void *data)
464 {
465         Evas_Object *conformant;
466
467         _init_theme();
468         retv_if(MENU_SCREEN_ERROR_FAIL == _create_canvas(PACKAGE, PACKAGE), false);
469
470         if (system_settings_set_changed_cb(SYSTEM_SETTINGS_KEY_WALLPAPER_HOME_SCREEN, _change_bg_cb, NULL) < 0) {
471                 _E("Failed to register a settings change cb for %d\n", SYSTEM_SETTINGS_KEY_WALLPAPER_HOME_SCREEN);
472         }
473         _create_bg();
474
475         conformant = _create_conformant(menu_screen_info.win);
476         retv_if(NULL == conformant, false);
477         evas_object_data_set(menu_screen_info.win, "conformant", conformant);
478
479         Evas_Object *layout;
480         layout = layout_create(conformant, LAYOUT_EDJE_PORTRAIT,
481                                 LAYOUT_GROUP_NAME, MENU_SCREEN_ROTATE_PORTRAIT);
482         if (NULL == layout) {
483                 _E("Failed to load an edje object");
484                 evas_object_del(menu_screen_info.win);
485                 return false;
486         }
487         evas_object_data_set(menu_screen_info.win, "layout", layout);
488
489         elm_object_content_set(conformant, layout);
490
491         mouse_register();
492         aul_listen_app_dead_signal(_dead_cb, NULL);
493         key_register();
494
495         // FIXME : This will be enabled after rebuilding the routine for appid <-> pkgid.
496         pkgmgr_init();
497
498         return true;
499 }
500
501
502
503 static void _terminate_cb(void *data)
504 {
505         Evas_Object *conformant;
506         Evas_Object *layout;
507
508         // FIXME : This will be enabled after rebuilding the routine for appid <-> pkgid.
509         pkgmgr_fini();
510
511         if (system_settings_unset_changed_cb(SYSTEM_SETTINGS_KEY_WALLPAPER_HOME_SCREEN) < 0) {
512                 _E("Failed to remove bgset [%s]\n", SYSTEM_SETTINGS_KEY_WALLPAPER_HOME_SCREEN);
513         }
514
515         evas_object_hide(menu_screen_info.win);
516
517         key_unregister();
518         mouse_unregister();
519
520         layout = evas_object_data_del(menu_screen_info.win, "layout");
521         if (layout) layout_destroy(layout);
522
523         conformant = evas_object_data_del(menu_screen_info.win, "conformant");
524         if (conformant) _destroy_conformant(conformant);
525
526         _destroy_bg();
527         _destroy_canvas();
528         _fini_theme();
529         evas_object_del(menu_screen_info.win);
530 }
531
532
533
534 static void _pause_cb(void *data)
535 {
536         _D("Pause start");
537
538         menu_screen_info.state = APP_STATE_PAUSE;
539 }
540
541
542
543 static void _resume_cb(void *data)
544 {
545         _D("START RESUME");
546
547         do { // Focus
548                 Evas_Object *layout = evas_object_data_get(menu_screen_info.win, "layout");
549                 break_if(NULL == layout);
550
551                 Evas_Object *all_apps = evas_object_data_get(layout, "all_apps");
552                 break_if(NULL == all_apps);
553
554                 Evas_Object *scroller = elm_object_part_content_get(all_apps, "content");
555                 break_if(NULL == scroller);
556
557                 page_scroller_focus(scroller);
558         } while (0);
559
560         menu_screen_info.state = APP_STATE_RESUME;
561 }
562
563
564
565 static void _app_control_cb(app_control_h service, void *data)
566 {
567         _D("START RESET : %d", menu_screen_info.state);
568
569         do { // Focus
570                 Evas_Object *layout = evas_object_data_get(menu_screen_info.win, "layout");
571                 break_if(NULL == layout);
572
573                 Evas_Object *all_apps = evas_object_data_get(layout, "all_apps");
574                 break_if(NULL == all_apps);
575
576                 Evas_Object *scroller = elm_object_part_content_get(all_apps, "content");
577                 break_if(NULL == scroller);
578
579                 page_scroller_focus(scroller);
580         } while (0);
581 }
582
583
584
585 static void _language_changed_cb(app_event_info_h event_info, void *data)
586 {
587         register unsigned int i;
588         register unsigned int j;
589         unsigned int count;
590         Evas_Object *layout;
591         Evas_Object *all_apps;
592         Evas_Object *scroller;
593         Evas_Object *page;
594         Evas_Object *item;
595         unsigned int page_max_app;
596
597         _D("Language is changed");
598
599         if (false == menu_screen_info.is_done) {
600                 elm_exit();
601         }
602
603         layout = evas_object_data_get(menu_screen_info.win, "layout");
604         ret_if(NULL == layout);
605         all_apps = evas_object_data_get(layout, "all_apps");
606         ret_if(NULL == all_apps);
607         scroller = elm_object_part_content_get(all_apps, "content");
608         ret_if(NULL == scroller);
609
610         count = page_scroller_count_page(scroller);
611         page_max_app = (unsigned int) evas_object_data_get(scroller, "page_max_app");
612         for (i = 0; i < count; i ++) {
613                 page = page_scroller_get_page_at(scroller, i);
614                 if (!page) continue;
615                 if (mapbuf_is_enabled(page)) {
616                         mapbuf_disable(page, 1);
617                 }
618
619                 for (j = 0; j < page_max_app; j ++) {
620                         pkgmgrinfo_appinfo_h appinfo_h = NULL;
621                         char *name;
622
623                         item = page_get_item_at(page, j);
624                         if (!item) continue;
625
626                         if (pkgmgrinfo_appinfo_get_usr_appinfo(item_get_package(item), getuid(), &appinfo_h) < 0) {
627                                 pkgmgrinfo_appinfo_destroy_appinfo(appinfo_h);
628                                 continue;
629                         }
630                         if (pkgmgrinfo_appinfo_get_label(appinfo_h, &name) < 0) {
631                                 pkgmgrinfo_appinfo_destroy_appinfo(appinfo_h);
632                                 continue;
633                         }
634
635                         if (!name) {
636                                 _D("Failed to get name for %s", item_get_package(item));
637                                 pkgmgrinfo_appinfo_destroy_appinfo(appinfo_h);
638                                 continue;
639                         }
640
641                         item_set_name(item, name, 0);
642                         pkgmgrinfo_appinfo_destroy_appinfo(appinfo_h);
643                 }
644
645                 mapbuf_enable(page, 1);
646         }
647 }
648
649
650
651 static void _init(ui_app_lifecycle_callback_s *lifecycle_callback, app_event_handler_h *event_handlers)
652 {
653         lifecycle_callback->create = _create_cb;
654         lifecycle_callback->terminate = _terminate_cb;
655         lifecycle_callback->pause = _pause_cb;
656         lifecycle_callback->resume = _resume_cb;
657         lifecycle_callback->app_control = _app_control_cb;
658
659         ui_app_add_event_handler(&event_handlers[APP_EVENT_LOW_BATTERY], APP_EVENT_LOW_BATTERY, NULL, NULL);
660         ui_app_add_event_handler(&event_handlers[APP_EVENT_LOW_MEMORY], APP_EVENT_LOW_MEMORY, NULL, NULL);
661         ui_app_add_event_handler(&event_handlers[APP_EVENT_DEVICE_ORIENTATION_CHANGED], APP_EVENT_DEVICE_ORIENTATION_CHANGED, NULL, NULL);
662         ui_app_add_event_handler(&event_handlers[APP_EVENT_LANGUAGE_CHANGED], APP_EVENT_LANGUAGE_CHANGED, _language_changed_cb, NULL);
663         ui_app_add_event_handler(&event_handlers[APP_EVENT_REGION_FORMAT_CHANGED], APP_EVENT_REGION_FORMAT_CHANGED, NULL, NULL);
664
665 }
666
667
668
669 static void _fini(app_event_handler_h *event_handlers)
670 {
671         ui_app_remove_event_handler(event_handlers[APP_EVENT_LOW_BATTERY]);
672         ui_app_remove_event_handler(event_handlers[APP_EVENT_LOW_MEMORY]);
673         ui_app_remove_event_handler(event_handlers[APP_EVENT_DEVICE_ORIENTATION_CHANGED]);
674         ui_app_remove_event_handler(event_handlers[APP_EVENT_LANGUAGE_CHANGED]);
675         ui_app_remove_event_handler(event_handlers[APP_EVENT_REGION_FORMAT_CHANGED]);
676
677 }
678
679
680
681 static void _init_reference_value(void)
682 {
683         preference_set_string(MENU_SCREEN_ENGINE, "gl");
684 }
685
686
687 int main(int argc, char *argv[])
688 {
689         char *buf;
690         ui_app_lifecycle_callback_s lifecycle_callback = {0, };
691         app_event_handler_h event_handlers[5] = {NULL, };
692
693         _init(&lifecycle_callback, event_handlers);
694         ui_app_main(argc, argv, &lifecycle_callback, NULL);
695         _fini(event_handlers);
696
697         return EXIT_SUCCESS;
698 }
699
700
701
702 // End of a file