2 * Copyright (c) 2015 - 2016 Samsung Electronics Co., Ltd All Rights Reserved
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
22 #include <bundle_internal.h>
26 #include <glib-object.h>
28 #include <app_control.h>
29 #include <app_control_internal.h>
30 #include <Elementary.h>
31 #include <widget_errno.h>
32 #include <widget_instance.h>
33 #include <widget_service.h>
34 #include <widget_service_internal.h>
35 #include <aul_app_com.h>
36 #include <Ecore_Wayland.h>
37 #include <system_info.h>
39 #include <vconf-internal-keys.h>
40 #include <screen_connector_provider.h>
42 #include "widget_app.h"
43 #include "widget-log.h"
44 #include "widget-private.h"
45 #include "widget_app_internal.h"
51 #define STR_MAX_BUF 128
52 #define LOG_TAG "CAPI_WIDGET_APPLICATION"
53 #define K_REASON "__WC_K_REASON__"
54 #define APP_TYPE_WIDGET "widgetapp"
55 #define STATUS_FOREGROUND "fg"
56 #define STATUS_BACKGROUND "bg"
58 typedef enum _widget_obj_state_e {
70 struct app_event_handler {
71 app_event_type_e type;
76 struct app_event_info {
77 app_event_type_e type;
81 typedef struct _widget_class widget_class_s;
83 #define WIDGET_APP_EVENT_MAX 5
84 static GList *handler_list[WIDGET_APP_EVENT_MAX] = {NULL, };
86 static int caller_pid;
87 static widget_app_lifecycle_callback_s *app_ops;
88 static void *app_user_data;
90 static widget_class_h class_provider;
91 static int exit_called;
92 static char *package_id;
93 static bool fg_signal;
95 static void _widget_core_set_appcore_event_cb(void);
96 static void _widget_core_unset_appcore_event_cb(void);
98 static void __free_handler_cb(gpointer data)
104 static void __free_handler_list(void)
108 for (i = 0; i < WIDGET_APP_EVENT_MAX; i++) {
109 g_list_free_full(handler_list[i], __free_handler_cb);
110 handler_list[i] = NULL;
114 static inline bool _is_widget_feature_enabled(void)
116 static bool feature = false;
117 static bool retrieved = false;
120 if (retrieved == true)
123 ret = system_info_get_platform_bool(
124 "http://tizen.org/feature/shell.appwidget", &feature);
125 if (ret != SYSTEM_INFO_ERROR_NONE) {
126 _E("failed to get system info"); /* LCOV_EXCL_LINE */
127 return false; /* LCOV_EXCL_LINE */
135 static gint __comp_by_id(gconstpointer a, gconstpointer b)
137 widget_context_s *wc = (widget_context_s *)a;
139 return strcmp(wc->id, (const char *)b);
142 static widget_context_s *__find_context_by_id(const char *id)
145 GList *contexts = _widget_app_get_contexts();
150 ret = g_list_find_custom(contexts, id, __comp_by_id);
157 static gint __comp_by_state(gconstpointer a, gconstpointer b)
159 widget_context_s *wc = (widget_context_s *)a;
161 if (wc->state == (widget_obj_state_e)GPOINTER_TO_INT(b))
167 static widget_context_s *__find_context_by_state(widget_obj_state_e state)
170 GList *contexts = _widget_app_get_contexts();
172 ret = g_list_find_custom(contexts, GINT_TO_POINTER((int)state), __comp_by_state);
179 static gint __comp_by_win(gconstpointer a, gconstpointer b)
181 int win = GPOINTER_TO_INT(b);
182 widget_context_s *wc = (widget_context_s *)a;
184 return (wc && wc->win_id == win) ? 0 : -1;
187 static widget_context_s *__find_context_by_win(int win)
189 GList *contexts = _widget_app_get_contexts();
190 GList *ret = g_list_find_custom(contexts, GINT_TO_POINTER(win), __comp_by_win);
198 static int __send_lifecycle_event(const char *class_id, const char *instance_id,
201 bundle *b = bundle_create();
202 char pkgid[256] = {0, };
206 _E("out of memory"); /* LCOV_EXCL_LINE */
207 return -1; /* LCOV_EXCL_LINE */
210 if (package_id == NULL) {
211 ret = aul_app_get_pkgid_bypid(getpid(), pkgid, sizeof(pkgid));
213 package_id = strdup(pkgid);
216 bundle_add_str(b, AUL_K_WIDGET_ID, class_id);
217 bundle_add_str(b, AUL_K_WIDGET_INSTANCE_ID, instance_id);
218 bundle_add_byte(b, AUL_K_WIDGET_STATUS, &status, sizeof(int));
220 bundle_add_str(b, AUL_K_PKGID, package_id);
222 _D("send lifecycle %s(%d)", instance_id, status);
223 ret = aul_app_com_send("widget.status", b);
225 _E("send lifecycle error:%d", ret); /* LCOV_EXCL_LINE */
232 static int __send_update_status(const char *class_id, const char *instance_id,
233 int status, bundle *extra)
237 bundle_raw *raw = NULL;
239 char *viewer_endpoint = _widget_app_get_viewer_endpoint();
243 _E("out of memory"); /* LCOV_EXCL_LINE */
244 return -1; /* LCOV_EXCL_LINE */
247 bundle_add_str(b, AUL_K_WIDGET_ID, class_id);
248 bundle_add_str(b, AUL_K_WIDGET_INSTANCE_ID, instance_id);
249 bundle_add_byte(b, AUL_K_WIDGET_STATUS, &status, sizeof(int));
252 bundle_encode(extra, &raw, &len);
253 bundle_add_str(b, WIDGET_K_CONTENT_INFO, (const char *)raw);
254 aul_widget_instance_add(class_id, instance_id);
257 _D("send update %s(%d) to %s", instance_id, status, viewer_endpoint);
258 aul_app_com_send(viewer_endpoint, b);
261 case WIDGET_INSTANCE_EVENT_CREATE:
262 lifecycle = WIDGET_LIFE_CYCLE_EVENT_CREATE;
264 case WIDGET_INSTANCE_EVENT_DESTROY:
265 lifecycle = WIDGET_LIFE_CYCLE_EVENT_DESTROY;
267 case WIDGET_INSTANCE_EVENT_PAUSE:
268 lifecycle = WIDGET_LIFE_CYCLE_EVENT_PAUSE;
270 case WIDGET_INSTANCE_EVENT_RESUME:
271 lifecycle = WIDGET_LIFE_CYCLE_EVENT_RESUME;
276 __send_lifecycle_event(class_id, instance_id, lifecycle);
285 static int __instance_resume(widget_class_h handle, const char *id, int send_update)
287 widget_context_s *wc = __find_context_by_id(id);
291 _E("context not found: %s", id); /* LCOV_EXCL_LINE */
292 return -1; /* LCOV_EXCL_LINE */
295 if (wc->state == WC_RUNNING) {
296 _D("%s is already in running state", id); /* LCOV_EXCL_LINE */
297 return 0; /* LCOV_EXCL_LINE */
300 if (wc->state == WC_TERMINATED) {
301 _D("%s is in terminated state", id); /* LCOV_EXCL_LINE */
302 return 0; /* LCOV_EXCL_LINE */
305 if (handle->ops.resume)
306 handle->ops.resume(wc, handle->user_data);
308 wc->state = WC_RUNNING;
309 _D("%s is resumed", id);
311 ret = __send_update_status(handle->classid, wc->id,
312 WIDGET_INSTANCE_EVENT_RESUME, NULL);
314 _D("Send fg signal to resourceD");
315 aul_send_app_status_change_signal(getpid(),
329 static int __instance_pause(widget_class_h handle, const char *id, int send_update)
331 widget_context_s *wc = __find_context_by_id(id);
335 _E("context not found: %s", id); /* LCOV_EXCL_LINE */
336 return -1; /* LCOV_EXCL_LINE */
339 if (wc->state == WC_PAUSED) {
340 _D("%s is already in paused state", id); /* LCOV_EXCL_LINE */
341 return 0; /* LCOV_EXCL_LINE */
344 if (wc->state == WC_TERMINATED) {
345 _D("%s is in terminated state", id); /* LCOV_EXCL_LINE */
346 return 0; /* LCOV_EXCL_LINE */
349 if (handle->ops.pause)
350 handle->ops.pause(wc, handle->user_data);
352 wc->state = WC_PAUSED;
353 _D("%s is paused", id);
355 ret = __send_update_status(handle->classid, wc->id,
356 WIDGET_INSTANCE_EVENT_PAUSE, NULL);
357 wc = __find_context_by_state(WC_RUNNING);
358 if (!wc && fg_signal) {
359 _D("Send bg signal to resourceD");
360 aul_send_app_status_change_signal(getpid(),
374 static int __instance_resize(widget_class_h handle, const char *id, int w, int h)
376 widget_context_s *wc = __find_context_by_id(id);
380 _E("context not found: %s", id); /* LCOV_EXCL_LINE */
381 return -1; /* LCOV_EXCL_LINE */
384 if (handle->ops.resize)
385 handle->ops.resize(wc, w, h, handle->user_data);
387 _D("%s is resized to %dx%d", id, w, h);
388 ret = __send_update_status(handle->classid, wc->id,
389 WIDGET_INSTANCE_EVENT_SIZE_CHANGED, NULL);
394 /* LCOV_EXCL_START */
395 static int __instance_update_all(widget_class_h handle, int force, const char *content)
397 widget_context_s *wc;
400 GList *context = _widget_app_get_contexts();
403 b = bundle_decode((const bundle_raw *)content, strlen(content));
405 if (handle->ops.update) {
407 wc = (widget_context_s *)context->data;
408 handle->ops.update(wc, b, force, handle->user_data);
409 ret = __send_update_status(handle->classid, wc->id,
410 WIDGET_INSTANCE_EVENT_UPDATE, NULL);
411 _D("updated:%s", wc->id);
412 context = context->next;
423 /* LCOV_EXCL_START */
424 static int __instance_update(widget_class_h handle, const char *id, int force, const char *content)
426 widget_context_s *wc = __find_context_by_id(id);
430 _E("context not found: %s", id);
435 b = bundle_decode((const bundle_raw *)content, strlen(content));
437 if (handle->ops.update) {
438 handle->ops.update(wc, b, force, handle->user_data);
439 ret = __send_update_status(handle->classid, wc->id,
440 WIDGET_INSTANCE_EVENT_UPDATE, NULL);
441 _D("updated:%s", id);
451 static int __instance_create(widget_class_h handle, const char *id, const char *content, int w, int h)
453 widget_context_s *wc = NULL;
455 bundle *content_info = NULL;
457 wc = (widget_context_s *)calloc(1, sizeof(widget_context_s));
460 return WIDGET_ERROR_OUT_OF_MEMORY;
463 wc->state = WC_READY;
465 wc->provider = handle;
470 wc->content = strdup(content);
471 content_info = bundle_decode((const bundle_raw *)content, strlen(content));
474 _widget_app_add_context(wc);
476 ret = handle->ops.create(wc, content_info, w, h, handle->user_data);
478 _W("Create callback resturns error(%d)", ret);
479 /* TODO send abort */
481 ret = __send_update_status(handle->classid, wc->id,
482 WIDGET_INSTANCE_EVENT_CREATE, NULL);
487 aul_widget_instance_add(handle->classid, id);
491 bundle_free(content_info);
496 static int __instance_destroy(widget_class_h handle, const char *id,
497 widget_app_destroy_type_e reason, int send_update)
499 widget_context_s *wc = __find_context_by_id(id);
501 int event = WIDGET_INSTANCE_EVENT_TERMINATE;
502 bundle *content_info;
505 _E("could not find widget obj: %s, clear amd info", id); /* LCOV_EXCL_LINE */
506 aul_widget_instance_del(handle->classid, id); /* LCOV_EXCL_LINE */
507 return WIDGET_ERROR_NONE; /* LCOV_EXCL_LINE */
510 wc->state = WC_TERMINATED;
512 content_info = bundle_decode((const bundle_raw *)wc->content, strlen(wc->content));
514 content_info = bundle_create();
516 handle->ops.destroy(wc, reason, content_info,
519 if (reason == WIDGET_APP_DESTROY_TYPE_PERMANENT) {
520 event = WIDGET_INSTANCE_EVENT_DESTROY;
521 aul_widget_instance_del(handle->classid, id);
523 ret = __send_update_status(handle->classid, id,
524 WIDGET_INSTANCE_EVENT_EXTRA_UPDATED, content_info);
528 bundle_free(content_info);
530 ret = __send_update_status(handle->classid, id, event, NULL);
532 _widget_app_remove_context(wc);
542 if (_widget_app_get_contexts() == NULL && !exit_called) /* all instance destroyed */
548 static widget_class_h __find_class_handler(const char *class_id,
549 widget_class_h handle)
551 if (!class_id || !handle)
554 widget_class_h head = handle;
557 if (head->classid && strcmp(head->classid, class_id) == 0)
566 /* LCOV_EXCL_START */
567 static void __resize_window(char *id, int w, int h)
569 widget_context_s *wc = __find_context_by_id(id);
572 _E("can not find instance: %s", id);
577 evas_object_resize(wc->win, w, h);
579 _E("unable to find window of %d", wc->id);
583 static void __control(bundle *b)
585 char *class_id = NULL;
587 char *operation = NULL;
588 char *content = NULL;
595 char *force_str = NULL;
596 widget_class_h handle = NULL;
598 bundle_get_str(b, WIDGET_K_CLASS, &class_id);
599 /* for previous version compatibility, use appid for default class id */
600 if (class_id == NULL)
603 bundle_get_str(b, AUL_K_WIDGET_INSTANCE_ID, &id);
604 bundle_get_str(b, WIDGET_K_OPERATION, &operation);
606 handle = __find_class_handler(class_id, class_provider);
608 _E("no handle provided: %s", class_id); /* LCOV_EXCL_LINE */
613 _E("no operation provided");
617 bundle_get_str(b, WIDGET_K_FORCE, &force_str);
619 if (force_str && strcmp(force_str, "true") == 0)
624 bundle_get_str(b, WIDGET_K_CONTENT_INFO, &content);
625 bundle_get_str(b, WIDGET_K_WIDTH, &w_str);
626 bundle_get_str(b, WIDGET_K_HEIGHT, &h_str);
628 w = (int)g_ascii_strtoll(w_str, &remain, 10);
631 h = (int)g_ascii_strtoll(h_str, &remain, 10);
633 if (strcmp(operation, "create") == 0) {
634 __instance_create(handle, id, content, w, h);
635 } else if (strcmp(operation, "resize") == 0) {
636 __resize_window(id, w, h);
637 __instance_resize(handle, id, w, h);
638 } else if (strcmp(operation, "update") == 0) {
640 __instance_update(handle, id, force, content);
642 __instance_update_all(handle, force, content);
644 } else if (strcmp(operation, "destroy") == 0) {
645 __instance_destroy(handle, id, WIDGET_APP_DESTROY_TYPE_PERMANENT, UPDATE_ALL);
646 } else if (strcmp(operation, "resume") == 0) {
647 __instance_resume(handle, id, UPDATE_ALL);
648 } else if (strcmp(operation, "pause") == 0) {
649 __instance_pause(handle, id, UPDATE_ALL);
650 } else if (strcmp(operation, "terminate") == 0) {
651 __instance_destroy(handle, id, WIDGET_APP_DESTROY_TYPE_TEMPORARY, UPDATE_ALL);
656 LOGD("error on control");
660 static void __pause_all(int send_update)
662 GList *contexts = _widget_app_get_contexts();
663 GList *iter = g_list_first(contexts);
665 while (iter != NULL) {
666 widget_context_s *cxt = (widget_context_s *)iter->data;
668 switch (cxt->state) {
670 __instance_resume(cxt->provider, cxt->id, send_update);
671 __instance_pause(cxt->provider, cxt->id, send_update);
674 __instance_pause(cxt->provider, cxt->id, send_update);
677 LOGD("pause %s", cxt->id);
678 iter = g_list_next(iter);
682 /* LCOV_EXCL_START */
683 static void __resume_all(int send_update)
685 GList *contexts = _widget_app_get_contexts();
686 GList *iter = g_list_first(contexts);
688 while (iter != NULL) {
689 widget_context_s *cxt = (widget_context_s *)iter->data;
691 switch (cxt->state) {
693 __instance_resume(cxt->provider, cxt->id, send_update);
696 __instance_resume(cxt->provider, cxt->id, send_update);
699 iter = g_list_next(iter);
704 static void __destroy_all(int reason, int send_update)
706 GList *contexts = _widget_app_get_contexts();
707 GList *iter = g_list_first(contexts);
709 __pause_all(send_update);
710 while (iter != NULL) {
711 widget_context_s *cxt = (widget_context_s *)iter->data;
712 iter = g_list_next(iter);
713 switch (cxt->state) {
715 LOGD("destroy %d : %s", cxt->state, cxt->id);
716 __instance_destroy(cxt->provider, cxt->id, reason, send_update);
723 static Eina_Bool __show_cb(void *data, int type, void *event)
725 Ecore_Wl_Event_Window_Show *ev = event;
726 widget_context_s *cxt = __find_context_by_win(ev->win);
728 LOGD("show %d %d", (unsigned int)ev->win, (unsigned int)ev->data[0]);
731 __instance_resume(cxt->provider, cxt->id, UPDATE_ALL);
733 LOGE("unknown window error: %d", ev->win); /* LCOV_EXCL_LINE */
735 return ECORE_CALLBACK_RENEW;
738 static Eina_Bool __hide_cb(void *data, int type, void *event)
740 Ecore_Wl_Event_Window_Hide *ev = event;
741 widget_context_s *cxt = __find_context_by_win(ev->win);
744 LOGD("hide %d", (unsigned int)ev->win);
747 __instance_pause(cxt->provider, cxt->id, UPDATE_ALL);
749 LOGE("unknown window error: %d", ev->win); /* LCOV_EXCL_LINE */
751 return ECORE_CALLBACK_RENEW;
754 static Eina_Bool __visibility_cb(void *data, int type, void *event)
756 Ecore_Wl_Event_Window_Visibility_Change *ev = event;
757 widget_context_s *cxt = __find_context_by_win(ev->win);
759 LOGD("visiblity change: %d %d", (unsigned int)ev->win, (unsigned int)ev->fully_obscured);
762 LOGE("unknown window error: %d", ev->win);
763 return ECORE_CALLBACK_RENEW;
766 if (cxt->state == WC_PAUSED && ev->fully_obscured == 0) {
767 __instance_resume(cxt->provider, cxt->id, UPDATE_ALL);
768 } else if (cxt->state == WC_RUNNING && ev->fully_obscured == 1) {
769 __instance_pause(cxt->provider, cxt->id, UPDATE_ALL);
771 LOGD("cxt:%s state:%d obscured:%d", cxt->id, cxt->state, ev->fully_obscured);
774 return ECORE_CALLBACK_RENEW;
777 /* LCOV_EXCL_START */
778 static Eina_Bool __lower_cb(void *data, int type, void *event)
781 return ECORE_CALLBACK_RENEW;
785 static Eina_Bool __configure_cb(void *data, int type, void *event)
787 Ecore_Wl_Event_Window_Configure *ev = event;
788 widget_context_s *cxt = __find_context_by_win(ev->win);
790 LOGD("configure: %d %d", ev->w, ev->h);
793 LOGE("unknown window error: %d", ev->win); /* LCOV_EXCL_LINE */
794 return ECORE_CALLBACK_RENEW; /* LCOV_EXCL_LINE */
797 if (cxt->state == WC_PAUSED || cxt->state == WC_RUNNING)
798 __instance_resize(cxt->provider, cxt->id, ev->w, ev->h);
799 LOGD("cxt:%s resized to %dx%d", cxt->id, ev->w, ev->h);
801 return ECORE_CALLBACK_RENEW;
804 static void __add_climsg()
806 ecore_event_handler_add(ECORE_WL_EVENT_WINDOW_SHOW, __show_cb, NULL);
807 ecore_event_handler_add(ECORE_WL_EVENT_WINDOW_HIDE, __hide_cb, NULL);
808 ecore_event_handler_add(ECORE_WL_EVENT_WINDOW_VISIBILITY_CHANGE, __visibility_cb, NULL);
809 ecore_event_handler_add(ECORE_WL_EVENT_WINDOW_LOWER, __lower_cb, NULL);
810 ecore_event_handler_add(ECORE_WL_EVENT_WINDOW_CONFIGURE, __configure_cb, NULL);
813 static void __get_content(bundle *b)
815 char *instance_id = NULL;
816 widget_context_s *cxt = NULL;
818 bundle_get_str(b, AUL_K_WIDGET_INSTANCE_ID, &instance_id);
822 cxt = __find_context_by_id(instance_id);
824 _E("can not find instance id:%s", instance_id);
829 bundle_add_str(b, AUL_K_WIDGET_CONTENT_INFO, cxt->content);
830 _D("content info of %s found", cxt->id);
832 bundle_add_str(b, AUL_K_WIDGET_CONTENT_INFO, "");
833 _D("empty content info added");
837 static int __aul_handler(aul_type type, bundle *b, void *data)
845 bundle_get_str(b, WIDGET_K_CALLER, &caller);
847 caller_pid = g_ascii_strtoll(caller, &remain,
850 /* using caller appid and query pid using caller appid? */
858 __resume_all(UPDATE_ALL);
863 case AUL_WIDGET_CONTENT:
873 static char *__get_domain_name(char *appid)
878 _E("appid is NULL"); /* LCOV_EXCL_LINE */
879 return NULL; /* LCOV_EXCL_LINE */
882 name_token = strrchr(appid, '.');
884 if (name_token == NULL) {
885 _E("appid is invalid"); /* LCOV_EXCL_LINE */
886 return appid; /* LCOV_EXCL_LINE */
894 /* LCOV_EXCL_START */
895 static void __on_poweroff(keynode_t *key, void *data)
899 val = vconf_keynode_get_int(key);
901 case VCONFKEY_SYSMAN_POWER_OFF_DIRECT:
902 case VCONFKEY_SYSMAN_POWER_OFF_RESTART:
903 _I("power off changed: %d", val);
906 case VCONFKEY_SYSMAN_POWER_OFF_NONE:
907 case VCONFKEY_SYSMAN_POWER_OFF_POPUP:
915 extern int _set_i18n(const char *name);
917 static int __before_loop(int argc, char **argv)
922 char *viewer_endpoint = NULL;
924 #if !(GLIB_CHECK_VERSION(2, 36, 0))
928 kb = bundle_import_from_argv(argc, argv);
930 bundle_get_str(kb, WIDGET_K_ENDPOINT, &viewer_endpoint);
931 if (viewer_endpoint) {
932 _E("viewer endpoint :%s", viewer_endpoint);
933 _widget_app_set_viewer_endpoint(viewer_endpoint);
935 _E("endpoint is missing");
941 _E("failed to get launch argv"); /* LCOV_EXCL_LINE */
944 screen_connector_provider_init();
945 elm_init(argc, argv);
947 r = aul_launch_init(__aul_handler, NULL);
949 /* LCOV_EXCL_START */
950 return widget_app_error(WIDGET_ERROR_INVALID_PARAMETER,
952 "Fail to call the aul_launch_init");
956 r = aul_launch_argv_handler(argc, argv);
958 /* LCOV_EXCL_START */
959 return widget_app_error(WIDGET_ERROR_INVALID_PARAMETER,
961 "Fail to call the aul_launch_argv_handler");
965 r = app_get_id(&appid);
966 if (r != APP_ERROR_NONE)
969 name = __get_domain_name(appid);
972 /* LCOV_EXCL_START */
973 return widget_app_error(WIDGET_ERROR_INVALID_PARAMETER,
975 "Fail to call __get_domain_name");
982 /* LCOV_EXCL_START */
983 return widget_app_error(WIDGET_ERROR_INVALID_PARAMETER,
985 "Fail to call _set_i18n");
991 _widget_core_set_appcore_event_cb();
993 class_provider = app_ops->create(app_user_data);
994 if (class_provider == NULL) {
995 return widget_app_error(WIDGET_ERROR_INVALID_PARAMETER,
996 __FUNCTION__, "widget_class is NULL");
999 vconf_notify_key_changed(VCONFKEY_SYSMAN_POWER_OFF_STATUS, __on_poweroff, NULL);
1001 return WIDGET_ERROR_NONE;
1004 static void __after_loop()
1007 vconf_ignore_key_changed(VCONFKEY_SYSMAN_POWER_OFF_STATUS, __on_poweroff);
1009 __pause_all(UPDATE_LOCAL);
1010 __destroy_all(WIDGET_APP_DESTROY_TYPE_TEMPORARY, UPDATE_ALL);
1012 if (app_ops->terminate)
1013 app_ops->terminate(app_user_data);
1015 screen_connector_provider_fini();
1017 _widget_app_free_viewer_endpoint();
1018 _widget_core_unset_appcore_event_cb();
1019 __free_handler_list();
1034 static void __on_low_memory(keynode_t *key, void *data)
1038 val = vconf_keynode_get_int(key);
1039 if (val == VCONFKEY_SYSMAN_LOW_MEMORY_SOFT_WARNING) {
1040 app_event_handler_h handler;
1041 struct app_event_info event;
1043 _I("widget_app_low_memory");
1045 event.type = APP_EVENT_LOW_MEMORY;
1046 event.value = (void *)&val;
1048 GList *iter = g_list_first(handler_list[APP_EVENT_LOW_MEMORY]);
1051 handler = (app_event_handler_h) iter->data;
1052 handler->cb(&event, handler->data);
1053 iter = g_list_next(iter);
1058 static void __on_low_battery(keynode_t *key, void *data)
1062 val = vconf_keynode_get_int(key);
1063 if (val <= VCONFKEY_SYSMAN_BAT_CRITICAL_LOW) {
1064 app_event_handler_h handler;
1065 struct app_event_info event;
1067 _I("widget_app_low_battery");
1069 event.type = APP_EVENT_LOW_BATTERY;
1070 event.value = (void *)&val;
1072 GList *iter = g_list_first(handler_list[APP_EVENT_LOW_BATTERY]);
1075 handler = (app_event_handler_h) iter->data;
1076 handler->cb(&event, handler->data);
1077 iter = g_list_next(iter);
1082 static void __on_lang_changed(keynode_t *key, void *data)
1087 val = vconf_keynode_get_str(key);
1089 app_event_handler_h handler;
1090 struct app_event_info event;
1092 _I("widget_app_lang_changed");
1094 event.type = APP_EVENT_LANGUAGE_CHANGED;
1095 event.value = (void *)val;
1097 GList *iter = g_list_first(handler_list[APP_EVENT_LANGUAGE_CHANGED]);
1100 handler = (app_event_handler_h) iter->data;
1101 handler->cb(&event, handler->data);
1102 iter = g_list_next(iter);
1106 static void __on_region_changed(keynode_t *key, void *data)
1111 val = vconf_keynode_get_str(key);
1113 app_event_handler_h handler;
1114 struct app_event_info event;
1116 _I("widget_app_region_changed");
1118 event.type = APP_EVENT_REGION_FORMAT_CHANGED;
1119 event.value = (void *)val;
1121 GList *iter = g_list_first(handler_list[APP_EVENT_REGION_FORMAT_CHANGED]);
1124 handler = (app_event_handler_h) iter->data;
1125 handler->cb(&event, handler->data);
1126 iter = g_list_next(iter);
1130 static void __register_event(int event_type)
1132 switch (event_type) {
1133 case APP_EVENT_LOW_MEMORY:
1134 vconf_notify_key_changed(VCONFKEY_SYSMAN_LOW_MEMORY, __on_low_memory, NULL);
1137 case APP_EVENT_LOW_BATTERY:
1138 vconf_notify_key_changed(VCONFKEY_SYSMAN_BATTERY_STATUS_LOW, __on_low_battery, NULL);
1141 case APP_EVENT_LANGUAGE_CHANGED:
1142 vconf_notify_key_changed(VCONFKEY_LANGSET, __on_lang_changed, NULL);
1145 case APP_EVENT_REGION_FORMAT_CHANGED:
1146 vconf_notify_key_changed(VCONFKEY_REGIONFORMAT, __on_region_changed, NULL);
1151 static void __unregister_event(int event_type)
1153 switch (event_type) {
1154 case APP_EVENT_LOW_MEMORY:
1155 vconf_ignore_key_changed(VCONFKEY_SYSMAN_LOW_MEMORY, __on_low_memory);
1158 case APP_EVENT_LOW_BATTERY:
1159 vconf_ignore_key_changed(VCONFKEY_SYSMAN_BATTERY_STATUS_LOW, __on_low_battery);
1162 case APP_EVENT_LANGUAGE_CHANGED:
1163 vconf_ignore_key_changed(VCONFKEY_LANGSET, __on_lang_changed);
1166 case APP_EVENT_REGION_FORMAT_CHANGED:
1167 vconf_ignore_key_changed(VCONFKEY_REGIONFORMAT, __on_region_changed);
1172 static void _widget_core_set_appcore_event_cb(void)
1174 __register_event(APP_EVENT_LANGUAGE_CHANGED);
1175 __register_event(APP_EVENT_REGION_FORMAT_CHANGED);
1178 static void _widget_core_unset_appcore_event_cb(void)
1180 __unregister_event(APP_EVENT_LANGUAGE_CHANGED);
1181 __unregister_event(APP_EVENT_REGION_FORMAT_CHANGED);
1184 EXPORT_API int widget_app_main(int argc, char **argv,
1185 widget_app_lifecycle_callback_s *callback, void *user_data)
1189 if (!_is_widget_feature_enabled()) {
1190 _E("not supported"); /* LCOV_EXCL_LINE */
1191 return WIDGET_ERROR_NOT_SUPPORTED; /* LCOV_EXCL_LINE */
1194 if (argc <= 0 || argv == NULL || callback == NULL)
1195 return widget_app_error(WIDGET_ERROR_INVALID_PARAMETER,
1196 __FUNCTION__, NULL);
1198 if (callback->create == NULL)
1199 return widget_app_error(WIDGET_ERROR_INVALID_PARAMETER,
1201 "widget_app_create_cb() callback must be "
1204 app_user_data = user_data;
1205 r = __before_loop(argc, argv);
1214 ecore_main_loop_begin();
1215 aul_status_update(STATUS_DYING);
1218 return WIDGET_ERROR_NONE;
1221 EXPORT_API int widget_app_exit(void)
1223 if (!_is_widget_feature_enabled()) {
1224 _E("not supported"); /* LCOV_EXCL_LINE */
1225 return WIDGET_ERROR_NOT_SUPPORTED; /* LCOV_EXCL_LINE */
1229 return WIDGET_ERROR_NONE;
1233 ecore_main_loop_quit();
1235 return WIDGET_ERROR_NONE;
1238 /* LCOV_EXCL_START */
1239 static gboolean __finish_event_cb(gpointer user_data)
1241 if (user_data == NULL)
1244 widget_context_s *wc = (widget_context_s *)user_data;
1246 switch (wc->state) {
1248 __instance_resume(wc->provider, wc->id, UPDATE_LOCAL);
1250 __instance_pause(wc->provider, wc->id, UPDATE_LOCAL);
1252 __instance_destroy(wc->provider, wc->id,
1253 WIDGET_DESTROY_TYPE_TEMPORARY, UPDATE_ALL);
1261 /* LCOV_EXCL_STOP */
1263 EXPORT_API int widget_app_terminate_context(widget_context_h context)
1265 if (!_is_widget_feature_enabled()) {
1266 _E("not supported"); /* LCOV_EXCL_LINE */
1267 return WIDGET_ERROR_NOT_SUPPORTED; /* LCOV_EXCL_LINE */
1270 if (context == NULL)
1271 return widget_app_error(WIDGET_ERROR_INVALID_PARAMETER,
1272 __FUNCTION__, NULL);
1274 g_idle_add(__finish_event_cb, context);
1275 return WIDGET_ERROR_NONE;
1278 EXPORT_API int widget_app_foreach_context(widget_context_cb cb, void *data)
1280 GList *contexts = _widget_app_get_contexts();
1282 widget_context_s *wc;
1284 if (!_is_widget_feature_enabled()) {
1285 _E("not supported"); /* LCOV_EXCL_LINE */
1286 return WIDGET_ERROR_NOT_SUPPORTED; /* LCOV_EXCL_LINE */
1290 return WIDGET_ERROR_INVALID_PARAMETER;
1292 list = g_list_first(contexts);
1295 wc = (widget_context_s *)list->data;
1303 return WIDGET_ERROR_NONE;
1306 EXPORT_API int widget_app_add_event_handler(app_event_handler_h *event_handler,
1307 app_event_type_e event_type, app_event_cb callback,
1313 r = system_info_get_platform_bool(FEATURE_SHELL_APPWIDGET, &feature);
1315 return WIDGET_ERROR_FAULT;
1318 return WIDGET_ERROR_NOT_SUPPORTED;
1320 app_event_handler_h handler;
1322 if (event_handler == NULL || callback == NULL)
1323 return widget_app_error(WIDGET_ERROR_INVALID_PARAMETER, __FUNCTION__, NULL);
1325 if (event_type < APP_EVENT_LOW_MEMORY
1326 || event_type > APP_EVENT_REGION_FORMAT_CHANGED)
1327 return widget_app_error(WIDGET_ERROR_INVALID_PARAMETER, __FUNCTION__, NULL);
1329 if (event_type == APP_EVENT_DEVICE_ORIENTATION_CHANGED)
1330 return widget_app_error(WIDGET_ERROR_NOT_SUPPORTED, __FUNCTION__, NULL);
1332 GList *iter = g_list_first(handler_list[event_type]);
1335 handler = (app_event_handler_h) iter->data;
1337 if (handler->cb == callback)
1338 return widget_app_error(WIDGET_ERROR_INVALID_PARAMETER, __FUNCTION__, NULL);
1340 iter = g_list_next(iter);
1343 handler = calloc(1, sizeof(struct app_event_handler));
1345 return widget_app_error(WIDGET_ERROR_OUT_OF_MEMORY, __FUNCTION__, NULL); /* LCOV_EXCL_LINE */
1347 if (g_list_length(handler_list[event_type]) == 0)
1348 __register_event(event_type);
1350 handler->type = event_type;
1351 handler->cb = callback;
1352 handler->data = user_data;
1353 handler_list[event_type] = g_list_append(handler_list[event_type], handler);
1355 *event_handler = handler;
1357 return WIDGET_ERROR_NONE;
1360 EXPORT_API int widget_app_remove_event_handler(app_event_handler_h
1366 r = system_info_get_platform_bool(FEATURE_SHELL_APPWIDGET, &feature);
1368 return WIDGET_ERROR_FAULT;
1371 return WIDGET_ERROR_NOT_SUPPORTED;
1373 app_event_type_e type;
1375 if (event_handler == NULL)
1376 return widget_app_error(WIDGET_ERROR_INVALID_PARAMETER, __FUNCTION__, NULL);
1378 type = event_handler->type;
1379 if (type < APP_EVENT_LOW_MEMORY || type > APP_EVENT_REGION_FORMAT_CHANGED)
1380 return widget_app_error(WIDGET_ERROR_INVALID_PARAMETER, __FUNCTION__, NULL);
1382 handler_list[type] = g_list_remove(handler_list[type], event_handler);
1383 free(event_handler);
1385 if (g_list_length(handler_list[type]) == 0)
1386 __unregister_event(type);
1388 return WIDGET_ERROR_NONE;
1391 EXPORT_API const char *widget_app_get_id(widget_context_h context)
1393 if (!_is_widget_feature_enabled()) {
1394 _E("not supported"); /* LCOV_EXCL_LINE */
1395 set_last_result(WIDGET_ERROR_NOT_SUPPORTED); /* LCOV_EXCL_LINE */
1396 return NULL; /* LCOV_EXCL_LINE */
1400 set_last_result(WIDGET_ERROR_INVALID_PARAMETER);
1404 set_last_result(WIDGET_ERROR_NONE);
1408 static void _win_del_cb(void *data, Evas *e, Evas_Object *obj, void *event_info)
1410 /* Remove data used in accessibility */
1412 plug_id = evas_object_data_del(obj, "___PLUGID");
1416 EXPORT_API int widget_app_get_elm_win(widget_context_h context,
1419 widget_context_s *cxt = (widget_context_s *)context;
1420 Evas_Object *ret_win;
1421 Ecore_Wl_Window *wl_win;
1422 struct wl_surface *surface;
1426 if (!_is_widget_feature_enabled()) {
1427 _E("not supported"); /* LCOV_EXCL_LINE */
1428 return WIDGET_ERROR_NOT_SUPPORTED; /* LCOV_EXCL_LINE */
1431 if (context == NULL || win == NULL)
1432 return widget_app_error(WIDGET_ERROR_INVALID_PARAMETER,
1433 __FUNCTION__, NULL);
1435 ret_win = elm_win_add(NULL, cxt->id, ELM_WIN_BASIC);
1436 if (ret_win == NULL) {
1437 _E("failed to create window"); /* LCOV_EXCL_LINE */
1438 goto fault; /* LCOV_EXCL_LINE */
1441 elm_win_wm_rotation_preferred_rotation_set(ret_win, -1);
1442 elm_win_wm_rotation_available_rotations_set(ret_win, rots, 1);
1444 wl_win = elm_win_wl_window_get(ret_win);
1445 if (wl_win == NULL) {
1446 _E("failed to get wayland window"); /* LCOV_EXCL_LINE */
1450 surface = ecore_wl_window_surface_get(wl_win);
1451 if (surface == NULL) {
1452 _E("failed to get surface"); /* LCOV_EXCL_LINE */
1453 goto fault; /* LCOV_EXCL_LINE */
1455 screen_connector_provider_remote_enable(cxt->id, surface);
1457 ecore_wl_window_class_name_set(wl_win, cxt->id);
1458 elm_win_aux_hint_add(ret_win, "wm.policy.win.user.geometry", "1");
1462 cxt->win_id = ecore_wl_window_id_get(wl_win);
1464 /* Set data to use in accessibility */
1465 snprintf(buffer, sizeof(buffer), "%s:%d", cxt->id, getpid());
1466 evas_object_data_set(ret_win, "___PLUGID", strdup(buffer));
1467 evas_object_event_callback_add(ret_win, EVAS_CALLBACK_DEL, _win_del_cb, NULL);
1469 _D("window created: %d", cxt->win_id);
1471 return WIDGET_ERROR_NONE;
1474 if (ret_win) /* LCOV_EXCL_LINE */
1475 evas_object_del(ret_win); /* LCOV_EXCL_LINE */
1477 return WIDGET_ERROR_FAULT; /* LCOV_EXCL_LINE */
1481 widget_class_h _widget_class_create(widget_class_s *prev, const char *class_id,
1482 widget_instance_lifecycle_callback_s callback, void *user_data)
1486 if (!_is_widget_feature_enabled()) {
1487 _E("not supported"); /* LCOV_EXCL_LINE */
1488 set_last_result(WIDGET_ERROR_NOT_SUPPORTED); /* LCOV_EXCL_LINE */
1492 if (class_id == NULL) {
1493 set_last_result(WIDGET_ERROR_INVALID_PARAMETER);
1497 wc = (widget_class_s *)calloc(1, sizeof(widget_class_s));
1499 _E("failed to calloc : %s", __FUNCTION__); /* LCOV_EXCL_LINE */
1500 set_last_result(WIDGET_ERROR_OUT_OF_MEMORY); /* LCOV_EXCL_LINE */
1501 return NULL; /* LCOV_EXCL_LINE */
1504 wc->classid = strdup(class_id);
1505 wc->user_data = user_data;
1510 set_last_result(WIDGET_ERROR_NONE);
1518 EXPORT_API widget_class_h widget_app_class_add(widget_class_h widget_class,
1519 const char *class_id,
1520 widget_instance_lifecycle_callback_s callback, void *user_data)
1522 return _widget_class_create(widget_class, class_id, callback,
1526 EXPORT_API widget_class_h widget_app_class_create(
1527 widget_instance_lifecycle_callback_s callback, void *user_data)
1529 return _widget_class_create(class_provider, appid, callback, user_data);
1532 EXPORT_API int widget_app_context_set_tag(widget_context_h context, void *tag)
1534 if (!_is_widget_feature_enabled()) {
1535 _E("not supported"); /* LCOV_EXCL_LINE */
1536 return WIDGET_ERROR_NOT_SUPPORTED; /* LCOV_EXCL_LINE */
1539 if (context == NULL)
1540 return widget_app_error(WIDGET_ERROR_INVALID_PARAMETER,
1541 __FUNCTION__, NULL);
1545 return WIDGET_ERROR_NONE;
1548 EXPORT_API int widget_app_context_get_tag(widget_context_h context, void **tag)
1550 if (!_is_widget_feature_enabled()) {
1551 _E("not supported"); /* LCOV_EXCL_LINE */
1552 return WIDGET_ERROR_NOT_SUPPORTED; /* LCOV_EXCL_LINE */
1555 if (context == NULL || tag == NULL)
1556 return widget_app_error(WIDGET_ERROR_INVALID_PARAMETER,
1557 __FUNCTION__, NULL);
1559 *tag = context->tag;
1561 return WIDGET_ERROR_NONE;
1564 EXPORT_API int widget_app_context_set_content_info(widget_context_h context,
1565 bundle *content_info)
1567 const char *class_id = NULL;
1569 bundle_raw *raw = NULL;
1572 if (!_is_widget_feature_enabled()) {
1573 _E("not supported"); /* LCOV_EXCL_LINE */
1574 return WIDGET_ERROR_NOT_SUPPORTED; /* LCOV_EXCL_LINE */
1577 if (context == NULL || content_info == NULL)
1578 return widget_app_error(WIDGET_ERROR_INVALID_PARAMETER,
1579 __FUNCTION__, NULL);
1581 if (context->provider == NULL)
1582 return widget_app_error(WIDGET_ERROR_INVALID_PARAMETER,
1583 __FUNCTION__, NULL);
1585 class_id = context->provider->classid;
1586 if (class_id == NULL)
1587 return widget_app_error(WIDGET_ERROR_FAULT, __FUNCTION__, NULL);
1589 ret = __send_update_status(class_id, context->id,
1590 WIDGET_INSTANCE_EVENT_EXTRA_UPDATED, content_info);
1592 if (context->content)
1593 free(context->content);
1595 bundle_encode(content_info, &raw, &len);
1597 context->content = strdup((const char *)raw);
1599 context->content = NULL;
1603 /* LCOV_EXCL_START */
1604 _E("failed to send content info: %s of %s (%d)", context->id,
1606 return widget_app_error(WIDGET_ERROR_IO_ERROR, __FUNCTION__,
1608 /* LCOV_EXCL_STOP */
1611 return WIDGET_ERROR_NONE;
1614 EXPORT_API int widget_app_context_set_title(widget_context_h context,
1617 if (!_is_widget_feature_enabled()) {
1618 _E("not supported"); /* LCOV_EXCL_LINE */
1619 return WIDGET_ERROR_NOT_SUPPORTED; /* LCOV_EXCL_LINE */
1622 if (!context || !title)
1623 return WIDGET_ERROR_INVALID_PARAMETER;
1626 elm_win_title_set(context->win, title);
1628 return WIDGET_ERROR_NONE;