Add a new API for retrieving group list using display type
[platform/core/uifw/capi-ui-sticker.git] / client / sticker_dbus.c
1 /*
2  * Copyright (c) 2019 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 <dlog.h>
18
19 #include "sticker_dbus.h"
20
21 #ifdef LOG_TAG
22 #undef LOG_TAG
23 #endif
24 #define LOG_TAG "STICKER_DBUS"
25
26 static int is_server_started = 0;
27
28 static void _server_appeared_cb(GDBusConnection *connection, const gchar *name, const gchar *name_owner, gpointer user_data)
29 {
30     LOGD("name : %s, name_owner : %s", name, name_owner);
31 }
32
33 //LCOV_EXCL_START
34 static void _server_vanished_cb(GDBusConnection *connection, const gchar *name, gpointer user_data)
35 {
36     LOGD("name : %s", name);
37 }
38 //LCOV_EXCL_STOP
39
40 static int _dbus_init(GDBusConnection **gdbus_connection)
41 {
42     GError *error = NULL;
43     int watch_id = 0;
44
45     if (*gdbus_connection == NULL) {
46         GDBusConnection *conn = NULL;
47         conn = g_bus_get_sync(G_BUS_TYPE_SYSTEM, NULL, &error);
48         if (conn == NULL) {
49             if (error != NULL) {
50                 LOGE("g_bus_get_sync error message = %s", error->message);
51                 g_error_free(error);
52             }
53             return STICKER_CLIENT_ERROR_IO_ERROR;
54         }
55         *gdbus_connection = conn;
56     }
57
58     LOGD("Connected bus name : %s", g_dbus_connection_get_unique_name(*gdbus_connection));
59     watch_id = g_bus_watch_name(G_BUS_TYPE_SYSTEM,
60                 STICKER_DBUS_NAME,
61                 G_BUS_NAME_WATCHER_FLAGS_NONE,
62                 _server_appeared_cb,
63                 _server_vanished_cb,
64                 NULL, NULL);
65
66     LOGD("watch_id : %d", watch_id);
67     if (watch_id == 0) {
68         LOGE("Failed to get identifier");
69         return STICKER_CLIENT_ERROR_IO_ERROR;
70     }
71
72     return STICKER_CLIENT_ERROR_NONE;
73 }
74
75 static void _get_sticker_info_from_gvariant(GVariant *body, sticker_data_h sticker_data)
76 {
77     STICKER_DAT_TYPE key;
78     GVariant *value = NULL;
79     GVariantIter *info_iter = NULL;
80     GVariantIter *keyword_iter = NULL;
81     char *keyword = NULL;
82
83     g_variant_get(body, "(a{iv}a(s))", &info_iter, &keyword_iter);
84
85     if (!info_iter || !keyword_iter) {
86         LOGD("failed to get iter");
87         return;
88     }
89
90     while (g_variant_iter_loop (info_iter, "{iv}", &key, &value)) {
91         switch(key) {
92             case STICKER_DATA_TYPE_APP_ID:
93             sticker_data->app_id = g_variant_dup_string(value, NULL);
94             break;
95             case STICKER_DATA_TYPE_URI_TYPE:
96             sticker_data->type = g_variant_get_int32(value);
97             break;
98             case STICKER_DATA_TYPE_URI:
99             sticker_data->uri = g_variant_dup_string(value, NULL);
100             break;
101             case STICKER_DATA_TYPE_THUMBNAIL:
102             sticker_data->thumbnail = g_variant_dup_string(value, NULL);
103             break;
104             case STICKER_DATA_TYPE_DESCRIPTION:
105             sticker_data->description = g_variant_dup_string(value, NULL);
106             break;
107             case STICKER_DATA_TYPE_GROUP:
108             sticker_data->group = g_variant_dup_string(value, NULL);
109             break;
110             case STICKER_DATA_TYPE_DATE:
111             sticker_data->date = g_variant_dup_string(value, NULL);
112             break;
113             case STICKER_DATA_TYPE_DISP_TYPE:
114             sticker_data->disp_type = g_variant_get_int32(value);
115             break;
116             default:
117             break;
118         }
119     }
120
121     while (g_variant_iter_loop (keyword_iter, "(s)", &keyword)) {
122         sticker_data->keyword = g_list_append(sticker_data->keyword, strdup((const char *)keyword));
123     }
124
125     if (value)
126         g_variant_unref(value);
127
128     g_variant_iter_free(info_iter);
129     g_variant_iter_free(keyword_iter);
130 }
131
132 static void _free_sticker_data(sticker_data_h sticker_data)
133 {
134     if (sticker_data->app_id) {
135         free(sticker_data->app_id);
136         sticker_data->app_id = NULL;
137     }
138
139     if (sticker_data->uri) {
140         free(sticker_data->uri);
141         sticker_data->uri = NULL;
142     }
143
144     if (sticker_data->thumbnail) {
145         free(sticker_data->thumbnail);
146         sticker_data->thumbnail = NULL;
147     }
148
149     if (sticker_data->keyword) {
150         g_list_free_full(sticker_data->keyword, free);
151         sticker_data->keyword = NULL;
152     }
153
154     if (sticker_data->group) {
155         free(sticker_data->group);
156         sticker_data->group = NULL;
157     }
158
159     if (sticker_data->description) {
160         free(sticker_data->description);
161         sticker_data->description = NULL;
162     }
163
164     if (sticker_data->date) {
165         free(sticker_data->date);
166         sticker_data->date = NULL;
167     }
168
169     free(sticker_data);
170     sticker_data = NULL;
171 }
172
173 static void _call_insert_finished_cb(sticker_provider_h provider_handle, GVariant *body)
174 {
175     int ret;
176     g_variant_get(body, "(i)", &ret);
177
178     if (ret == 0) {
179         provider_handle->insert_finished_cb(STICKER_ERROR_NONE, provider_handle->insert_finished_cb_user_data);
180     } else {
181         provider_handle->insert_finished_cb(STICKER_ERROR_OPERATION_FAILED, provider_handle->insert_finished_cb_user_data);
182     }
183 }
184
185 //LCOV_EXCL_START
186 static void _handle_sticker_consumer_cb(GDBusConnection *connection,
187                                const gchar *sender_name,
188                                const gchar *object_path,
189                                const gchar *interface_name,
190                                const gchar *signal_name,
191                                GVariant *parameters,
192                                gpointer user_data)
193 {
194     LOGD("own_name : %s, signal_name : %s", g_dbus_connection_get_unique_name(connection), signal_name);
195     sticker_consumer_h consumer_handle = (sticker_consumer_h)user_data;
196
197     if (consumer_handle == NULL) {
198         LOGE("consumer handle is not available");
199         return;
200     }
201
202     if (parameters == NULL) {
203         LOGE("failed to get sticker info");
204         return;
205     }
206
207     #if 0 // Receive the sticker information by asynchronous communication.
208     if (g_strcmp0(signal_name, "send_group_list") == 0) {
209         if (consumer_handle->group_foreach_cb != NULL)
210             _call_sticker_list_cb(consumer_handle, parameters, signal_name);
211         return;
212     } else if (g_strcmp0(signal_name, "send_keyword_list") == 0) {
213         if (consumer_handle->keyword_foreach_cb != NULL)
214             _call_sticker_list_cb(consumer_handle, parameters, signal_name);
215         return;
216     }
217
218     sticker_data_h sticker_data = (sticker_data_h)calloc(1, sizeof(struct sticker_data_s));
219
220     if (!sticker_data) {
221         LOGE("failed to allocate memory");
222         return;
223     }
224
225     _get_sticker_info_from_gvariant(parameters, sticker_data);
226
227     if (g_strcmp0(signal_name, "send_all_sticker_info") == 0) {
228         if (consumer_handle->data_foreach_cb != NULL)
229             consumer_handle->data_foreach_cb(sticker_data, consumer_handle->data_foreach_cb_user_data);
230         else
231             LOGW("No registered callback function");
232     } else if (g_strcmp0(signal_name, "send_sticker_info_by_keyword") == 0) {
233         if (consumer_handle->data_foreach_by_keyword_cb != NULL)
234             consumer_handle->data_foreach_by_keyword_cb(sticker_data, consumer_handle->data_foreach_by_keyword_cb_user_data);
235         else
236             LOGW("No registered callback function");
237     } else if (g_strcmp0(signal_name, "send_sticker_info_by_group") == 0) {
238         if (consumer_handle->data_foreach_by_group_cb != NULL)
239             consumer_handle->data_foreach_by_group_cb(sticker_data, consumer_handle->data_foreach_by_group_cb_user_data);
240         else
241             LOGW("No registered callback function");
242     } else if (g_strcmp0(signal_name, "send_sticker_info_by_type") == 0) {
243         if (consumer_handle->data_foreach_by_type_cb != NULL)
244             consumer_handle->data_foreach_by_type_cb(sticker_data, consumer_handle->data_foreach_by_type_cb_user_data);
245         else
246             LOGW("No registered callback function");
247     }
248
249     _free_sticker_data(sticker_data);
250     #endif
251 }
252 //LCOV_EXCL_STOP
253
254 static void _handle_sticker_provider_cb(GDBusConnection *connection,
255                                const gchar *sender_name,
256                                const gchar *object_path,
257                                const gchar *interface_name,
258                                const gchar *signal_name,
259                                GVariant *parameters,
260                                gpointer user_data)
261 {
262     LOGD("own_name : %s, signal_name : %s", g_dbus_connection_get_unique_name(connection), signal_name);
263     sticker_provider_h provider_handle = (sticker_provider_h)user_data;
264
265     if (provider_handle == NULL) {
266         LOGE("provider handle is not available");
267         return;
268     }
269
270     if (parameters == NULL) {
271         LOGE("failed to get sticker info");
272         return;
273     }
274
275     if (g_strcmp0(signal_name, "send_insert_result") == 0) {
276         if (provider_handle->insert_finished_cb != NULL)
277             _call_insert_finished_cb(provider_handle, parameters);
278     }
279
280     #if 0 // Receive the sticker information by asynchronous communication.
281     sticker_data_h sticker_data = (sticker_data_h)calloc(1, sizeof(struct sticker_data_s));
282
283     if (!sticker_data) {
284         LOGE("failed to allocate memory");
285         return;
286     }
287
288     _get_sticker_info_from_gvariant(parameters, sticker_data);
289
290     if (g_strcmp0(signal_name, "send_sticker_info_by_appid") == 0) {
291         if (provider_handle->data_foreach_cb != NULL)
292             provider_handle->data_foreach_cb(sticker_data, provider_handle->data_foreach_cb_user_data);
293         else
294             LOGW("No registered callback function");
295     }
296
297     _free_sticker_data(sticker_data);
298     #endif
299 }
300
301 static int _dbus_signal_init(GDBusConnection *gdbus_connection, int *monitor_id, CLIENT_LIB lib, void *data)
302 {
303     int ret = STICKER_CLIENT_ERROR_NONE;
304     if (*monitor_id == 0) {
305         int id = 0;
306         if (lib == STICKER_CLIENT_LIB_CONSUMER)
307             id = g_dbus_connection_signal_subscribe(gdbus_connection,
308                                                     STICKER_DBUS_NAME,
309                                                     STICKER_CONSUMER_INTERFACE_NAME,
310                                                     NULL,
311                                                     STICKER_OBJECT_PATH,
312                                                     NULL,
313                                                     G_DBUS_SIGNAL_FLAGS_NONE,
314                                                     _handle_sticker_consumer_cb,
315                                                     data,
316                                                     NULL);
317         else if (lib == STICKER_CLIENT_LIB_PROVIDER)
318             id = g_dbus_connection_signal_subscribe(gdbus_connection,
319                                                     STICKER_DBUS_NAME,
320                                                     STICKER_PROVIDER_INTERFACE_NAME,
321                                                     NULL,
322                                                     STICKER_OBJECT_PATH,
323                                                     NULL,
324                                                     G_DBUS_SIGNAL_FLAGS_NONE,
325                                                     _handle_sticker_provider_cb,
326                                                     data,
327                                                     NULL);
328         LOGD("id : %d", id);
329         if (id == 0) {
330             ret = STICKER_CLIENT_ERROR_IO_ERROR;
331             LOGE("g_dbus_connection_signal_subscribe() failed");
332         } else {
333             *monitor_id = id;
334         }
335     }
336
337     return ret;
338 }
339
340 static GDBusMessage *_get_gbus_message(GVariant *body, const char *cmd)
341 {
342     GDBusMessage *message = NULL;
343     message = g_dbus_message_new_method_call(
344         STICKER_DBUS_NAME,
345         STICKER_OBJECT_PATH,
346         STICKER_INTERFACE_NAME,
347         cmd);
348
349     if (!message) {
350         LOGE("Failed to create a new gdbus message");
351         if (body)
352             g_variant_unref(body);
353         return NULL;
354     }
355
356     if (body != NULL)
357         g_dbus_message_set_body(message, body);
358
359     return message;
360 }
361
362 static int _send_gdbus_sync_message(GDBusConnection *gdbus_connection, GDBusMessage *msg, GDBusMessage **reply, const char *cmd)
363 {
364     int ret = STICKER_CLIENT_ERROR_NONE;
365     GError *err = NULL;
366
367     *reply = g_dbus_connection_send_message_with_reply_sync(
368             gdbus_connection,
369             msg,
370             G_DBUS_SEND_MESSAGE_FLAGS_NONE,
371             -1,
372             NULL,
373             NULL,
374             &err);
375
376     if (!*reply) {
377         ret = STICKER_CLIENT_ERROR_SERVICE_NOT_READY;
378         if (err != NULL) {
379             LOGE("Error occurred when sending message(%s) : %s", cmd, err->message);
380             if (err->code == G_DBUS_ERROR_ACCESS_DENIED)
381                 ret = STICKER_CLIENT_ERROR_PERMISSION_DENIED;
382             g_error_free(err);
383         }
384         return ret;
385     }
386
387     if (g_dbus_message_to_gerror(*reply, &err)) {
388         LOGE("error message = %s, code = %d", err->message, err->code);
389         if (err->code == G_DBUS_ERROR_ACCESS_DENIED)
390             ret = STICKER_CLIENT_ERROR_PERMISSION_DENIED;
391         else
392             ret = err->code;
393         g_error_free(err);
394         return ret;
395     }
396
397     LOGD("Send a message to server(cmd : %s)", cmd);
398     return STICKER_CLIENT_ERROR_NONE;
399 }
400
401 static int _send_sync_message(GDBusConnection *gdbus_connection, GVariant *body, GDBusMessage **reply, char *cmd)
402 {
403     int ret = STICKER_CLIENT_ERROR_NONE;
404     GDBusMessage *msg = NULL;
405
406     msg = _get_gbus_message(body, cmd);
407     if (msg == NULL)
408         return STICKER_CLIENT_ERROR_IO_ERROR;
409
410     ret = _send_gdbus_sync_message(gdbus_connection, msg, reply, cmd);
411
412     if (msg)
413         g_object_unref(msg);
414
415     return ret;
416 }
417
418 static int _send_async_message(GDBusConnection *gdbus_connection, GVariant *body, char *cmd)
419 {
420     int ret = STICKER_CLIENT_ERROR_NONE;
421     GDBusMessage *msg = NULL;
422     GError *err = NULL;
423
424     msg = _get_gbus_message(body, cmd);
425     if (msg == NULL)
426         return STICKER_CLIENT_ERROR_IO_ERROR;
427
428     g_dbus_connection_send_message(gdbus_connection, msg, G_DBUS_SEND_MESSAGE_FLAGS_NONE, NULL, &err);
429
430     if (msg)
431         g_object_unref(msg);
432
433     if (err != NULL) {
434         ret = STICKER_CLIENT_ERROR_SERVICE_NOT_READY;
435         LOGE("Error occurred when sending message(%s) : %s", cmd, err->message);
436
437         if (err->code == G_DBUS_ERROR_ACCESS_DENIED)
438             ret = STICKER_CLIENT_ERROR_PERMISSION_DENIED;
439
440         g_error_free(err);
441         return ret;
442     }
443
444     return ret;
445 }
446
447 static int _monitor_register(GDBusConnection *gdbus_connection, int *server_watcher_id)
448 {
449     int ret;
450     GDBusMessage *reply = NULL;
451     GVariant *reply_body = NULL;
452
453     ret = _send_sync_message(gdbus_connection, g_variant_new("()"), &reply, "sticker_service_register");
454
455     if (ret != STICKER_CLIENT_ERROR_NONE) {
456         LOGE("_send_sync_message() failed : %d", ret);
457         return ret;
458     }
459
460     reply_body = g_dbus_message_get_body(reply);
461     g_variant_get(reply_body, "(i)", server_watcher_id);
462
463     if (reply)
464         g_object_unref(reply);
465
466     is_server_started = 1;
467     return ret;
468 }
469
470 static void _on_name_appeared(GDBusConnection *connection,
471         const gchar     *name,
472         const gchar     *name_owner,
473         gpointer         user_data)
474 {
475     if (is_server_started == 0) {
476         int *watcher_id = (int *)user_data;
477         _monitor_register(connection, watcher_id);
478     }
479 }
480
481 //LCOV_EXCL_START
482 static void _on_name_vanished(GDBusConnection *connection,
483         const gchar     *name,
484         gpointer         user_data)
485 {
486     is_server_started = 0;
487 }
488 //LCOV_EXCL_STOP
489
490 int sticker_dbus_init(GDBusConnection **gdbus_connection, int *server_watcher_id,
491                       int *monitor_id, int *server_monitor_id, CLIENT_LIB lib, void *data)
492 {
493     int ret;
494
495     ret = _dbus_init(gdbus_connection);
496     if (ret != STICKER_CLIENT_ERROR_NONE) {
497         LOGE("_dbus_init() failed : %d", ret);
498         return ret;
499     }
500
501     ret = _dbus_signal_init(*gdbus_connection, monitor_id, lib, data);
502     if (ret != STICKER_CLIENT_ERROR_NONE) {
503         LOGE("_dbus_signal_init() failed : %d", ret);
504         return ret;
505     }
506
507     ret = _monitor_register(*gdbus_connection, server_watcher_id);
508     if (ret != STICKER_CLIENT_ERROR_NONE) {
509         LOGE("_monitor_register() failed : %d", ret);
510         return ret;
511     }
512
513     if (*server_monitor_id == 0) {
514         *server_monitor_id = g_bus_watch_name_on_connection(
515                 *gdbus_connection,
516                 STICKER_DBUS_NAME,
517                 G_BUS_NAME_WATCHER_FLAGS_NONE,
518                 _on_name_appeared,
519                 _on_name_vanished,
520                 server_watcher_id,
521                 NULL);
522         if (*server_monitor_id == 0) {
523             g_dbus_connection_signal_unsubscribe(*gdbus_connection, *monitor_id);
524             *monitor_id = 0;
525             LOGE("Failed to get identifier");
526             return STICKER_CLIENT_ERROR_IO_ERROR;
527         }
528     }
529
530     return STICKER_CLIENT_ERROR_NONE;
531 }
532
533 int sticker_dbus_shutdown(GDBusConnection *gdbus_connection, int *server_watcher_id, int *server_monitor_id, int *monitor_id)
534 {
535     int ret;
536
537     if (server_watcher_id) {
538         ret = _send_async_message(gdbus_connection, g_variant_new("(i)", *server_watcher_id), "sticker_service_unregister");
539         if (ret != STICKER_CLIENT_ERROR_NONE) {
540             LOGE("Failed to unregister sticker service");
541             return ret;
542         }
543
544         *server_watcher_id = 0;
545     }
546
547     if (*server_monitor_id) {
548         g_bus_unwatch_name(*server_monitor_id);
549         *server_monitor_id = 0;
550     }
551
552     if (*monitor_id) {
553         g_dbus_connection_signal_unsubscribe(gdbus_connection, *monitor_id);
554         *monitor_id = 0;
555     }
556
557     return STICKER_CLIENT_ERROR_NONE;
558 }
559
560 static void _set_keyword_builder(char *keyword, GVariantBuilder *keyword_builder)
561 {
562     if (!keyword) {
563         LOGE("keyword doesn't exist");
564         return;
565     }
566
567     g_variant_builder_add(keyword_builder, "(s)", (const char *)keyword);
568 }
569
570 int sticker_dbus_insert_sticker_info(GDBusConnection *gdbus_connection, sticker_data_h sticker_data)
571 {
572     int ret;
573     int ret_id = -1;
574     GDBusMessage *reply = NULL;
575     GVariant *reply_body = NULL;
576     GVariantBuilder *info_builder;
577     GVariantBuilder *keyword_builder;
578
579     if (!sticker_data->app_id || (sticker_data->type < 1) || !sticker_data->uri || !sticker_data->group || !sticker_data->keyword)
580         return STICKER_CLIENT_ERROR_INVALID_PARAMETER;
581
582     info_builder = g_variant_builder_new(G_VARIANT_TYPE("a{iv}"));
583     g_variant_builder_add(info_builder, "{iv}", STICKER_DATA_TYPE_APP_ID, g_variant_new_string((const gchar *)sticker_data->app_id));
584     g_variant_builder_add(info_builder, "{iv}", STICKER_DATA_TYPE_URI_TYPE, g_variant_new_int32(sticker_data->type));
585     g_variant_builder_add(info_builder, "{iv}", STICKER_DATA_TYPE_URI, g_variant_new_string((const gchar *)sticker_data->uri));
586     if (sticker_data->thumbnail)
587         g_variant_builder_add(info_builder, "{iv}", STICKER_DATA_TYPE_THUMBNAIL, g_variant_new_string((const gchar *)sticker_data->thumbnail));
588     if (sticker_data->description)
589         g_variant_builder_add(info_builder, "{iv}", STICKER_DATA_TYPE_DESCRIPTION, g_variant_new_string((const gchar *)sticker_data->description));
590     g_variant_builder_add(info_builder, "{iv}", STICKER_DATA_TYPE_GROUP, g_variant_new_string((const gchar *)sticker_data->group));
591     g_variant_builder_add(info_builder, "{iv}", STICKER_DATA_TYPE_DISP_TYPE, g_variant_new_int32(sticker_data->disp_type));
592
593     keyword_builder = g_variant_builder_new(G_VARIANT_TYPE("a(s)"));
594     g_list_foreach(sticker_data->keyword, (GFunc) _set_keyword_builder, keyword_builder);
595
596     ret = _send_sync_message(gdbus_connection, g_variant_new("(a{iv}a(s))", info_builder, keyword_builder), &reply, "insert_sticker_info");
597     if (ret != STICKER_CLIENT_ERROR_NONE) {
598         LOGW("Failed to save sticker info");
599         return ret;
600     }
601
602     reply_body = g_dbus_message_get_body(reply);
603     g_variant_get(reply_body, "(i)", &ret_id);
604     sticker_data->sticker_info_id = ret_id;
605
606     LOGD("ret_id : %d", ret_id);
607
608     g_variant_builder_unref(info_builder);
609     g_variant_builder_unref(keyword_builder);
610
611     if (reply_body)
612         g_variant_unref(reply_body);
613
614     if (reply)
615         g_object_unref(reply);
616
617     return ret;
618 }
619
620 int sticker_dbus_insert_sticker_info_by_json(GDBusConnection *gdbus_connection, const char *app_id, const char *json_path)
621 {
622     int ret;
623
624     ret = _send_async_message(gdbus_connection, g_variant_new("(ss)", app_id, json_path), "update_sticker_info_by_json");
625     if (ret != STICKER_CLIENT_ERROR_NONE)
626         LOGE("failed to send json path");
627
628     return ret;
629 }
630
631 int sticker_dbus_delete_sticker_info(GDBusConnection *gdbus_connection, int record_id)
632 {
633     int ret;
634     GDBusMessage *reply = NULL;
635
636     ret = _send_sync_message(gdbus_connection, g_variant_new("(i)", record_id), &reply, "delete_sticker_info");
637     if (ret != STICKER_CLIENT_ERROR_NONE)
638         LOGE("failed to delete sticker info");
639
640     if (reply)
641         g_object_unref(reply);
642
643     return ret;
644 }
645
646 int sticker_dbus_update_sticker_info(GDBusConnection *gdbus_connection, sticker_data_h sticker_data)
647 {
648     int ret;
649     GDBusMessage *reply = NULL;
650     GVariant *reply_body = NULL;
651     sticker_data_h origin_data = (sticker_data_h)calloc(1, sizeof(struct sticker_data_s));
652
653     if (!origin_data) {
654         LOGE("failed to allocate memory");
655         return STICKER_CLIENT_ERROR_OUT_OF_MEMORY;
656     }
657
658     ret = _send_sync_message(gdbus_connection, g_variant_new("(i)", sticker_data->sticker_info_id), &reply, "get_sticker_info");
659     if (ret == STICKER_CLIENT_ERROR_NONE) {
660         reply_body = g_dbus_message_get_body(reply);
661         _get_sticker_info_from_gvariant(reply_body, origin_data);
662     } else {
663         LOGW("failed to get sticker info");
664         free(origin_data);
665         if (reply)
666             g_object_unref(reply);
667         return ret;
668     }
669
670     if (sticker_data->type != 0 && sticker_data->type != origin_data->type) {
671         LOGD("origin_type : %d, new_type : %d", origin_data->type, sticker_data->type);
672         ret = _send_sync_message(gdbus_connection, g_variant_new("(ii)", sticker_data->sticker_info_id, sticker_data->type), &reply, "update_sticker_type");
673         if (ret != STICKER_CLIENT_ERROR_NONE)
674             LOGE("failed to update sticker type");
675     }
676
677     if (sticker_data->uri && strcmp(sticker_data->uri, origin_data->uri) != 0) {
678         LOGD("origin_uri : %s, new_uri : %s", origin_data->uri, sticker_data->uri);
679         ret = _send_sync_message(gdbus_connection, g_variant_new("(isis)", sticker_data->sticker_info_id, sticker_data->app_id, sticker_data->type, sticker_data->uri), &reply, "update_sticker_uri");
680         if (ret != STICKER_CLIENT_ERROR_NONE)
681             LOGE("failed to update sticker uri");
682     }
683
684     if (sticker_data->thumbnail && strcmp(sticker_data->thumbnail, origin_data->thumbnail) != 0) {
685         LOGD("origin_thumbnail : %s, new_thumbnail : %s", origin_data->thumbnail, sticker_data->thumbnail);
686         ret = _send_sync_message(gdbus_connection, g_variant_new("(is)", sticker_data->sticker_info_id, sticker_data->thumbnail), &reply, "update_sticker_thumbnail");
687         if (ret != STICKER_CLIENT_ERROR_NONE)
688             LOGE("failed to update sticker thumbnail");
689     }
690
691     if (sticker_data->description && strcmp(sticker_data->description, origin_data->description) != 0) {
692         LOGD("origin_description : %s, new_description : %s", origin_data->description, sticker_data->description);
693         ret = _send_sync_message(gdbus_connection, g_variant_new("(is)", sticker_data->sticker_info_id, sticker_data->description), &reply, "update_sticker_description");
694         if (ret != STICKER_CLIENT_ERROR_NONE)
695             LOGE("failed to update sticker description");
696     }
697
698     if (sticker_data->group && strcmp(sticker_data->group, origin_data->group) != 0) {
699         LOGD("origin_group : %s, new_group : %s", origin_data->group, sticker_data->group);
700         ret = _send_sync_message(gdbus_connection, g_variant_new("(is)", sticker_data->sticker_info_id, sticker_data->group), &reply, "update_sticker_group");
701         if (ret != STICKER_CLIENT_ERROR_NONE)
702             LOGE("failed to update sticker group");
703     }
704
705     if (sticker_data->keyword) {
706         GVariantBuilder *keyword_builder;
707         keyword_builder = g_variant_builder_new(G_VARIANT_TYPE("a(s)"));
708         g_list_foreach(sticker_data->keyword, (GFunc) _set_keyword_builder, keyword_builder);
709         ret = _send_sync_message(gdbus_connection, g_variant_new("(ia(s))", sticker_data->sticker_info_id, keyword_builder), &reply, "update_sticker_keyword");
710         if (ret != STICKER_CLIENT_ERROR_NONE)
711             LOGE("failed to update sticker keyword");
712         g_variant_builder_unref(keyword_builder);
713     }
714
715     _free_sticker_data(origin_data);
716
717     if (reply_body)
718         g_variant_unref(reply_body);
719
720     if (reply)
721         g_object_unref(reply);
722
723     return ret;
724 }
725
726 int sticker_dbus_get_sticker_info_by_record_id(GDBusConnection *gdbus_connection, sticker_data_h sticker_data, int record_id)
727 {
728     int ret;
729     GDBusMessage *reply = NULL;
730     GVariant *reply_body = NULL;
731
732     ret = _send_sync_message(gdbus_connection, g_variant_new("(i)", record_id), &reply, "get_sticker_info");
733     if (ret == STICKER_CLIENT_ERROR_NONE) {
734         reply_body = g_dbus_message_get_body(reply);
735         sticker_data->sticker_info_id = record_id;
736         _get_sticker_info_from_gvariant(reply_body, sticker_data);
737
738         if (reply_body)
739             g_variant_unref(reply_body);
740     }
741
742     if (reply)
743         g_object_unref(reply);
744
745     return ret;
746 }
747
748 int sticker_dbus_get_group_list(GDBusConnection *gdbus_connection, const char *app_id, GList **group_list)
749 {
750     int ret;
751     GDBusMessage *reply = NULL;
752     GVariantIter *iter = NULL;
753     GVariant *reply_body = NULL;
754     char *group = NULL;
755
756     if (group_list == NULL) {
757         LOGE("group_list is invalid");
758         return STICKER_CLIENT_ERROR_INVALID_PARAMETER;
759     }
760
761     ret = _send_sync_message(gdbus_connection, g_variant_new("(s)", app_id), &reply, "get_group_list");
762     if (ret == STICKER_CLIENT_ERROR_NONE) {
763         reply_body = g_dbus_message_get_body(reply);
764         g_variant_get(reply_body, "(a(s))", &iter);
765
766         if (!iter) {
767             LOGD("failed to get iter");
768             return STICKER_CLIENT_ERROR_OPERATION_FAILED;
769         }
770
771         while (g_variant_iter_loop (iter, "(s)", &group)) {
772             *group_list = g_list_append(*group_list, strdup((const char *)group));
773         }
774
775         g_variant_iter_free(iter);
776     }
777
778     if (reply_body)
779         g_variant_unref(reply_body);
780
781     if (reply)
782         g_object_unref(reply);
783
784     return ret;
785 }
786
787 int sticker_dbus_get_keyword_list(GDBusConnection *gdbus_connection, const char *app_id, GList **keyword_list)
788 {
789     int ret;
790     GDBusMessage *reply = NULL;
791     GVariantIter *iter = NULL;
792     GVariant *reply_body = NULL;
793     char *keyword = NULL;
794
795     if (keyword_list == NULL) {
796         LOGE("keyword_list is invalid");
797         return STICKER_CLIENT_ERROR_INVALID_PARAMETER;
798     }
799
800     ret = _send_sync_message(gdbus_connection, g_variant_new("(s)", app_id), &reply, "get_keyword_list");
801     if (ret == STICKER_CLIENT_ERROR_NONE) {
802         reply_body = g_dbus_message_get_body(reply);
803         g_variant_get(reply_body, "(a(s))", &iter);
804
805         if (!iter) {
806             LOGD("failed to get iter");
807             return STICKER_CLIENT_ERROR_OPERATION_FAILED;
808         }
809
810         while (g_variant_iter_loop (iter, "(s)", &keyword)) {
811             *keyword_list = g_list_append(*keyword_list, strdup((const char *)keyword));
812         }
813
814         g_variant_iter_free(iter);
815     }
816
817     if (reply_body)
818         g_variant_unref(reply_body);
819
820     if (reply)
821         g_object_unref(reply);
822
823     return ret;
824 }
825
826 int sticker_dbus_get_sticker_count(GDBusConnection *gdbus_connection, const char *app_id, int *count)
827 {
828     int ret;
829     GDBusMessage *reply = NULL;
830     GVariant *reply_body = NULL;
831
832     ret = _send_sync_message(gdbus_connection, g_variant_new("(s)", app_id), &reply, "get_sticker_count");
833     if (ret == STICKER_CLIENT_ERROR_NONE) {
834         reply_body = g_dbus_message_get_body(reply);
835         g_variant_get(reply_body, "(i)", count);
836     }
837
838     if (reply_body)
839         g_variant_unref(reply_body);
840
841     if (reply)
842         g_object_unref(reply);
843
844     return ret;
845 }
846
847 int sticker_dbus_get_all_sticker_info(GDBusConnection *gdbus_connection, const char *app_id, int offset, int count, GVariantIter **id_iter)
848 {
849     int ret;
850     GDBusMessage *reply = NULL;
851     GVariant *reply_body = NULL;
852
853     ret = _send_sync_message(gdbus_connection, g_variant_new("(sii)", app_id, offset, count), &reply, "get_all_sticker_info");
854     if (ret == STICKER_CLIENT_ERROR_NONE) {
855         reply_body = g_dbus_message_get_body(reply);
856         g_variant_get(reply_body, "(a(i))", &(*id_iter));
857     }
858
859     if (reply_body)
860         g_variant_unref(reply_body);
861
862     if (reply)
863         g_object_unref(reply);
864
865     return ret;
866 }
867
868 int sticker_dbus_get_sticker_info_by_appid(GDBusConnection *gdbus_connection, const char *app_id, int offset, int count, GVariantIter **id_iter)
869 {
870     int ret;
871     GDBusMessage *reply = NULL;
872     GVariant *reply_body = NULL;
873
874     ret = _send_sync_message(gdbus_connection, g_variant_new("(sii)", app_id, offset, count), &reply, "get_sticker_info_by_appid");
875     if (ret == STICKER_CLIENT_ERROR_NONE) {
876         reply_body = g_dbus_message_get_body(reply);
877         g_variant_get(reply_body, "(a(i))", &(*id_iter));
878     }
879
880     if (reply_body)
881         g_variant_unref(reply_body);
882
883     if (reply)
884         g_object_unref(reply);
885
886     return ret;
887 }
888
889 int sticker_dbus_get_sticker_info_by_type(GDBusConnection *gdbus_connection, const char *app_id, sticker_data_uri_type_e type, int offset, int count, GVariantIter **id_iter)
890 {
891     int ret;
892     GDBusMessage *reply = NULL;
893     GVariant *reply_body = NULL;
894
895     ret = _send_sync_message(gdbus_connection, g_variant_new("(siii)", app_id, (int)type, offset, count), &reply, "get_sticker_info_by_type");
896     if (ret == STICKER_CLIENT_ERROR_NONE) {
897         reply_body = g_dbus_message_get_body(reply);
898         g_variant_get(reply_body, "(a(i))", &(*id_iter));
899     }
900
901     if (reply_body)
902         g_variant_unref(reply_body);
903
904     if (reply)
905         g_object_unref(reply);
906
907     return ret;
908 }
909
910 int sticker_dbus_get_sticker_info_by_group(GDBusConnection *gdbus_connection, const char *app_id, const char *group, int offset, int count, GVariantIter **id_iter)
911 {
912     int ret;
913     GDBusMessage *reply = NULL;
914     GVariant *reply_body = NULL;
915
916     ret = _send_sync_message(gdbus_connection, g_variant_new("(ssii)", app_id, group, offset, count), &reply, "get_sticker_info_by_group");
917     if (ret == STICKER_CLIENT_ERROR_NONE) {
918         reply_body = g_dbus_message_get_body(reply);
919         g_variant_get(reply_body, "(a(i))", &(*id_iter));
920     }
921
922     if (reply_body)
923         g_variant_unref(reply_body);
924
925     if (reply)
926         g_object_unref(reply);
927
928     return ret;
929 }
930
931 int sticker_dbus_get_sticker_info_by_keyword(GDBusConnection *gdbus_connection, const char *app_id, const char *keyword, int offset, int count, GVariantIter **id_iter)
932 {
933     int ret;
934     GDBusMessage *reply = NULL;
935     GVariant *reply_body = NULL;
936
937     ret = _send_sync_message(gdbus_connection, g_variant_new("(ssii)", app_id, keyword, offset, count), &reply, "get_sticker_info_by_keyword");
938     if (ret == STICKER_CLIENT_ERROR_NONE) {
939         reply_body = g_dbus_message_get_body(reply);
940         g_variant_get(reply_body, "(a(i))", &(*id_iter));
941     }
942
943     if (reply_body)
944         g_variant_unref(reply_body);
945
946     if (reply)
947         g_object_unref(reply);
948
949     return ret;
950 }
951
952 int sticker_dbus_get_sticker_info_by_display_type(GDBusConnection *gdbus_connection, const char *app_id, sticker_data_display_type_e type, int offset, int count, GVariantIter **id_iter)
953 {
954     int ret;
955     GDBusMessage *reply = NULL;
956     GVariant *reply_body = NULL;
957
958     ret = _send_sync_message(gdbus_connection, g_variant_new("(siii)", app_id, (int)type, offset, count), &reply, "get_sticker_info_by_disp_type");
959     if (ret == STICKER_CLIENT_ERROR_NONE) {
960         reply_body = g_dbus_message_get_body(reply);
961         g_variant_get(reply_body, "(a(i))", &(*id_iter));
962     }
963
964     if (reply_body)
965         g_variant_unref(reply_body);
966
967     if (reply)
968         g_object_unref(reply);
969
970     return ret;
971 }
972
973 int sticker_dbus_get_group_list_by_display_type(GDBusConnection *gdbus_connection, const char *app_id, sticker_data_display_type_e type, GList **group_list)
974 {
975     int ret;
976     GDBusMessage *reply = NULL;
977     GVariantIter *iter = NULL;
978     GVariant *reply_body = NULL;
979     char *group = NULL;
980
981     if (group_list == NULL) {
982         LOGE("group_list is invalid");
983         return STICKER_CLIENT_ERROR_INVALID_PARAMETER;
984     }
985
986     ret = _send_sync_message(gdbus_connection, g_variant_new("(si)", app_id, (int)type), &reply, "get_group_list_by_disp_type");
987     if (ret == STICKER_CLIENT_ERROR_NONE) {
988         reply_body = g_dbus_message_get_body(reply);
989         g_variant_get(reply_body, "(a(s))", &iter);
990
991         if (!iter) {
992             LOGD("failed to get iter");
993             return STICKER_CLIENT_ERROR_OPERATION_FAILED;
994         }
995
996         while (g_variant_iter_loop (iter, "(s)", &group)) {
997             *group_list = g_list_append(*group_list, strdup((const char *)group));
998         }
999
1000         g_variant_iter_free(iter);
1001     }
1002
1003     if (reply_body)
1004         g_variant_unref(reply_body);
1005
1006     if (reply)
1007         g_object_unref(reply);
1008
1009     return ret;
1010 }