71f41a2e153d77ed2f7c63f473e4c3532b4098ac
[platform/core/appfw/appcore-widget.git] / src / base / widget_base.c
1 /*
2  * Copyright (c) 2017 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <stdlib.h>
18 #include <stdbool.h>
19
20 #include <bundle.h>
21 #include <bundle_internal.h>
22 #include <aul.h>
23 #include <aul_widget.h>
24 #include <dlog.h>
25 #include <glib.h>
26 #include <glib-object.h>
27 #include <stdlib.h>
28 #include <unistd.h>
29 #include <widget_errno.h>
30 #include <widget_instance.h>
31 #include <aul_app_com.h>
32 #include <Ecore_Wl2.h>
33 #include <system_info.h>
34 #include <screen_connector_provider.h>
35 #include <appcore_multiwindow_base.h>
36
37 #include "widget_base.h"
38
39 #ifdef LOG_TAG
40 #undef LOG_TAG
41 #endif
42
43 #define LOG_TAG "CAPI_WIDGET_APPLICATION"
44 #define APP_TYPE_WIDGET "widgetapp"
45 #define STATUS_FOREGROUND "fg"
46 #define STATUS_BACKGROUND "bg"
47
48 static int __app_event_converter[APPCORE_BASE_EVENT_MAX] = {
49         [APP_EVENT_LOW_MEMORY] = APPCORE_BASE_EVENT_LOW_MEMORY,
50         [APP_EVENT_LOW_BATTERY] = APPCORE_BASE_EVENT_LOW_BATTERY,
51         [APP_EVENT_LANGUAGE_CHANGED] = APPCORE_BASE_EVENT_LANG_CHANGE,
52         [APP_EVENT_DEVICE_ORIENTATION_CHANGED]
53                         = APPCORE_BASE_EVENT_DEVICE_ORIENTATION_CHANGED,
54         [APP_EVENT_REGION_FORMAT_CHANGED] = APPCORE_BASE_EVENT_REGION_CHANGE,
55         [APP_EVENT_SUSPENDED_STATE_CHANGED]
56                         = APPCORE_BASE_EVENT_SUSPENDED_STATE_CHANGE,
57 };
58
59 struct app_event_info {
60         app_event_type_e type;
61         void *value;
62 };
63
64 struct app_event_handler {
65         app_event_type_e type;
66         app_event_cb cb;
67         void *data;
68         void *raw;
69 };
70
71 struct widget_foreach_context {
72         widget_base_instance_cb callback;
73         void *data;
74 };
75
76 typedef struct _widget_base_context {
77         widget_base_ops ops;
78         void *data;
79         int argc;
80         char **argv;
81         GList *classes;
82 } widget_base_context;
83
84 typedef struct _widget_base_instance_data {
85         bundle *args;
86         char *id;
87         char *content;
88         void *tag;
89         double period;
90         guint periodic_timer;
91         bool pending_update;
92         char *pending_content;
93         void *user_data;
94 } widget_base_instance_data;
95
96 static widget_base_context __context;
97 static char *__appid;
98 static char *__package_id;
99 static bool __fg_signal;
100 static char *__viewer_endpoint;
101 static bool __is_permanent;
102 static void __call_update_cb(const char *class_id, const char *id, int force,
103                 const char *content_raw);
104
105 static gboolean __timeout_cb(gpointer user_data)
106 {
107         widget_base_instance_data *data =
108                         (widget_base_instance_data *)user_data;
109         appcore_multiwindow_base_instance_h cxt;
110         const char *class_id;
111
112         cxt = appcore_multiwindow_base_instance_find(data->id);
113
114         if (!cxt) {
115                 LOGE("Can't find the instance");
116                 return G_SOURCE_REMOVE;
117         }
118
119         if (appcore_multiwindow_base_instance_is_resumed(cxt)) {
120                 LOGD("Periodic update!");
121                 class_id = appcore_multiwindow_base_instance_get_class_id(cxt);
122                 __call_update_cb(class_id, data->id, 0, NULL);
123         } else {
124                 data->pending_update = true;
125                 if (data->periodic_timer) {
126                         LOGD("Remove timer!");
127                         g_source_remove(data->periodic_timer);
128                         data->periodic_timer = 0;
129                 }
130         }
131
132         return G_SOURCE_CONTINUE;
133 }
134
135 static bool __is_widget_feature_enabled(void)
136 {
137         static bool feature = false;
138         static bool retrieved = false;
139         int ret;
140
141         if (retrieved == true)
142                 return feature;
143
144         ret = system_info_get_platform_bool(FEATURE_SHELL_APPWIDGET, &feature);
145         if (ret != SYSTEM_INFO_ERROR_NONE) {
146                 LOGE("failed to get system info"); /* LCOV_EXCL_LINE */
147                 return false; /* LCOV_EXCL_LINE */
148         }
149
150         retrieved = true;
151
152         return feature;
153 }
154
155 static void __check_empty_instance(void)
156 {
157         int cnt = appcore_multiwindow_base_instance_get_cnt();
158
159         if (cnt == 0)
160                 widget_base_exit();
161 }
162
163 static void __instance_drop(appcore_multiwindow_base_instance_h instance_h)
164 {
165         widget_base_instance_data *data;
166
167         data = appcore_multiwindow_base_instance_get_extra(instance_h);
168         appcore_multiwindow_base_instance_drop(instance_h);
169         free(data->pending_content);
170         free(data->content);
171         free(data->id);
172         free(data);
173         __check_empty_instance();
174 }
175
176 static gint __comp_class(gconstpointer a, gconstpointer b)
177 {
178         const widget_base_class *cls = a;
179
180         return strcmp(cls->id, b);
181 }
182
183 static widget_base_class *__get_class(const char *class_id)
184 {
185         widget_base_class *cls;
186         GList *class_node;
187
188         class_node = g_list_find_custom(__context.classes, class_id,
189                         __comp_class);
190         if (class_node == NULL) {
191                 LOGE("empty classes");
192                 return NULL;
193         }
194         cls = (widget_base_class *)class_node->data;
195
196         return cls;
197 }
198
199 static int __send_lifecycle_event(const char *class_id, const char *instance_id,
200         int status)
201 {
202         bundle *b = bundle_create();
203         int ret;
204
205         if (b == NULL) {
206                 LOGE("out of memory"); /* LCOV_EXCL_LINE */
207                 return -1; /* LCOV_EXCL_LINE */
208         }
209
210         bundle_add_str(b, AUL_K_WIDGET_ID, class_id);
211         bundle_add_str(b, AUL_K_WIDGET_INSTANCE_ID, instance_id);
212         bundle_add_byte(b, AUL_K_WIDGET_STATUS, &status, sizeof(int));
213         bundle_add_str(b, AUL_K_PKGID, __package_id);
214
215         LOGD("send lifecycle %s(%d)", instance_id, status);
216         ret = aul_app_com_send("widget.status", b);
217         if (ret < 0)
218                 LOGE("send lifecycle error:%d", ret); /* LCOV_EXCL_LINE */
219
220         bundle_free(b);
221
222         return ret;
223 }
224
225 static int __send_update_status(const char *class_id, const char *instance_id,
226         int status, int err, bundle *extra)
227 {
228         bundle *b;
229         int lifecycle = -1;
230         bundle_raw *raw = NULL;
231         int len;
232         char err_str[256];
233
234         b = bundle_create();
235         if (!b) {
236                 LOGE("out of memory"); /* LCOV_EXCL_LINE */
237                 return -1; /* LCOV_EXCL_LINE */
238         }
239
240         if (err < 0) {
241                 snprintf(err_str, sizeof(err_str), "%d", err);
242                 bundle_add_str(b, AUL_K_WIDGET_ERROR_CODE, err_str);
243         }
244
245         bundle_add_str(b, AUL_K_WIDGET_ID, class_id);
246         bundle_add_str(b, AUL_K_WIDGET_INSTANCE_ID, instance_id);
247         bundle_add_byte(b, AUL_K_WIDGET_STATUS, &status, sizeof(int));
248
249         if (extra) {
250                 bundle_encode(extra, &raw, &len);
251                 bundle_add_str(b, WIDGET_K_CONTENT_INFO, (const char *)raw);
252                 aul_widget_instance_add(class_id, instance_id);
253         }
254
255         LOGD("send update %s(%d) to %s", instance_id, status, __viewer_endpoint);
256         aul_app_com_send(__viewer_endpoint, b);
257
258         switch (status) {
259         case WIDGET_INSTANCE_EVENT_CREATE:
260                 lifecycle = WIDGET_LIFE_CYCLE_EVENT_CREATE;
261                 break;
262         case WIDGET_INSTANCE_EVENT_DESTROY:
263                 lifecycle = WIDGET_LIFE_CYCLE_EVENT_DESTROY;
264                 break;
265         case WIDGET_INSTANCE_EVENT_PAUSE:
266                 lifecycle = WIDGET_LIFE_CYCLE_EVENT_PAUSE;
267                 break;
268         case WIDGET_INSTANCE_EVENT_RESUME:
269                 lifecycle = WIDGET_LIFE_CYCLE_EVENT_RESUME;
270                 break;
271         }
272
273         if (lifecycle > -1)
274                 __send_lifecycle_event(class_id, instance_id, lifecycle);
275
276         bundle_free(b);
277         if (raw)
278                 free(raw);
279
280         return 0;
281 }
282
283 static void __control_create(const char *class_id, const char *id, bundle *b)
284 {
285         widget_base_instance_data *data;
286         char *content = NULL;
287
288         if (appcore_multiwindow_base_instance_find(id)) {
289                 LOGE("Already exist id (%s)", id);
290                 return;
291         }
292
293         data = (widget_base_instance_data *)
294                         calloc(1, sizeof(widget_base_instance_data));
295         if (!data) {
296                 LOGE("Out of memory");
297                 return;
298         }
299
300         data->id = strdup(id);
301         data->args = b;
302
303         /* call stub create */
304         appcore_multiwindow_base_instance_run(class_id, id, data);
305         if (appcore_multiwindow_base_instance_find(id)) {
306                 data->args = NULL;
307                 bundle_get_str(b, WIDGET_K_CONTENT_INFO, &content);
308                 if (content)
309                         data->content = strdup(content);
310         }
311 }
312
313 static void __control_resume(const char *class_id, const char *id, bundle *b)
314 {
315         appcore_multiwindow_base_instance_h cxt;
316
317         cxt = appcore_multiwindow_base_instance_find(id);
318         if (!cxt) {
319                 LOGE("context not found: %s", id);
320                 return;
321         }
322
323         /* call stub resume */
324         appcore_multiwindow_base_instance_resume(cxt);
325 }
326
327 static void __control_pause(const char *class_id, const char *id, bundle *b)
328 {
329         appcore_multiwindow_base_instance_h instance_h;
330
331         instance_h = appcore_multiwindow_base_instance_find(id);
332
333         if (!instance_h) {
334                 LOGE("instance not found: %s", id);
335                 return;
336         }
337
338         /* call stub pause */
339         appcore_multiwindow_base_instance_pause(instance_h);
340 }
341
342 static void __control_resize(const char *class_id, const char *id, bundle *b)
343 {
344         appcore_multiwindow_base_instance_h instance_h;
345         char *remain = NULL;
346         char *w_str = NULL;
347         char *h_str = NULL;
348         int w = 0;
349         int h = 0;
350         void *class_data;
351         widget_base_class *cls;
352         const appcore_multiwindow_base_class *raw_cls;
353
354         instance_h = appcore_multiwindow_base_instance_find(id);
355         if (!instance_h) {
356                 LOGE("context not found: %s", id);
357                 return;
358         }
359
360         raw_cls = appcore_multiwindow_base_instance_get_class(instance_h);
361         if (!raw_cls)
362                 return;
363
364         cls = __get_class(class_id);
365         if (cls == NULL) {
366                 LOGE("class not found: %s", class_id);
367                 return;
368         }
369         class_data = raw_cls->data;
370         bundle_get_str(b, WIDGET_K_WIDTH, &w_str);
371         bundle_get_str(b, WIDGET_K_HEIGHT, &h_str);
372
373         if (w_str)
374                 w = (int)g_ascii_strtoll(w_str, &remain, 10);
375
376         if (h_str)
377                 h = (int)g_ascii_strtoll(h_str, &remain, 10);
378
379         if (cls->ops.resize)
380                 cls->ops.resize(instance_h, w, h, class_data);
381
382         LOGD("%s is resized to %dx%d", id, w, h);
383         __send_update_status(class_id, id,
384                 WIDGET_INSTANCE_EVENT_SIZE_CHANGED, 0, NULL);
385 }
386
387 static void __call_update_cb(const char *class_id, const char *id, int force,
388                 const char *content_raw)
389 {
390         void *class_data;
391         widget_base_class *cls;
392         const appcore_multiwindow_base_class *raw_cls;
393         appcore_multiwindow_base_instance_h instance_h;
394         bundle *content = NULL;
395
396         instance_h = appcore_multiwindow_base_instance_find(id);
397         if (!instance_h) {
398                 LOGE("context not found: %s", id);
399                 return;
400         }
401
402         raw_cls = appcore_multiwindow_base_instance_get_class(instance_h);
403         if (!raw_cls) {
404                 LOGE("class is NULL");
405                 return;
406         }
407
408         class_data = raw_cls->data;
409         cls = __get_class(class_id);
410         if (cls == NULL) {
411                 LOGE("class not found: %s", class_id);
412                 return;
413         }
414
415         if (!cls->ops.update) {
416                 LOGE("update callback is NULL");
417                 return;
418         }
419
420         if (content_raw) {
421                 content = bundle_decode((const bundle_raw *)content_raw,
422                                 strlen(content_raw));
423         }
424
425         if (cls->ops.update)
426                 cls->ops.update(instance_h, content, force, class_data);
427
428         __send_update_status(class_id, id,
429                 WIDGET_INSTANCE_EVENT_UPDATE, 0, NULL);
430         LOGD("updated:%s", id);
431
432         if (content)
433                 bundle_free(content);
434 }
435
436 static void __update_pending_content(
437                 appcore_multiwindow_base_instance_h instance_h,
438                 const char *content_raw)
439 {
440         widget_base_instance_data *data;
441
442         data = (widget_base_instance_data *)
443                         appcore_multiwindow_base_instance_get_extra(instance_h);
444
445         if (data->pending_content) {
446                 free(data->pending_content);
447                 data->pending_content = NULL;
448         }
449
450         if (content_raw) {
451                 data->pending_content = strdup(content_raw);
452                 if (data->pending_content == NULL)
453                         LOGW("Out of memory");
454         }
455
456         data->pending_update = true;
457 }
458
459 static void __update_process(const char *class_id, const char *id,
460                 appcore_multiwindow_base_instance_h instance_h, void *data)
461 {
462         char *content_raw = NULL;
463         char *force_str = NULL;
464         int force;
465         bundle *b = data;
466
467         if (!b) {
468                 LOGE("bundle is NULL");
469                 return;
470         }
471
472         bundle_get_str(b, WIDGET_K_FORCE, &force_str);
473
474         if (force_str && strcmp(force_str, "true") == 0)
475                 force = 1;
476         else
477                 force = 0;
478
479         bundle_get_str(b, WIDGET_K_CONTENT_INFO, &content_raw);
480         if (!appcore_multiwindow_base_instance_is_resumed(instance_h) && !force)
481                 __update_pending_content(instance_h, content_raw);
482         else
483                 __call_update_cb(class_id, id, force, content_raw);
484 }
485
486 static void __control_update(const char *class_id, const char *id, bundle *b)
487 {
488         appcore_multiwindow_base_instance_h instance_h;
489
490         if (!id) {
491                 appcore_multiwindow_base_instance_foreach(class_id,
492                                 __update_process, b);
493                 return;
494         }
495
496         instance_h = appcore_multiwindow_base_instance_find(id);
497         if (!instance_h) {
498                 LOGE("context not found: %s", id);
499                 return;
500         }
501
502         __update_process(class_id, id, instance_h, b);
503 }
504
505 static void __control_destroy(const char *class_id, const char *id, bundle *b)
506 {
507         appcore_multiwindow_base_instance_h instance_h;
508         widget_base_instance_data *data;
509
510         instance_h = appcore_multiwindow_base_instance_find(id);
511         if (!instance_h) {
512                 LOGE("could not find widget obj: %s, clear amd info", id);
513                 aul_widget_instance_del(class_id, id);
514                 return;
515         }
516
517         data = (widget_base_instance_data *)
518                         appcore_multiwindow_base_instance_get_extra(instance_h);
519         data->args = b;
520
521         /* call stub terminate */
522         appcore_multiwindow_base_instance_exit(instance_h);
523         free(data->pending_content);
524         free(data->content);
525         free(data->id);
526         free(data);
527         __check_empty_instance();
528 }
529
530 static void __control_change_period(const char *class_id, const char *id,
531                 bundle *b)
532 {
533         appcore_multiwindow_base_instance_h instance_h;
534         widget_base_instance_data *data;
535         double *period = NULL;
536         size_t size;
537         int ret;
538
539         instance_h = appcore_multiwindow_base_instance_find(id);
540         if (!instance_h) {
541                 LOGE("context not found: %s", id);
542                 return;
543         }
544
545         data = (widget_base_instance_data *)
546                         appcore_multiwindow_base_instance_get_extra(instance_h);
547
548         if (!data) {
549                 LOGE("could not find instance data: %s", id);
550                 return;
551         }
552
553         if (data->periodic_timer) {
554                 LOGD("Remove timer!");
555                 g_source_remove(data->periodic_timer);
556                 data->periodic_timer = 0;
557         }
558
559         ret = bundle_get_byte(b, WIDGET_K_PERIOD, (void **)&period, &size);
560         if (ret == BUNDLE_ERROR_NONE)
561                 data->period = *period;
562
563         if (data->period > 0) {
564                 LOGD("Restart timer!");
565                 data->periodic_timer = g_timeout_add_seconds(data->period,
566                                 __timeout_cb, data);
567         }
568
569         return;
570 }
571
572 static int __multiwindow_create(void *data)
573 {
574         char pkgid[256] = {0, };
575         int ret = 0;
576
577         appcore_multiwindow_base_on_create();
578         app_get_id(&__appid);
579         if (aul_app_get_pkgid_bypid(getpid(), pkgid, sizeof(pkgid)) == 0)
580                 __package_id = strdup(pkgid);
581
582         if (!__package_id || !__appid) {
583                 LOGE("__package_id is NULL");
584                 return -1;
585         }
586
587         screen_connector_provider_init();
588         if (__context.ops.create)
589                 ret = __context.ops.create(data);
590
591         LOGD("widget base is created");
592         return ret;
593 }
594
595 static int __multiwindow_terminate(void *data)
596 {
597         if (__context.ops.terminate)
598                 __context.ops.terminate(data);
599         screen_connector_provider_fini();
600
601         if (__viewer_endpoint) {
602                 free(__viewer_endpoint);
603                 __viewer_endpoint = NULL;
604         }
605
606         if (__package_id) {
607                 free(__package_id);
608                 __package_id = NULL;
609         }
610
611         if (__appid) {
612                 free(__appid);
613                 __appid = NULL;
614         }
615
616         appcore_multiwindow_base_on_terminate();
617
618         LOGD("widget base is terminated");
619         return 0;
620 }
621
622 static int __multiwindow_control(bundle *b, void *data)
623 {
624         char *class_id = NULL;
625         char *id = NULL;
626         char *operation = NULL;
627
628         appcore_multiwindow_base_on_control(b);
629         bundle_get_str(b, WIDGET_K_CLASS, &class_id);
630         /* for previous version compatibility, use appid for default class id */
631         if (class_id == NULL)
632                 class_id = __appid;
633
634         bundle_get_str(b, AUL_K_WIDGET_INSTANCE_ID, &id);
635         bundle_get_str(b, WIDGET_K_OPERATION, &operation);
636
637         if (!operation) {
638                 LOGE("operation is NULL");
639                 return 0;
640         }
641
642         if (strcmp(operation, "create") == 0)
643                 __control_create(class_id, id, b);
644         else if (strcmp(operation, "resize") == 0)
645                 __control_resize(class_id, id, b);
646         else if (strcmp(operation, "update") == 0)
647                 __control_update(class_id, id, b);
648         else if (strcmp(operation, "destroy") == 0)
649                 __control_destroy(class_id, id, b);
650         else if (strcmp(operation, "resume") == 0)
651                 __control_resume(class_id, id, b);
652         else if (strcmp(operation, "pause") == 0)
653                 __control_pause(class_id, id, b);
654         else if (strcmp(operation, "terminate") == 0)
655                 __control_destroy(class_id, id, b);
656         else if (strcmp(operation, "period") == 0)
657                 __control_change_period(class_id, id, b);
658
659         return 0;
660 }
661
662 static void __inst_resume_cb(const char *class_id, const char *id,
663                 appcore_multiwindow_base_instance_h cxt, void *data)
664 {
665         __control_resume(class_id, id, data);
666 }
667
668 static void __get_content(bundle *b)
669 {
670         char *instance_id = NULL;
671         appcore_multiwindow_base_instance_h cxt;
672         widget_base_instance_data * we;
673
674         bundle_get_str(b, AUL_K_WIDGET_INSTANCE_ID, &instance_id);
675         if (!instance_id) {
676                 LOGE("instance id is NULL");
677                 return;
678         }
679
680         cxt = appcore_multiwindow_base_instance_find(instance_id);
681         if (!cxt) {
682                 LOGE("could not find widget obj: %s", instance_id);
683                 return;
684         }
685
686         we = appcore_multiwindow_base_instance_get_extra(cxt);
687         if (!we) {
688                 LOGE("widget extra is NULL");
689                 return;
690         }
691
692         if (we->content) {
693                 bundle_add_str(b, AUL_K_WIDGET_CONTENT_INFO, we->content);
694                 LOGD("content info of %s found", instance_id);
695         } else {
696                 bundle_add_str(b, AUL_K_WIDGET_CONTENT_INFO, "");
697                 LOGD("empty content info added");
698         }
699 }
700
701 static int __multiwindow_receive(aul_type type, bundle *b, void *data)
702 {
703         appcore_multiwindow_base_on_receive(type, b);
704
705         switch (type) {
706         case AUL_RESUME:
707                 appcore_multiwindow_base_instance_foreach_full(
708                                 __inst_resume_cb, b);
709                 break;
710         case AUL_TERMINATE:
711                 widget_base_exit();
712                 break;
713         case AUL_WIDGET_CONTENT:
714                 __get_content(b);
715                 break;
716         default:
717                 break;
718         }
719
720         return 0;
721 }
722
723 static void __multiwindow_init(int argc, char **argv, void *data)
724 {
725         if (__context.ops.init)
726                 __context.ops.init(argc, argv, data);
727 }
728
729 static void __multiwindow_finish(void)
730 {
731         if (__context.ops.finish) {
732                 __context.ops.finish();
733                 /* Check Loader case */
734                 if (getenv("AUL_LOADER_INIT")) {
735                         unsetenv("AUL_LOADER_INIT");
736                         __context.ops.finish();
737                 }
738         }
739 }
740
741 static void __multiwindow_run(void *data)
742 {
743         if (__context.ops.run)
744                 __context.ops.run(data);
745 }
746
747 static void __multiwindow_exit(void *data)
748 {
749         if (__context.ops.exit)
750                 __context.ops.exit(data);
751 }
752
753 static void __multiwindow_trim_memory(void *data)
754 {
755         if (__context.ops.trim_memory)
756                 __context.ops.trim_memory(data);
757 }
758
759 EXPORT_API int widget_base_exit(void)
760 {
761         int ret;
762
763         appcore_multiwindow_base_exit();
764         if (appcore_multiwindow_base_instance_get_cnt() == 0 && __is_permanent) {
765                 ret = aul_notify_exit();
766                 aul_widget_write_log(LOG_TAG, "[%s:%d] permanent exit : %d",
767                         __FUNCTION__, __LINE__, ret);
768         }
769
770         return 0;
771 }
772
773 static gboolean __finish_event_cb(gpointer user_data)
774 {
775         appcore_multiwindow_base_instance_h cxt = user_data;
776         bundle *b;
777         const char *id;
778         const char *class_id;
779
780         if (!cxt) {
781                 LOGE("user_data is NULL");
782                 return FALSE;
783         }
784
785         id = appcore_multiwindow_base_instance_get_id(cxt);
786         class_id = appcore_multiwindow_base_instance_get_class_id(cxt);
787         b = bundle_create();
788
789         if (!b) {
790                 LOGE("Out-of-memory");
791                 return FALSE;
792         }
793
794         bundle_add_str(b, WIDGET_K_OPERATION, "terminate");
795         __control_destroy(class_id, id, b);
796         bundle_free(b);
797
798         return FALSE;
799 }
800
801 EXPORT_API int widget_base_terminate_context(widget_base_instance_h context)
802 {
803         if (!__is_widget_feature_enabled()) {
804                 LOGE("not supported"); /* LCOV_EXCL_LINE */
805                 return WIDGET_ERROR_NOT_SUPPORTED; /* LCOV_EXCL_LINE */
806         }
807
808         if (!context) {
809                 LOGE("context is null");
810                 return WIDGET_ERROR_INVALID_PARAMETER;
811         }
812
813         g_idle_add(__finish_event_cb, context);
814
815         return WIDGET_ERROR_NONE;
816 }
817
818 static void __inst_full_cb(const char *class_id, const char *id,
819                 appcore_multiwindow_base_instance_h cxt, void *data)
820 {
821         struct widget_foreach_context *foreach_context = data;
822
823         if (!data)
824                 return;
825
826         if (foreach_context->callback)
827                 foreach_context->callback(cxt, foreach_context->data);
828 }
829
830 EXPORT_API int widget_base_foreach_context(widget_base_instance_cb cb, void *data)
831 {
832         struct widget_foreach_context foreach_context;
833
834         if (!__is_widget_feature_enabled()) {
835                 LOGE("not supported"); /* LCOV_EXCL_LINE */
836                 return WIDGET_ERROR_NOT_SUPPORTED; /* LCOV_EXCL_LINE */
837         }
838
839         if (!cb) {
840                 LOGE("callback is NULL");
841                 return WIDGET_ERROR_INVALID_PARAMETER;
842         }
843
844         foreach_context.callback = cb;
845         foreach_context.data = data;
846         appcore_multiwindow_base_instance_foreach_full(__inst_full_cb, &foreach_context);
847
848         return WIDGET_ERROR_NONE;
849 }
850
851 static int __event_cb(void *event, void *data)
852 {
853         app_event_handler_h handler = data;
854
855         struct app_event_info app_event;
856
857         app_event.type = handler->type;
858         app_event.value = event;
859
860         if (handler->cb)
861                 handler->cb(&app_event, handler->data);
862
863         return 0;
864 }
865
866 EXPORT_API int widget_base_add_event_handler(app_event_handler_h *event_handler,
867                                         app_event_type_e event_type,
868                                         app_event_cb callback,
869                                         void *user_data)
870 {
871         int r;
872         bool feature;
873         app_event_handler_h handler;
874
875         r = system_info_get_platform_bool(FEATURE_SHELL_APPWIDGET, &feature);
876         if (r < 0)
877                 return WIDGET_BASE_ERROR_FAULT;
878
879         if (!feature)
880                 return WIDGET_BASE_ERROR_NOT_SUPPORTED;
881
882         if (event_handler == NULL || callback == NULL)
883                 return WIDGET_BASE_ERROR_INVALID_PARAMETER;
884
885         if (event_type < APP_EVENT_LOW_MEMORY
886             || event_type > APP_EVENT_REGION_FORMAT_CHANGED)
887                 return WIDGET_BASE_ERROR_INVALID_PARAMETER;
888
889         if (event_type == APP_EVENT_DEVICE_ORIENTATION_CHANGED)
890                 return WIDGET_BASE_ERROR_NOT_SUPPORTED;
891
892
893         handler = calloc(1, sizeof(struct app_event_handler));
894         if (!handler)
895                 return WIDGET_BASE_ERROR_OUT_OF_MEMORY;
896
897         handler->type = event_type;
898         handler->cb = callback;
899         handler->data = user_data;
900         handler->raw = appcore_base_add_event(
901                         __app_event_converter[event_type], __event_cb, handler);
902         *event_handler = handler;
903
904         return WIDGET_BASE_ERROR_NONE;
905 }
906
907 EXPORT_API int widget_base_remove_event_handler(app_event_handler_h
908                                                 event_handler)
909 {
910         int r;
911         bool feature;
912         app_event_type_e type;
913
914         r = system_info_get_platform_bool(FEATURE_SHELL_APPWIDGET, &feature);
915         if (r < 0)
916                 return WIDGET_BASE_ERROR_FAULT;
917
918         if (!feature)
919                 return WIDGET_BASE_ERROR_NOT_SUPPORTED;
920
921         if (event_handler == NULL)
922                 return WIDGET_BASE_ERROR_INVALID_PARAMETER;
923
924         type = event_handler->type;
925         if (type < APP_EVENT_LOW_MEMORY ||
926                         type > APP_EVENT_REGION_FORMAT_CHANGED)
927                 return WIDGET_BASE_ERROR_INVALID_PARAMETER;
928
929         r = appcore_base_remove_event(event_handler->raw);
930         if (r < 0)
931                 return WIDGET_BASE_ERROR_INVALID_PARAMETER;
932
933         free(event_handler);
934
935         return WIDGET_BASE_ERROR_NONE;
936 }
937
938 EXPORT_API int widget_base_context_set_content_info(
939                 widget_base_instance_h context,
940                 bundle *content_info)
941 {
942         int ret = 0;
943         bundle_raw *raw = NULL;
944         int len;
945         const char *id;
946         const char *class_id;
947         widget_base_instance_data *data;
948         appcore_multiwindow_base_instance_h instance_h;
949
950         if (!__is_widget_feature_enabled()) {
951                 LOGE("not supported"); /* LCOV_EXCL_LINE */
952                 return WIDGET_BASE_ERROR_NOT_SUPPORTED; /* LCOV_EXCL_LINE */
953         }
954
955         if (!context || !content_info)
956                 return WIDGET_BASE_ERROR_INVALID_PARAMETER;
957
958         instance_h = (appcore_multiwindow_base_instance_h)context;
959         id = appcore_multiwindow_base_instance_get_id(instance_h);
960         class_id = appcore_multiwindow_base_instance_get_class_id(instance_h);
961         data = appcore_multiwindow_base_instance_get_extra(instance_h);
962
963         if (!class_id || !id || !data)
964                 return WIDGET_BASE_ERROR_FAULT;
965
966         ret = __send_update_status(class_id, id,
967                         WIDGET_INSTANCE_EVENT_EXTRA_UPDATED, 0, content_info);
968
969         if (data->content)
970                 free(data->content);
971
972         bundle_encode(content_info, &raw, &len);
973         if (raw)
974                 data->content = strdup((const char *)raw);
975         else
976                 data->content = NULL;
977
978         free(raw);
979         if (ret < 0) {
980                 /* LCOV_EXCL_START */
981                 LOGE("failed to send content info: %s of %s (%d)", id,
982                                 class_id, ret);
983                 return WIDGET_BASE_ERROR_IO_ERROR;
984                 /* LCOV_EXCL_STOP */
985         }
986
987         return WIDGET_BASE_ERROR_NONE;
988 }
989
990 EXPORT_API int widget_base_context_get_tag(widget_base_instance_h context, void **tag)
991 {
992         appcore_multiwindow_base_instance_h instance_h;
993         widget_base_instance_data *data;
994
995         if (!__is_widget_feature_enabled()) {
996                 LOGE("not supported"); /* LCOV_EXCL_LINE */
997                 return WIDGET_BASE_ERROR_NOT_SUPPORTED; /* LCOV_EXCL_LINE */
998         }
999
1000         if (!context || !tag) {
1001                 LOGE("Invalid parameter");
1002                 return WIDGET_BASE_ERROR_INVALID_PARAMETER;
1003         }
1004
1005         instance_h = (appcore_multiwindow_base_instance_h)context;
1006         data = (widget_base_instance_data *)
1007                         appcore_multiwindow_base_instance_get_extra(instance_h);
1008
1009         if (!data) {
1010                 LOGE("Invalid parameter");
1011                 return WIDGET_ERROR_INVALID_PARAMETER;
1012         }
1013
1014         *tag = data->tag;
1015
1016         return WIDGET_BASE_ERROR_NONE;
1017 }
1018
1019 EXPORT_API int widget_base_context_set_tag(widget_base_instance_h context, void *tag)
1020 {
1021         appcore_multiwindow_base_instance_h instance_h;
1022         widget_base_instance_data *data;
1023
1024         if (!__is_widget_feature_enabled()) {
1025                 LOGE("not supported"); /* LCOV_EXCL_LINE */
1026                 return WIDGET_BASE_ERROR_NOT_SUPPORTED; /* LCOV_EXCL_LINE */
1027         }
1028
1029         if (!context) {
1030                 LOGE("Invalid parameter");
1031                 return WIDGET_BASE_ERROR_INVALID_PARAMETER;
1032         }
1033
1034         instance_h = (appcore_multiwindow_base_instance_h)context;
1035         data = (widget_base_instance_data *)
1036                         appcore_multiwindow_base_instance_get_extra(instance_h);
1037         data->tag = tag;
1038
1039         return WIDGET_BASE_ERROR_NONE;
1040 }
1041
1042 EXPORT_API void *widget_base_context_get_user_data(
1043                 widget_base_instance_h context)
1044 {
1045         appcore_multiwindow_base_instance_h instance_h;
1046         widget_base_instance_data *data;
1047
1048         if (!__is_widget_feature_enabled()) {
1049                 LOGE("not supported"); /* LCOV_EXCL_LINE */
1050                 return NULL; /* LCOV_EXCL_LINE */
1051         }
1052
1053         if (!context) {
1054                 LOGE("Invalid parameter");
1055                 return NULL;
1056         }
1057
1058         instance_h = (appcore_multiwindow_base_instance_h)context;
1059         data = (widget_base_instance_data *)
1060                         appcore_multiwindow_base_instance_get_extra(instance_h);
1061
1062         return data->user_data;
1063 }
1064
1065
1066 EXPORT_API int widget_base_context_set_user_data(
1067                 widget_base_instance_h context, void *user_data)
1068 {
1069         appcore_multiwindow_base_instance_h instance_h;
1070         widget_base_instance_data *data;
1071
1072         if (!__is_widget_feature_enabled()) {
1073                 LOGE("not supported"); /* LCOV_EXCL_LINE */
1074                 return WIDGET_BASE_ERROR_NOT_SUPPORTED; /* LCOV_EXCL_LINE */
1075         }
1076
1077         if (!context) {
1078                 LOGE("Invalid parameter");
1079                 return WIDGET_BASE_ERROR_INVALID_PARAMETER;
1080         }
1081
1082         instance_h = (appcore_multiwindow_base_instance_h)context;
1083         data = (widget_base_instance_data *)
1084                         appcore_multiwindow_base_instance_get_extra(instance_h);
1085         data->user_data = user_data;
1086
1087         return WIDGET_BASE_ERROR_NONE;
1088 }
1089
1090 EXPORT_API int widget_base_context_get_id(widget_base_instance_h context, char **id)
1091 {
1092         appcore_multiwindow_base_instance_h instance_h;
1093
1094         if (!__is_widget_feature_enabled()) {
1095                 LOGE("not supported"); /* LCOV_EXCL_LINE */
1096                 return WIDGET_BASE_ERROR_NOT_SUPPORTED; /* LCOV_EXCL_LINE */
1097         }
1098
1099         instance_h = (appcore_multiwindow_base_instance_h)context;
1100         *id = (char *)appcore_multiwindow_base_instance_get_id(instance_h);
1101
1102         return WIDGET_BASE_ERROR_NONE;
1103 }
1104
1105 EXPORT_API const char *widget_base_get_viewer_endpoint()
1106 {
1107         return __viewer_endpoint;
1108 }
1109
1110 EXPORT_API int widget_base_init(widget_base_ops ops, int argc, char **argv,
1111                 void *data)
1112 {
1113         bundle *kb;
1114         char *viewer_endpoint = NULL;
1115         appcore_multiwindow_base_ops raw_ops
1116                         = appcore_multiwindow_base_get_default_ops();
1117
1118         __context.ops = ops;
1119         __context.argc = argc;
1120         __context.argv = argv;
1121         __context.data = data;
1122
1123         /* override methods */
1124         raw_ops.base.create = __multiwindow_create;
1125         raw_ops.base.control = __multiwindow_control;
1126         raw_ops.base.terminate = __multiwindow_terminate;
1127         raw_ops.base.receive = __multiwindow_receive;
1128         raw_ops.base.init = __multiwindow_init;
1129         raw_ops.base.finish = __multiwindow_finish;
1130         raw_ops.base.run = __multiwindow_run;
1131         raw_ops.base.exit = __multiwindow_exit;
1132         raw_ops.base.trim_memory = __multiwindow_trim_memory;
1133
1134         if (!__is_widget_feature_enabled()) {
1135                 LOGE("not supported"); /* LCOV_EXCL_LINE */
1136                 return WIDGET_ERROR_NOT_SUPPORTED; /* LCOV_EXCL_LINE */
1137         }
1138
1139         kb = bundle_import_from_argv(argc, argv);
1140         if (kb) {
1141                 bundle_get_str(kb, AUL_K_WIDGET_VIEWER, &viewer_endpoint);
1142                 if (viewer_endpoint) {
1143                         LOGD("viewer endpoint :%s", viewer_endpoint);
1144                         __viewer_endpoint = strdup(viewer_endpoint);
1145                 } else {
1146                         LOGE("endpoint is missing");
1147                 }
1148
1149                 bundle_free(kb);
1150         } else {
1151                 LOGE("failed to get launch argv"); /* LCOV_EXCL_LINE */
1152                 return WIDGET_ERROR_FAULT;
1153         }
1154
1155         if (appcore_multiwindow_base_init(raw_ops, argc, argv, data) < 0)
1156                return WIDGET_ERROR_FAULT;
1157
1158         return WIDGET_ERROR_NONE;
1159 }
1160
1161 static int __on_create(void *data)
1162 {
1163         return widget_base_on_create();
1164 }
1165
1166 static int __on_terminate(void *data)
1167 {
1168         return widget_base_on_terminate();
1169 }
1170
1171 static void __on_init(int argc, char **argv, void *data)
1172 {
1173         widget_base_on_init(argc, argv);
1174 }
1175
1176 static void __on_finish(void)
1177 {
1178         widget_base_on_finish();
1179 }
1180
1181 static void __on_run(void *data)
1182 {
1183         widget_base_on_run();
1184 }
1185
1186 static void __on_exit(void *data)
1187 {
1188         widget_base_on_exit();
1189 }
1190
1191 static void __on_trim_memory(void *data)
1192 {
1193         widget_base_on_trim_memory();
1194 }
1195
1196 EXPORT_API int widget_base_on_create(void)
1197 {
1198         appcore_multiwindow_base_on_create();
1199
1200         return 0;
1201 }
1202
1203 EXPORT_API int widget_base_on_terminate(void)
1204 {
1205         appcore_multiwindow_base_on_terminate();
1206
1207         return 0;
1208 }
1209
1210 EXPORT_API int widget_base_on_init(int argc, char **argv)
1211 {
1212         return 0;
1213 }
1214
1215 EXPORT_API void widget_base_on_finish(void)
1216 {
1217 }
1218
1219 EXPORT_API void widget_base_on_run(void)
1220 {
1221 }
1222
1223 EXPORT_API void widget_base_on_exit(void)
1224 {
1225 }
1226
1227 EXPORT_API int widget_base_on_trim_memory(void)
1228 {
1229         appcore_multiwindow_base_on_trim_memory();
1230
1231         return 0;
1232 }
1233
1234 EXPORT_API widget_base_ops widget_base_get_default_ops(void)
1235 {
1236         widget_base_ops ops;
1237
1238         /* override methods */
1239         ops.create = __on_create;
1240         ops.terminate = __on_terminate;
1241         ops.init = __on_init;
1242         ops.finish = __on_finish;
1243         ops.run = __on_run;
1244         ops.exit = __on_exit;
1245         ops.trim_memory = __on_trim_memory;
1246
1247         return ops;
1248 }
1249
1250 static void __free_class(gpointer data)
1251 {
1252         widget_base_class *cls = data;
1253
1254         free(cls->id);
1255         free(cls);
1256 }
1257
1258 EXPORT_API void widget_base_fini(void)
1259 {
1260         appcore_multiwindow_base_fini();
1261         g_list_free_full(__context.classes, __free_class);
1262         __context.classes = NULL;
1263 }
1264
1265 EXPORT_API int widget_base_context_window_bind(
1266                 widget_base_instance_h instance_h, const char *id,
1267                 Ecore_Wl2_Window *wl_win)
1268 {
1269         struct wl_surface *surface;
1270
1271         surface = ecore_wl2_window_surface_get(wl_win);
1272         if (surface == NULL) {
1273                 LOGE("failed to get surface"); /* LCOV_EXCL_LINE */
1274                 return WIDGET_BASE_ERROR_FAULT; /* LCOV_EXCL_LINE */
1275         }
1276
1277         screen_connector_provider_remote_enable(id, surface);
1278         appcore_multiwindow_base_window_bind(instance_h, wl_win);
1279
1280         return WIDGET_BASE_ERROR_NONE;
1281 }
1282
1283 static int __class_on_create(widget_base_instance_h instance_h, bundle *content,
1284                 int w, int h, void *class_data)
1285 {
1286         return widget_base_class_on_create(instance_h, content, w, h);
1287 }
1288
1289 static int __class_on_resume(widget_base_instance_h instance_h, void *class_data)
1290 {
1291         return widget_base_class_on_resume(instance_h);
1292 }
1293
1294 static int __class_on_pause(widget_base_instance_h instance_h,
1295                 void *class_data)
1296 {
1297         return widget_base_class_on_pause(instance_h);
1298 }
1299
1300 static int __class_on_resize(widget_base_instance_h instance_h, int w, int h,
1301                 void *class_data)
1302 {
1303         return widget_base_class_on_resize(instance_h, w, h);
1304 }
1305
1306 static int __class_on_update(widget_base_instance_h instance_h, bundle *content,
1307                 int force, void *class_data)
1308 {
1309         return widget_base_class_on_update(instance_h, content, force);
1310 }
1311
1312 static int __class_on_destroy(widget_base_instance_h instance_h,
1313                 widget_base_destroy_type_e reason, bundle *content,
1314                 void *class_data)
1315 {
1316         return widget_base_class_on_destroy(instance_h, reason, content);
1317 }
1318
1319 static void __multiwindow_instance_create(
1320                 appcore_multiwindow_base_instance_h instance_h,
1321                 void *class_data)
1322 {
1323         widget_base_instance_data *instance_data;
1324         bundle *b;
1325         bundle *content_info = NULL;
1326         char *id = NULL;
1327         char *class_id = NULL;
1328         char *operation = NULL;
1329         char *content = NULL;
1330         char *w_str = NULL;
1331         char *h_str = NULL;
1332         char *remain = NULL;
1333         int w = 0;
1334         int h = 0;
1335         int ret = -1;
1336         widget_base_class *cls;
1337         double *period = NULL;
1338         size_t size;
1339
1340         appcore_multiwindow_base_class_on_create(instance_h);
1341         instance_data = appcore_multiwindow_base_instance_get_extra(instance_h);
1342         b = instance_data->args;
1343
1344         bundle_get_str(b, WIDGET_K_CLASS, &class_id);
1345         /* for previous version compatibility, use appid for default class id */
1346         if (class_id == NULL)
1347                 class_id = __appid;
1348
1349         cls = __get_class(class_id);
1350         if (cls == NULL) {
1351                 LOGE("class not found: %s", class_id);
1352                 return;
1353         }
1354
1355         bundle_get_str(b, AUL_K_WIDGET_INSTANCE_ID, &id);
1356         bundle_get_str(b, WIDGET_K_OPERATION, &operation);
1357
1358         if (!operation) {
1359                 LOGE("no operation provided");
1360                 return;
1361         }
1362
1363         bundle_get_str(b, WIDGET_K_CONTENT_INFO, &content);
1364         bundle_get_str(b, WIDGET_K_WIDTH, &w_str);
1365         bundle_get_str(b, WIDGET_K_HEIGHT, &h_str);
1366
1367         if (w_str)
1368                 w = (int)g_ascii_strtoll(w_str, &remain, 10);
1369
1370         if (h_str)
1371                 h = (int)g_ascii_strtoll(h_str, &remain, 10);
1372
1373         if (content)
1374                 content_info = bundle_decode((const bundle_raw *)content,
1375                                 strlen(content));
1376
1377         if (cls->ops.create)
1378                 ret = cls->ops.create(instance_h, content_info, w, h, class_data);
1379
1380         if (ret < 0) {
1381                 LOGW("Create callback returns error(%d)", ret);
1382                 ret = __send_update_status(class_id, id,
1383                                 WIDGET_INSTANCE_EVENT_CREATE_ABORTED, ret, NULL);
1384                 if (ret < 0)
1385                         LOGE("Fail to send abort status (%d) ", ret);
1386                 __instance_drop(instance_h);
1387         } else {
1388                 LOGD("%s is created", id);
1389                 ret = __send_update_status(class_id, id,
1390                         WIDGET_INSTANCE_EVENT_CREATE, 0, NULL);
1391                 if (ret < 0)
1392                         LOGE("Fail to send create status (%d) ", ret);
1393
1394                 aul_widget_instance_add(class_id, id);
1395
1396                 ret = bundle_get_byte(b, WIDGET_K_PERIOD, (void **)&period,
1397                                 &size);
1398                 if (ret == BUNDLE_ERROR_NONE && *period > 0) {
1399                         LOGI("set periodic update timer (%lf)", *period);
1400                         instance_data->period = *period;
1401                         instance_data->periodic_timer = g_timeout_add_seconds(
1402                                         instance_data->period,
1403                                         __timeout_cb, instance_data);
1404                 }
1405         }
1406
1407         if (content_info)
1408                 bundle_free(content_info);
1409 }
1410
1411 static void __multiwindow_instance_resume(
1412                 appcore_multiwindow_base_instance_h instance_h,
1413                 void *class_data)
1414 {
1415         const char *id;
1416         const char *class_id;
1417         widget_base_class *cls;
1418         widget_base_instance_data *data;
1419
1420         appcore_multiwindow_base_class_on_resume(instance_h);
1421         id = appcore_multiwindow_base_instance_get_id(instance_h);
1422         class_id = appcore_multiwindow_base_instance_get_class_id(instance_h);
1423         cls = __get_class(class_id);
1424         if (cls == NULL) {
1425                 LOGE("class not found: %s", class_id);
1426                 return;
1427         }
1428
1429         data = (widget_base_instance_data *)
1430                         appcore_multiwindow_base_instance_get_extra(instance_h);
1431
1432         if (data->pending_update) {
1433                 LOGD("pending update!");
1434                 data->pending_update = false;
1435                 __call_update_cb(class_id, data->id, 0, data->pending_content);
1436                 if (data->period > 0) {
1437                         LOGD("Restart timer!");
1438                         data->periodic_timer = g_timeout_add_seconds(
1439                                         data->period,
1440                                         __timeout_cb, data);
1441                 }
1442         }
1443
1444         if (cls->ops.resume)
1445                 cls->ops.resume(instance_h, class_data);
1446
1447         LOGD("%s is resumed", id);
1448         __send_update_status(class_id, id,
1449                 WIDGET_INSTANCE_EVENT_RESUME, 0, NULL);
1450
1451         if (!__fg_signal) {
1452                 LOGD("Send fg signal to resourceD");
1453                 aul_widget_instance_change_status(class_id, STATUS_FOREGROUND);
1454                 __fg_signal = true;
1455         }
1456 }
1457
1458 static void __multiwindow_instance_pause(
1459                 appcore_multiwindow_base_instance_h instance_h,
1460                 void *class_data)
1461 {
1462         const char *id;
1463         const char *class_id;
1464         widget_base_class *cls;
1465
1466         appcore_multiwindow_base_class_on_pause(instance_h);
1467         id = appcore_multiwindow_base_instance_get_id(instance_h);
1468         class_id = appcore_multiwindow_base_instance_get_class_id(instance_h);
1469         cls = __get_class(class_id);
1470         if (cls == NULL) {
1471                 LOGE("class not found: %s", class_id);
1472                 return;
1473         }
1474
1475         if (cls->ops.pause)
1476                 cls->ops.pause(instance_h, class_data);
1477
1478         LOGD("%s is paused", id);
1479         __send_update_status(class_id, id,
1480                 WIDGET_INSTANCE_EVENT_PAUSE, 0, NULL);
1481
1482         if (__fg_signal) {
1483                 LOGD("Send bg signal to resourceD");
1484                 aul_widget_instance_change_status(class_id, STATUS_BACKGROUND);
1485                 __fg_signal = false;
1486         }
1487 }
1488
1489 static void __multiwindow_instance_terminate(
1490                 appcore_multiwindow_base_instance_h instance_h,
1491                 void *class_data)
1492 {
1493         widget_base_instance_data *data;
1494         bundle *b;
1495         char *operation = NULL;
1496         bundle *content_info;
1497         widget_base_destroy_type_e reason = WIDGET_BASE_DESTROY_TYPE_TEMPORARY;
1498         int event = WIDGET_INSTANCE_EVENT_TERMINATE;
1499         const char *id;
1500         const char *class_id;
1501         widget_base_class *cls;
1502
1503         id = appcore_multiwindow_base_instance_get_id(instance_h);
1504         class_id = appcore_multiwindow_base_instance_get_class_id(instance_h);
1505         data  = appcore_multiwindow_base_instance_get_extra(
1506                         (appcore_multiwindow_base_instance_h)instance_h);
1507         b = data->args;
1508         cls = __get_class(class_id);
1509         if (cls == NULL) {
1510                 LOGE("class not found: %s", class_id);
1511                 return;
1512         }
1513
1514         if (b) {
1515                 bundle_get_str(b, WIDGET_K_OPERATION, &operation);
1516                 if (operation && strcmp(operation, "destroy") == 0)
1517                         reason = WIDGET_BASE_DESTROY_TYPE_PERMANENT;
1518         }
1519
1520         if (data->content)
1521                 content_info = bundle_decode((const bundle_raw *)data->content,
1522                                 strlen(data->content));
1523         else
1524                 content_info = bundle_create();
1525
1526         if (cls->ops.destroy)
1527                 cls->ops.destroy(instance_h, reason, content_info, class_data);
1528
1529         LOGW("%s is destroyed %d", id, reason);
1530         if (reason == WIDGET_BASE_DESTROY_TYPE_PERMANENT) {
1531                 __is_permanent = true;
1532                 event = WIDGET_INSTANCE_EVENT_DESTROY;
1533                 aul_widget_instance_del(class_id, id);
1534         } else {
1535                 __is_permanent = false;
1536                 __send_update_status(class_id, id,
1537                                 WIDGET_INSTANCE_EVENT_EXTRA_UPDATED, 0,
1538                                 content_info);
1539         }
1540
1541         if (content_info)
1542                 bundle_free(content_info);
1543
1544         if (data->periodic_timer)
1545                 g_source_remove(data->periodic_timer);
1546
1547         __send_update_status(class_id, id, event, 0, NULL);
1548         appcore_multiwindow_base_class_on_terminate(instance_h);
1549 }
1550
1551 EXPORT_API int widget_base_class_on_create(widget_base_instance_h instance_h,
1552                 bundle *content, int w, int h)
1553 {
1554         appcore_multiwindow_base_class_on_create(instance_h);
1555
1556         return 0;
1557 }
1558
1559 EXPORT_API int widget_base_class_on_pause(widget_base_instance_h instance_h)
1560 {
1561         appcore_multiwindow_base_class_on_pause(instance_h);
1562
1563         return 0;
1564 }
1565
1566 EXPORT_API int widget_base_class_on_resume(widget_base_instance_h instance_h)
1567 {
1568         appcore_multiwindow_base_class_on_resume(instance_h);
1569
1570         return 0;
1571 }
1572
1573 EXPORT_API int widget_base_class_on_resize(widget_base_instance_h instance_h,
1574                 int w, int h)
1575 {
1576         return 0;
1577 }
1578
1579 EXPORT_API int widget_base_class_on_update(widget_base_instance_h instance_h,
1580                 bundle *content, int force)
1581 {
1582         return 0;
1583 }
1584
1585 EXPORT_API int widget_base_class_on_destroy(widget_base_instance_h instance_h,
1586                 widget_base_destroy_type_e reason, bundle *content)
1587 {
1588         appcore_multiwindow_base_class_on_terminate(instance_h);
1589
1590         return 0;
1591 }
1592
1593 EXPORT_API widget_base_class widget_base_class_get_default(void)
1594 {
1595         widget_base_class cls;
1596
1597         cls.ops.create = __class_on_create;
1598         cls.ops.resize = __class_on_resize;
1599         cls.ops.update = __class_on_update;
1600         cls.ops.destroy = __class_on_destroy;
1601         cls.ops.pause = __class_on_pause;
1602         cls.ops.resume = __class_on_resume;
1603         cls.id = NULL;
1604
1605         return cls;
1606 }
1607
1608 EXPORT_API widget_base_class *widget_base_class_add(widget_base_class cls,
1609                 const char *class_id, void *class_data)
1610 {
1611         widget_base_class *c;
1612         appcore_multiwindow_base_class raw_cls;
1613
1614         if (!__is_widget_feature_enabled()) {
1615                 LOGE("not supported");
1616                 set_last_result(WIDGET_ERROR_NOT_SUPPORTED);
1617                 return NULL;
1618         }
1619
1620         if (!class_id) {
1621                 LOGE("class is is NULL");
1622                 set_last_result(WIDGET_ERROR_INVALID_PARAMETER);
1623                 return NULL;
1624         }
1625
1626         raw_cls.id = strdup(class_id);
1627         raw_cls.data = class_data;
1628         raw_cls.create = __multiwindow_instance_create;
1629         raw_cls.terminate = __multiwindow_instance_terminate;
1630         raw_cls.pause = __multiwindow_instance_pause;
1631         raw_cls.resume = __multiwindow_instance_resume;
1632         appcore_multiwindow_base_class_add(raw_cls);
1633
1634         c = malloc(sizeof(widget_base_class));
1635         if (!c)
1636                 return NULL;
1637
1638         *c = cls;
1639         c->id = strdup(class_id);
1640         __context.classes = g_list_append(__context.classes, c);
1641
1642         return c;
1643 }