Using gdbus for IPC instead of com-core package
[platform/core/api/notification.git] / src / notification_ipc.c
1 /*
2  *  libnotification
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: Seungtaek Chung <seungtaek.chung@samsung.com>, Mi-Ju Lee <miju52.lee@samsung.com>, Xi Zhichan <zhichan.xi@samsung.com>
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  */
21
22 #include <stdio.h>
23 #include <string.h>
24 #include <stdlib.h>
25 #include <errno.h>
26 #include <vconf.h>
27 #include <bundle_internal.h>
28
29 #include <notification_ipc.h>
30 #include <notification_db.h>
31 #include <notification_type.h>
32 #include <notification_private.h>
33 #include <notification_debug.h>
34 #include <notification_setting.h>
35 #include <notification_setting_internal.h>
36 #include <notification_internal.h>
37
38 #include <gio/gio.h>
39
40 #define PROVIDER_BUS_NAME "org.tizen.data_provider_service"
41 #define PROVIDER_OBJECT_PATH "/org/tizen/data_provider_service"
42 #define PROVIDER_NOTI_INTERFACE_NAME "org.tizen.data_provider_noti_service"
43
44 #define DBUS_SERVICE_DBUS "org.freedesktop.DBus"
45 #define DBUS_PATH_DBUS "/org/freedesktop/DBus"
46 #define DBUS_INTERFACE_DBUS "org.freedesktop.DBus"
47
48 static const gchar *_bus_name = NULL;
49 static GDBusConnection *_gdbus_conn = NULL;
50 static int monitor_id = 0;
51 static int provider_monitor_id = 0;
52 static int is_master_started = 0;
53
54 static const char *NOTI_DATA_STRING[] = {
55     "NOTIFICATION_DATA_TYPE_NOTI_TYPE",
56     "NOTIFICATION_DATA_TYPE_LAYOUT",
57     "NOTIFICATION_DATA_TYPE_GROUP_ID",
58     "NOTIFICATION_DATA_TYPE_INTERNAL_GROUP_ID",
59     "NOTIFICATION_DATA_TYPE_PRIV_ID",
60     "NOTIFICATION_DATA_TYPE_CALLER_PKGNAME",
61     "NOTIFICATION_DATA_TYPE_LAUNCH_PKGNAME",
62     "NOTIFICATION_DATA_TYPE_ARGS",
63     "NOTIFICATION_DATA_TYPE_GROUP_ARGS",
64     "NOTIFICATION_DATA_TYPE_EXECUTE_OPTION",
65     "NOTIFICATION_DATA_TYPE_SERVICE_RESPONDING",
66     "NOTIFICATION_DATA_TYPE_SERVICE_SINGLE_LAUNCH",
67     "NOTIFICATION_DATA_TYPE_SERVICE_MULTI_LAUNCH",
68     "NOTIFICATION_DATA_TYPE_BUTTON1_EVENT",
69     "NOTIFICATION_DATA_TYPE_BUTTON2_EVENT",
70     "NOTIFICATION_DATA_TYPE_BUTTON3_EVENT",
71     "NOTIFICATION_DATA_TYPE_BUTTON4_EVENT",
72     "NOTIFICATION_DATA_TYPE_BUTTON5_EVENT",
73     "NOTIFICATION_DATA_TYPE_BUTTON6_EVENT",
74     "NOTIFICATION_DATA_TYPE_ICON_EVENT",
75     "NOTIFICATION_DATA_TYPE_THUMBNAIL_EVENT",
76     "NOTIFICATION_DATA_TYPE_DOMAIN",
77     "NOTIFICATION_DATA_TYPE_DIR",
78     "NOTIFICATION_DATA_TYPE_TEXT",
79     "NOTIFICATION_DATA_TYPE_KEY",
80     "NOTIFICATION_DATA_TYPE_FORMAT_ARGS",
81     "NOTIFICATION_DATA_TYPE_NUM_FORMAT_ARGS",
82     "NOTIFICATION_DATA_TYPE_IMAGE_PATH",
83     "NOTIFICATION_DATA_TYPE_SOUND_TYPE",
84     "NOTIFICATION_DATA_TYPE_SOUND_PATH",
85     "NOTIFICATION_DATA_TYPE_VIBRATION_TYPE",
86     "NOTIFICATION_DATA_TYPE_VIBRATION_PATH",
87     "NOTIFICATION_DATA_TYPE_LED_OPERATION",
88     "NOTIFICATION_DATA_TYPE_LED_ARGB",
89     "NOTIFICATION_DATA_TYPE_LED_ON_MS",
90     "NOTIFICATION_DATA_TYPE_LED_OFF_MS",
91     "NOTIFICATION_DATA_TYPE_TIME",
92     "NOTIFICATION_DATA_TYPE_INSERT_TIME",
93     "NOTIFICATION_DATA_TYPE_FLAGS_FOR_PROPERTY",
94     "NOTIFICATION_DATA_TYPE_DISPLAY_APPLIST",
95     "NOTIFICATION_DATA_TYPE_PROGRESS_SIZE",
96     "NOTIFICATION_DATA_TYPE_PROGRESS_PERCENTAGE",
97     "NOTIFICATION_DATA_TYPE_APP_ICON_PATH",
98     "NOTIFICATION_DATA_TYPE_APP_NAME",
99     "NOTIFICATION_DATA_TYPE_TEMP_TITLE",
100     "NOTIFICATION_DATA_TYPE_TEMP_CONTENT",
101     "NOTIFICATION_DATA_TYPE_TAG",
102     "NOTIFICATION_DATA_TYPE_ONGOING_FLAG",
103     "NOTIFICATION_DATA_TYPE_AUTO_REMOVE",
104 };
105
106
107 typedef struct _result_cb_item {
108         void (*result_cb)(int priv_id, int result, void *data);
109         void *data;
110 } result_cb_item;
111
112 typedef struct _task_list task_list;
113 struct _task_list {
114         task_list *prev;
115         task_list *next;
116
117         void (*task_cb) (void *data);
118         void *data;
119 };
120
121 static task_list *g_task_list;
122
123 static int _ipc_monitor_register(void);
124 static int _ipc_monitor_deregister(void);
125 static void _do_deffered_task(void);
126
127 static void _print_noti(notification_h noti) {
128         char *pkgname = NULL;
129         char *text = NULL;
130         char *content = NULL;
131         const char *tag = NULL;
132
133         notification_get_pkgname(noti, &pkgname);
134         notification_get_text(noti, NOTIFICATION_TEXT_TYPE_TITLE, &text);
135         notification_get_text(noti, NOTIFICATION_TEXT_TYPE_CONTENT, &content);
136         notification_get_tag(noti, &tag);
137
138         NOTIFICATION_DBG("client print_noti  pkgname  = %s ", pkgname );
139         NOTIFICATION_DBG("client print_noti  title  = %s ", text );
140         NOTIFICATION_DBG("client print_noti  content  = %s ", content );
141         NOTIFICATION_DBG("client print_noti  tag  = %s ", tag );
142         NOTIFICATION_DBG("client print_noti  priv_id  = %d ", noti->priv_id);
143         NOTIFICATION_DBG("client print_noti  vibration_path  = %s ", noti->vibration_path);
144 }
145
146 static inline char *_string_get(char *string)
147 {
148         if (string == NULL)
149                 return NULL;
150
151         if (string[0] == '\0')
152                 return NULL;
153
154         return string;
155 }
156
157
158 int notification_ipc_is_master_ready(void)
159 {
160         GVariant *result;
161         GError *err = NULL;
162         gboolean name_exist;
163
164         result = g_dbus_connection_call_sync(
165                         _gdbus_conn,
166                         DBUS_SERVICE_DBUS,
167                         DBUS_PATH_DBUS,
168                         DBUS_INTERFACE_DBUS,
169                         "NameHasOwner",
170                         g_variant_new("(s)", PROVIDER_BUS_NAME),
171                         G_VARIANT_TYPE("(b)"),
172                         G_DBUS_CALL_FLAGS_NONE,
173                         -1,
174                         NULL,
175                         &err);
176
177         if (err || (result == NULL)) {
178                 if (err) {
179                 NOTIFICATION_ERR("No reply. error = %s", err->message);
180                         g_error_free(err);
181                 }
182                 is_master_started = 0;
183         } else {
184                 g_variant_get(result, "(b)", &name_exist);
185
186                 if (!name_exist) {
187                         NOTIFICATION_ERR("Name not exist %s", PROVIDER_BUS_NAME);
188                         NOTIFICATION_ERR("the master has been stopped");
189                         is_master_started = 0;
190                 } else {
191                         NOTIFICATION_DBG("the master has been started");
192                         is_master_started = 1;
193                 }
194         }
195
196         if(result)
197                 g_variant_unref(result);
198
199         return is_master_started;
200 }
201
202 /* TODO: dbus activation isn't enough ? */
203 /*
204  * store tasks when daemon stopped
205  */
206 int notification_ipc_add_deffered_task(
207                 void (*deferred_task_cb)(void *data),
208                 void *user_data)
209 {
210         task_list *list;
211         task_list *list_new;
212
213         list_new =
214             (task_list *) malloc(sizeof(task_list));
215
216         if (list_new == NULL)
217                 return NOTIFICATION_ERROR_OUT_OF_MEMORY;
218
219         list_new->next = NULL;
220         list_new->prev = NULL;
221
222         list_new->task_cb = deferred_task_cb;
223         list_new->data = user_data;
224
225         if (g_task_list == NULL) {
226                 g_task_list = list_new;
227         } else {
228                 list = g_task_list;
229
230                 while (list->next != NULL)
231                         list = list->next;
232
233                 list->next = list_new;
234                 list_new->prev = list;
235         }
236         return NOTIFICATION_ERROR_NONE;
237 }
238
239 int notification_ipc_del_deffered_task(
240                 void (*deferred_task_cb)(void *data))
241 {
242         task_list *list_del;
243         task_list *list_prev;
244         task_list *list_next;
245
246         list_del = g_task_list;
247
248         if (list_del == NULL)
249                 return NOTIFICATION_ERROR_INVALID_PARAMETER;
250
251         while (list_del->prev != NULL)
252                 list_del = list_del->prev;
253
254         do {
255                 if (list_del->task_cb == deferred_task_cb) {
256                         list_prev = list_del->prev;
257                         list_next = list_del->next;
258
259                         if (list_prev == NULL)
260                                 g_task_list = list_next;
261                         else
262                                 list_prev->next = list_next;
263
264                         if (list_next == NULL) {
265                                 if (list_prev != NULL)
266                                         list_prev->next = NULL;
267                         } else {
268                                 list_next->prev = list_prev;
269                         }
270
271                         free(list_del);
272                         return NOTIFICATION_ERROR_NONE;
273                 }
274                 list_del = list_del->next;
275         } while (list_del != NULL);
276
277         return NOTIFICATION_ERROR_INVALID_PARAMETER;
278 }
279
280 static void _do_deffered_task(void)
281 {
282         task_list *list_do;
283         task_list *list_temp;
284
285         if (g_task_list == NULL)
286                 return;
287
288         list_do = g_task_list;
289         g_task_list = NULL;
290
291         while (list_do->prev != NULL)
292                 list_do = list_do->prev;
293
294         while (list_do != NULL) {
295                 if (list_do->task_cb != NULL) {
296                         list_do->task_cb(list_do->data);
297                         NOTIFICATION_DBG("called:%p", list_do->task_cb);
298                 }
299                 list_temp = list_do->next;
300                 free(list_do);
301                 list_do = list_temp;
302         }
303 }
304
305 /*!
306  * functions to create operation list
307  */
308 static notification_op *_ipc_create_op(notification_op_type_e type,
309                 int num_op, int *list_priv_id, int num_priv_id, notification_h *noti_list)
310 {
311         int i;
312         notification_op *op_list;
313
314         if (num_op <= 0)
315                 return NULL;
316
317         op_list = (notification_op *)malloc(sizeof(notification_op) * num_op);
318
319         if (op_list == NULL) {
320                 NOTIFICATION_ERR("malloc failed");
321                 return NULL;
322         }
323
324         memset(op_list, 0x0, sizeof(notification_op) * num_op);
325
326         for (i = 0; i < num_op; i++) {
327                 (op_list + i)->type = type;
328                 if (list_priv_id != NULL)
329                         (op_list + i)->priv_id = *(list_priv_id + i);
330                 if (noti_list != NULL)
331                         (op_list + i)->noti = *(noti_list + i);
332         }
333
334         return op_list;
335 }
336
337 /*!
338  * utility functions creating notification packet
339  */
340 static inline char *_dup_string(const char *string)
341 {
342         char *ret;
343
344         if (string == NULL)
345                 return NULL;
346         if (string[0] == '\0')
347                 return NULL;
348
349         ret = strdup(string);
350         if (!ret)
351                 NOTIFICATION_ERR("Error: %s\n", strerror(errno));
352
353         return ret;
354 }
355
356 static inline bundle *_create_bundle_from_bundle_raw(bundle_raw *string)
357 {
358         if (string == NULL)
359                 return NULL;
360         if (string[0] == '\0')
361                 return NULL;
362
363         return bundle_decode(string, strlen((char *)string));
364 }
365
366 static void _add_noti_notify(GVariant *parameters)
367 {
368         notification_h noti;
369         notification_op *noti_op;
370         GVariant *body = NULL;
371
372         NOTIFICATION_DBG("add noti notify");
373         noti = notification_create(NOTIFICATION_TYPE_NOTI);
374         if (!noti) {
375                 NOTIFICATION_ERR("failed to create a notification");
376                 return;
377         }
378
379         g_variant_get(parameters, "(v)", &body);
380         notification_ipc_make_noti_from_gvariant(noti, body);
381         _print_noti(noti);
382         if (noti->flags_for_property & NOTIFICATION_PROP_DISABLE_UPDATE_ON_INSERT) {
383                 NOTIFICATION_ERR("disable changed callback %d", noti->flags_for_property);
384                 /* Disable changed cb */
385         } else {
386                 /* Enable changed cb */
387                 noti_op = _ipc_create_op(NOTIFICATION_OP_INSERT, 1, &(noti->priv_id), 1, &noti);
388
389                 if (noti_op != NULL) {
390                         notification_call_changed_cb(noti_op, 1);
391                         free(noti_op);
392                 }
393         }
394         notification_free(noti);
395 }
396
397 static void _update_noti_notify(GVariant *parameters)
398 {
399         notification_h noti;
400         notification_op *noti_op;
401         GVariant *body = NULL;
402
403         noti = notification_create(NOTIFICATION_TYPE_NOTI);
404         if (!noti) {
405                 NOTIFICATION_ERR("failed to create a notification");
406                 return;
407         }
408         g_variant_get(parameters, "(v)", &body);
409         notification_ipc_make_noti_from_gvariant(noti, body);
410         _print_noti(noti);
411
412         noti_op = _ipc_create_op(NOTIFICATION_OP_UPDATE, 1, &(noti->priv_id), 1, &noti);
413         if (noti_op != NULL) {
414                 notification_call_changed_cb(noti_op, 1);
415                 free(noti_op);
416         }
417         notification_free(noti);
418 }
419
420 static void _refresh_noti_notify(GVariant *parameters)
421 {
422         notification_op *noti_op = _ipc_create_op(NOTIFICATION_OP_REFRESH, 1, NULL, 0, NULL);
423
424         if (noti_op != NULL) {
425                 notification_call_changed_cb(noti_op, 1);
426                 free(noti_op);
427         }
428 }
429
430 static void _delete_single_notify(GVariant *parameters)
431 {
432         int num_deleted;
433         int priv_id;
434         notification_op *noti_op;
435
436         /* num_deleted ?? */
437         g_variant_get(parameters, "(ii)", &num_deleted, &priv_id);
438
439         noti_op = _ipc_create_op(NOTIFICATION_OP_DELETE, 1, &priv_id, 1, NULL);
440         if (noti_op != NULL) {
441                 notification_call_changed_cb(noti_op, 1);
442                 free(noti_op);
443         }
444 }
445
446 static void _delete_multiple_notify(GVariant *parameters)
447 {
448         int buf[100] = {0,};
449         int idx = 0;
450         notification_op *noti_op;
451         GVariantIter *iter;
452
453         g_variant_get(parameters, "(a(i))", &iter);
454         while (g_variant_iter_loop(iter, "(i)", &buf[idx])) {
455                 NOTIFICATION_DBG("delete_noti_multiple priv_id : %d", buf[idx]);
456                 idx++;
457         }
458         g_variant_iter_free(iter);
459
460         NOTIFICATION_DBG("data num deleted:%d", idx);
461         noti_op = _ipc_create_op(NOTIFICATION_OP_DELETE, idx, buf, idx, NULL);
462
463         if (noti_op == NULL) {
464                 NOTIFICATION_ERR("_ipc_create_op failed");
465                 return;
466         }
467         notification_call_changed_cb(noti_op, idx);
468         free(noti_op);
469 }
470
471 static void _handle_noti_notify(GDBusConnection *connection,
472                 const gchar     *sender_name,
473                 const gchar     *object_path,
474                 const gchar     *interface_name,
475                 const gchar     *signal_name,
476                 GVariant        *parameters,
477                 gpointer         user_data)
478 {
479         NOTIFICATION_DBG("signal_name: %s", signal_name);
480
481         if (g_strcmp0(signal_name, "add_noti_notify") == 0)
482                 _add_noti_notify(parameters);
483         else if (g_strcmp0(signal_name, "update_noti_notify") == 0)
484                 _update_noti_notify(parameters);
485         else if (g_strcmp0(signal_name, "delete_single_notify") == 0)
486                 _delete_single_notify(parameters);
487         else if (g_strcmp0(signal_name, "delete_multiple_notify") == 0)
488                 _delete_multiple_notify(parameters);
489         else if (g_strcmp0(signal_name, "refresh_noti_notify") == 0)
490                 _refresh_noti_notify(parameters);
491 }
492
493
494 static int _dbus_signal_init()
495 {
496         int id;
497         int ret = NOTIFICATION_ERROR_NONE;
498
499         if (monitor_id == 0) {
500                 id = g_dbus_connection_signal_subscribe(_gdbus_conn,
501                                 PROVIDER_BUS_NAME,
502                                 PROVIDER_NOTI_INTERFACE_NAME,   /*      interface */
503                                 NULL,                           /*      member */
504                                 PROVIDER_OBJECT_PATH,           /*      path */
505                                 NULL,                           /*      arg0 */
506                                 G_DBUS_SIGNAL_FLAGS_NONE,
507                                 _handle_noti_notify,
508                                 NULL,
509                                 NULL);
510
511                 NOTIFICATION_DBG("subscribe id : %d", id);
512                 if (id == 0) {
513                         ret = NOTIFICATION_ERROR_IO_ERROR;
514                         NOTIFICATION_ERR("Failed to _register_noti_dbus_interface");
515                 } else {
516                         monitor_id = id;
517                         ret = NOTIFICATION_ERROR_NONE;
518                 }
519         }
520         return ret;
521 }
522
523
524 static int _dbus_init()
525 {
526         int ret = NOTIFICATION_ERROR_NONE;
527         GError *error = NULL;
528
529         if (_gdbus_conn == NULL) {
530                 _gdbus_conn = g_bus_get_sync(G_BUS_TYPE_SYSTEM, NULL, &error);
531
532                 if (_gdbus_conn == NULL) {
533                         if (error != NULL) {
534                                 NOTIFICATION_ERR("Failed to get dbus [%s]", error->message);
535                                 g_error_free(error);
536                         }
537                         return NOTIFICATION_ERROR_IO_ERROR;
538                 }
539                 _bus_name = g_dbus_connection_get_unique_name(_gdbus_conn);
540                 NOTIFICATION_DBG("bus name : %s", _bus_name);
541
542                 notification_error_quark();
543
544                 ret = NOTIFICATION_ERROR_NONE;
545         }
546         return ret;
547 }
548
549 static int _send_sync_noti(GVariant *body, GDBusMessage **reply, char *cmd)
550 {
551         int ret = NOTIFICATION_ERROR_NONE;
552         GError *err = NULL;
553         GDBusMessage *msg;
554
555         msg = g_dbus_message_new_method_call(
556                         PROVIDER_BUS_NAME,
557                         PROVIDER_OBJECT_PATH,
558                         PROVIDER_NOTI_INTERFACE_NAME,
559                         cmd);
560         if (!msg) {
561                 NOTIFICATION_ERR("Can't allocate new method call");
562                 if (body)
563                         g_variant_unref(body);
564                 return NOTIFICATION_ERROR_OUT_OF_MEMORY;
565         }
566
567         if (body != NULL)
568                 g_dbus_message_set_body(msg, body);
569
570         *reply = g_dbus_connection_send_message_with_reply_sync(
571                         _gdbus_conn,
572                         msg,
573                         G_DBUS_SEND_MESSAGE_FLAGS_NONE,
574                         -1,
575                         NULL,
576                         NULL,
577                         &err);
578
579         g_object_unref(msg);
580
581         if (!*reply) {
582                 if (err != NULL) {
583                         NOTIFICATION_ERR("No reply. cmd = %s,  error = %s", cmd, err->message);
584                         g_error_free(err);
585                 }
586                 return NOTIFICATION_ERROR_SERVICE_NOT_READY;
587         }
588
589         if (g_dbus_message_to_gerror(*reply, &err)) {
590                 ret = err->code;
591                 NOTIFICATION_ERR("_send_sync_noti cmd = %s, error %s", cmd, err->message);
592                 g_error_free(err);
593                 return ret;
594         }
595         NOTIFICATION_DBG("_send_sync_noti done !!");
596         return NOTIFICATION_ERROR_NONE;
597
598 }
599
600 static void _send_message_with_reply_async_cb(GDBusConnection *connection,
601                 GAsyncResult *res,
602                 gpointer user_data)
603 {
604         GVariant *body;
605         int result = NOTIFICATION_ERROR_NONE;
606         int priv_id;
607         GDBusMessage *reply = NULL;
608         GError *err = NULL;
609         result_cb_item *cb_item = (result_cb_item *)user_data;
610
611         if (cb_item == NULL) {
612                 NOTIFICATION_ERR("Failed to get a callback item");
613                 return;
614         }
615
616         reply = g_dbus_connection_send_message_with_reply_finish(
617                         connection,
618                         res,
619                         &err);
620
621         if (!reply) {
622                 if (err != NULL) {
623                         NOTIFICATION_ERR("No reply. error = %s", err->message);
624                         g_error_free(err);
625                 }
626                 result = NOTIFICATION_ERROR_SERVICE_NOT_READY;
627
628         } else if (g_dbus_message_to_gerror(reply, &err)) {
629                 result = err->code;
630                 g_error_free(err);
631                 NOTIFICATION_ERR("_send_async_noti error %s", err->message);
632         }
633
634         NOTIFICATION_DBG("_send_async_noti done !![%d]", result);
635
636         if (result == NOTIFICATION_ERROR_NONE) {
637                 body = g_dbus_message_get_body(reply);
638                 g_variant_get(body, "(i)", &priv_id);
639
640                 if (cb_item->result_cb)
641                         cb_item->result_cb(priv_id, result, cb_item->data);
642
643         } else {
644                 if (cb_item->result_cb)
645                         cb_item->result_cb(NOTIFICATION_PRIV_ID_NONE, result, cb_item->data);
646         }
647
648         if (reply)
649                 g_object_unref(reply);
650         free(cb_item);
651 }
652
653 static int _send_async_noti(GVariant *body, result_cb_item *cb_item, char *cmd)
654 {
655         GDBusMessage *msg;
656
657         msg = g_dbus_message_new_method_call(
658                         PROVIDER_BUS_NAME,
659                         PROVIDER_OBJECT_PATH,
660                         PROVIDER_NOTI_INTERFACE_NAME,
661                         cmd);
662         if (!msg) {
663                 NOTIFICATION_ERR("Can't allocate new method call");
664                 return NOTIFICATION_ERROR_OUT_OF_MEMORY;
665         }
666
667         if (body != NULL)
668                 g_dbus_message_set_body(msg, body);
669
670         g_dbus_connection_send_message_with_reply(
671                         _gdbus_conn,
672                         msg,
673                         G_DBUS_SEND_MESSAGE_FLAGS_NONE,
674                         -1,
675                         NULL,
676                         NULL,
677                         (GAsyncReadyCallback)_send_message_with_reply_async_cb,
678                         cb_item);
679
680         NOTIFICATION_DBG("_send_async_noti done !!");
681
682         g_object_unref(msg);
683         return NOTIFICATION_ERROR_NONE;
684 }
685
686 int notification_ipc_request_insert(notification_h noti, int *priv_id)
687 {
688         int result;
689         int id;
690         GDBusMessage *reply = NULL;
691         GVariant *body;
692         GVariant *reply_body;
693
694         result = _dbus_init();
695         if (result != NOTIFICATION_ERROR_NONE) {
696                 NOTIFICATION_ERR("Can't init dbus %d", result);
697                 return result;
698         }
699
700         /* Initialize private ID */
701         noti->priv_id = NOTIFICATION_PRIV_ID_NONE;
702         noti->group_id = NOTIFICATION_GROUP_ID_NONE;
703         noti->internal_group_id = NOTIFICATION_GROUP_ID_NONE;
704
705         _print_noti(noti);
706         body = notification_ipc_make_gvariant_from_noti(noti);
707         if (body == NULL) {
708                 NOTIFICATION_ERR("cannot make gvariant");
709                 return NOTIFICATION_ERROR_OUT_OF_MEMORY;
710         }
711
712         result = _send_sync_noti(body, &reply, "add_noti");
713         NOTIFICATION_DBG("_send_sync_noti %d", result);
714
715         if (result == NOTIFICATION_ERROR_NONE) {
716                 reply_body = g_dbus_message_get_body(reply);
717                 g_variant_get(reply_body, "(i)", &id);
718
719                 if (priv_id != NULL)
720                         *priv_id = id;
721         }
722
723         if(reply)
724                 g_object_unref(reply);
725
726         NOTIFICATION_DBG("notification_ipc_request_insert done [priv_id : %d, result: %d]", *priv_id, result);
727         return result;
728 }
729
730 int notification_ipc_request_update(notification_h noti)
731 {
732         int result;
733         int priv_id;
734
735         GDBusMessage *reply = NULL;
736         GVariant *body;
737         GVariant *reply_body;
738
739         result = _dbus_init();
740         if (result != NOTIFICATION_ERROR_NONE) {
741                 NOTIFICATION_ERR("Can't init dbus %d", result);
742                 return result;
743         }
744
745         body = notification_ipc_make_gvariant_from_noti(noti);
746         if (body == NULL) {
747                 NOTIFICATION_ERR("cannot make gvariant");
748                 return NOTIFICATION_ERROR_OUT_OF_MEMORY;
749         }
750
751         result = _send_sync_noti(body, &reply, "update_noti");
752         if (result == NOTIFICATION_ERROR_NONE) {
753                 reply_body = g_dbus_message_get_body(reply);
754                 g_variant_get(reply_body, "(i)", &priv_id);
755         }
756
757         if(reply)
758                 g_object_unref(reply);
759
760         NOTIFICATION_DBG("notification_ipc_request_update done [result: %d, priv_id :%d]", result, priv_id);
761         return result;
762 }
763
764 int notification_ipc_request_update_async(notification_h noti,
765                 void (*result_cb)(int priv_id, int result, void *data), void *user_data)
766 {
767         int result;
768         result_cb_item *cb_item;
769         GVariant *body;
770
771         result = _dbus_init();
772         if (result != NOTIFICATION_ERROR_NONE) {
773                 NOTIFICATION_ERR("Can't init dbus %d", result);
774                 return result;
775         }
776
777         cb_item = calloc(1, sizeof(result_cb_item));
778         if (cb_item == NULL)
779                 return NOTIFICATION_ERROR_OUT_OF_MEMORY;
780
781         cb_item->result_cb = result_cb;
782         cb_item->data = user_data;
783
784         body = notification_ipc_make_gvariant_from_noti(noti);
785         if (body == NULL) {
786                 NOTIFICATION_ERR("cannot make gvariant");
787                 free(cb_item);
788                 return NOTIFICATION_ERROR_OUT_OF_MEMORY;
789         }
790
791         result = _send_async_noti(body, cb_item, "update_noti");
792         NOTIFICATION_DBG("notification_ipc_request_update_async done [result: %d]", result);
793
794         if (result != NOTIFICATION_ERROR_NONE) {
795                 free(cb_item);
796                 cb_item = NULL;
797         }
798
799         g_variant_unref(body);
800
801         return result;
802 }
803
804 int notification_ipc_request_refresh(void)
805 {
806         int result;
807         GDBusMessage *reply = NULL;
808         GVariant *body;
809
810         result = _dbus_init();
811         if (result != NOTIFICATION_ERROR_NONE) {
812                 NOTIFICATION_ERR("Can't init dbus %d", result);
813                 return result;
814         }
815
816         body = g_variant_new("(i)", NOTIFICATION_OP_REFRESH);
817         result = _send_sync_noti(body, &reply, "refresh_noti");
818
819         if(reply)
820                 g_object_unref(reply);
821
822         NOTIFICATION_ERR("notification_ipc_request_refresh done [result: %d]", result);
823         return result;
824 }
825
826 int notification_ipc_request_delete_single(notification_type_e type, char *pkgname, int priv_id)
827 {
828         int result;
829         int id;
830         GDBusMessage *reply = NULL;
831         GVariant *body;
832         GVariant *reply_body;
833
834         result = _dbus_init();
835         if (result != NOTIFICATION_ERROR_NONE) {
836                 NOTIFICATION_ERR("Can't init dbus %d", result);
837                 return result;
838         }
839
840         body = g_variant_new("(si)", pkgname, priv_id);
841         result = _send_sync_noti(body, &reply, "del_noti_single");
842
843         if (result == NOTIFICATION_ERROR_NONE) {
844                 reply_body = g_dbus_message_get_body(reply);
845                 g_variant_get(reply_body, "(i)", &id);
846         }
847
848         if(reply)
849                 g_object_unref(reply);
850
851         NOTIFICATION_ERR("notification_ipc_request_delete_single done [result: %d]", result);
852         return result;
853 }
854
855 int notification_ipc_request_delete_multiple(notification_type_e type, char *pkgname)
856 {
857         int result;
858         int num_deleted;
859         GVariant *body;
860         GVariant *reply_body;
861         GDBusMessage *reply = NULL;
862
863         result = _dbus_init();
864         if (result != NOTIFICATION_ERROR_NONE) {
865                 NOTIFICATION_ERR("Can't init dbus %d", result);
866                 return result;
867         }
868
869         body = g_variant_new("(si)", pkgname, type);
870         result = _send_sync_noti(body, &reply, "del_noti_multiple");
871
872         if (result == NOTIFICATION_ERROR_NONE) {
873                 reply_body = g_dbus_message_get_body(reply);
874                 g_variant_get(reply_body, "(i)", &num_deleted);
875                 NOTIFICATION_ERR("num deleted:%d", num_deleted);
876         }
877
878         if(reply)
879                 g_object_unref(reply);
880
881         return result;
882 }
883
884 int notification_ipc_request_load_noti_by_tag(notification_h noti, const char *pkgname, const char *tag)
885 {
886         int result;
887         GDBusMessage *reply = NULL;
888         GVariant *body;
889         GVariant *reply_body;
890         GVariant *noti_body;
891
892         result = _dbus_init();
893         if (result != NOTIFICATION_ERROR_NONE) {
894                 NOTIFICATION_ERR("Can't init dbus %d", result);
895                 return result;
896         }
897
898         body = g_variant_new("(ss)", pkgname, tag);
899         result = _send_sync_noti(body, &reply, "load_noti_by_tag");
900
901         if (result == NOTIFICATION_ERROR_NONE) {
902                 reply_body = g_dbus_message_get_body(reply);
903                 g_variant_get(reply_body, "(v)", &noti_body);
904
905                 notification_ipc_make_noti_from_gvariant(noti, noti_body);
906                 g_variant_unref(noti_body);
907                 _print_noti(noti);
908
909         }
910
911         if(reply)
912                 g_object_unref(reply);
913
914         NOTIFICATION_DBG("notification_ipc_request_load_noti_by_tag done [result: %d]", result);
915         return result;
916 }
917
918 int notification_ipc_request_load_noti_by_priv_id(notification_h noti, const char *pkgname, int priv_id)
919 {
920         int result;
921         GDBusMessage *reply = NULL;
922         GVariant *body;
923         GVariant *reply_body;
924         GVariant *noti_body;
925
926         result = _dbus_init();
927         if (result != NOTIFICATION_ERROR_NONE) {
928                 NOTIFICATION_ERR("Can't init dbus %d", result);
929                 return result;
930         }
931
932         body = g_variant_new("(si)", pkgname, priv_id);
933         result = _send_sync_noti(body, &reply, "load_noti_by_priv_id");
934
935         if (result == NOTIFICATION_ERROR_NONE) {
936                 reply_body = g_dbus_message_get_body(reply);
937                 g_variant_get(reply_body, "(v)", &noti_body);
938
939                 notification_ipc_make_noti_from_gvariant(noti, noti_body);
940                 g_variant_unref(noti_body);
941                 _print_noti(noti);
942         }
943
944         if(reply)
945                 g_object_unref(reply);
946
947         NOTIFICATION_DBG("notification_ipc_request_load_noti_by_priv_id done [result: %d]", result);
948         return result;
949 }
950
951 int notification_ipc_request_get_count(notification_type_e type,
952                     const char *pkgname, int group_id, int priv_id, int *count)
953 {
954         int result;
955         GDBusMessage *reply = NULL;
956         GVariant *body;
957         GVariant *reply_body;
958         int re_count;
959
960         result = _dbus_init();
961         if (result != NOTIFICATION_ERROR_NONE) {
962                 NOTIFICATION_ERR("Can't init dbus %d", result);
963                 return result;
964         }
965
966         body = g_variant_new("(isii)", type, pkgname, group_id, priv_id);
967         result = _send_sync_noti(body, &reply, "get_noti_count");
968
969         if (result == NOTIFICATION_ERROR_NONE) {
970                 reply_body = g_dbus_message_get_body(reply);
971                 g_variant_get(reply_body, "(i)", &re_count);
972
973                 *count = re_count;
974                 NOTIFICATION_DBG("noti count [%d]", re_count);
975         }
976
977         if(reply)
978                 g_object_unref(reply);
979
980         NOTIFICATION_DBG("notification_ipc_request_get_count done [result: %d]", result);
981         return result;
982 }
983
984 int notification_ipc_request_load_noti_grouping_list(notification_type_e type, int count,
985                 notification_list_h *list)
986 {
987         int result;
988         GDBusMessage *reply = NULL;
989         GVariant *body;
990         GVariant *reply_body;
991         GVariant *iter_body;
992         GVariantIter *iter;
993         notification_h noti;
994
995         result = _dbus_init();
996         if (result != NOTIFICATION_ERROR_NONE) {
997                 NOTIFICATION_ERR("Can't init dbus %d", result);
998                 return result;
999         }
1000
1001         body = g_variant_new("(ii)", type, count);
1002         result = _send_sync_noti(body, &reply, "load_noti_grouping_list");
1003
1004         if (result == NOTIFICATION_ERROR_NONE) {
1005                 reply_body = g_dbus_message_get_body(reply);
1006                 g_variant_get(reply_body, "(a(v))", &iter);
1007
1008                 while (g_variant_iter_loop(iter, "(v)", &iter_body)) {
1009                         noti = notification_create(NOTIFICATION_TYPE_NOTI);
1010                         notification_ipc_make_noti_from_gvariant(noti, iter_body);
1011                         _print_noti(noti);
1012                         *list = notification_list_append(*list, noti);
1013                 }
1014                 g_variant_iter_free(iter);
1015         }
1016
1017         if(reply)
1018                 g_object_unref(reply);
1019
1020         NOTIFICATION_DBG("notification_ipc_request_load_noti_grouping_list done [result: %d]", result);
1021         return result;
1022 }
1023
1024 int notification_ipc_request_load_noti_detail_list(const char *pkgname,
1025                 int group_id,
1026                 int priv_id,
1027                 int count,
1028                 notification_list_h *list)
1029 {
1030         int result;
1031         GDBusMessage *reply = NULL;
1032         GVariant *body;
1033         GVariant *reply_body;
1034         GVariant *iter_body;
1035         GVariantIter *iter;
1036         notification_h noti;
1037
1038         result = _dbus_init();
1039         if (result != NOTIFICATION_ERROR_NONE) {
1040                 NOTIFICATION_ERR("Can't init dbus %d", result);
1041                 return result;
1042         }
1043
1044         body = g_variant_new("(siii)", pkgname, group_id, priv_id, count);
1045         result = _send_sync_noti(body, &reply, "load_noti_detail_list");
1046
1047         if (result == NOTIFICATION_ERROR_NONE) {
1048                 reply_body = g_dbus_message_get_body(reply);
1049                 g_variant_get(reply_body, "(a(v))", &iter);
1050
1051                 while (g_variant_iter_loop(iter, "(v)", &iter_body)) {
1052                         noti = notification_create(NOTIFICATION_TYPE_NOTI);
1053                         notification_ipc_make_noti_from_gvariant(noti, iter_body);
1054                         _print_noti(noti);
1055                         *list = notification_list_append(*list, noti);
1056                 }
1057                 g_variant_iter_free(iter);
1058         }
1059
1060         if(reply)
1061                 g_object_unref(reply);
1062
1063         NOTIFICATION_DBG("notification_ipc_request_load_noti_detail_list done [result: %d]", result);
1064         return result;
1065 }
1066
1067 int notification_ipc_request_get_setting_array(
1068                 notification_setting_h *setting_array,
1069                 int *count)
1070 {
1071         int result;
1072         GDBusMessage *reply = NULL;
1073         GVariant *reply_body;
1074         GVariant *iter_body;
1075         GVariantIter *iter;
1076         int setting_cnt;
1077         notification_setting_h result_setting_array;
1078         notification_setting_h temp;
1079         int setting_idx;
1080
1081         result = _dbus_init();
1082         if (result != NOTIFICATION_ERROR_NONE) {
1083                 NOTIFICATION_ERR("Can't init dbus %d", result);
1084                 return result;
1085         }
1086
1087         result = _send_sync_noti(NULL, &reply, "get_setting_array");
1088
1089         if (result == NOTIFICATION_ERROR_NONE) {
1090                 reply_body = g_dbus_message_get_body(reply);
1091                 g_variant_get(reply_body, "(ia(v))", &setting_cnt, &iter);
1092
1093                 NOTIFICATION_DBG("get setting arr cnt: %d", setting_cnt);
1094                 result_setting_array = (struct notification_setting *)malloc(sizeof(struct notification_setting) * setting_cnt);
1095                 if (result_setting_array == NULL) {
1096                         NOTIFICATION_ERR("malloc failed");
1097                         g_object_unref(reply);
1098                         g_variant_iter_free(iter);
1099                         return NOTIFICATION_ERROR_OUT_OF_MEMORY;
1100                 }
1101
1102                 setting_idx = 0;
1103                 while (g_variant_iter_loop(iter, "(v)", &iter_body)) {
1104                         temp = result_setting_array + setting_idx;
1105                         notification_ipc_make_setting_from_gvariant(temp, iter_body);
1106                         setting_idx++;
1107                 }
1108
1109                 *count = setting_cnt;
1110                 *setting_array = result_setting_array;
1111                 g_variant_iter_free(iter);
1112         }
1113
1114         if(reply)
1115                 g_object_unref(reply);
1116
1117         NOTIFICATION_DBG("notification_ipc_request_get_setting_array done [result: %d]", result);
1118         return result;
1119 }
1120
1121 int notification_ipc_request_get_setting_by_package_name(
1122                 const char *package_name, notification_setting_h *setting)
1123 {
1124         int result;
1125         GDBusMessage *reply = NULL;
1126         GVariant *body;
1127         GVariant *reply_body;
1128         GVariant *setting_body;
1129         notification_setting_h result_setting;
1130
1131         result = _dbus_init();
1132         if (result != NOTIFICATION_ERROR_NONE) {
1133                 NOTIFICATION_ERR("Can't init dbus %d", result);
1134                 return result;
1135         }
1136
1137         body = g_variant_new("(s)", package_name);
1138         result = _send_sync_noti(body, &reply, "get_setting_by_package_name");
1139
1140         if (result == NOTIFICATION_ERROR_NONE) {
1141                 reply_body = g_dbus_message_get_body(reply);
1142                 g_variant_get(reply_body, "(v)", &setting_body);
1143
1144                 result_setting = (struct notification_setting *)malloc(sizeof(struct notification_setting));
1145                 if (result_setting == NULL) {
1146                         NOTIFICATION_ERR("malloc failed");
1147                         g_object_unref(reply);
1148                         g_variant_unref(body);
1149                         return NOTIFICATION_ERROR_OUT_OF_MEMORY;
1150                 }
1151                 notification_ipc_make_setting_from_gvariant(result_setting, setting_body);
1152
1153                 *setting = result_setting;
1154                 g_variant_unref(setting_body);
1155         }
1156
1157         if(reply)
1158                 g_object_unref(reply);
1159
1160         NOTIFICATION_DBG("notification_ipc_request_get_setting_by_package_name done [result: %d]", result);
1161         return result;
1162 }
1163
1164 int notification_ipc_request_load_system_setting(notification_system_setting_h *setting)
1165 {
1166         int result;
1167         GDBusMessage *reply = NULL;
1168         GVariant *setting_body;
1169         GVariant *reply_body;
1170         notification_system_setting_h result_setting;
1171
1172         result = _dbus_init();
1173         if (result != NOTIFICATION_ERROR_NONE) {
1174                 NOTIFICATION_ERR("Can't init dbus %d", result);
1175                 return result;
1176         }
1177
1178         result = _send_sync_noti(NULL, &reply, "load_system_setting");
1179
1180         if (result == NOTIFICATION_ERROR_NONE) {
1181                 reply_body = g_dbus_message_get_body(reply);
1182                 g_variant_get(reply_body, "(v)", &setting_body);
1183
1184                 result_setting = (struct notification_system_setting *)malloc(sizeof(struct notification_system_setting));
1185                 if (result_setting == NULL) {
1186                         NOTIFICATION_ERR("malloc failed");
1187                         g_object_unref(reply);
1188                         return NOTIFICATION_ERROR_OUT_OF_MEMORY;
1189                 }
1190                 notification_ipc_make_system_setting_from_gvariant(result_setting, setting_body);
1191
1192                 *setting = result_setting;
1193                 g_variant_unref(setting_body);
1194         }
1195
1196         if(reply)
1197                 g_object_unref(reply);
1198
1199         NOTIFICATION_DBG("notification_ipc_request_load_system_setting done [result: %d]", result);
1200         return result;
1201 }
1202
1203 int notification_ipc_update_setting(notification_setting_h setting)
1204 {
1205         int result;
1206         GDBusMessage *reply = NULL;
1207         GVariant *body;
1208
1209         result = _dbus_init();
1210         if (result != NOTIFICATION_ERROR_NONE) {
1211                 NOTIFICATION_ERR("Can't init dbus %d", result);
1212                 return result;
1213         }
1214
1215         body = g_variant_new("(siii)",
1216                         setting->package_name,
1217                         (int)(setting->allow_to_notify),
1218                         (int)(setting->do_not_disturb_except),
1219                         (int)(setting->visibility_class));
1220
1221         result = _send_sync_noti(body, &reply, "update_noti_setting");
1222
1223         if(reply)
1224                 g_object_unref(reply);
1225
1226         NOTIFICATION_DBG("notification_ipc_update_setting done [result: %d]", result);
1227         return result;
1228 }
1229
1230 int notification_ipc_update_system_setting(notification_system_setting_h system_setting)
1231 {
1232         int result;
1233         GDBusMessage *reply = NULL;
1234         GVariant *body;
1235
1236         result = _dbus_init();
1237         if (result != NOTIFICATION_ERROR_NONE) {
1238                 NOTIFICATION_ERR("Can't init dbus %d", result);
1239                 return result;
1240         }
1241
1242         body = g_variant_new("(ii)",
1243                         (int)(system_setting->do_not_disturb),
1244                         (int)(system_setting->visibility_class));
1245
1246         result = _send_sync_noti(body, &reply, "update_noti_sys_setting");
1247
1248         if (reply)
1249                 g_object_unref(reply);
1250
1251         NOTIFICATION_DBG("notification_ipc_update_system_setting done [result: %d]", result);
1252         return result;
1253 }
1254
1255 int notification_ipc_noti_setting_property_set(const char *pkgname, const char *property, const char *value)
1256 {
1257         int result;
1258         GDBusMessage *reply = NULL;
1259         GVariant *body;
1260
1261         result = _dbus_init();
1262         if (result != NOTIFICATION_ERROR_NONE) {
1263                 NOTIFICATION_ERR("Can't init dbus %d", result);
1264                 return result;
1265         }
1266         body = g_variant_new("(sss)", pkgname, property, value);
1267
1268         result = _send_sync_noti(body, &reply, "set_noti_property");
1269
1270         if (reply)
1271                 g_object_unref(reply);
1272
1273         NOTIFICATION_DBG("notification_ipc_noti_setting_property_set done [result: %d]", result);
1274         return result;
1275 }
1276
1277 int notification_ipc_noti_setting_property_get(const char *pkgname, const char *property, char **value)
1278 {
1279         int result;
1280         GDBusMessage *reply = NULL;
1281         GVariant *body;
1282         GVariant *reply_body = NULL;
1283         gchar *ret_val;
1284
1285         result = _dbus_init();
1286
1287         if (result != NOTIFICATION_ERROR_NONE) {
1288                 NOTIFICATION_ERR("Can't init dbus %d", result);
1289                 return result;
1290         }
1291
1292         body = g_variant_new("(ss)", pkgname, property);
1293         result = _send_sync_noti(body, &reply, "get_noti_property");
1294
1295         if (result == NOTIFICATION_ERROR_NONE) {
1296                 reply_body = g_dbus_message_get_body(reply);
1297                 g_variant_get(body, "(s)", &ret_val);
1298
1299                 if (ret_val != NULL) {
1300                         *value = g_strdup(ret_val);
1301                         g_free(ret_val);
1302                 }
1303         }
1304
1305         if(reply)
1306                 g_object_unref(reply);
1307
1308         NOTIFICATION_DBG("notification_ipc_noti_setting_property_get done [result: %d]", result);
1309         return result;
1310 }
1311
1312 EXPORT_API GVariant *notification_ipc_make_gvariant_from_noti(notification_h noti)
1313 {
1314         NOTIFICATION_DBG("make gvariant from noti");
1315         int i = 0;
1316         int b_encode_len = 0;
1317         bundle_raw *args = NULL;
1318         bundle_raw *group_args = NULL;
1319         bundle_raw *b_image_path = NULL;
1320         bundle_raw *b_execute_option = NULL;
1321         bundle_raw *b_service_responding = NULL;
1322         bundle_raw *b_service_single_launch = NULL;
1323         bundle_raw *b_service_multi_launch = NULL;
1324         bundle_raw *b_event_handler[NOTIFICATION_EVENT_TYPE_MAX] = {NULL, };
1325         bundle_raw *b_text = NULL;
1326         bundle_raw *b_key = NULL;
1327         bundle_raw *b_format_args = NULL;
1328         GVariant *body = NULL;
1329         GVariant *result_body = NULL;
1330         GVariantBuilder builder;
1331
1332         g_variant_builder_init(&builder, G_VARIANT_TYPE("a{iv}"));
1333         g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_NOTI_TYPE, g_variant_new_int32(noti->type));
1334         g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_LAYOUT, g_variant_new_int32(noti->layout));
1335         g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_GROUP_ID, g_variant_new_int32(noti->group_id));
1336         g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_INTERNAL_GROUP_ID, g_variant_new_int32(noti->internal_group_id));
1337         g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_PRIV_ID, g_variant_new_int32(noti->priv_id));
1338         g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_CALLER_PKGNAME, g_variant_new_string((const gchar *)noti->caller_pkgname));
1339         g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_DISPLAY_APPLIST, g_variant_new_int32(noti->display_applist));
1340
1341         if (noti->args) {
1342                 bundle_encode(noti->args, (bundle_raw **)&args, NULL);
1343                 g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_ARGS, g_variant_new_string((const gchar *)args));
1344
1345                 if (args)
1346                         bundle_free_encoded_rawdata(&args);
1347         }
1348
1349         if (noti->group_args) {
1350                 bundle_encode(noti->group_args, (bundle_raw **)&group_args,
1351                               &b_encode_len);
1352                 g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_GROUP_ARGS, g_variant_new_string((const gchar *)group_args));
1353
1354                 if (group_args)
1355                         bundle_free_encoded_rawdata(&group_args);
1356         }
1357
1358         if (noti->b_execute_option) {
1359                 bundle_encode(noti->b_execute_option,
1360                               (bundle_raw **)&b_execute_option, &b_encode_len);
1361                 g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_EXECUTE_OPTION, g_variant_new_string((const gchar *)b_execute_option));
1362
1363                 if (b_execute_option)
1364                         bundle_free_encoded_rawdata(&b_execute_option);
1365         }
1366
1367         if (noti->b_service_responding) {
1368                 bundle_encode(noti->b_service_responding,
1369                               (bundle_raw **)&b_service_responding, &b_encode_len);
1370                 g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_SERVICE_RESPONDING, g_variant_new_string((const gchar *)b_service_responding));
1371
1372                 if (b_service_responding)
1373                         bundle_free_encoded_rawdata(&b_service_responding);
1374         }
1375
1376         if (noti->b_service_single_launch) {
1377                 bundle_encode(noti->b_service_single_launch,
1378                               (bundle_raw **)&b_service_single_launch, &b_encode_len);
1379                 g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_SERVICE_SINGLE_LAUNCH, g_variant_new_string((const gchar *)b_service_single_launch));
1380
1381                 if (b_service_single_launch)
1382                         bundle_free_encoded_rawdata(&b_service_single_launch);
1383         }
1384
1385         if (noti->b_service_multi_launch) {
1386                 bundle_encode(noti->b_service_multi_launch,
1387                               (bundle_raw **)&b_service_multi_launch, &b_encode_len);
1388                 g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_SERVICE_MULTI_LAUNCH, g_variant_new_string((const gchar *)b_service_multi_launch));
1389
1390                 if (b_service_multi_launch)
1391                         bundle_free_encoded_rawdata(&b_service_multi_launch);
1392         }
1393
1394         for (i = 0; i < NOTIFICATION_EVENT_TYPE_MAX; i++) {
1395                 if (noti->b_event_handler[i]) {
1396                         bundle_encode(noti->b_event_handler[i],
1397                                         (bundle_raw **)&b_event_handler[i], &b_encode_len);
1398                         g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_BUTTON1_EVENT + i, g_variant_new_string((const gchar *)b_event_handler[i]));
1399
1400                         if (b_event_handler[i])
1401                                 bundle_free_encoded_rawdata(&b_event_handler[i]);
1402                 }
1403         }
1404
1405         if (noti->launch_pkgname)
1406                 g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_LAUNCH_PKGNAME, g_variant_new_string((const gchar *)noti->launch_pkgname));
1407
1408         if (noti->domain != NULL)
1409                 g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_DOMAIN, g_variant_new_string((const gchar *)noti->domain));
1410
1411         if (noti->dir != NULL)
1412                 g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_DIR, g_variant_new_string((const gchar *)noti->dir));
1413
1414         if (noti->b_text) {
1415                 bundle_encode(noti->b_text, (bundle_raw **)&b_text, &b_encode_len);
1416                 g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_TEXT, g_variant_new_string((const gchar *)b_text));
1417
1418                 if (b_text)
1419                         bundle_free_encoded_rawdata(&b_text);
1420         }
1421
1422         if (noti->b_key) {
1423                 bundle_encode(noti->b_key, (bundle_raw **)&b_key, &b_encode_len);
1424                 g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_KEY, g_variant_new_string((const gchar *)b_key));
1425
1426                 if (b_key)
1427                         bundle_free_encoded_rawdata(&b_key);
1428         }
1429
1430         if (noti->b_format_args) {
1431                 bundle_encode(noti->b_format_args,
1432                               (bundle_raw **)&b_format_args, &b_encode_len);
1433                 g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_FORMAT_ARGS, g_variant_new_string((const gchar *)b_format_args));
1434
1435                 if (b_format_args)
1436                         bundle_free_encoded_rawdata(&b_format_args);
1437         }
1438
1439         if (noti->num_format_args != 0)
1440                 g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_NUM_FORMAT_ARGS, g_variant_new_int32(noti->num_format_args));
1441
1442         if (noti->b_image_path) {
1443                 bundle_encode(noti->b_image_path,
1444                               (bundle_raw **)&b_image_path, &b_encode_len);
1445                 g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_IMAGE_PATH, g_variant_new_string((const gchar *)b_image_path));
1446
1447                 if (b_image_path)
1448                         bundle_free_encoded_rawdata(&b_image_path);
1449         }
1450
1451         if (noti->sound_type != NOTIFICATION_SOUND_TYPE_NONE)
1452                 g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_SOUND_TYPE, g_variant_new_int32(noti->sound_type));
1453
1454         if (noti->sound_path)
1455                 g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_SOUND_PATH, g_variant_new_string((const gchar *)noti->sound_path));
1456
1457         if (noti->vibration_type != NOTIFICATION_VIBRATION_TYPE_NONE)
1458                 g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_VIBRATION_TYPE, g_variant_new_int32(noti->vibration_type));
1459
1460         if (noti->vibration_path)
1461                 g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_VIBRATION_PATH, g_variant_new_string((const gchar *)noti->vibration_path));
1462
1463         if (noti->led_operation != NOTIFICATION_LED_OP_OFF)
1464                 g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_LED_OPERATION, g_variant_new_int32(noti->led_operation));
1465
1466         if (noti->led_argb != 0)
1467                 g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_LED_ARGB, g_variant_new_int32(noti->led_argb));
1468
1469         if (noti->led_on_ms != 0)
1470                 g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_LED_ON_MS, g_variant_new_int32(noti->led_on_ms));
1471
1472         if (noti->led_off_ms != 0)
1473                 g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_LED_OFF_MS, g_variant_new_int32(noti->led_off_ms));
1474
1475         if (noti->time != 0)
1476                 g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_TIME, g_variant_new_int32(noti->time));
1477
1478         if (noti->insert_time != 0)
1479                 g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_INSERT_TIME, g_variant_new_int32(noti->insert_time));
1480
1481         if (noti->flags_for_property != 0)
1482                 g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_FLAGS_FOR_PROPERTY, g_variant_new_int32(noti->flags_for_property));
1483
1484         if (noti->progress_size != 0.0)
1485                 g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_PROGRESS_SIZE, g_variant_new_double(noti->progress_size));
1486
1487         if (noti->progress_percentage != 0.0)
1488                 g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_PROGRESS_PERCENTAGE, g_variant_new_double(noti->progress_percentage));
1489
1490         if (noti->app_icon_path != NULL)
1491                 g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_APP_ICON_PATH, g_variant_new_string((const gchar *)noti->app_icon_path));
1492         if (noti->app_name != NULL)
1493                 g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_APP_NAME, g_variant_new_string((const gchar *)noti->app_name));
1494         if (noti->temp_title != NULL)
1495                 g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_TEMP_TITLE, g_variant_new_string((const gchar *)noti->temp_title));
1496         if (noti->temp_content != NULL)
1497                 g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_TEMP_CONTENT, g_variant_new_string((const gchar *)noti->temp_content));
1498         if (noti->tag != NULL)
1499                 g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_TAG, g_variant_new_string((const gchar *)noti->tag));
1500
1501         if (noti->ongoing_flag != 0)
1502                 g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_ONGOING_FLAG, g_variant_new_int32(noti->ongoing_flag));
1503         if (noti->auto_remove != 0)
1504                 g_variant_builder_add(&builder, "{iv}", NOTIFICATION_DATA_TYPE_AUTO_REMOVE, g_variant_new_int32(noti->auto_remove));
1505
1506         result_body = g_variant_builder_end(&builder);
1507         body = g_variant_new("(v)", result_body);
1508
1509         return body;
1510 }
1511
1512 static gboolean _variant_to_int_dict(GHashTable **dict, GVariant *variant) {
1513
1514         GVariantIter iter;
1515         int key;
1516         int *hash_key;
1517         GVariant *value;
1518
1519         *dict = g_hash_table_new_full(g_int_hash, g_int_equal, g_free, (GDestroyNotify)g_variant_unref);
1520         if (*dict == NULL)
1521                 return FALSE;
1522
1523         g_variant_iter_init(&iter, variant);
1524         while (g_variant_iter_next(&iter, "{iv}", &key, &value)) {
1525                 hash_key = (int *)calloc(sizeof(int), 1);
1526                 if (hash_key == NULL) {
1527                         g_hash_table_remove_all(*dict);
1528                         return FALSE;
1529                 }
1530                 *hash_key = key;
1531                 g_hash_table_insert(*dict, (gpointer)hash_key, value);
1532         }
1533         return TRUE;
1534 }
1535
1536 static gboolean _variant_dict_lookup(GHashTable *dict,
1537                 int key,
1538                 const gchar  *format_string,
1539                 ...)
1540 {
1541         GVariant *value;
1542         va_list ap;
1543
1544         value = g_hash_table_lookup(dict, (gpointer)&key);
1545
1546         if (value == NULL || !g_variant_check_format_string(value, format_string, FALSE))
1547                 return FALSE;
1548
1549         va_start(ap, format_string);
1550         g_variant_get_va(value, format_string, NULL, &ap);
1551         va_end(ap);
1552
1553         return TRUE;
1554 }
1555
1556 /*!
1557  * functions creating notification packet
1558  */
1559 EXPORT_API int notification_ipc_make_noti_from_gvariant(notification_h noti,
1560                 GVariant *variant) {
1561
1562         NOTIFICATION_DBG("make noti from GVariant");
1563         GHashTable *dict;
1564
1565         int i;
1566         char *caller_pkgname = NULL;
1567         char *launch_pkgname = NULL;
1568         bundle_raw *args = NULL;
1569         bundle_raw *group_args = NULL;
1570         bundle_raw *b_execute_option = NULL;
1571         bundle_raw *b_service_responding = NULL;
1572         bundle_raw *b_service_single_launch = NULL;
1573         bundle_raw *b_service_multi_launch = NULL;
1574         bundle_raw *b_event_handler[NOTIFICATION_EVENT_TYPE_MAX] = { NULL, };
1575         char *domain = NULL;
1576         char *dir = NULL;
1577         bundle_raw *b_text = NULL;
1578         bundle_raw *b_key = NULL;
1579         bundle_raw *b_format_args = NULL;
1580         bundle_raw *b_image_path = NULL;
1581         char *sound_path = NULL;
1582         char *vibration_path = NULL;
1583         char *app_icon_path = NULL;
1584         char *app_name = NULL;
1585         char *temp_title = NULL;
1586         char *temp_content = NULL;
1587         char *tag = NULL;
1588
1589         if (noti == NULL) {
1590                 NOTIFICATION_ERR("invalid data noti NULL");
1591                 return NOTIFICATION_ERROR_INVALID_PARAMETER;
1592         }
1593
1594         if (variant == NULL) {
1595                 NOTIFICATION_ERR("invalid data variant NULL");
1596                 return NOTIFICATION_ERROR_INVALID_PARAMETER;
1597         }
1598
1599         if (!_variant_to_int_dict(&dict, variant))
1600                 return NOTIFICATION_ERROR_OUT_OF_MEMORY;
1601
1602         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_NOTI_TYPE, "i", &noti->type);
1603         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_LAYOUT, "i", &noti->layout);
1604         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_GROUP_ID, "i", &noti->group_id);
1605         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_INTERNAL_GROUP_ID, "i", &noti->internal_group_id);
1606         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_PRIV_ID, "i", &noti->priv_id);
1607         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_CALLER_PKGNAME, "&s", &caller_pkgname);
1608         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_LAUNCH_PKGNAME, "&s", &launch_pkgname);
1609         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_ARGS, "&s", &args);
1610         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_GROUP_ARGS, "&s", &group_args);
1611         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_EXECUTE_OPTION, "&s", &b_execute_option);
1612         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_SERVICE_RESPONDING, "&s", &b_service_responding);
1613         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_SERVICE_SINGLE_LAUNCH, "&s", &b_service_single_launch);
1614         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_SERVICE_MULTI_LAUNCH, "&s", &b_service_multi_launch);
1615         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_BUTTON1_EVENT, "&s", &noti->b_event_handler[NOTIFICATION_EVENT_TYPE_CLICK_ON_BUTTON_1]);
1616         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_BUTTON2_EVENT, "&s", &noti->b_event_handler[NOTIFICATION_EVENT_TYPE_CLICK_ON_BUTTON_2]);
1617         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_BUTTON3_EVENT, "&s", &noti->b_event_handler[NOTIFICATION_EVENT_TYPE_CLICK_ON_BUTTON_3]);
1618         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_BUTTON4_EVENT, "&s", &noti->b_event_handler[NOTIFICATION_EVENT_TYPE_CLICK_ON_BUTTON_4]);
1619         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_BUTTON5_EVENT, "&s", &noti->b_event_handler[NOTIFICATION_EVENT_TYPE_CLICK_ON_BUTTON_5]);
1620         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_BUTTON6_EVENT, "&s", &noti->b_event_handler[NOTIFICATION_EVENT_TYPE_CLICK_ON_BUTTON_6]);
1621         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_ICON_EVENT, "&s", &noti->b_event_handler[NOTIFICATION_EVENT_TYPE_CLICK_ON_ICON]);
1622         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_THUMBNAIL_EVENT, "&s", &noti->b_event_handler[NOTIFICATION_EVENT_TYPE_CLICK_ON_THUMBNAIL]);
1623         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_DOMAIN, "&s", &domain);
1624         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_DIR, "&s", &dir);
1625         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_TEXT, "&s", &b_text);
1626         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_KEY, "&s", &b_key);
1627         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_FORMAT_ARGS, "&s", &b_format_args);
1628         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_NUM_FORMAT_ARGS, "i", &noti->num_format_args);
1629         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_IMAGE_PATH, "&s", &b_image_path);
1630         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_SOUND_TYPE, "i", &noti->sound_type);
1631         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_SOUND_PATH, "&s", &sound_path);
1632         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_VIBRATION_TYPE, "i", &noti->vibration_type);
1633         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_VIBRATION_PATH, "&s", &vibration_path);
1634         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_LED_OPERATION, "i", &noti->led_operation);
1635         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_LED_ARGB, "i", &noti->led_argb);
1636         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_LED_ON_MS, "i", &noti->led_on_ms);
1637         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_LED_OFF_MS, "i", &noti->led_off_ms);
1638         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_TIME, "i", &noti->time);
1639         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_INSERT_TIME, "i", &noti->insert_time);
1640         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_FLAGS_FOR_PROPERTY, "i", &noti->flags_for_property);
1641         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_DISPLAY_APPLIST, "i", &noti->display_applist);
1642         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_PROGRESS_SIZE, "d", &noti->progress_size);
1643         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_PROGRESS_PERCENTAGE, "d", &noti->progress_percentage);
1644         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_APP_ICON_PATH, "&s", &app_icon_path);
1645         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_APP_NAME, "&s", &app_name);
1646         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_TEMP_TITLE, "&s", &temp_title);
1647         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_TEMP_CONTENT, "&s", &temp_content);
1648         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_TAG, "&s", &tag);
1649         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_ONGOING_FLAG, "i", &noti->ongoing_flag);
1650         _variant_dict_lookup(dict, NOTIFICATION_DATA_TYPE_AUTO_REMOVE, "i", &noti->auto_remove);
1651
1652         noti->caller_pkgname = _dup_string(caller_pkgname);
1653         noti->launch_pkgname = _dup_string(launch_pkgname);
1654         noti->args = _create_bundle_from_bundle_raw(args);
1655         noti->group_args = _create_bundle_from_bundle_raw(group_args);
1656         noti->b_execute_option = _create_bundle_from_bundle_raw(b_execute_option);
1657         noti->b_service_responding = _create_bundle_from_bundle_raw(
1658                         b_service_responding);
1659         noti->b_service_single_launch = _create_bundle_from_bundle_raw(
1660                         b_service_single_launch);
1661         noti->b_service_multi_launch = _create_bundle_from_bundle_raw(
1662                         b_service_multi_launch);
1663         for (i = 0; i < NOTIFICATION_EVENT_TYPE_MAX; i++) {
1664                 noti->b_event_handler[i] = _create_bundle_from_bundle_raw(
1665                                 b_event_handler[i]);
1666         }
1667         noti->domain = _dup_string(domain);
1668         noti->dir = _dup_string(dir);
1669         noti->b_text = _create_bundle_from_bundle_raw(b_text);
1670         noti->b_key = _create_bundle_from_bundle_raw(b_key);
1671         noti->b_format_args = _create_bundle_from_bundle_raw(b_format_args);
1672         noti->b_image_path = _create_bundle_from_bundle_raw(b_image_path);
1673         noti->sound_path = _dup_string(sound_path);
1674         noti->vibration_path = _dup_string(vibration_path);
1675         noti->app_icon_path = _dup_string(app_icon_path);
1676         noti->app_name = _dup_string(app_name);
1677         noti->temp_title = _dup_string(temp_title);
1678         noti->temp_content = _dup_string(temp_content);
1679         noti->tag = _dup_string(tag);
1680
1681         g_hash_table_remove_all(dict);
1682
1683         return NOTIFICATION_ERROR_NONE;
1684 }
1685
1686 EXPORT_API GVariant *notification_ipc_make_gvariant_from_system_setting(struct notification_system_setting *noti_setting)
1687 {
1688         GVariant *body = NULL;
1689         body = g_variant_new("(ii)",
1690                         noti_setting->do_not_disturb,
1691                         noti_setting->visibility_class);
1692         return body;
1693 }
1694
1695 EXPORT_API int notification_ipc_make_system_setting_from_gvariant(struct notification_system_setting *noti_setting,
1696                 GVariant *variant)
1697 {
1698         int do_not_disturb;
1699         int visibility_class;
1700
1701         if (noti_setting == NULL) {
1702                 NOTIFICATION_ERR("invalid data");
1703                 return NOTIFICATION_ERROR_INVALID_PARAMETER;
1704         }
1705         g_variant_get(variant,
1706                         "(ii)",
1707                         &do_not_disturb,
1708                         &visibility_class);
1709
1710         NOTIFICATION_DBG("system setting  #### %d, %d",
1711                         do_not_disturb, visibility_class);
1712
1713         noti_setting->do_not_disturb = do_not_disturb;
1714         noti_setting->visibility_class = visibility_class;
1715
1716         NOTIFICATION_DBG("system setting2  #### %d, %d",
1717                         noti_setting->do_not_disturb, noti_setting->visibility_class);
1718
1719         return NOTIFICATION_ERROR_NONE;
1720 }
1721
1722 EXPORT_API GVariant *notification_ipc_make_gvariant_from_setting(struct notification_setting *noti_setting)
1723 {
1724         GVariant *body = NULL;
1725
1726         body = g_variant_new("(siii)",
1727                         noti_setting->package_name,
1728                         noti_setting->allow_to_notify,
1729                         noti_setting->do_not_disturb_except,
1730                         noti_setting->visibility_class);
1731
1732         return body;
1733 }
1734
1735 EXPORT_API int notification_ipc_make_setting_from_gvariant(struct notification_setting *noti_setting,
1736                 GVariant *variant)
1737 {
1738         NOTIFICATION_DBG("notification_ipc_make_setting_from_gvariant !!!!");
1739         char *pkgname;
1740         int allow_to_notify;
1741         int do_not_disturb_except;
1742         int visibility_class;
1743
1744         if (noti_setting == NULL || variant == NULL) {
1745                 NOTIFICATION_ERR("invalid data");
1746                 return NOTIFICATION_ERROR_INVALID_PARAMETER;
1747         }
1748         g_variant_get(variant,
1749                         "(&siii)",
1750                         &pkgname,
1751                         &allow_to_notify,
1752                         &do_not_disturb_except,
1753                         &visibility_class);
1754
1755         NOTIFICATION_DBG("setting from variant %s !!", pkgname);
1756
1757         noti_setting->package_name = _dup_string(pkgname);
1758         noti_setting->allow_to_notify = allow_to_notify;
1759         noti_setting->do_not_disturb_except = do_not_disturb_except;
1760         noti_setting->visibility_class = visibility_class;
1761
1762         NOTIFICATION_DBG("setting from variant %s, %s",
1763                         noti_setting->package_name, pkgname);
1764
1765         return NOTIFICATION_ERROR_NONE;
1766 }
1767
1768 static int _send_service_register()
1769 {
1770         NOTIFICATION_DBG("service register");
1771         GDBusMessage *reply = NULL;
1772         int result;
1773
1774         result = _send_sync_noti(NULL, &reply, "noti_service_register");
1775
1776         if(reply)
1777                 g_object_unref(reply);
1778
1779         NOTIFICATION_ERR("_send_service_register done = %s, result = %d", _bus_name, result);
1780         return result;
1781 }
1782
1783 static int _ipc_monitor_register(void)
1784 {
1785         NOTIFICATION_ERR("register a service\n");
1786
1787         return  _send_service_register();
1788 }
1789
1790 static void _on_name_appeared(GDBusConnection *connection,
1791                 const gchar     *name,
1792                 const gchar     *name_owner,
1793                 gpointer         user_data)
1794 {
1795         NOTIFICATION_DBG("name appeared : %s", name);
1796         is_master_started = 1;
1797         _ipc_monitor_register();
1798
1799         /* TODO: dbus activation isn't enough ? */
1800         _do_deffered_task();
1801 }
1802
1803 static void _on_name_vanished(GDBusConnection *connection,
1804                 const gchar     *name,
1805                 gpointer         user_data)
1806 {
1807         NOTIFICATION_DBG("name vanished : %s", name);
1808         is_master_started = 0;
1809 }
1810
1811 int notification_ipc_monitor_init(void)
1812 {
1813         int ret;
1814
1815         ret = _dbus_init();
1816         if (ret != NOTIFICATION_ERROR_NONE) {
1817                 NOTIFICATION_ERR("Can't init dbus %d", ret);
1818                 return ret;
1819         }
1820
1821         ret = _dbus_signal_init();
1822         if (ret != NOTIFICATION_ERROR_NONE) {
1823                 NOTIFICATION_ERR("Can't signal_init %d", ret);
1824                 return ret;
1825         }
1826
1827         ret = _ipc_monitor_register();
1828         if (ret != NOTIFICATION_ERROR_NONE) {
1829                 NOTIFICATION_ERR("Can't init ipc_monitor_register %d", ret);
1830                 return ret;
1831         }
1832
1833         if (provider_monitor_id == 0) {
1834                 provider_monitor_id = g_bus_watch_name_on_connection(
1835                                 _gdbus_conn,
1836                                 PROVIDER_BUS_NAME,
1837                                 G_BUS_NAME_WATCHER_FLAGS_NONE,
1838                                 _on_name_appeared,
1839                                 _on_name_vanished,
1840                                 NULL,
1841                                 NULL);
1842
1843                 if (provider_monitor_id == 0) {
1844                         g_dbus_connection_signal_unsubscribe(_gdbus_conn, monitor_id);
1845                         monitor_id = 0;
1846                         NOTIFICATION_ERR("watch on name fail");
1847                         return NOTIFICATION_ERROR_IO_ERROR;
1848                 }
1849         }
1850
1851         return NOTIFICATION_ERROR_NONE;
1852 }
1853
1854 static int _ipc_monitor_deregister(void)
1855 {
1856         if (provider_monitor_id) {
1857                 g_bus_unwatch_name(provider_monitor_id);
1858                 provider_monitor_id = 0;
1859         }
1860
1861         if (monitor_id) {
1862                 g_dbus_connection_signal_unsubscribe(_gdbus_conn, monitor_id);
1863                 monitor_id = 0;
1864         }
1865
1866         return NOTIFICATION_ERROR_NONE;
1867 }
1868
1869 int notification_ipc_monitor_fini(void)
1870 {
1871         return  _ipc_monitor_deregister();
1872 }