2 * Copyright 2012 Samsung Electronics Co., Ltd
4 * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
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.
19 #include <stdlib.h> /* malloc */
20 #include <string.h> /* strdup */
26 #include <com-core_packet.h>
28 #include <livebox-service.h>
33 #include "livebox_internal.h"
36 #include "master_rpc.h"
38 #include "critical_log.h"
40 #define EAPI __attribute__((visibility("default")))
41 #define MINIMUM_EVENT s_info.event_filter
48 struct dlist *livebox_list;
49 struct dlist *event_list;
50 struct dlist *fault_list;
52 int prevent_overwrite;
59 .prevent_overwrite = 0,
60 .event_filter = 0.02f,
69 int (*handler)(struct livebox *handler, enum livebox_event_type event, void *data);
74 int (*handler)(enum livebox_fault_type event, const char *pkgname, const char *filename, const char *func, void *data);
78 static inline void default_create_cb(struct livebox *handler, int ret, void *data)
80 DbgPrint("Default created event handler: %d\n", ret);
83 static inline void default_delete_cb(struct livebox *handler, int ret, void *data)
85 DbgPrint("Default deleted event handler: %d\n", ret);
88 static inline void default_pinup_cb(struct livebox *handler, int ret, void *data)
90 DbgPrint("Default pinup event handler: %d\n", ret);
93 static inline void default_group_changed_cb(struct livebox *handler, int ret, void *data)
95 DbgPrint("Default group changed event handler: %d\n", ret);
98 static inline void default_period_changed_cb(struct livebox *handler, int ret, void *data)
100 DbgPrint("Default period changed event handler: %d\n", ret);
103 static inline void default_pd_created_cb(struct livebox *handler, int ret, void *data)
105 DbgPrint("Default PD created event handler: %d\n", ret);
108 static inline void default_pd_destroyed_cb(struct livebox *handler, int ret, void *data)
110 DbgPrint("Default PD destroyed event handler: %d\n", ret);
113 static inline void default_lb_size_changed_cb(struct livebox *handler, int ret, void *data)
115 DbgPrint("Default LB size changed event handler: %d\n", ret);
118 static inline __attribute__((always_inline)) struct cb_info *create_cb_info(ret_cb_t cb, void *data)
120 struct cb_info *info;
122 info = malloc(sizeof(*info));
124 CRITICAL_LOG("Heap: %s\n", strerror(errno));
133 static inline void destroy_cb_info(struct cb_info *info)
138 static void resize_cb(struct livebox *handler, const struct packet *result, void *data)
141 struct cb_info *info = data;
147 destroy_cb_info(info);
151 } else if (packet_get(result, "i", &ret) != 1) {
152 ErrPrint("Invalid argument\n");
158 * In case of resize request,
159 * The livebox handler will not have resized value right after this callback,
160 * It can only get the new size when it makes updates.
162 * So the user can only get the resized value(result) from the first update event
163 * after this request.
166 DbgPrint("Resize request is done, prepare the size changed event\n");
167 handler->size_changed_cb = cb;
168 handler->size_cbdata = cbdata;
170 DbgPrint("Resize request is failed: %d\n", ret);
171 cb(handler, ret, cbdata);
175 static void text_signal_cb(struct livebox *handler, const struct packet *result, void *data)
179 struct cb_info *info = data;
184 destroy_cb_info(info);
188 } else if (packet_get(result, "i", &ret) != 1) {
189 ErrPrint("Invalid argument\n");
194 cb(handler, ret, cbdata);
198 static void set_group_ret_cb(struct livebox *handler, const struct packet *result, void *data)
203 struct cb_info *info = data;
207 destroy_cb_info(info);
211 } else if (packet_get(result, "i", &ret) != 1) {
212 ErrPrint("Invalid argument\n");
216 if (ret == 0) { /*!< Group information is successfully changed */
217 handler->group_changed_cb = cb;
218 handler->group_cbdata = cbdata;
220 cb(handler, ret, cbdata);
226 static void period_ret_cb(struct livebox *handler, const struct packet *result, void *data)
228 struct cb_info *info = data;
235 destroy_cb_info(info);
239 } else if (packet_get(result, "i", &ret) != 1) {
240 ErrPrint("Invalid argument\n");
245 handler->period_changed_cb = cb;
246 handler->period_cbdata = cbdata;
248 cb(handler, ret, cbdata);
252 static void del_ret_cb(struct livebox *handler, const struct packet *result, void *data)
254 struct cb_info *info = data;
261 destroy_cb_info(info);
264 ErrPrint("Connection lost?\n");
266 } else if (packet_get(result, "i", &ret) != 1) {
267 ErrPrint("Invalid argument\n");
272 DbgPrint("Returns %d (waiting deleted event)\n", ret);
273 handler->deleted_cb = cb;
274 handler->deleted_cbdata = cbdata;
276 cb(handler, ret, cbdata);
281 * Do not call the deleted callback from here.
282 * master will send the "deleted" event.
283 * Then invoke this callback.
285 * if (handler->deleted_cb)
286 * handler->deleted_cb(handler, ret, handler->deleted_cbdata);
290 static void new_ret_cb(struct livebox *handler, const struct packet *result, void *data)
293 struct cb_info *info = data;
299 destroy_cb_info(info);
303 } else if (packet_get(result, "i", &ret) != 1) {
308 DbgPrint("new request is sent, just waiting the created event\n");
309 handler->created_cb = cb;
310 handler->created_cbdata = cbdata;
314 * Don't go anymore ;)
320 * It means the current instance is not created,
321 * so user has to know about this.
322 * notice it to user using "deleted" event.
324 cb(handler, ret, cbdata);
330 static void pd_create_cb(struct livebox *handler, const struct packet *result, void *data)
332 struct cb_info *info = data;
339 destroy_cb_info(data);
343 } else if (packet_get(result, "i", &ret) != 1) {
348 DbgPrint("PD Created event handler prepared\n");
349 handler->pd_created_cb = cb;
350 handler->pd_created_cbdata = cbdata;
352 DbgPrint("Failed to create a PD\n");
353 cb(handler, ret, cbdata);
357 static void activated_cb(struct livebox *handler, const struct packet *result, void *data)
360 struct cb_info *info = data;
363 const char *pkgname = "";
367 destroy_cb_info(info);
371 } else if (packet_get(result, "is", &ret, &pkgname) != 2) {
376 cb(handler, ret, cbdata);
379 static void pd_destroy_cb(struct livebox *handler, const struct packet *result, void *data)
384 struct cb_info *info = data;
388 destroy_cb_info(info);
391 DbgPrint("Result is NIL (may connection lost)\n");
393 } else if (packet_get(result, "i", &ret) != 1) {
394 DbgPrint("Invalid parameter\n");
399 DbgPrint("PD Destroyed callback prepared\n");
400 handler->pd_destroyed_cb = cb;
401 handler->pd_destroyed_cbdata = cbdata;
403 DbgPrint("PD is not desroyed (forcely reset, pd flag)\n");
404 handler->is_pd_created = 0;
405 cb(handler, ret, cbdata);
409 static void delete_cluster_cb(struct livebox *handler, const struct packet *result, void *data)
411 struct cb_info *info = data;
418 destroy_cb_info(info);
422 } else if (packet_get(result, "i", &ret) != 1) {
426 DbgPrint("Delete category returns: %d\n", ret);
429 cb(handler, ret, cbdata);
432 static void delete_category_cb(struct livebox *handler, const struct packet *result, void *data)
434 struct cb_info *info = data;
441 destroy_cb_info(info);
445 else if (packet_get(result, "i", &ret) != 1)
448 DbgPrint("Delete category returns: %d\n", ret);
451 cb(handler, ret, cbdata);
454 static void pixmap_acquired_cb(struct livebox *handler, const struct packet *result, void *data)
459 struct cb_info *info = data;
463 destroy_cb_info(info);
466 ret = 0; /* PIXMAP 0 means error */
467 else if (packet_get(result, "i", &ret) != 1)
471 cb(handler, ret, cbdata);
474 static void pinup_done_cb(struct livebox *handler, const struct packet *result, void *data)
479 struct cb_info *info = data;
483 destroy_cb_info(info);
487 else if (packet_get(result, "i", &ret) != 1)
491 handler->pinup_cb = cb;
492 handler->pinup_cbdata = cbdata;
494 cb(handler, ret, cbdata);
498 static int send_mouse_event(struct livebox *handler, const char *event, double x, double y, int w, int h)
500 struct packet *packet;
503 timestamp = util_timestamp();
504 packet = packet_create_noack(event, "ssiiddd", handler->pkgname, handler->id, w, h,
507 ErrPrint("Failed to build param\n");
511 return master_rpc_request_only(handler, packet);
514 EAPI int livebox_init(void *disp)
518 if (s_info.init_count > 0) {
522 env = getenv("PROVIDER_DISABLE_PREVENT_OVERWRITE");
523 if (env && !strcasecmp(env, "true"))
524 s_info.prevent_overwrite = 1;
526 env = getenv("PROVIDER_EVENT_FILTER");
528 sscanf(env, "%lf", &MINIMUM_EVENT);
531 char filename[BUFSIZ];
532 snprintf(filename, sizeof(filename), "/tmp/%d.box.log", getpid());
533 __file_log_fp = fopen(filename, "w+t");
535 __file_log_fp = fdopen(1, "w+t");
537 critical_log_init("viewer");
538 livebox_service_init();
547 EAPI int livebox_fini(void)
549 if (s_info.init_count <= 0) {
550 DbgPrint("Didn't initialized\n");
555 if (s_info.init_count > 0) {
556 DbgPrint("init count : %d\n", s_info.init_count);
562 livebox_service_fini();
567 static inline char *lb_pkgname(const char *pkgname)
571 lb = livebox_service_pkgname(pkgname);
573 if (util_validate_livebox_package(pkgname) == 0)
574 return strdup(pkgname);
581 * Just wrapping the livebox_add_with_size function.
583 EAPI struct livebox *livebox_add(const char *pkgname, const char *content, const char *cluster, const char *category, double period, ret_cb_t cb, void *data)
585 return livebox_add_with_size(pkgname, content, cluster, category, period, LB_SIZE_TYPE_UNKNOWN, cb, data);
588 EAPI struct livebox *livebox_add_with_size(const char *pkgname, const char *content, const char *cluster, const char *category, double period, int type, ret_cb_t cb, void *data)
590 struct livebox *handler;
591 struct packet *packet;
596 if (!pkgname || !cluster || !category || width < 0 || height < 0) {
597 ErrPrint("Invalid arguments: pkgname[%p], cluster[%p], category[%p]\n",
598 pkgname, cluster, category);
602 if (type != LB_SIZE_TYPE_UNKNOWN)
603 livebox_service_get_size(type, &width, &height);
605 handler = calloc(1, sizeof(*handler));
607 ErrPrint("Error: %s\n", strerror(errno));
611 handler->pkgname = lb_pkgname(pkgname);
612 if (!handler->pkgname) {
613 ErrPrint("Error: %s\n", strerror(errno));
618 if (livebox_service_is_enabled(handler->pkgname) == 0) {
619 DbgPrint("Livebox [%s](%s) is disabled package\n", handler->pkgname, pkgname);
620 free(handler->pkgname);
626 handler->content = strdup(content);
627 if (!handler->content) {
628 ErrPrint("Error: %s\n", strerror(errno));
629 free(handler->pkgname);
634 handler->content = livebox_service_content(handler->pkgname);
637 handler->cluster = strdup(cluster);
638 if (!handler->cluster) {
639 ErrPrint("Error: %s\n", strerror(errno));
640 free(handler->content);
641 free(handler->pkgname);
646 handler->category = strdup(category);
647 if (!handler->category) {
648 ErrPrint("Error: %s\n", strerror(errno));
649 free(handler->cluster);
650 free(handler->content);
651 free(handler->pkgname);
657 cb = default_create_cb;
659 /* Data provider will set this */
660 handler->lb.type = _LB_TYPE_FILE;
661 handler->pd.type = _PD_TYPE_SCRIPT;
662 handler->lb.period = period;
664 /* Used for handling the mouse event on a box */
665 handler->lb.mouse_event = livebox_service_mouse_event(handler->pkgname);
667 /* Cluster infomration is not determined yet */
668 handler->nr_of_sizes = 0x01;
670 handler->timestamp = util_timestamp();
671 handler->is_user = 1;
672 handler->visible = LB_SHOW;
674 s_info.livebox_list = dlist_append(s_info.livebox_list, handler);
676 packet = packet_create("new", "dssssdii", handler->timestamp, handler->pkgname, handler->content, cluster, category, period, width, height);
678 ErrPrint("Failed to create a new packet\n");
679 free(handler->category);
680 free(handler->cluster);
681 free(handler->content);
682 free(handler->pkgname);
687 ret = master_rpc_async_request(handler, packet, 0, new_ret_cb, create_cb_info(cb, data));
689 ErrPrint("Failed to send a new packet\n");
690 free(handler->category);
691 free(handler->cluster);
692 free(handler->content);
693 free(handler->pkgname);
698 DbgPrint("Successfully sent a new request ([%lf] %s)\n", handler->timestamp, handler->pkgname);
699 handler->state = CREATE;
700 return lb_ref(handler);
703 EAPI double livebox_period(struct livebox *handler)
705 if (!handler || handler->state != CREATE || !handler->id) {
706 ErrPrint("Handler is not valid\n");
710 return handler->lb.period;
713 EAPI int livebox_set_period(struct livebox *handler, double period, ret_cb_t cb, void *data)
715 struct packet *packet;
717 if (!handler || handler->state != CREATE || !handler->id) {
718 ErrPrint("Handler is not valid\n");
722 if (!handler->is_user) {
723 ErrPrint("CA Livebox is not able to change the period\n");
727 if (handler->lb.period == period) {
728 DbgPrint("No changes\n");
732 if (handler->period_changed_cb)
733 DbgPrint("Already requested\n");
735 packet = packet_create("set_period", "ssd", handler->pkgname, handler->id, period);
737 ErrPrint("Failed to build a packet %s\n", handler->pkgname);
742 cb = default_period_changed_cb;
744 return master_rpc_async_request(handler, packet, 0, period_ret_cb, create_cb_info(cb, data));
747 EAPI int livebox_del(struct livebox *handler, ret_cb_t cb, void *data)
750 ErrPrint("Handler is NIL\n");
754 if (handler->state != CREATE) {
755 ErrPrint("Handler is already deleted\n");
759 handler->state = DELETE;
764 * The id is not determined yet.
765 * It means a user didn't receive created event yet.
766 * Then just stop to delete procedure from here.
767 * Because the "created" event handler will release this.
768 * By the way, if the user adds any callback for getting return status of this,
772 cb(handler, 0, data);
777 cb = default_delete_cb;
779 return lb_send_delete(handler, cb, data);
782 EAPI int livebox_set_fault_handler(int (*cb)(enum livebox_fault_type, const char *, const char *, const char *, void *), void *data)
784 struct fault_info *info;
789 info = malloc(sizeof(*info));
791 CRITICAL_LOG("Heap: %s\n", strerror(errno));
796 info->user_data = data;
798 s_info.fault_list = dlist_append(s_info.fault_list, info);
802 EAPI void *livebox_unset_fault_handler(int (*cb)(enum livebox_fault_type, const char *, const char *, const char *, void *))
804 struct fault_info *info;
807 dlist_foreach(s_info.fault_list, l, info) {
808 if (info->handler == cb) {
810 s_info.fault_list = dlist_remove(s_info.fault_list, l);
811 data = info->user_data;
821 EAPI int livebox_set_event_handler(int (*cb)(struct livebox *, enum livebox_event_type, void *), void *data)
823 struct event_info *info;
826 ErrPrint("Invalid argument cb is nil\n");
830 info = malloc(sizeof(*info));
832 CRITICAL_LOG("Heap: %s\n", strerror(errno));
837 info->user_data = data;
839 s_info.event_list = dlist_append(s_info.event_list, info);
843 EAPI void *livebox_unset_event_handler(int (*cb)(struct livebox *, enum livebox_event_type, void *))
845 struct event_info *info;
848 dlist_foreach(s_info.event_list, l, info) {
849 if (info->handler == cb) {
852 s_info.event_list = dlist_remove(s_info.event_list, l);
853 data = info->user_data;
863 EAPI int livebox_resize(struct livebox *handler, int type, ret_cb_t cb, void *data)
865 struct packet *packet;
870 ErrPrint("Handler is NIL\n");
874 if (handler->state != CREATE || !handler->id) {
875 ErrPrint("Handler is not valid\n");
879 if (!handler->is_user) {
880 ErrPrint("CA Livebox is not able to be resized\n");
884 if (livebox_service_get_size(type, &w, &h) != 0) {
885 ErrPrint("Invalid size type\n");
889 if (handler->lb.width == w && handler->lb.height == h) {
890 DbgPrint("No changes\n");
894 if (handler->size_changed_cb)
895 DbgPrint("Already pended\n");
897 packet = packet_create("resize", "ssii", handler->pkgname, handler->id, w, h);
899 ErrPrint("Failed to build param\n");
904 cb = default_lb_size_changed_cb;
906 return master_rpc_async_request(handler, packet, 0, resize_cb, create_cb_info(cb, data));
909 EAPI int livebox_click(struct livebox *handler, double x, double y)
911 struct packet *packet;
916 ErrPrint("Handler is NIL\n");
920 if (handler->state != CREATE || !handler->id) {
921 ErrPrint("Handler is not valid\n");
925 if (handler->lb.auto_launch)
926 if (aul_launch_app(handler->lb.auto_launch, NULL) < 0)
927 ErrPrint("Failed to launch app %s\n", handler->lb.auto_launch);
929 timestamp = util_timestamp();
930 packet = packet_create_noack("clicked", "sssddd", handler->pkgname, handler->id, "clicked", timestamp, x, y);
932 ErrPrint("Failed to build param\n");
936 ret = master_rpc_request_only(handler, packet);
938 if (!handler->lb.mouse_event && (handler->lb.type == _LB_TYPE_BUFFER || handler->lb.type == _LB_TYPE_SCRIPT)) {
939 int ret; /* Shadow variable */
940 ret = send_mouse_event(handler, "lb_mouse_down", x, y, handler->lb.width, handler->lb.height);
942 DbgPrint("Failed to send Down: %d\n", ret);
944 ret = send_mouse_event(handler, "lb_mouse_move", x, y, handler->lb.width, handler->lb.height);
946 DbgPrint("Failed to send Move: %d\n", ret);
948 ret = send_mouse_event(handler, "lb_mouse_up", x, y, handler->lb.width, handler->lb.height);
950 DbgPrint("Failed to send Up: %d\n", ret);
956 EAPI int livebox_has_pd(struct livebox *handler)
959 ErrPrint("Handler is NIL\n");
963 if (handler->state != CREATE || !handler->id) {
964 ErrPrint("Handler is not valid\n");
968 return !!handler->pd.data.fb;
971 EAPI int livebox_pd_is_created(struct livebox *handler)
974 ErrPrint("Handler is NIL\n");
978 if (!handler->pd.data.fb || handler->state != CREATE || !handler->id) {
979 ErrPrint("Handler is not valid\n");
983 return handler->is_pd_created;
986 EAPI int livebox_create_pd(struct livebox *handler, ret_cb_t cb, void *data)
988 return livebox_create_pd_with_position(handler, -1.0, -1.0, cb, data);
991 EAPI int livebox_create_pd_with_position(struct livebox *handler, double x, double y, ret_cb_t cb, void *data)
993 struct packet *packet;
996 ErrPrint("Handler is NIL\n");
1000 if (!handler->pd.data.fb || handler->state != CREATE || !handler->id) {
1001 ErrPrint("Handler is not valid\n");
1005 if (handler->is_pd_created == 1) {
1006 DbgPrint("PD already created\n");
1010 packet = packet_create("create_pd", "ssdd", handler->pkgname, handler->id, x, y);
1012 ErrPrint("Failed to build param\n");
1017 handler->pd_created_cb = default_pd_created_cb;
1019 return master_rpc_async_request(handler, packet, 0, pd_create_cb, create_cb_info(cb, data));
1022 EAPI int livebox_activate(const char *pkgname, ret_cb_t cb, void *data)
1024 struct packet *packet;
1029 packet = packet_create("activate_package", "s", pkgname);
1031 ErrPrint("Failed to build a param\n");
1035 return master_rpc_async_request(NULL, packet, 0, activated_cb, create_cb_info(cb, data));
1038 EAPI int livebox_destroy_pd(struct livebox *handler, ret_cb_t cb, void *data)
1040 struct packet *packet;
1043 ErrPrint("Handler is NIL\n");
1047 if (!handler->pd.data.fb || handler->state != CREATE || !handler->id) {
1048 ErrPrint("Handler is not valid\n");
1052 if (!handler->is_pd_created) {
1053 ErrPrint("PD is not created\n");
1057 packet = packet_create("destroy_pd", "ss", handler->pkgname, handler->id);
1059 ErrPrint("Failed to build a param\n");
1064 cb = default_pd_destroyed_cb;
1066 return master_rpc_async_request(handler, packet, 0, pd_destroy_cb, create_cb_info(cb, data));
1069 EAPI int livebox_content_event(struct livebox *handler, enum content_event_type type, double x, double y)
1073 char cmd[20] = { '\0', };
1077 ErrPrint("Handler is NIL\n");
1081 if (handler->state != CREATE || !handler->id) {
1082 ErrPrint("Handler is not valid\n");
1086 if (type & CONTENT_EVENT_PD_MASK) {
1087 if (!handler->is_pd_created) {
1088 ErrPrint("PD is not created\n");
1092 if (type & CONTENT_EVENT_MOUSE_MASK) {
1093 if (!handler->pd.data.fb) {
1094 ErrPrint("Handler is not valid\n");
1098 if (type & CONTENT_EVENT_MOUSE_MOVE) {
1099 if (fabs(x - handler->pd.x) < MINIMUM_EVENT && fabs(y - handler->pd.y) < MINIMUM_EVENT)
1104 w = handler->pd.width;
1105 h = handler->pd.height;
1111 if (type & CONTENT_EVENT_MOUSE_MASK) {
1112 if (!handler->lb.mouse_event) {
1113 ErrPrint("Box is not support the mouse event\n");
1117 if (!handler->lb.data.fb) {
1118 ErrPrint("Handler is not valid\n");
1122 if (type & CONTENT_EVENT_MOUSE_MOVE) {
1123 if (fabs(x - handler->lb.x) < MINIMUM_EVENT && fabs(y - handler->lb.y) < MINIMUM_EVENT)
1128 w = handler->lb.width;
1129 h = handler->lb.height;
1136 switch ((type & ~CONTENT_EVENT_PD_MASK)) {
1137 case CONTENT_EVENT_ACCESS_READ | CONTENT_EVENT_ACCESS_MASK:
1138 strcpy(ptr, "_access_read");
1140 case CONTENT_EVENT_ACCESS_READ_PREV | CONTENT_EVENT_ACCESS_MASK:
1141 strcpy(ptr, "_access_read_prev");
1143 case CONTENT_EVENT_ACCESS_READ_NEXT | CONTENT_EVENT_ACCESS_MASK:
1144 strcpy(ptr, "_access_read_next");
1146 case CONTENT_EVENT_ACCESS_ACTIVATE | CONTENT_EVENT_ACCESS_MASK:
1147 strcpy(ptr, "_access_activate");
1149 case CONTENT_EVENT_ACCESS_UP | CONTENT_EVENT_ACCESS_MASK:
1150 strcpy(ptr, "_access_up");
1152 case CONTENT_EVENT_ACCESS_DOWN | CONTENT_EVENT_ACCESS_MASK:
1153 strcpy(ptr, "_access_down");
1155 case CONTENT_EVENT_MOUSE_ENTER | CONTENT_EVENT_MOUSE_MASK:
1156 strcpy(ptr, "_mouse_enter");
1158 case CONTENT_EVENT_MOUSE_LEAVE | CONTENT_EVENT_MOUSE_MASK:
1159 strcpy(ptr, "_mouse_leave");
1161 case CONTENT_EVENT_MOUSE_UP | CONTENT_EVENT_MOUSE_MASK:
1162 strcpy(ptr, "_mouse_up");
1164 case CONTENT_EVENT_MOUSE_DOWN | CONTENT_EVENT_MOUSE_MASK:
1165 strcpy(ptr, "_mouse_down");
1167 case CONTENT_EVENT_MOUSE_MOVE | CONTENT_EVENT_MOUSE_MASK:
1168 strcpy(ptr, "_mouse_move");
1170 case CONTENT_EVENT_KEY_DOWN | CONTENT_EVENT_KEY_MASK:
1171 strcpy(ptr, "_key_down");
1173 case CONTENT_EVENT_KEY_UP | CONTENT_EVENT_KEY_MASK:
1174 strcpy(ptr, "_key_up");
1177 ErrPrint("Invalid event type\n");
1181 return send_mouse_event(handler, cmd, x, y, w, h);
1184 EAPI const char *livebox_filename(struct livebox *handler)
1187 ErrPrint("Handler is NIL\n");
1191 if (handler->state != CREATE || !handler->id) {
1192 ErrPrint("Handler is not valid\n");
1196 if (handler->filename)
1197 return handler->filename;
1200 return util_uri_to_path(handler->id);
1203 EAPI int livebox_get_pdsize(struct livebox *handler, int *w, int *h)
1209 ErrPrint("Handler is NIL\n");
1213 if (handler->state != CREATE || !handler->id) {
1214 ErrPrint("Handler is not valid\n");
1223 *w = handler->pd.width;
1224 *h = handler->pd.height;
1226 switch (handler->pd.type) {
1227 case _PD_TYPE_BUFFER:
1228 case _PD_TYPE_SCRIPT:
1229 if (!handler->is_pd_created) {
1230 DbgPrint("Buffer is not created yet - reset size\n");
1242 EAPI int livebox_size(struct livebox *handler)
1248 ErrPrint("Handler is NIL\n");
1252 if (handler->state != CREATE || !handler->id) {
1253 ErrPrint("Handler is not valid\n");
1257 w = handler->lb.width;
1258 h = handler->lb.height;
1260 switch (handler->lb.type) {
1261 case _LB_TYPE_BUFFER:
1262 case _LB_TYPE_SCRIPT:
1263 if (!fb_is_created(handler->lb.data.fb)) {
1264 DbgPrint("Buffer is not created yet - reset size\n");
1273 return livebox_service_size_type(w, h);
1276 EAPI int livebox_set_group(struct livebox *handler, const char *cluster, const char *category, ret_cb_t cb, void *data)
1278 struct packet *packet;
1281 ErrPrint("Handler is NIL\n");
1285 if (!cluster || !category || handler->state != CREATE || !handler->id) {
1286 ErrPrint("Invalid argument\n");
1290 if (!handler->is_user) {
1291 ErrPrint("CA Livebox is not able to change the group\n");
1295 if (!strcmp(handler->cluster, cluster) && !strcmp(handler->category, category)) {
1296 DbgPrint("No changes\n");
1300 if (handler->group_changed_cb)
1301 DbgPrint("Already sent\n");
1303 packet = packet_create("change_group", "ssss", handler->pkgname, handler->id, cluster, category);
1305 ErrPrint("Failed to build a param\n");
1310 cb = default_group_changed_cb;
1312 return master_rpc_async_request(handler, packet, 0, set_group_ret_cb, create_cb_info(cb, data));
1315 EAPI int livebox_get_group(struct livebox *handler, char ** const cluster, char ** const category)
1318 ErrPrint("Handler is NIL\n");
1322 if (!cluster || !category || handler->state != CREATE || !handler->id) {
1323 ErrPrint("Invalid argument\n");
1327 *cluster = handler->cluster;
1328 *category = handler->category;
1332 EAPI int livebox_get_supported_sizes(struct livebox *handler, int *cnt, int *size_list)
1337 if (!handler || !size_list) {
1338 ErrPrint("Invalid argument, handler(%p), size_list(%p)\n", handler, size_list);
1342 if (!cnt || handler->state != CREATE || !handler->id) {
1343 ErrPrint("Handler is not valid\n");
1347 for (j = i = 0; i < NR_OF_SIZE_LIST; i++) {
1348 if (handler->lb.size_list & (0x01 << i)) {
1352 size_list[j++] = (0x01 << i);
1360 EAPI const char *livebox_pkgname(struct livebox *handler)
1363 ErrPrint("Handler is NIL\n");
1367 if (handler->state != CREATE) {
1368 ErrPrint("Handler is not valid\n");
1372 return handler->pkgname;
1375 EAPI double livebox_priority(struct livebox *handler)
1378 ErrPrint("Handler is NIL\n");
1382 if (handler->state != CREATE || !handler->id) {
1383 ErrPrint("Handler is not valid (%p)\n", handler);
1387 return handler->lb.priority;
1390 EAPI int livebox_delete_cluster(const char *cluster, ret_cb_t cb, void *data)
1392 struct packet *packet;
1394 packet = packet_create("delete_cluster", "s", cluster);
1396 ErrPrint("Failed to build a param\n");
1400 return master_rpc_async_request(NULL, packet, 0, delete_cluster_cb, create_cb_info(cb, data));
1403 EAPI int livebox_delete_category(const char *cluster, const char *category, ret_cb_t cb, void *data)
1405 struct packet *packet;
1407 packet = packet_create("delete_category", "ss", cluster, category);
1409 ErrPrint("Failed to build a param\n");
1413 return master_rpc_async_request(NULL, packet, 0, delete_category_cb, create_cb_info(cb, data));
1416 EAPI enum livebox_lb_type livebox_lb_type(struct livebox *handler)
1419 ErrPrint("Handler is NIL\n");
1420 return LB_TYPE_INVALID;
1423 if (handler->state != CREATE || !handler->id) {
1424 ErrPrint("Handler is not valid\n");
1425 return LB_TYPE_INVALID;
1428 switch (handler->lb.type) {
1430 return LB_TYPE_IMAGE;
1431 case _LB_TYPE_BUFFER:
1432 case _LB_TYPE_SCRIPT:
1435 id = fb_id(handler->lb.data.fb);
1436 if (id && !strncasecmp(id, SCHEMA_PIXMAP, strlen(SCHEMA_PIXMAP)))
1437 return LB_TYPE_PIXMAP;
1439 return LB_TYPE_BUFFER;
1441 return LB_TYPE_TEXT;
1446 return LB_TYPE_INVALID;
1449 EAPI enum livebox_pd_type livebox_pd_type(struct livebox *handler)
1452 ErrPrint("Handler is NIL\n");
1453 return PD_TYPE_INVALID;
1456 if (handler->state != CREATE || !handler->id) {
1457 ErrPrint("Handler is not valid\n");
1458 return PD_TYPE_INVALID;
1461 switch (handler->pd.type) {
1463 return PD_TYPE_TEXT;
1464 case _PD_TYPE_BUFFER:
1465 case _PD_TYPE_SCRIPT:
1468 id = fb_id(handler->pd.data.fb);
1469 if (id && !strncasecmp(id, SCHEMA_PIXMAP, strlen(SCHEMA_PIXMAP)))
1470 return PD_TYPE_PIXMAP;
1472 return PD_TYPE_BUFFER;
1477 return PD_TYPE_INVALID;
1480 EAPI int livebox_set_pd_text_handler(struct livebox *handler, struct livebox_script_operators *ops)
1483 ErrPrint("Handler is NIL\n");
1487 if (handler->state != CREATE) {
1488 ErrPrint("Handler is not valid\n");
1492 memcpy(&handler->pd.data.ops, ops, sizeof(*ops));
1496 EAPI int livebox_set_text_handler(struct livebox *handler, struct livebox_script_operators *ops)
1499 ErrPrint("Handler is NIL\n");
1503 if (handler->state != CREATE) {
1504 ErrPrint("Handler is not valid\n");
1508 memcpy(&handler->lb.data.ops, ops, sizeof(*ops));
1512 EAPI int livebox_acquire_lb_pixmap(struct livebox *handler, ret_cb_t cb, void *data)
1514 struct packet *packet;
1518 ErrPrint("Handler is NIL\n");
1522 if (handler->state != CREATE || !handler->id) {
1523 ErrPrint("Invalid handle\n");
1527 if (handler->lb.type != _LB_TYPE_SCRIPT && handler->lb.type != _LB_TYPE_BUFFER) {
1528 ErrPrint("Handler is not valid type\n");
1532 id = fb_id(handler->lb.data.fb);
1533 if (!id || strncasecmp(id, SCHEMA_PIXMAP, strlen(SCHEMA_PIXMAP)))
1536 packet = packet_create("lb_acquire_pixmap", "ss", handler->pkgname, handler->id);
1538 ErrPrint("Failed to build a param\n");
1542 return master_rpc_async_request(handler, packet, 0, pixmap_acquired_cb, create_cb_info(cb, data));
1545 EAPI int livebox_release_lb_pixmap(struct livebox *handler, int pixmap)
1547 struct packet *packet;
1550 ErrPrint("Handler is NIL\n");
1554 if (handler->state != CREATE || !handler->id) {
1555 ErrPrint("Invalid handle\n");
1559 if (handler->lb.type != _LB_TYPE_SCRIPT && handler->lb.type != _LB_TYPE_BUFFER) {
1560 ErrPrint("Handler is not valid type\n");
1564 packet = packet_create_noack("lb_release_pixmap", "ssi", handler->pkgname, handler->id, pixmap);
1566 ErrPrint("Failed to build a param\n");
1570 return master_rpc_request_only(handler, packet);
1573 EAPI int livebox_acquire_pd_pixmap(struct livebox *handler, ret_cb_t cb, void *data)
1575 struct packet *packet;
1579 ErrPrint("Handler is NIL\n");
1583 if (handler->state != CREATE || !handler->id) {
1584 ErrPrint("Invalid handle\n");
1588 if (handler->pd.type != _PD_TYPE_SCRIPT && handler->pd.type != _PD_TYPE_BUFFER) {
1589 ErrPrint("Handler is not valid type\n");
1593 id = fb_id(handler->pd.data.fb);
1594 if (!id || strncasecmp(id, SCHEMA_PIXMAP, strlen(SCHEMA_PIXMAP)))
1597 packet = packet_create("pd_acquire_pixmap", "ss", handler->pkgname, handler->id);
1599 ErrPrint("Failed to build a param\n");
1603 return master_rpc_async_request(handler, packet, 0, pixmap_acquired_cb, create_cb_info(cb, data));
1606 EAPI int livebox_pd_pixmap(const struct livebox *handler)
1612 ErrPrint("Handler is NIL\n");
1616 if (handler->state != CREATE || !handler->id) {
1617 ErrPrint("Invalid handler\n");
1621 if (handler->pd.type != _PD_TYPE_SCRIPT && handler->pd.type != _PD_TYPE_BUFFER) {
1622 ErrPrint("Invalid handler\n");
1626 id = fb_id(handler->pd.data.fb);
1627 if (id && sscanf(id, SCHEMA_PIXMAP "%d", &pixmap) != 1) {
1628 ErrPrint("PIXMAP Id is not valid\n");
1635 EAPI int livebox_lb_pixmap(const struct livebox *handler)
1641 ErrPrint("Handler is NIL\n");
1645 if (handler->state != CREATE || !handler->id) {
1646 ErrPrint("Invalid handler\n");
1650 if (handler->lb.type != _LB_TYPE_SCRIPT && handler->lb.type != _LB_TYPE_BUFFER) {
1651 ErrPrint("Invalid handler\n");
1655 id = fb_id(handler->lb.data.fb);
1656 if (id && sscanf(id, SCHEMA_PIXMAP "%d", &pixmap) != 1) {
1657 ErrPrint("PIXMAP Id is not valid\n");
1664 EAPI int livebox_release_pd_pixmap(struct livebox *handler, int pixmap)
1666 struct packet *packet;
1669 ErrPrint("Handler is NIL\n");
1673 if (handler->state != CREATE || !handler->id) {
1674 ErrPrint("Invalid handle\n");
1678 if (handler->pd.type != _PD_TYPE_SCRIPT && handler->pd.type != _PD_TYPE_BUFFER) {
1679 ErrPrint("Handler is not valid type\n");
1683 packet = packet_create_noack("pd_release_pixmap", "ssi", handler->pkgname, handler->id, pixmap);
1685 ErrPrint("Failed to build a param\n");
1689 return master_rpc_request_only(handler, packet);
1692 EAPI void *livebox_acquire_fb(struct livebox *handler)
1695 ErrPrint("Handler is NIL\n");
1699 if (handler->state != CREATE || !handler->id) {
1700 ErrPrint("Invalid handle\n");
1704 if (handler->lb.type != _LB_TYPE_SCRIPT && handler->lb.type != _LB_TYPE_BUFFER) {
1705 ErrPrint("Handler is not valid type\n");
1709 return fb_acquire_buffer(handler->lb.data.fb);
1712 EAPI int livebox_release_fb(void *buffer)
1714 return fb_release_buffer(buffer);
1717 EAPI int livebox_fb_refcnt(void *buffer)
1719 return fb_refcnt(buffer);
1722 EAPI void *livebox_acquire_pdfb(struct livebox *handler)
1725 ErrPrint("Handler is NIL\n");
1729 if (handler->state != CREATE || !handler->id) {
1730 ErrPrint("Invalid handler\n");
1734 if (handler->pd.type != _PD_TYPE_SCRIPT && handler->pd.type != _PD_TYPE_BUFFER) {
1735 ErrPrint("Handler is not valid type\n");
1739 return fb_acquire_buffer(handler->pd.data.fb);
1742 EAPI int livebox_release_pdfb(void *buffer)
1744 return fb_release_buffer(buffer);
1747 EAPI int livebox_pdfb_refcnt(void *buffer)
1749 return fb_refcnt(buffer);
1752 EAPI int livebox_pdfb_bufsz(struct livebox *handler)
1755 ErrPrint("Handler is NIL\n");
1759 if (handler->state != CREATE || !handler->id) {
1760 ErrPrint("Handler is not valid\n");
1764 return fb_size(handler->pd.data.fb);
1767 EAPI int livebox_lbfb_bufsz(struct livebox *handler)
1770 ErrPrint("Handler is NIL\n");
1774 if (handler->state != CREATE || !handler->id) {
1775 ErrPrint("Handler is not valid\n");
1779 return fb_size(handler->lb.data.fb);
1782 EAPI int livebox_is_user(struct livebox *handler)
1785 ErrPrint("Handler is NIL\n");
1789 if (handler->state != CREATE) {
1790 ErrPrint("Handler is invalid\n");
1794 return handler->is_user;
1797 EAPI int livebox_set_pinup(struct livebox *handler, int flag, ret_cb_t cb, void *data)
1799 struct packet *packet;
1802 ErrPrint("Handler is NIL\n");
1806 if (handler->state != CREATE || !handler->id) {
1807 ErrPrint("Handler is not valid\n");
1811 if (handler->is_pinned_up == flag) {
1812 DbgPrint("No changes\n");
1816 if (handler->pinup_cb)
1817 DbgPrint("Already sent\n");
1819 packet = packet_create("pinup_changed", "ssi", handler->pkgname, handler->id, flag);
1821 ErrPrint("Failed to build a param\n");
1826 cb = default_pinup_cb;
1828 return master_rpc_async_request(handler, packet, 0, pinup_done_cb, create_cb_info(cb, data));
1831 EAPI int livebox_is_pinned_up(struct livebox *handler)
1834 ErrPrint("Handler is NIL\n");
1838 if (handler->state != CREATE || !handler->id)
1841 return handler->is_pinned_up;
1844 EAPI int livebox_has_pinup(struct livebox *handler)
1847 ErrPrint("Handler is NIL\n");
1851 if (handler->state != CREATE || !handler->id)
1854 return handler->lb.pinup_supported;
1857 EAPI int livebox_set_data(struct livebox *handler, void *data)
1860 ErrPrint("Handler is NIL\n");
1864 if (handler->state != CREATE)
1867 handler->data = data;
1871 EAPI void *livebox_get_data(struct livebox *handler)
1874 ErrPrint("Handler is NIL\n");
1878 if (handler->state != CREATE)
1881 return handler->data;
1884 EAPI int livebox_is_exists(const char *pkgname)
1888 lb = lb_pkgname(pkgname);
1897 EAPI const char *livebox_content(struct livebox *handler)
1900 ErrPrint("Handler is NIL\n");
1904 if (handler->state != CREATE)
1907 return handler->content;
1910 EAPI const char *livebox_category_title(struct livebox *handler)
1913 ErrPrint("Handler is NIL\n");
1917 if (handler->state != CREATE)
1920 return handler->title;
1923 EAPI int livebox_emit_text_signal(struct livebox *handler, const char *emission, const char *source, double sx, double sy, double ex, double ey, ret_cb_t cb, void *data)
1925 struct packet *packet;
1928 ErrPrint("Handler is NIL\n");
1932 if ((handler->lb.type != _LB_TYPE_TEXT && handler->pd.type != _PD_TYPE_TEXT) || handler->state != CREATE || !handler->id) {
1933 ErrPrint("Handler is not valid\n");
1943 packet = packet_create("text_signal", "ssssdddd",
1944 handler->pkgname, handler->id, emission, source, sx, sy, ex, ey);
1946 ErrPrint("Failed to build a param\n");
1950 return master_rpc_async_request(handler, packet, 0, text_signal_cb, create_cb_info(cb, data));
1953 EAPI int livebox_subscribe_group(const char *cluster, const char *category)
1955 struct packet *packet;
1959 * Validate the group info using DB
1960 * If the group info is not valid, do not send this request
1963 packet = packet_create_noack("subscribe", "ss", cluster ? cluster : "", category ? category : "");
1965 ErrPrint("Failed to create a packet\n");
1969 return master_rpc_request_only(NULL, packet);
1972 EAPI int livebox_unsubscribe_group(const char *cluster, const char *category)
1974 struct packet *packet;
1978 * Validate the group info using DB
1979 * If the group info is not valid, do not send this request
1980 * AND Check the subscribed or not too
1983 packet = packet_create_noack("unsubscribe", "ss", cluster ? cluster : "", category ? category : "");
1985 ErrPrint("Failed to create a packet\n");
1989 return master_rpc_request_only(NULL, packet);
1992 EAPI int livebox_refresh(struct livebox *handler)
1994 struct packet *packet;
1997 ErrPrint("Hnalder is NIL\n");
2001 if (handler->state != CREATE || !handler->id)
2004 packet = packet_create_noack("update", "ss", handler->pkgname, handler->id);
2006 ErrPrint("Failed to create a packet\n");
2010 return master_rpc_request_only(handler, packet);
2013 EAPI int livebox_refresh_group(const char *cluster, const char *category)
2015 struct packet *packet;
2017 if (!cluster || !category) {
2018 ErrPrint("Invalid argument\n");
2022 packet = packet_create_noack("refresh_group", "ss", cluster, category);
2024 ErrPrint("Failed to create a packet\n");
2028 return master_rpc_request_only(NULL, packet);
2031 EAPI int livebox_set_visibility(struct livebox *handler, enum livebox_visible_state state)
2033 struct packet *packet;
2037 ErrPrint("Handler is NIL\n");
2041 if (handler->state != CREATE || !handler->id)
2044 if (!handler->is_user) {
2045 /* System cluster livebox cannot be changed its visible states */
2046 if (state == LB_HIDE_WITH_PAUSE) {
2047 ErrPrint("CA Livebox is not able to change the visibility\n");
2052 if (handler->visible == state)
2055 packet = packet_create_noack("change,visibility", "ssi", handler->pkgname, handler->id, (int)state);
2057 ErrPrint("Failed to create a packet\n");
2061 ret = master_rpc_request_only(handler, packet);
2063 handler->visible = state;
2068 EAPI enum livebox_visible_state livebox_visibility(struct livebox *handler)
2071 ErrPrint("Handler is NIL\n");
2072 return LB_VISIBLE_ERROR;
2075 if (handler->state != CREATE)
2076 return LB_VISIBLE_ERROR;
2078 return handler->visible;
2081 int lb_set_group(struct livebox *handler, const char *cluster, const char *category)
2087 pc = strdup(cluster);
2089 CRITICAL_LOG("Heap: %s (cluster: %s)\n", strerror(errno), cluster);
2095 ps = strdup(category);
2097 CRITICAL_LOG("Heap: %s (category: %s)\n", strerror(errno), category);
2103 if (handler->cluster)
2104 free(handler->cluster);
2106 if (handler->category)
2107 free(handler->category);
2109 handler->cluster = pc;
2110 handler->category = ps;
2115 void lb_set_size(struct livebox *handler, int w, int h)
2117 handler->lb.width = w;
2118 handler->lb.height = h;
2121 void lb_set_pdsize(struct livebox *handler, int w, int h)
2123 handler->pd.width = w;
2124 handler->pd.height = h;
2127 void lb_invoke_fault_handler(enum livebox_fault_type event, const char *pkgname, const char *file, const char *func)
2131 struct fault_info *info;
2133 dlist_foreach_safe(s_info.fault_list, l, n, info) {
2134 if (info->handler(event, pkgname, file, func, info->user_data) == EXIT_FAILURE)
2135 s_info.fault_list = dlist_remove(s_info.fault_list, l);
2139 void lb_invoke_event_handler(struct livebox *handler, enum livebox_event_type event)
2143 struct event_info *info;
2145 dlist_foreach_safe(s_info.event_list, l, n, info) {
2146 if (info->handler(handler, event, info->user_data) == EXIT_FAILURE)
2147 s_info.event_list = dlist_remove(s_info.event_list, l);
2151 struct livebox *lb_find_livebox(const char *pkgname, const char *id)
2154 struct livebox *handler;
2156 dlist_foreach(s_info.livebox_list, l, handler) {
2160 if (!strcmp(handler->pkgname, pkgname) && !strcmp(handler->id, id))
2167 struct livebox *lb_find_livebox_by_timestamp(double timestamp)
2170 struct livebox *handler;
2172 dlist_foreach(s_info.livebox_list, l, handler) {
2173 if (handler->timestamp == timestamp)
2180 static inline char *get_file_kept_in_safe(const char *id)
2187 path = util_uri_to_path(id);
2189 ErrPrint("Invalid URI(%s)\n", id);
2196 if (s_info.prevent_overwrite) {
2197 new_path = strdup(path);
2199 ErrPrint("Heap: %s\n", strerror(errno));
2208 while (base_idx > 0 && path[base_idx] != '/') base_idx--;
2209 base_idx += (path[base_idx] == '/');
2211 new_path = malloc(len + 10);
2213 ErrPrint("Heap: %s\n", strerror(errno));
2217 strncpy(new_path, path, base_idx);
2218 snprintf(new_path + base_idx, len + 10 - base_idx, "reader/%s", path + base_idx);
2222 struct livebox *lb_new_livebox(const char *pkgname, const char *id, double timestamp)
2224 struct livebox *handler;
2226 handler = calloc(1, sizeof(*handler));
2228 ErrPrint("Failed to create a new livebox\n");
2232 handler->pkgname = strdup(pkgname);
2233 if (!handler->pkgname) {
2234 ErrPrint("%s\n", strerror(errno));
2239 handler->id = strdup(id);
2241 ErrPrint("%s\n", strerror(errno));
2242 free(handler->pkgname);
2247 handler->filename = get_file_kept_in_safe(id);
2248 if (!handler->filename) {
2249 handler->filename = strdup(util_uri_to_path(id));
2250 if (!handler->filename)
2251 ErrPrint("Error: %s\n", strerror(errno));
2254 handler->timestamp = timestamp;
2255 handler->lb.type = _LB_TYPE_FILE;
2256 handler->pd.type = _PD_TYPE_SCRIPT;
2257 handler->state = CREATE;
2258 handler->visible = LB_SHOW;
2260 s_info.livebox_list = dlist_append(s_info.livebox_list, handler);
2265 int lb_delete_all(void)
2269 struct livebox *handler;
2271 dlist_foreach_safe(s_info.livebox_list, l, n, handler) {
2272 lb_invoke_event_handler(handler, LB_EVENT_DELETED);
2279 int lb_set_content(struct livebox *handler, const char *content)
2281 if (handler->content) {
2282 free(handler->content);
2283 handler->content = NULL;
2287 handler->content = strdup(content);
2288 if (!handler->content) {
2289 CRITICAL_LOG("Heap: %s (content: %s)\n", strerror(errno), content);
2297 int lb_set_title(struct livebox *handler, const char *title)
2299 if (handler->title) {
2300 free(handler->title);
2301 handler->title = NULL;
2305 handler->title = strdup(title);
2306 if (!handler->title) {
2307 CRITICAL_LOG("Heap: %s (title: %s)\n", strerror(errno), title);
2315 void lb_set_size_list(struct livebox *handler, int size_list)
2317 handler->lb.size_list = size_list;
2320 void lb_set_auto_launch(struct livebox *handler, const char *auto_launch)
2322 if (!strlen(auto_launch))
2325 handler->lb.auto_launch = strdup(auto_launch);
2326 if (!handler->lb.auto_launch)
2327 ErrPrint("Heap: %s\n", strerror(errno));
2330 void lb_set_priority(struct livebox *handler, double priority)
2332 handler->lb.priority = priority;
2335 void lb_set_id(struct livebox *handler, const char *id)
2340 handler->id = strdup(id);
2342 ErrPrint("Error: %s\n", strerror(errno));
2344 if (handler->filename)
2345 free(handler->filename);
2347 handler->filename = get_file_kept_in_safe(id);
2348 if (!handler->filename) {
2349 handler->filename = strdup(util_uri_to_path(id));
2350 if (!handler->filename)
2351 ErrPrint("Error: %s\n", strerror(errno));
2355 int lb_set_lb_fb(struct livebox *handler, const char *filename)
2362 fb = handler->lb.data.fb;
2363 if (fb && !strcmp(fb_id(fb), filename)) /*!< BUFFER is not changed, */
2366 handler->lb.data.fb = NULL;
2368 if (!filename || filename[0] == '\0') {
2374 handler->lb.data.fb = fb_create(filename, handler->lb.width, handler->lb.height);
2375 if (!handler->lb.data.fb) {
2376 ErrPrint("Faield to create a FB\n");
2388 int lb_set_pd_fb(struct livebox *handler, const char *filename)
2395 fb = handler->pd.data.fb;
2396 if (fb && !strcmp(fb_id(fb), filename)) {
2397 /* BUFFER is not changed, just update the content */
2400 handler->pd.data.fb = NULL;
2402 if (!filename || filename[0] == '\0') {
2408 handler->pd.data.fb = fb_create(filename, handler->pd.width, handler->pd.height);
2409 if (!handler->pd.data.fb) {
2410 ErrPrint("Failed to create a FB\n");
2421 struct fb_info *lb_get_lb_fb(struct livebox *handler)
2423 return handler->lb.data.fb;
2426 struct fb_info *lb_get_pd_fb(struct livebox *handler)
2428 return handler->pd.data.fb;
2431 void lb_set_user(struct livebox *handler, int user)
2433 handler->is_user = user;
2436 void lb_set_pinup(struct livebox *handler, int pinup_supported)
2438 handler->lb.pinup_supported = pinup_supported;
2441 void lb_set_text_lb(struct livebox *handler)
2443 handler->lb.type = _LB_TYPE_TEXT;
2446 void lb_set_text_pd(struct livebox *handler)
2448 handler->pd.type = _PD_TYPE_TEXT;
2451 int lb_text_lb(struct livebox *handler)
2453 return handler->lb.type == _LB_TYPE_TEXT;
2456 int lb_text_pd(struct livebox *handler)
2458 return handler->pd.type == _PD_TYPE_TEXT;
2461 void lb_set_period(struct livebox *handler, double period)
2463 handler->lb.period = period;
2466 struct livebox *lb_ref(struct livebox *handler)
2475 struct livebox *lb_unref(struct livebox *handler)
2481 if (handler->refcnt > 0)
2484 dlist_remove_data(s_info.livebox_list, handler);
2486 handler->state = DESTROYED;
2487 free(handler->cluster);
2488 free(handler->category);
2490 free(handler->pkgname);
2491 free(handler->filename);
2492 free(handler->lb.auto_launch);
2494 if (handler->lb.data.fb) {
2495 fb_destroy(handler->lb.data.fb);
2496 handler->lb.data.fb = NULL;
2499 if (handler->pd.data.fb) {
2500 fb_destroy(handler->pd.data.fb);
2501 handler->pd.data.fb = NULL;
2508 int lb_send_delete(struct livebox *handler, ret_cb_t cb, void *data)
2510 struct packet *packet;
2512 if (!cb && !!data) {
2513 ErrPrint("Invalid argument\n");
2517 if (handler->deleted_cb) {
2518 ErrPrint("Already in-progress\n");
2519 return -EINPROGRESS;
2522 packet = packet_create("delete", "ss", handler->pkgname, handler->id);
2524 ErrPrint("Failed to build a param\n");
2526 cb(handler, -EFAULT, data);
2532 cb = default_delete_cb;
2534 return master_rpc_async_request(handler, packet, 0, del_ret_cb, create_cb_info(cb, data));
2537 EAPI int livebox_client_paused(void)
2539 struct packet *packet;
2541 packet = packet_create_noack("client_paused", "d", util_timestamp());
2543 ErrPrint("Failed to create a pause packet\n");
2547 return master_rpc_request_only(NULL, packet);
2550 EAPI int livebox_client_resumed(void)
2552 struct packet *packet;
2554 packet = packet_create_noack("client_resumed", "d", util_timestamp());
2556 ErrPrint("Failed to create a resume packet\n");
2560 return master_rpc_request_only(NULL, packet);