Merge "Add new api for customizing main loop" into tizen
[platform/core/appfw/app-core.git] / src / appcore-efl.c
1 /*
2  *  app-core
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: Jayoun Lee <airjany@samsung.com>, Sewook Park <sewook7.park@samsung.com>, Jaeho Lee <jaeho81.lee@samsung.com>
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  */
21
22 #include <sys/types.h>
23 #include <sys/socket.h>
24 #include <sys/un.h>
25 #include <stdio.h>
26 #include <unistd.h>
27 #include <stdarg.h>
28 #include <errno.h>
29 #include <string.h>
30 #include <stdlib.h>
31
32 #if defined(WAYLAND)
33 #include <Ecore_Wayland.h>
34 #elif defined(X11)
35 #include <X11/Xatom.h>
36 #include <X11/Xlib.h>
37 #include <Ecore_X.h>
38 #endif
39
40 #include <Ecore.h>
41 #include <Ecore_Evas.h>
42 #include <Ecore_Input_Evas.h>
43 #include <Elementary.h>
44 #include <glib-object.h>
45 #include <malloc.h>
46 #include <glib.h>
47 #include <dbus/dbus.h>
48 #include <stdbool.h>
49 #include <aul.h>
50
51 #include "appcore-internal.h"
52 #include "appcore-efl.h"
53
54 static pid_t _pid;
55 static bool resource_reclaiming = TRUE;
56 static int tmp_val = 0;
57
58 /* cgroup command type */
59 enum proc_status_type {
60         PROC_STATUS_LAUNCH,
61         PROC_STATUS_RESUME,
62         PROC_STATUS_TERMINATE,
63         PROC_STATUS_FOREGRD,
64         PROC_STATUS_BACKGRD,
65 };
66
67 struct ui_priv {
68         const char *name;
69         enum app_state state;
70
71         Ecore_Event_Handler *hshow;
72         Ecore_Event_Handler *hhide;
73         Ecore_Event_Handler *hvchange;
74         Ecore_Event_Handler *hcmsg; /* WM_ROTATE */
75
76         Ecore_Timer *mftimer; /* Ecore Timer for memory flushing */
77
78         struct appcore_ops *ops;
79         void (*mfcb) (void); /* Memory Flushing Callback */
80
81         /* WM_ROTATE */
82         int wm_rot_supported;
83         int rot_started;
84         int (*rot_cb) (void *event_info, enum appcore_rm, void *);
85         void *rot_cb_data;
86         enum appcore_rm rot_mode;
87         bundle *pending_data;
88 };
89
90 static struct ui_priv priv;
91
92 static const char *_ae_name[AE_MAX] = {
93         [AE_UNKNOWN] = "UNKNOWN",
94         [AE_CREATE] = "CREATE",
95         [AE_TERMINATE] = "TERMINATE",
96         [AE_PAUSE] = "PAUSE",
97         [AE_RESUME] = "RESUME",
98         [AE_RESET] = "RESET",
99         [AE_LOWMEM_POST] = "LOWMEM_POST",
100         [AE_MEM_FLUSH] = "MEM_FLUSH",
101 };
102
103 static const char *_as_name[] = {
104         [AS_NONE] = "NONE",
105         [AS_CREATED] = "CREATED",
106         [AS_RUNNING] = "RUNNING",
107         [AS_PAUSED] = "PAUSED",
108         [AS_DYING] = "DYING",
109 };
110
111 static bool b_active = FALSE;
112 static bool first_launch = TRUE;
113
114 struct win_node {
115         unsigned int win;
116 #ifdef WAYLAND
117         unsigned int surf;
118 #endif
119         bool bfobscured;
120 };
121
122 static struct ui_wm_rotate wm_rotate;
123 static Eina_Bool __visibility_cb(void *data, int type, void *event);
124
125 static void _send_to_resourced(enum proc_status_type type)
126 {
127         DBusConnection *conn;
128         DBusMessage* msg;
129         DBusError dbus_error;
130
131         dbus_error_init(&dbus_error);
132
133         conn = dbus_bus_get(DBUS_BUS_SYSTEM, &dbus_error);
134         if (!conn) {
135                 _ERR("dbus_bus_get failed : [%s]", dbus_error.message);
136                 dbus_error_free(&dbus_error);
137                 return;
138         }
139
140         msg = dbus_message_new_signal("/Org/Tizen/ResourceD/Process",
141                         "org.tizen.resourced.process",
142                         "ProcStatus");
143         if (!msg) {
144                 _ERR("dbus_message_new_signal is failed");
145                 return;
146         }
147
148         if (!dbus_message_append_args(msg,
149                                 DBUS_TYPE_INT32, &type,
150                                 DBUS_TYPE_INT32, &_pid,
151                                 DBUS_TYPE_INVALID)) {
152                 _ERR("dbus_message_append_args is failed. type = %d, pid = %d",
153                                 type, _pid);
154                 dbus_message_unref(msg);
155                 return;
156         }
157
158         if (!dbus_connection_send(conn, msg, NULL))
159                 _ERR("dbus_connection_send is failed");
160
161         dbus_message_unref(msg);
162 }
163
164 static GSList *g_winnode_list;
165
166 #if defined(MEMORY_FLUSH_ACTIVATE)
167 static Eina_Bool __appcore_memory_flush_cb(void *data)
168 {
169         struct ui_priv *ui = (struct ui_priv *)data;
170
171         appcore_flush_memory();
172         ui->mftimer = NULL;
173
174         return ECORE_CALLBACK_CANCEL;
175 }
176
177 static int __appcore_low_memory_post_cb(struct ui_priv *ui)
178 {
179         if (ui->state == AS_PAUSED)
180                 appcore_flush_memory();
181         else
182                 malloc_trim(0);
183
184         return 0;
185 }
186
187 static void __appcore_timer_add(struct ui_priv *ui)
188 {
189         ui->mftimer = ecore_timer_add(5, __appcore_memory_flush_cb, ui);
190 }
191
192 static void __appcore_timer_del(struct ui_priv *ui)
193 {
194         if (ui->mftimer) {
195                 ecore_timer_del(ui->mftimer);
196                 ui->mftimer = NULL;
197         }
198 }
199
200 #else
201
202 static int __appcore_low_memory_post_cb(ui_priv *ui)
203 {
204         return -1;
205 }
206
207 #define __appcore_timer_add(ui) 0
208 #define __appcore_timer_del(ui) 0
209
210 #endif
211
212 static void __appcore_efl_memory_flush_cb(void)
213 {
214         _DBG("[APP %d]   __appcore_efl_memory_flush_cb()", _pid);
215         elm_cache_all_flush();
216 }
217 #ifdef WAYLAND
218 static void wl_raise_win(void)
219 {
220         Ecore_Wl_Window *win;
221         unsigned int win_id = appcore_get_main_window();
222
223         _DBG("Raise window: %d", win_id);
224         win = ecore_wl_window_find(win_id);
225         ecore_wl_window_activate(win);
226 }
227
228 static void wl_pause_win(void)
229 {
230         Ecore_Wl_Window *win;
231         GSList *wlist = g_winnode_list;
232         struct win_node *entry = NULL;
233
234         _DBG("Pause window");
235
236         while (wlist) {
237                 entry = wlist->data;
238
239                 _DBG("Pause window: %d", entry->win);
240                 win = ecore_wl_window_find(entry->win);
241                 ecore_wl_window_iconified_set(win, EINA_TRUE);
242
243                 wlist = wlist->next;
244         }
245 }
246
247 #endif
248
249 static void __do_app(enum app_event event, void *data, bundle * b)
250 {
251         int r = -1;
252         struct ui_priv *ui = data;
253
254         _DBG("[APP %d] Event: %d", _pid, event);
255         _ret_if(ui == NULL || event >= AE_MAX);
256         _DBG("[APP %d] Event: %s State: %s", _pid, _ae_name[event],
257              _as_name[ui->state]);
258
259         if (event == AE_MEM_FLUSH) {
260                 ui->mfcb();
261                 return;
262         }
263
264         if (event == AE_LOWMEM_POST) {
265                 if (__appcore_low_memory_post_cb(ui) == 0)
266                         return;
267         }
268
269         if (!(ui->state == AS_PAUSED && event == AE_PAUSE))
270                 __appcore_timer_del(ui);
271
272         if (ui->state == AS_DYING) {
273                 _ERR("Skip the event in dying state");
274                 return;
275         }
276
277         if (event == AE_TERMINATE) {
278                 _DBG("[APP %d] TERMINATE", _pid);
279                 elm_exit();
280                 aul_status_update(STATUS_DYING);
281                 return;
282         }
283
284         if (event == AE_RAISE) {
285 #if defined(X11)
286                 x_raise_win(getpid());
287 #elif defined(WAYLAND)
288                 wl_raise_win();
289 #endif
290                 return;
291         }
292
293         if (event == AE_LOWER) {
294 #if defined(X11)
295                 x_pause_win(getpid());
296 #elif defined(WAYLAND)
297                 wl_pause_win();
298 #endif
299                 return;
300         }
301
302         _ret_if(ui->ops == NULL);
303
304         switch (event) {
305         case AE_RESET:
306                 _DBG("[APP %d] RESET", _pid);
307                 ui->pending_data = bundle_dup(b);
308                 LOG(LOG_DEBUG, "LAUNCH", "[%s:Application:reset:start]", ui->name);
309                 if (ui->ops->reset)
310                         r = ui->ops->reset(b, ui->ops->data);
311                 LOG(LOG_DEBUG, "LAUNCH", "[%s:Application:reset:done]", ui->name);
312
313                 if (first_launch) {
314                         first_launch = FALSE;
315                 } else {
316                         _INFO("[APP %d] App already running, raise the window", _pid);
317 #ifdef X11
318                         x_raise_win(getpid());
319 #else
320                         wl_raise_win();
321 #endif
322                 }
323                 LOG(LOG_DEBUG, "LAUNCH", "[%s:Application:reset:done]",
324                     ui->name);
325                 break;
326         case AE_PAUSE:
327                 if (ui->state == AS_RUNNING) {
328                         _DBG("[APP %d] PAUSE", _pid);
329                         if (ui->ops->pause)
330                                 r = ui->ops->pause(ui->ops->data);
331                         ui->state = AS_PAUSED;
332                         if (r >= 0 && resource_reclaiming == TRUE)
333                                 __appcore_timer_add(ui);
334                 }
335                 /* TODO : rotation stop */
336                 /* r = appcore_pause_rotation_cb(); */
337                 aul_status_update(STATUS_BG);
338                 _send_to_resourced(PROC_STATUS_BACKGRD);
339                 break;
340         case AE_RESUME:
341                 LOG(LOG_DEBUG, "LAUNCH", "[%s:Application:resume:start]",
342                                 ui->name);
343                 if (ui->state == AS_PAUSED || ui->state == AS_CREATED) {
344                         _DBG("[APP %d] RESUME", _pid);
345
346                         if (ui->state == AS_CREATED) {
347                                 appcore_group_reset(ui->pending_data);
348                                 bundle_free(ui->pending_data);
349                                 ui->pending_data = NULL;
350                         } else {
351                                 appcore_group_resume();
352                         }
353
354                         if (ui->ops->resume)
355                                 ui->ops->resume(ui->ops->data);
356                         ui->state = AS_RUNNING;
357                 }
358                 /*TODO : rotation start*/
359                 /* r = appcore_resume_rotation_cb(); */
360                 LOG(LOG_DEBUG, "LAUNCH", "[%s:Application:resume:done]",
361                     ui->name);
362                 LOG(LOG_DEBUG, "LAUNCH", "[%s:Application:Launching:done]",
363                     ui->name);
364                 aul_status_update(STATUS_VISIBLE);
365                 _send_to_resourced(PROC_STATUS_FOREGRD);
366                 break;
367         case AE_TERMINATE_BGAPP:
368                 if (ui->state == AS_PAUSED) {
369                         _DBG("[APP %d] is paused. TERMINATE", _pid);
370                         ui->state = AS_DYING;
371                         aul_status_update(STATUS_DYING);
372                         elm_exit();
373                 } else if (ui->state == AS_RUNNING) {
374                         _DBG("[APP %d] is running.", _pid);
375                 } else {
376                         _DBG("[APP %d] is another state", _pid);
377                 }
378                 break;
379         default:
380                 /* do nothing */
381                 break;
382         }
383 }
384
385 static struct ui_ops efl_ops = {
386         .data = &priv,
387         .cb_app = __do_app,
388 };
389
390 static bool __check_visible(void)
391 {
392         GSList *iter = NULL;
393         struct win_node *entry = NULL;
394
395         _DBG("[EVENT_TEST][EVENT] __check_visible\n");
396
397         for (iter = g_winnode_list; iter != NULL; iter = g_slist_next(iter)) {
398                 entry = iter->data;
399                 _DBG("win : %x obscured : %d\n", entry->win, entry->bfobscured);
400                 if (entry->bfobscured == FALSE)
401                         return TRUE;
402         }
403
404         return FALSE;
405 }
406
407 static GSList *__find_win(unsigned int win)
408 {
409         GSList *iter;
410         struct win_node *t;
411
412         for (iter = g_winnode_list; iter; iter = g_slist_next(iter)) {
413                 t = iter->data;
414                 if (t && t->win == win)
415                         return iter;
416         }
417
418         return NULL;
419 }
420
421 #if defined(X11)
422 static bool __add_win(unsigned int win)
423 {
424         struct win_node *t;
425         GSList *f;
426
427         _DBG("[EVENT_TEST][EVENT] __add_win WIN:%x\n", win);
428
429         f = __find_win(win);
430         if (f) {
431                 errno = ENOENT;
432                 _DBG("[EVENT_TEST][EVENT] ERROR There is already window : %x \n", win);
433                 return FALSE;
434         }
435
436         t = calloc(1, sizeof(struct win_node));
437         if (t == NULL)
438                 return FALSE;
439
440         t->win = win;
441         t->bfobscured = FALSE;
442
443         g_winnode_list = g_slist_append(g_winnode_list, t);
444
445         return TRUE;
446 }
447 #elif defined(WAYLAND)
448 static bool __add_win(unsigned int win, unsigned int surf)
449 {
450         struct win_node *t;
451         GSList *f;
452
453         _DBG("[EVENT_TEST][EVENT] __add_win WIN:%x\n", win);
454
455         f = __find_win(win);
456         if (f) {
457                 errno = ENOENT;
458                 _DBG("[EVENT_TEST][EVENT] ERROR There is already window : %x \n", win);
459                 return FALSE;
460         }
461
462         t = calloc(1, sizeof(struct win_node));
463         if (t == NULL)
464                 return FALSE;
465
466         t->win = win;
467         t->surf = surf;
468         t->bfobscured = FALSE;
469
470         g_winnode_list = g_slist_append(g_winnode_list, t);
471
472         return TRUE;
473 }
474 #endif
475
476 static bool __delete_win(unsigned int win)
477 {
478         GSList *f;
479
480         f = __find_win(win);
481         if (!f) {
482                 errno = ENOENT;
483                 _DBG("[EVENT_TEST][EVENT] ERROR There is no window : %x \n",
484                                 win);
485                 return FALSE;
486         }
487
488         free(f->data);
489         g_winnode_list = g_slist_delete_link(g_winnode_list, f);
490
491         return TRUE;
492 }
493
494 #if defined(X11)
495 static bool __update_win(unsigned int win, bool bfobscured)
496 {
497         GSList *f;
498         struct win_node *t;
499
500         _DBG("[EVENT_TEST][EVENT] __update_win WIN:%x fully_obscured %d\n", win,
501              bfobscured);
502
503         f = __find_win(win);
504         if (!f) {
505                 errno = ENOENT;
506                 _DBG("[EVENT_TEST][EVENT] ERROR There is no window : %x \n", win);
507                 return FALSE;
508         }
509
510         g_winnode_list = g_slist_remove_link(g_winnode_list, f);
511
512         t = (struct win_node *)f->data;
513         t->win = win;
514         t->bfobscured = bfobscured;
515
516         g_winnode_list = g_slist_concat(g_winnode_list, f);
517
518         return TRUE;
519 }
520 #elif defined(WAYLAND)
521 static bool __update_win(unsigned int win, unsigned int surf, bool bfobscured)
522 {
523         GSList *f;
524         struct win_node *t;
525
526         _DBG("[EVENT_TEST][EVENT] __update_win WIN:%x fully_obscured %d\n", win,
527              bfobscured);
528
529         f = __find_win(win);
530         if (!f) {
531                 errno = ENOENT;
532                 _DBG("[EVENT_TEST][EVENT] ERROR There is no window : %x \n", win);
533                 return FALSE;
534         }
535
536         g_winnode_list = g_slist_remove_link(g_winnode_list, f);
537
538         t = (struct win_node *)f->data;
539         t->win = win;
540         if (surf != 0)
541                 t->surf = surf;
542         t->bfobscured = bfobscured;
543
544         g_winnode_list = g_slist_concat(g_winnode_list, f);
545
546         return TRUE;
547 }
548 #endif
549
550 /* WM_ROTATE */
551 #ifdef X11
552 static Ecore_X_Atom _WM_WINDOW_ROTATION_SUPPORTED = 0;
553 static Ecore_X_Atom _WM_WINDOW_ROTATION_CHANGE_REQUEST = 0;
554
555 static int __check_wm_rotation_support(void)
556 {
557         _DBG("Disable window manager rotation");
558         return -1;
559
560         Ecore_X_Window root, win, win2;
561         int ret;
562
563         if (!_WM_WINDOW_ROTATION_SUPPORTED) {
564                 _WM_WINDOW_ROTATION_SUPPORTED =
565                                         ecore_x_atom_get("_E_WINDOW_ROTATION_SUPPORTED");
566         }
567
568         if (!_WM_WINDOW_ROTATION_CHANGE_REQUEST) {
569                 _WM_WINDOW_ROTATION_CHANGE_REQUEST =
570                                         ecore_x_atom_get("_E_WINDOW_ROTATION_CHANGE_REQUEST");
571         }
572
573         root = ecore_x_window_root_first_get();
574         ret = ecore_x_window_prop_xid_get(root,
575                         _WM_WINDOW_ROTATION_SUPPORTED,
576                         ECORE_X_ATOM_WINDOW,
577                         &win, 1);
578         if ((ret == 1) && (win)) {
579                 ret = ecore_x_window_prop_xid_get(win,
580                                 _WM_WINDOW_ROTATION_SUPPORTED,
581                                 ECORE_X_ATOM_WINDOW,
582                                 &win2, 1);
583                 if ((ret == 1) && (win2 == win))
584                         return 0;
585         }
586
587         return -1;
588 }
589
590 static void __set_wm_rotation_support(unsigned int win, unsigned int set)
591 {
592         GSList *iter = NULL;
593         struct win_node *entry = NULL;
594
595         if (win == 0) {
596                 for (iter = g_winnode_list; iter != NULL; iter = g_slist_next(iter)) {
597                         entry = iter->data;
598                         if (entry->win) {
599                                 ecore_x_window_prop_card32_set(entry->win,
600                                                 _WM_WINDOW_ROTATION_SUPPORTED,
601                                                 &set, 1);
602                         }
603                 }
604         } else {
605                 ecore_x_window_prop_card32_set(win,
606                                 _WM_WINDOW_ROTATION_SUPPORTED,
607                                 &set, 1);
608         }
609 }
610 #endif
611
612 static Eina_Bool __show_cb(void *data, int type, void *event)
613 {
614 #if defined(WAYLAND)
615         Ecore_Wl_Event_Window_Show *ev;
616
617         ev = event;
618         if (ev->parent_win != 0) {
619                 /* This is child window. Skip!!! */
620                 return ECORE_CALLBACK_PASS_ON;
621         }
622
623         _DBG("[EVENT_TEST][EVENT] GET SHOW EVENT!!!. WIN:%x, %d\n", ev->win, ev->data[0]);
624
625         if (!__find_win((unsigned int)ev->win))
626                 __add_win((unsigned int)ev->win, (unsigned int)ev->data[0]);
627         else
628                 __update_win((unsigned int)ev->win, (unsigned int)ev->data[0], FALSE);
629
630 #elif defined(X11)
631         Ecore_X_Event_Window_Show *ev;
632         int ret;
633         Ecore_X_Window parent;
634
635         ev = event;
636
637         _DBG("[EVENT_TEST][EVENT] GET SHOW EVENT!!!. WIN:%x\n", ev->win);
638
639         if (!__find_win((unsigned int)ev->win)) {
640                 /* WM_ROTATE */
641                 if ((priv.wm_rot_supported) && (1 == priv.rot_started))
642                         __set_wm_rotation_support(ev->win, 1);
643                 __add_win((unsigned int)ev->win);
644         } else {
645                 __update_win((unsigned int)ev->win, FALSE);
646         }
647 #endif
648
649         return ECORE_CALLBACK_RENEW;
650 }
651
652 static Eina_Bool __hide_cb(void *data, int type, void *event)
653 {
654 #if defined(WAYLAND)
655         Ecore_Wl_Event_Window_Hide *ev;
656 #elif defined(X11)
657         Ecore_X_Event_Window_Hide *ev;
658 #endif
659         int bvisibility = 0;
660
661         ev = event;
662
663         _DBG("[EVENT_TEST][EVENT] GET HIDE EVENT!!!. WIN:%x\n", ev->win);
664
665         if (__find_win((unsigned int)ev->win)) {
666                 __delete_win((unsigned int)ev->win);
667                 bvisibility = __check_visible();
668                 if (!bvisibility && b_active == TRUE) {
669                         _DBG(" Go to Pasue state \n");
670                         b_active = FALSE;
671                         __do_app(AE_PAUSE, data, NULL);
672                 }
673         }
674
675         return ECORE_CALLBACK_RENEW;
676 }
677
678 static Eina_Bool __visibility_cb(void *data, int type, void *event)
679 {
680 #if defined(WAYLAND)
681         Ecore_Wl_Event_Window_Visibility_Change *ev;
682         int bvisibility = 0;
683         ev = event;
684         __update_win((unsigned int)ev->win, 0, ev->fully_obscured);
685 #elif defined(X11)
686         Ecore_X_Event_Window_Visibility_Change *ev;
687         int bvisibility = 0;
688
689         ev = event;
690
691         __update_win((unsigned int)ev->win, ev->fully_obscured);
692 #endif
693         bvisibility = __check_visible();
694
695         _DBG("bvisibility %d, b_active %d", bvisibility, b_active);
696
697         if (bvisibility && b_active == FALSE) {
698                 _DBG(" Go to Resume state\n");
699                 b_active = TRUE;
700                 __do_app(AE_RESUME, data, NULL);
701
702         } else if (!bvisibility && b_active == TRUE) {
703                 _DBG(" Go to Pasue state \n");
704                 b_active = FALSE;
705                 __do_app(AE_PAUSE, data, NULL);
706         } else
707                 _DBG(" No change state \n");
708
709         return ECORE_CALLBACK_RENEW;
710
711 }
712
713 #ifdef X11
714 /* WM_ROTATE */
715 static Eina_Bool __cmsg_cb(void *data, int type, void *event)
716 {
717         struct ui_priv *ui = (struct ui_priv *)data;
718         Ecore_X_Event_Client_Message *e = event;
719
720         if (!ui)
721                 return ECORE_CALLBACK_PASS_ON;
722
723         if (e->format != 32)
724                 return ECORE_CALLBACK_PASS_ON;
725
726         if (e->message_type == _WM_WINDOW_ROTATION_CHANGE_REQUEST) {
727                 if ((ui->wm_rot_supported == 0)
728                         || (ui->rot_started == 0)
729                         || (ui->rot_cb == NULL)) {
730                         return ECORE_CALLBACK_PASS_ON;
731                 }
732
733                 enum appcore_rm rm;
734                 switch (e->data.l[1]) {
735                 case 0:
736                         rm = APPCORE_RM_PORTRAIT_NORMAL;
737                         break;
738                 case 90:
739                         rm = APPCORE_RM_LANDSCAPE_REVERSE;
740                         break;
741                 case 180:
742                         rm = APPCORE_RM_PORTRAIT_REVERSE;
743                         break;
744                 case 270:
745                         rm = APPCORE_RM_LANDSCAPE_NORMAL;
746                         break;
747                 default:
748                         rm = APPCORE_RM_UNKNOWN;
749                         break;
750                 }
751
752                 ui->rot_mode = rm;
753
754                 if (APPCORE_RM_UNKNOWN != rm)
755                         ui->rot_cb((void *)&rm, rm, ui->rot_cb_data);
756         }
757
758         return ECORE_CALLBACK_PASS_ON;
759 }
760 #endif
761
762 static void __add_climsg_cb(struct ui_priv *ui)
763 {
764         _ret_if(ui == NULL);
765 #if defined(WAYLAND)
766         ui->hshow =
767             ecore_event_handler_add(ECORE_WL_EVENT_WINDOW_SHOW, __show_cb, ui);
768         ui->hhide =
769             ecore_event_handler_add(ECORE_WL_EVENT_WINDOW_HIDE, __hide_cb, ui);
770         ui->hvchange =
771             ecore_event_handler_add(ECORE_WL_EVENT_WINDOW_VISIBILITY_CHANGE,
772                                     __visibility_cb, ui);
773 #elif defined(X11)
774         ui->hshow =
775             ecore_event_handler_add(ECORE_X_EVENT_WINDOW_SHOW, __show_cb, ui);
776         ui->hhide =
777             ecore_event_handler_add(ECORE_X_EVENT_WINDOW_HIDE, __hide_cb, ui);
778         ui->hvchange =
779             ecore_event_handler_add(ECORE_X_EVENT_WINDOW_VISIBILITY_CHANGE,
780                                     __visibility_cb, ui);
781
782         /* Add client message callback for WM_ROTATE */
783         if (!__check_wm_rotation_support()) {
784                 ui->hcmsg = ecore_event_handler_add(ECORE_X_EVENT_CLIENT_MESSAGE,
785                                                 __cmsg_cb, ui);
786                 ui->wm_rot_supported = 1;
787                 appcore_set_wm_rotation(&wm_rotate);
788         }
789 #endif
790 }
791
792 static int __before_loop(struct ui_priv *ui, int *argc, char ***argv)
793 {
794         int r;
795         char *hwacc = NULL;
796
797         if (argc == NULL || argv == NULL) {
798                 _ERR("argc/argv is NULL");
799                 errno = EINVAL;
800                 return -1;
801         }
802
803 #if !(GLIB_CHECK_VERSION(2, 36, 0))
804         g_type_init();
805 #endif
806         elm_init(*argc, *argv);
807
808         hwacc = getenv("HWACC");
809         if (hwacc == NULL) {
810                 _DBG("elm_config_accel_preference_set is not called");
811         } else if (strcmp(hwacc, "USE") == 0) {
812                 elm_config_accel_preference_set("hw");
813                 _DBG("elm_config_accel_preference_set : hw");
814         } else if (strcmp(hwacc, "NOT_USE") == 0) {
815                 elm_config_accel_preference_set("none");
816                 _DBG("elm_config_accel_preference_set : none");
817         } else {
818                 _DBG("elm_config_accel_preference_set is not called");
819         }
820
821         r = appcore_init(ui->name, &efl_ops, *argc, *argv);
822         _retv_if(r == -1, -1);
823
824         LOG(LOG_DEBUG, "LAUNCH", "[%s:Platform:appcore_init:done]", ui->name);
825         if (ui->ops && ui->ops->create) {
826                 r = ui->ops->create(ui->ops->data);
827                 if (r < 0) {
828                         _ERR("create() return error");
829                         appcore_exit();
830                         if (ui->ops && ui->ops->terminate)
831                                 ui->ops->terminate(ui->ops->data);
832                         errno = ECANCELED;
833                         return -1;
834                 }
835                 LOG(LOG_DEBUG, "LAUNCH", "[%s:Application:create:done]",
836                     ui->name);
837         }
838         ui->state = AS_CREATED;
839
840         __add_climsg_cb(ui);
841
842         return 0;
843 }
844
845 static void __after_loop(struct ui_priv *ui)
846 {
847         appcore_unset_rotation_cb();
848         appcore_exit();
849
850         if (ui->state == AS_RUNNING) {
851                 _DBG("[APP %d] PAUSE before termination", _pid);
852                 if (ui->ops && ui->ops->pause)
853                         ui->ops->pause(ui->ops->data);
854         }
855
856         if (ui->ops && ui->ops->terminate)
857                 ui->ops->terminate(ui->ops->data);
858
859         ui->state = AS_DYING;
860
861         if (ui->hshow)
862                 ecore_event_handler_del(ui->hshow);
863         if (ui->hhide)
864                 ecore_event_handler_del(ui->hhide);
865         if (ui->hvchange)
866                 ecore_event_handler_del(ui->hvchange);
867
868         __appcore_timer_del(ui);
869
870         elm_shutdown();
871 }
872
873 static int __set_data(struct ui_priv *ui, const char *name,
874                     struct appcore_ops *ops)
875 {
876         if (ui->name) {
877                 _ERR("Mainloop already started");
878                 errno = EINPROGRESS;
879                 return -1;
880         }
881
882         if (name == NULL || name[0] == '\0') {
883                 _ERR("Invalid name");
884                 errno = EINVAL;
885                 return -1;
886         }
887
888         if (ops == NULL) {
889                 _ERR("ops is NULL");
890                 errno = EINVAL;
891                 return -1;
892         }
893
894         ui->name = strdup(name);
895         _retv_if(ui->name == NULL, -1);
896
897         ui->ops = ops;
898         ui->mfcb = __appcore_efl_memory_flush_cb;
899         _pid = getpid();
900
901         /* WM_ROTATE */
902         ui->wm_rot_supported = 0;
903         ui->rot_started = 0;
904         ui->rot_cb = NULL;
905         ui->rot_cb_data = NULL;
906         ui->rot_mode = APPCORE_RM_UNKNOWN;
907
908         return 0;
909 }
910
911 static void __unset_data(struct ui_priv *ui)
912 {
913         if (ui->name)
914                 free((void *)ui->name);
915
916         memset(ui, 0, sizeof(struct ui_priv));
917 }
918
919 /* WM_ROTATE */
920 static int __wm_set_rotation_cb(int (*cb) (void *event_info, enum appcore_rm, void *), void *data)
921 {
922         if (cb == NULL) {
923                 errno = EINVAL;
924                 return -1;
925         }
926
927         if ((priv.wm_rot_supported) && (0 == priv.rot_started))
928                 __set_wm_rotation_support(0, 1);
929
930         priv.rot_cb = cb;
931         priv.rot_cb_data = data;
932         priv.rot_started = 1;
933
934         return 0;
935 }
936
937 static int __wm_unset_rotation_cb(void)
938 {
939         if ((priv.wm_rot_supported) && (1 == priv.rot_started))
940                 __set_wm_rotation_support(0, 0);
941
942         priv.rot_cb = NULL;
943         priv.rot_cb_data = NULL;
944         priv.rot_started = 0;
945
946         return 0;
947 }
948
949 static int __wm_get_rotation_state(enum appcore_rm *curr)
950 {
951         if (curr == NULL) {
952                 errno = EINVAL;
953                 return -1;
954         }
955
956         *curr = priv.rot_mode;
957
958         return 0;
959 }
960
961 static int __wm_pause_rotation_cb(void)
962 {
963         if ((priv.rot_started == 1) && (priv.wm_rot_supported))
964                 __set_wm_rotation_support(0, 0);
965
966         priv.rot_started = 0;
967
968         return 0;
969 }
970
971 static int __wm_resume_rotation_cb(void)
972 {
973         if ((priv.rot_started == 0) && (priv.wm_rot_supported))
974                 __set_wm_rotation_support(0, 1);
975
976         priv.rot_started = 1;
977
978         return 0;
979 }
980
981 static struct ui_wm_rotate wm_rotate = {
982         __wm_set_rotation_cb,
983         __wm_unset_rotation_cb,
984         __wm_get_rotation_state,
985         __wm_pause_rotation_cb,
986         __wm_resume_rotation_cb
987 };
988
989 EXPORT_API int appcore_efl_init(const char *name, int *argc, char ***argv,
990                      struct appcore_ops *ops)
991 {
992         int r;
993
994         LOG(LOG_DEBUG, "LAUNCH", "[%s:Application:main:done]", name);
995
996         r = __set_data(&priv, name, ops);
997         _retv_if(r == -1, -1);
998
999         r = __before_loop(&priv, argc, argv);
1000         if (r == -1) {
1001                 __unset_data(&priv);
1002                 return -1;
1003         }
1004
1005         return 0;
1006 }
1007
1008 EXPORT_API void appcore_efl_fini(void)
1009 {
1010         aul_status_update(STATUS_DYING);
1011
1012         __after_loop(&priv);
1013
1014         __unset_data(&priv);
1015 }
1016
1017 EXPORT_API int appcore_efl_main(const char *name, int *argc, char ***argv,
1018                                 struct appcore_ops *ops)
1019 {
1020         int r;
1021
1022         r = appcore_efl_init(name, argc, argv, ops);
1023         _retv_if(r == -1, -1);
1024
1025         elm_run();
1026
1027         appcore_efl_fini();
1028
1029         return 0;
1030 }
1031
1032 EXPORT_API int appcore_set_system_resource_reclaiming(bool enable)
1033 {
1034         resource_reclaiming = enable;
1035
1036         return 0;
1037 }
1038
1039 EXPORT_API int appcore_set_app_state(int state)
1040 {
1041         priv.state = state;
1042
1043         tmp_val = 1;
1044
1045         return 0;
1046 }
1047
1048 EXPORT_API unsigned int appcore_get_main_window(void)
1049 {
1050         struct win_node *entry = NULL;
1051
1052         if (g_winnode_list != NULL) {
1053                 entry = g_winnode_list->data;
1054                 return (unsigned int) entry->win;
1055         }
1056
1057         return 0;
1058 }
1059
1060 #ifdef WAYLAND
1061 EXPORT_API unsigned int appcore_get_main_surface(void)
1062 {
1063         struct win_node *entry = NULL;
1064
1065         if (g_winnode_list != NULL) {
1066                 entry = g_winnode_list->data;
1067                 return (unsigned int) entry->surf;
1068         }
1069
1070         return 0;
1071 }
1072 #endif