Add error codes
[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->uri && strcmp(sticker_data->uri, origin_data->uri) != 0) {
671         LOGD("origin_uri : %s, new_uri : %s", origin_data->uri, sticker_data->uri);
672         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");
673         if (ret != STICKER_CLIENT_ERROR_NONE) {
674             LOGE("failed to update sticker uri");
675             goto cleanup;
676         }
677     }
678
679     if (sticker_data->type != 0 && sticker_data->type != origin_data->type) {
680         LOGD("origin_type : %d, new_type : %d", origin_data->type, sticker_data->type);
681         ret = _send_sync_message(gdbus_connection, g_variant_new("(ii)", sticker_data->sticker_info_id, sticker_data->type), &reply, "update_sticker_type");
682         if (ret != STICKER_CLIENT_ERROR_NONE) {
683             LOGE("failed to update sticker type");
684             goto cleanup;
685         }
686     }
687
688     if (sticker_data->thumbnail && strcmp(sticker_data->thumbnail, origin_data->thumbnail) != 0) {
689         LOGD("origin_thumbnail : %s, new_thumbnail : %s", origin_data->thumbnail, sticker_data->thumbnail);
690         ret = _send_sync_message(gdbus_connection, g_variant_new("(is)", sticker_data->sticker_info_id, sticker_data->thumbnail), &reply, "update_sticker_thumbnail");
691         if (ret != STICKER_CLIENT_ERROR_NONE) {
692             LOGE("failed to update sticker thumbnail");
693             goto cleanup;
694         }
695     }
696
697     if (sticker_data->description && strcmp(sticker_data->description, origin_data->description) != 0) {
698         LOGD("origin_description : %s, new_description : %s", origin_data->description, sticker_data->description);
699         ret = _send_sync_message(gdbus_connection, g_variant_new("(is)", sticker_data->sticker_info_id, sticker_data->description), &reply, "update_sticker_description");
700         if (ret != STICKER_CLIENT_ERROR_NONE) {
701             LOGE("failed to update sticker description");
702             goto cleanup;
703         }
704     }
705
706     if (sticker_data->group && strcmp(sticker_data->group, origin_data->group) != 0) {
707         LOGD("origin_group : %s, new_group : %s", origin_data->group, sticker_data->group);
708         ret = _send_sync_message(gdbus_connection, g_variant_new("(is)", sticker_data->sticker_info_id, sticker_data->group), &reply, "update_sticker_group");
709         if (ret != STICKER_CLIENT_ERROR_NONE) {
710             LOGE("failed to update sticker group");
711             goto cleanup;
712         }
713     }
714
715     if (sticker_data->disp_type != 0 && sticker_data->disp_type != origin_data->disp_type) {
716         LOGD("origin_disp_type : %d, new_disp_type : %d", origin_data->disp_type, sticker_data->disp_type);
717         ret = _send_sync_message(gdbus_connection, g_variant_new("(ii)", sticker_data->sticker_info_id, sticker_data->disp_type), &reply, "update_sticker_disp_type");
718         if (ret != STICKER_CLIENT_ERROR_NONE) {
719             LOGE("failed to update sticker display type");
720             goto cleanup;
721         }
722     }
723
724     if (sticker_data->keyword) {
725         GVariantBuilder *keyword_builder;
726         keyword_builder = g_variant_builder_new(G_VARIANT_TYPE("a(s)"));
727         g_list_foreach(sticker_data->keyword, (GFunc) _set_keyword_builder, keyword_builder);
728         ret = _send_sync_message(gdbus_connection, g_variant_new("(ia(s))", sticker_data->sticker_info_id, keyword_builder), &reply, "update_sticker_keyword");
729         if (ret != STICKER_CLIENT_ERROR_NONE)
730             LOGE("failed to update sticker keyword");
731         g_variant_builder_unref(keyword_builder);
732     }
733
734 cleanup:
735     _free_sticker_data(origin_data);
736
737     if (reply_body)
738         g_variant_unref(reply_body);
739
740     if (reply)
741         g_object_unref(reply);
742
743     return ret;
744 }
745
746 int sticker_dbus_get_sticker_info_by_record_id(GDBusConnection *gdbus_connection, sticker_data_h sticker_data, int record_id)
747 {
748     int ret;
749     GDBusMessage *reply = NULL;
750     GVariant *reply_body = NULL;
751
752     ret = _send_sync_message(gdbus_connection, g_variant_new("(i)", record_id), &reply, "get_sticker_info");
753     if (ret == STICKER_CLIENT_ERROR_NONE) {
754         reply_body = g_dbus_message_get_body(reply);
755         sticker_data->sticker_info_id = record_id;
756         _get_sticker_info_from_gvariant(reply_body, sticker_data);
757
758         if (reply_body)
759             g_variant_unref(reply_body);
760     }
761
762     if (reply)
763         g_object_unref(reply);
764
765     return ret;
766 }
767
768 int sticker_dbus_get_group_list(GDBusConnection *gdbus_connection, const char *app_id, GList **group_list)
769 {
770     int ret;
771     GDBusMessage *reply = NULL;
772     GVariantIter *iter = NULL;
773     GVariant *reply_body = NULL;
774     char *group = NULL;
775
776     if (group_list == NULL) {
777         LOGE("group_list is invalid");
778         return STICKER_CLIENT_ERROR_INVALID_PARAMETER;
779     }
780
781     ret = _send_sync_message(gdbus_connection, g_variant_new("(s)", app_id), &reply, "get_group_list");
782     if (ret == STICKER_CLIENT_ERROR_NONE) {
783         reply_body = g_dbus_message_get_body(reply);
784         g_variant_get(reply_body, "(a(s))", &iter);
785
786         if (!iter) {
787             LOGD("failed to get iter");
788             return STICKER_CLIENT_ERROR_OPERATION_FAILED;
789         }
790
791         while (g_variant_iter_loop (iter, "(s)", &group)) {
792             *group_list = g_list_append(*group_list, strdup((const char *)group));
793         }
794
795         g_variant_iter_free(iter);
796     }
797
798     if (reply_body)
799         g_variant_unref(reply_body);
800
801     if (reply)
802         g_object_unref(reply);
803
804     return ret;
805 }
806
807 int sticker_dbus_get_keyword_list(GDBusConnection *gdbus_connection, const char *app_id, GList **keyword_list)
808 {
809     int ret;
810     GDBusMessage *reply = NULL;
811     GVariantIter *iter = NULL;
812     GVariant *reply_body = NULL;
813     char *keyword = NULL;
814
815     if (keyword_list == NULL) {
816         LOGE("keyword_list is invalid");
817         return STICKER_CLIENT_ERROR_INVALID_PARAMETER;
818     }
819
820     ret = _send_sync_message(gdbus_connection, g_variant_new("(s)", app_id), &reply, "get_keyword_list");
821     if (ret == STICKER_CLIENT_ERROR_NONE) {
822         reply_body = g_dbus_message_get_body(reply);
823         g_variant_get(reply_body, "(a(s))", &iter);
824
825         if (!iter) {
826             LOGD("failed to get iter");
827             return STICKER_CLIENT_ERROR_OPERATION_FAILED;
828         }
829
830         while (g_variant_iter_loop (iter, "(s)", &keyword)) {
831             *keyword_list = g_list_append(*keyword_list, strdup((const char *)keyword));
832         }
833
834         g_variant_iter_free(iter);
835     }
836
837     if (reply_body)
838         g_variant_unref(reply_body);
839
840     if (reply)
841         g_object_unref(reply);
842
843     return ret;
844 }
845
846 int sticker_dbus_get_sticker_count(GDBusConnection *gdbus_connection, const char *app_id, int *count)
847 {
848     int ret;
849     GDBusMessage *reply = NULL;
850     GVariant *reply_body = NULL;
851
852     ret = _send_sync_message(gdbus_connection, g_variant_new("(s)", app_id), &reply, "get_sticker_count");
853     if (ret == STICKER_CLIENT_ERROR_NONE) {
854         reply_body = g_dbus_message_get_body(reply);
855         g_variant_get(reply_body, "(i)", count);
856     }
857
858     if (reply_body)
859         g_variant_unref(reply_body);
860
861     if (reply)
862         g_object_unref(reply);
863
864     return ret;
865 }
866
867 int sticker_dbus_get_all_sticker_info(GDBusConnection *gdbus_connection, const char *app_id, int offset, int count, GVariantIter **id_iter)
868 {
869     int ret;
870     GDBusMessage *reply = NULL;
871     GVariant *reply_body = NULL;
872
873     ret = _send_sync_message(gdbus_connection, g_variant_new("(sii)", app_id, offset, count), &reply, "get_all_sticker_info");
874     if (ret == STICKER_CLIENT_ERROR_NONE) {
875         reply_body = g_dbus_message_get_body(reply);
876         g_variant_get(reply_body, "(a(i))", &(*id_iter));
877     }
878
879     if (reply_body)
880         g_variant_unref(reply_body);
881
882     if (reply)
883         g_object_unref(reply);
884
885     return ret;
886 }
887
888 int sticker_dbus_get_sticker_info_by_appid(GDBusConnection *gdbus_connection, const char *app_id, int offset, int count, GVariantIter **id_iter)
889 {
890     int ret;
891     GDBusMessage *reply = NULL;
892     GVariant *reply_body = NULL;
893
894     ret = _send_sync_message(gdbus_connection, g_variant_new("(sii)", app_id, offset, count), &reply, "get_sticker_info_by_appid");
895     if (ret == STICKER_CLIENT_ERROR_NONE) {
896         reply_body = g_dbus_message_get_body(reply);
897         g_variant_get(reply_body, "(a(i))", &(*id_iter));
898     }
899
900     if (reply_body)
901         g_variant_unref(reply_body);
902
903     if (reply)
904         g_object_unref(reply);
905
906     return ret;
907 }
908
909 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)
910 {
911     int ret;
912     GDBusMessage *reply = NULL;
913     GVariant *reply_body = NULL;
914
915     ret = _send_sync_message(gdbus_connection, g_variant_new("(siii)", app_id, (int)type, offset, count), &reply, "get_sticker_info_by_type");
916     if (ret == STICKER_CLIENT_ERROR_NONE) {
917         reply_body = g_dbus_message_get_body(reply);
918         g_variant_get(reply_body, "(a(i))", &(*id_iter));
919     }
920
921     if (reply_body)
922         g_variant_unref(reply_body);
923
924     if (reply)
925         g_object_unref(reply);
926
927     return ret;
928 }
929
930 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)
931 {
932     int ret;
933     GDBusMessage *reply = NULL;
934     GVariant *reply_body = NULL;
935
936     ret = _send_sync_message(gdbus_connection, g_variant_new("(ssii)", app_id, group, offset, count), &reply, "get_sticker_info_by_group");
937     if (ret == STICKER_CLIENT_ERROR_NONE) {
938         reply_body = g_dbus_message_get_body(reply);
939         g_variant_get(reply_body, "(a(i))", &(*id_iter));
940     }
941
942     if (reply_body)
943         g_variant_unref(reply_body);
944
945     if (reply)
946         g_object_unref(reply);
947
948     return ret;
949 }
950
951 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)
952 {
953     int ret;
954     GDBusMessage *reply = NULL;
955     GVariant *reply_body = NULL;
956
957     ret = _send_sync_message(gdbus_connection, g_variant_new("(ssii)", app_id, keyword, offset, count), &reply, "get_sticker_info_by_keyword");
958     if (ret == STICKER_CLIENT_ERROR_NONE) {
959         reply_body = g_dbus_message_get_body(reply);
960         g_variant_get(reply_body, "(a(i))", &(*id_iter));
961     }
962
963     if (reply_body)
964         g_variant_unref(reply_body);
965
966     if (reply)
967         g_object_unref(reply);
968
969     return ret;
970 }
971
972 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)
973 {
974     int ret;
975     GDBusMessage *reply = NULL;
976     GVariant *reply_body = NULL;
977
978     ret = _send_sync_message(gdbus_connection, g_variant_new("(siii)", app_id, (int)type, offset, count), &reply, "get_sticker_info_by_disp_type");
979     if (ret == STICKER_CLIENT_ERROR_NONE) {
980         reply_body = g_dbus_message_get_body(reply);
981         g_variant_get(reply_body, "(a(i))", &(*id_iter));
982     }
983
984     if (reply_body)
985         g_variant_unref(reply_body);
986
987     if (reply)
988         g_object_unref(reply);
989
990     return ret;
991 }
992
993 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)
994 {
995     int ret;
996     GDBusMessage *reply = NULL;
997     GVariantIter *iter = NULL;
998     GVariant *reply_body = NULL;
999     char *group = NULL;
1000
1001     if (group_list == NULL) {
1002         LOGE("group_list is invalid");
1003         return STICKER_CLIENT_ERROR_INVALID_PARAMETER;
1004     }
1005
1006     ret = _send_sync_message(gdbus_connection, g_variant_new("(si)", app_id, (int)type), &reply, "get_group_list_by_disp_type");
1007     if (ret == STICKER_CLIENT_ERROR_NONE) {
1008         reply_body = g_dbus_message_get_body(reply);
1009         g_variant_get(reply_body, "(a(s))", &iter);
1010
1011         if (!iter) {
1012             LOGD("failed to get iter");
1013             return STICKER_CLIENT_ERROR_OPERATION_FAILED;
1014         }
1015
1016         while (g_variant_iter_loop (iter, "(s)", &group)) {
1017             *group_list = g_list_append(*group_list, strdup((const char *)group));
1018         }
1019
1020         g_variant_iter_free(iter);
1021     }
1022
1023     if (reply_body)
1024         g_variant_unref(reply_body);
1025
1026     if (reply)
1027         g_object_unref(reply);
1028
1029     return ret;
1030 }