X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fappcore-efl.c;h=f0161b33d50e842e30e04c70103e13b4f67a59b5;hb=refs%2Ftags%2Faccepted%2Ftizen%2F3.0%2Fmobile%2F20170103.154427;hp=62f9ea8e1a16e76276f31c43a74083d716a6013f;hpb=1ef14706fdb95bfa42d9ad0f881ad8223e73f64b;p=platform%2Fcore%2Fappfw%2Fapp-core.git diff --git a/src/appcore-efl.c b/src/appcore-efl.c index 62f9ea8..f0161b3 100644 --- a/src/appcore-efl.c +++ b/src/appcore-efl.c @@ -26,6 +26,9 @@ #if defined(WAYLAND) #include +#include +#include +#include #elif defined(X11) #include #include @@ -67,8 +70,8 @@ struct ui_priv { Ecore_Timer *mftimer; /* Ecore Timer for memory flushing */ -#ifdef _APPFW_FEATURE_BACKGROUND_MANAGEMENT struct appcore *app_core; +#ifdef _APPFW_FEATURE_BACKGROUND_MANAGEMENT void (*prepare_to_suspend) (void *data); void (*exit_from_suspend) (void *data); #endif @@ -96,6 +99,7 @@ static const char *_ae_name[AE_MAX] = { [AE_RESET] = "RESET", [AE_LOWMEM_POST] = "LOWMEM_POST", [AE_MEM_FLUSH] = "MEM_FLUSH", + [AE_UPDATE_REQUESTED] = "UPDATE_REQUESTED", }; static const char *_as_name[] = { @@ -123,6 +127,102 @@ static struct ui_wm_rotate wm_rotate; static Eina_Bool __visibility_cb(void *data, int type, void *event); static GSList *g_winnode_list; +static struct wl_display *dsp; +static struct wl_registry *reg; +static struct tizen_policy *tz_policy; +static bool bg_state = false; + +static void __wl_listener_cb(void *data, struct wl_registry *reg, + uint32_t id, const char *interface, uint32_t ver) +{ + if (interface && !strcmp(interface, "tizen_policy")) { + if (!tz_policy) + tz_policy = wl_registry_bind(reg, id, + &tizen_policy_interface, 1); + } +} + +static void __wl_listener_remove_cb(void *data, struct wl_registry *reg, + unsigned int id) +{ + /* do nothing */ +} + +static const struct wl_registry_listener reg_listener = { + __wl_listener_cb, + __wl_listener_remove_cb +}; + +static int __init_wl(void) +{ + _DBG("initialize wayland"); + dsp = wl_display_connect(NULL); + if (dsp == NULL) { + _ERR("Failed to connect wl display"); + return -1; + } + + reg = wl_display_get_registry(dsp); + if (reg == NULL) { + _ERR("Failed to get registry"); + wl_display_disconnect(dsp); + return -1; + } + + wl_registry_add_listener(reg, ®_listener, NULL); + wl_display_roundtrip(dsp); + + if (!tz_policy) { + _ERR("Failed to get tizen policy interface"); + wl_registry_destroy(reg); + wl_display_disconnect(dsp); + return -1; + } + + return 0; +} + +static void __finish_wl(void) +{ + if (tz_policy) { + tizen_policy_destroy(tz_policy); + tz_policy = NULL; + } + + if (reg) { + wl_registry_destroy(reg); + reg = NULL; + } + + if (dsp) { + wl_display_disconnect(dsp); + dsp = NULL; + } +} + +static void __set_bg_state(void) +{ + if (__init_wl() < 0) + return; + + tizen_policy_set_background_state(tz_policy, getpid()); + wl_display_roundtrip(dsp); + bg_state = true; + _DBG("bg state: %d", bg_state); +} + +static void __unset_bg_state(void) +{ + if (!tz_policy) + return; + + tizen_policy_unset_background_state(tz_policy, getpid()); + wl_display_roundtrip(dsp); + bg_state = false; + _DBG("bg state: %d", bg_state); + __finish_wl(); +} + #ifdef _APPFW_FEATURE_BACKGROUND_MANAGEMENT static void __appcore_efl_prepare_to_suspend(void *data) { @@ -157,6 +257,20 @@ static void __appcore_efl_exit_from_suspend(void *data) } #endif +static void __appcore_efl_update_requested(void *data) +{ + struct ui_priv *ui = (struct ui_priv *)data; + struct sys_op *op; + int dummy = 0; + + if (ui->app_core) { + op = &ui->app_core->sops[SE_UPDATE_REQUESTED]; + if (op && op->func) + op->func((void *)&dummy, op->data); + } + _DBG("[__UPDATE_REQUESTED__]"); +} + #if defined(MEMORY_FLUSH_ACTIVATE) static Eina_Bool __appcore_memory_flush_cb(void *data) { @@ -253,6 +367,7 @@ static void __do_app(enum app_event event, void *data, bundle * b) int r = -1; struct ui_priv *ui = data; const char *below_app; + const char *bg_launch; _DBG("[APP %d] Event: %d", _pid, event); _ret_if(ui == NULL || event >= AE_MAX); @@ -307,6 +422,8 @@ static void __do_app(enum app_event event, void *data, bundle * b) switch (event) { case AE_RESET: _DBG("[APP %d] RESET", _pid); + if (ui->pending_data) + bundle_free(ui->pending_data); ui->pending_data = bundle_dup(b); LOG(LOG_DEBUG, "LAUNCH", "[%s:Application:reset:start]", ui->name); @@ -334,9 +451,18 @@ static void __do_app(enum app_event event, void *data, bundle * b) LOG(LOG_DEBUG, "LAUNCH", "[%s:Application:reset:done]", ui->name); if (first_launch) { +#ifdef _APPFW_FEATURE_BACKGROUND_MANAGEMENT + if (ui->app_core->allowed_bg) + __appcore_timer_add(ui); +#endif first_launch = FALSE; } else { _INFO("[APP %d] App already running, raise the window", _pid); + if (bg_state) { + bg_launch = bundle_get_val(b, AUL_SVC_K_BG_LAUNCH); + if (!bg_launch || strcmp(bg_launch, "enable")) + __unset_bg_state(); + } #ifdef X11 x_raise_win(getpid()); #else @@ -378,6 +504,8 @@ static void __do_app(enum app_event event, void *data, bundle * b) _DBG("[__SUSPEND__] resume case"); ui->exit_from_suspend(ui); } + if (ui->app_core->allowed_bg) + __appcore_timer_del(ui); #endif if (ui->state == AS_PAUSED || ui->state == AS_CREATED) { @@ -422,6 +550,9 @@ static void __do_app(enum app_event event, void *data, bundle * b) _DBG("[APP %d] is another state", _pid); } break; + case AE_UPDATE_REQUESTED: + __appcore_efl_update_requested(ui); + break; default: /* do nothing */ break; @@ -553,14 +684,10 @@ static bool __update_win(unsigned int win, bool bfobscured) return FALSE; } - g_winnode_list = g_slist_remove_link(g_winnode_list, f); - t = (struct win_node *)f->data; t->win = win; t->bfobscured = bfobscured; - g_winnode_list = g_slist_concat(g_winnode_list, f); - return TRUE; } #elif defined(WAYLAND) @@ -579,16 +706,12 @@ static bool __update_win(unsigned int win, unsigned int surf, bool bfobscured) return FALSE; } - g_winnode_list = g_slist_remove_link(g_winnode_list, f); - t = (struct win_node *)f->data; t->win = win; if (surf != 0) t->surf = surf; t->bfobscured = bfobscured; - g_winnode_list = g_slist_concat(g_winnode_list, f); - return TRUE; } #endif @@ -853,6 +976,11 @@ static int __before_loop(struct ui_priv *ui, int *argc, char ***argv) { int r; char *hwacc = NULL; +#if _APPFW_FEATURE_BACKGROUND_MANAGEMENT + struct appcore *ac = NULL; +#endif + bundle *b; + const char *bg_launch; if (argc == NULL || argv == NULL) { _ERR("argc/argv is NULL"); @@ -884,9 +1012,18 @@ static int __before_loop(struct ui_priv *ui, int *argc, char ***argv) #if _APPFW_FEATURE_BACKGROUND_MANAGEMENT appcore_get_app_core(&ac); ui->app_core = ac; - SECURE_LOGD("[__SUSPEND__] appcore initialized, appcore addr: 0x%x", ac); + SECURE_LOGD("[__SUSPEND__] appcore initialized, appcore addr: #%x", ac); #endif + b = bundle_import_from_argv(*argc, *argv); + if (b) { + bg_launch = bundle_get_val(b, AUL_SVC_K_BG_LAUNCH); + if (bg_launch && strcmp(bg_launch, "enable") == 0) + __set_bg_state(); + + bundle_free(b); + } + LOG(LOG_DEBUG, "LAUNCH", "[%s:Platform:appcore_init:done]", ui->name); if (ui->ops && ui->ops->create) { traceBegin(TTRACE_TAG_APPLICATION_MANAGER, "APPCORE:CREATE"); @@ -951,6 +1088,12 @@ static void __after_loop(struct ui_priv *ui) __appcore_timer_del(ui); elm_shutdown(); + + /* Check loader case */ + if (getenv("AUL_LOADER_INIT")) { + unsetenv("AUL_LOADER_INIT"); + elm_shutdown(); + } } static int __set_data(struct ui_priv *ui, const char *name,