Merge tizen_next codes into tizen branch
[platform/core/connectivity/bluetooth-frwk.git] / bt-service / bt-service-event-receiver.c
1 /*
2  * Copyright (c) 2011 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
18 #include <glib.h>
19 #include <string.h>
20 #include <dlog.h>
21 #include <vconf.h>
22 #include <vconf-internal-bt-keys.h>
23
24 #include "bluetooth-api.h"
25 #include "bt-internal-types.h"
26
27 #include "bt-service-common.h"
28 #include "bt-service-event.h"
29 #include "bt-service-main.h"
30 #include "bt-service-adapter.h"
31 #include "bt-service-adapter-le.h"
32 #include "bt-service-device.h"
33 #include "bt-service-avrcp.h"
34 #include "bt-service-obex-server.h"
35 #include "bt-service-rfcomm-server.h"
36 #include "bt-service-audio.h"
37 #include "bt-service-agent.h"
38 #include "bt-service-pbap.h"
39 #include "bt-service-headset-connection.h"
40 #include "bt-service-avrcp-controller.h"
41 #include "bt-service-hid.h"
42 #include "bt-service-proximity.h"
43
44 #include "bt-service-opp-client.h"
45
46 #ifdef TIZEN_DPM_ENABLE
47 #include "bt-service-dpm.h"
48 #endif
49
50 #define DBUS_TIMEOUT 20 * 1000 /* 20 Sec */
51 static GDBusConnection *manager_conn;
52 static GDBusConnection *obexd_conn;
53 static GDBusConnection *opc_obexd_conn;
54
55 static GList *p_cache_list = NULL;
56
57 static guint event_id;
58 static guint session_reinit_timer;
59 guint nap_connected_device_count = 0;
60 static guint hid_connected_device_count = 0;
61 static GList *p_adv_ind_list = NULL;
62
63 typedef struct {
64         bt_remote_dev_info_t *dev_info;
65 } bt_cache_info_t;
66
67 /**
68  * obexd connection type
69  */
70 typedef enum {
71         OBEX_OPP = (1 << 1),
72         OBEX_FTP = (1 << 2),
73         OBEX_BIP = (1 << 3),
74         OBEX_PBAP = (1 << 4),
75         OBEX_IRMC = (1 << 5),
76         OBEX_PCSUITE = (1 << 6),
77         OBEX_SYNCEVOLUTION = (1 << 7),
78         OBEX_MAS = (1 << 8),
79 } bluetooth_obex_connection_type_t;
80
81 void _bt_handle_property_changed_event(GVariant *msg, const char *object_path);
82 void _bt_opc_property_changed_event(GVariant *msg, char *path);
83 int _bt_register_service_event(GDBusConnection *g_conn, int event_type);
84 void _bt_unregister_service_event(GDBusConnection *g_conn, int event_type);
85 void _bt_opp_client_event_deinit(void);
86 void _bt_handle_network_client_event(GVariant *msg_iter,
87                                 const char *path);
88 void __bt_gatt_char_property_changed_event(GVariant *msg_iter,
89                                 const char *path);
90
91 static void __bt_free_bt_le_adv_info_t(gpointer data)
92 {
93         bt_le_adv_info_t *adv_info = data;
94
95         if (adv_info->timer_id)
96                 g_source_remove(adv_info->timer_id);
97         adv_info->timer_id = 0;
98
99         g_free(adv_info->addr);
100         g_free(adv_info->data);
101         g_free(adv_info);
102 }
103
104 static bt_le_adv_info_t *__bt_get_adv_ind_info(char *addr)
105 {
106         retv_if(!addr, NULL);
107         bt_le_adv_info_t *adv_info = NULL;
108         GList *current = g_list_first((GList *)p_adv_ind_list);
109         while (current && current->data) {
110                 adv_info = (bt_le_adv_info_t *)current->data;
111                 if (adv_info && !g_strcmp0(adv_info->addr, addr))
112                         return adv_info;
113                 current = g_list_next(current);
114         }
115         return NULL;
116 }
117
118 static int __bt_add_adv_ind_info(bt_le_adv_info_t *adv_info)
119 {
120         retv_if(!adv_info, -1);
121         if (__bt_get_adv_ind_info(adv_info->addr) != NULL) {
122                 __bt_free_bt_le_adv_info_t(adv_info);
123                 return -1;
124         }
125         p_adv_ind_list = g_list_append(p_adv_ind_list, adv_info);
126
127         return 0;
128 }
129
130 static void __bt_del_adv_ind_info(char *addr)
131 {
132         ret_if(!addr);
133         ret_if(!p_adv_ind_list);
134         bt_le_adv_info_t *adv_info = NULL;
135         GList *current = g_list_first((GList *)p_adv_ind_list);
136         while (current && current->data) {
137                 adv_info = (bt_le_adv_info_t *)current->data;
138                 if (adv_info && !g_strcmp0(adv_info->addr, addr)) {
139                         p_adv_ind_list = g_list_remove(p_adv_ind_list, adv_info);
140                         __bt_free_bt_le_adv_info_t(adv_info);
141                         return;
142                 }
143                 current = g_list_next(current);
144         }
145 }
146
147 static gboolean __bt_adv_scan_req_timeout_cb(gpointer user_data)
148 {
149         bt_remote_le_dev_info_t le_dev_info;
150         bt_le_adv_info_t *adv_info = (bt_le_adv_info_t*)user_data;
151
152         memset(&le_dev_info, 0x00, sizeof(bt_remote_le_dev_info_t));
153
154         le_dev_info.address = adv_info->addr;
155         le_dev_info.addr_type = adv_info->addr_type;
156         le_dev_info.rssi = adv_info->rssi;
157         le_dev_info.adv_data = adv_info->data;
158         le_dev_info.adv_data_len = 0;
159         adv_info->timer_id = 0;
160
161         _bt_send_scan_result_event(&le_dev_info, adv_info);
162         __bt_del_adv_ind_info(adv_info->addr);
163
164         return FALSE;
165 }
166
167 static void __bt_free_cache_info(bt_cache_info_t *cache_info)
168 {
169         ret_if(cache_info == NULL);
170         _bt_free_device_info(cache_info->dev_info);
171         g_free(cache_info);
172 }
173
174 static gboolean __bt_parse_device_properties(GVariant *item,
175                                                 bt_remote_dev_info_t *dev_info)
176 {
177         GVariantIter iter;
178         gchar *key;
179         GVariant *val;
180         gsize len = 0;
181         if (item == NULL)
182                 return FALSE;
183
184         g_variant_iter_init(&iter, item);
185         while (g_variant_iter_loop(&iter, "{sv}", &key, &val)) {
186                 if (strcasecmp(key, "Address") == 0)  {
187                         dev_info->address = g_variant_dup_string(val, &len);
188                 } else if (strcasecmp(key, "Class") == 0) {
189                         dev_info->class = g_variant_get_uint32(val);
190                 } else if (strcasecmp(key, "name") == 0) {
191                         if (dev_info->name == NULL)
192                                 dev_info->name = g_variant_dup_string(val, &len);
193                 } else if (strcasecmp(key, "Connected") == 0) {
194                         dev_info->connected = g_variant_get_byte(val);
195                 } else if (strcasecmp(key, "paired") == 0) {
196                         dev_info->paired = g_variant_get_boolean(val);
197                 } else if (strcasecmp(key, "Trusted") == 0) {
198                         dev_info->trust = g_variant_get_boolean(val);
199                 } else if (strcasecmp(key, "RSSI") == 0) {
200                         dev_info->rssi = g_variant_get_int16(val);
201                 } else if (strcasecmp(key, "LastAddrType") == 0) {
202                         dev_info->addr_type = g_variant_get_byte(val);
203                 } else if (strcasecmp(key, "UUIDs") == 0) {
204                         char **uuid_value;
205                         gsize size = 0;
206                         int i = 0;
207                         size = g_variant_get_size(val);
208
209                         if (size > 0) {
210                                 uuid_value = (char **)g_variant_get_strv(val, &size);
211                                 if (dev_info->uuids == NULL)
212                                         dev_info->uuids = g_malloc0(sizeof(char *) * size);
213
214                                 for (i = 0; uuid_value[i] != NULL; i++) {
215                                         dev_info->uuid_count++;
216                                         dev_info->uuids[i] = g_strdup(uuid_value[i]);
217                                 }
218                                 g_free(uuid_value);
219                         }
220                 } else if (strcasecmp(key, "ManufacturerDataLen") == 0) {
221                         g_variant_get(val, "q", &dev_info->manufacturer_data_len);
222                         if (dev_info->manufacturer_data_len > BLUETOOTH_MANUFACTURER_DATA_LENGTH_MAX) {
223                                 BT_ERR("manufacturer_data_len is too long(len = %d)", dev_info->manufacturer_data_len);
224                                 dev_info->manufacturer_data_len = BLUETOOTH_MANUFACTURER_DATA_LENGTH_MAX;
225                         }
226
227                         if (dev_info->manufacturer_data_len == 0)
228                                 dev_info->manufacturer_data = g_strdup("");
229                 } else if (strcasecmp(key, "ManufacturerData") == 0) {
230                         int i = 0;
231                         int len = 0;
232                         GVariantIter *value_iter;
233                         guint8 m_value;
234
235                         len = g_variant_get_size(val);
236                         if (len <= 0)
237                                 continue;
238
239                         dev_info->manufacturer_data = g_malloc0(len);
240
241                         g_variant_get(val, "ay", &value_iter);
242                         while (g_variant_iter_loop(value_iter, "y", &m_value))
243                                 dev_info->manufacturer_data[i++] = m_value;
244                         g_variant_iter_free(value_iter);
245                 }
246         }
247
248         BT_DBG("-");
249         return TRUE;
250 }
251
252 static gboolean __bt_parse_interface(GVariant *msg,
253                                         bt_remote_dev_info_t *dev_info)
254 {
255         char *path = NULL;
256         GVariant *optional_param = NULL;
257         GVariantIter iter;
258         GVariant *child;
259         char *interface_name = NULL;
260         GVariant *inner_iter = NULL;
261         g_variant_get(msg, "(&o@a{sa{sv}})",
262                                         &path, &optional_param);
263         g_variant_iter_init(&iter, optional_param);
264
265         retv_if(optional_param == NULL, FALSE);
266
267         while ((child = g_variant_iter_next_value(&iter))) {
268                 g_variant_get(child, "{&s@a{sv}}", &interface_name, &inner_iter);
269                 if (g_strcmp0(interface_name, BT_DEVICE_INTERFACE) == 0) {
270                         BT_DBG("Found a device: %s", path);
271                         if (__bt_parse_device_properties(inner_iter,
272                                 dev_info) == FALSE) {
273                                 g_variant_unref(inner_iter);
274                                 g_variant_unref(child);
275                                 g_variant_unref(optional_param);
276                                 BT_ERR("Fail to parse the properies");
277                                 return FALSE;
278                         } else {
279                                 g_variant_unref(inner_iter);
280                                 g_variant_unref(child);
281                                 g_variant_unref(optional_param);
282                                 return TRUE;
283                         }
284                 }
285                 g_variant_unref(inner_iter);
286                 g_variant_unref(child);
287         }
288
289         g_variant_unref(optional_param);
290
291         return FALSE;
292 }
293
294 static int __bt_get_owner_info(GVariant *msg, char **name,
295                                 char **previous, char **current)
296 {
297         g_variant_get(msg, "(sss)", name, previous, current);
298         return BLUETOOTH_ERROR_NONE;
299 }
300
301 static int __bt_get_agent_signal_info(GVariant *msg, char **address,
302                                 char **name, char **uuid)
303 {
304         g_variant_get(msg, "(sss)", address, name, uuid);
305         return BLUETOOTH_ERROR_NONE;
306 }
307
308 void __bt_set_device_values(gboolean connected, int state)
309 {
310         int bt_device_state = VCONFKEY_BT_DEVICE_NONE;
311
312         if (vconf_get_int(VCONFKEY_BT_DEVICE, &bt_device_state) != 0)
313                 BT_ERR("vconf_get_int failed");
314
315         if (connected == TRUE)
316                 bt_device_state |= state;
317         else if (bt_device_state & state)
318                 bt_device_state ^= state;
319
320         if (vconf_set_int(VCONFKEY_BT_DEVICE, bt_device_state) != 0)
321                 BT_ERR("vconf_set_int failed");
322 }
323
324 gboolean _bt_discovery_finished_cb(gpointer user_data)
325 {
326         int result = BLUETOOTH_ERROR_NONE;
327         event_id = 0;
328         GVariant *param = NULL;
329         if (_bt_get_discovering_property(DISCOVERY_ROLE_BREDR) == FALSE) {
330                 if (_bt_get_cancel_by_user() == TRUE)
331                         result = BLUETOOTH_ERROR_CANCEL_BY_USER;
332
333                 _bt_set_cancel_by_user(FALSE);
334                 _bt_set_discovery_status(FALSE);
335                 param = g_variant_new("(i)", result);
336                 _bt_send_event(BT_ADAPTER_EVENT,
337                         BLUETOOTH_EVENT_DISCOVERY_FINISHED,
338                         param);
339         }
340
341         return FALSE;
342 }
343
344 static gboolean __bt_le_discovery_finished_cb(gpointer user_data)
345 {
346         int result = BLUETOOTH_ERROR_NONE;
347         event_id = 0;
348         GVariant *param = NULL;
349         if (_bt_get_discovering_property(DISCOVERY_ROLE_LE) == FALSE) {
350                 if (_bt_get_cancel_by_user() == TRUE)
351                         result = BLUETOOTH_ERROR_CANCEL_BY_USER;
352
353                 g_list_free_full(p_adv_ind_list, __bt_free_bt_le_adv_info_t);
354                 p_adv_ind_list = NULL;
355
356                 _bt_set_cancel_by_user(FALSE);
357                 _bt_disable_all_scanner_status();
358                 _bt_set_le_scan_status(FALSE);
359                 param = g_variant_new("(i)", result);
360                 _bt_send_event(BT_LE_ADAPTER_EVENT,
361                         BLUETOOTH_EVENT_LE_DISCOVERY_FINISHED,
362                         param);
363         }
364
365         return FALSE;
366 }
367
368 void __bt_update_remote_cache_devinfo(const char *address, gboolean paired_status)
369 {
370         BT_DBG("+");
371
372         ret_if(address == NULL);
373
374         GList * node;
375         bt_cache_info_t *cache_info;
376         bt_remote_dev_info_t *dev_info;
377
378         node = g_list_first(p_cache_list);
379
380         while (node != NULL) {
381                 cache_info = (bt_cache_info_t *)node->data;
382
383                 if (cache_info == NULL) {
384                         node = g_list_next(node);
385                         continue;
386                 }
387
388                 dev_info = cache_info->dev_info;
389                 if (strcasecmp(dev_info->address,
390                                         address) == 0) {
391                         BT_DBG("Device Found");
392                         if (paired_status == TRUE)
393                                 cache_info->dev_info->paired = TRUE;
394                         else
395                                 cache_info->dev_info->paired = FALSE;
396                         break;
397                 }
398                 node = g_list_next(node);
399         }
400         BT_DBG("-");
401 }
402
403 static void __bt_device_remote_connected_properties(
404                                 bt_remote_dev_info_t *remote_dev_info,
405                                 char *address, gboolean connected)
406 {
407         int result = BLUETOOTH_ERROR_NONE;
408         int i;
409         GVariant *param = NULL;
410         BT_DBG("+");
411
412         if (remote_dev_info->uuid_count > 0) {
413                 for (i = 0; i < remote_dev_info->uuid_count; i++) {
414                         char *uuid = remote_dev_info->uuids[i];
415                         if (strcasecmp(uuid, HID_UUID) == 0) {
416                                 int event = BLUETOOTH_EVENT_NONE;
417
418                                 event = (connected == TRUE) ?
419                                         BLUETOOTH_HID_CONNECTED :
420                                         BLUETOOTH_HID_DISCONNECTED;
421                                 param = g_variant_new("(is)", result,
422                                                         address);
423                                 _bt_send_event(BT_HID_EVENT, event,
424                                         param);
425                                 break;
426                         }
427                 }
428         }
429
430         BT_DBG("-");
431 }
432
433 gboolean __bt_handle_is_flight_mode_enabled(void)
434 {
435 #ifdef TIZEN_FEATURE_FLIGHTMODE_ENABLED
436         int is_flight_mode = 0;
437         int ret = -1;
438
439         ret = vconf_get_bool(VCONFKEY_TELEPHONY_FLIGHT_MODE, &is_flight_mode);
440         if (ret != 0)
441                 BT_ERR("vconf_get_bool failed");
442
443         return (is_flight_mode == 0) ? FALSE : TRUE;
444 #else
445         return FALSE;
446 #endif
447 }
448
449 void _bt_handle_adapter_event(GVariant *msg, const char *member)
450 {
451         BT_DBG("+");
452
453         int result = BLUETOOTH_ERROR_NONE;
454         GVariant *param = NULL;
455         ret_if(member == NULL);
456
457         if (strcasecmp(member, "DeviceCreated") == 0) {
458                 char *object_path = NULL;
459                 char *address;
460                 bt_remote_dev_info_t *remote_dev_info;
461
462                 ret_if(_bt_is_device_creating() == FALSE);
463
464                 /* Bonding from remote device */
465                 address = g_malloc0(BT_ADDRESS_STRING_SIZE);
466
467                 g_variant_get(msg, "(&o)", &object_path);
468                 _bt_convert_device_path_to_address((const char*)object_path, address);
469
470                 remote_dev_info = _bt_get_remote_device_info_by_object_path(object_path);
471                 if (remote_dev_info == NULL) {
472                         g_free(address);
473                         return;
474                 }
475
476                 _bt_free_device_info(remote_dev_info);
477                 g_free(address);
478         } else if (strcasecmp(member, "InterfacesRemoved") == 0) {
479                 char *object_path = NULL;
480                 char *address;
481                 bt_cache_info_t *cache_info;
482                 bt_remote_dev_info_t *dev_info;
483                 GList * node;
484
485                 /* Bonding from remote device */
486                 address = g_malloc0(BT_ADDRESS_STRING_SIZE);
487                 if (address == NULL)
488                         return;
489
490                 g_variant_get(msg, "(&o)", &object_path);
491
492                 _bt_convert_device_path_to_address((const char *)object_path, address);
493
494                 node = g_list_first(p_cache_list);
495
496                 while (node != NULL) {
497                         cache_info = (bt_cache_info_t *)node->data;
498
499                         if (cache_info == NULL) {
500                                 node = g_list_next(node);
501                                 continue;
502                         }
503
504                         dev_info = cache_info->dev_info;
505                         if (strcasecmp(dev_info->address,
506                                                 address) == 0) {
507                                 p_cache_list = g_list_remove(p_cache_list,
508                                                 cache_info);
509                                 __bt_free_cache_info(cache_info);
510                                 break;
511                         }
512                         node = g_list_next(node);
513                 }
514                 g_free(address);
515         } else if (strcasecmp(member, "AdvertisingEnabled") == 0) {
516                 BT_DBG("Advertising Enabled");
517                 int slot_id;
518                 int event;
519                 int adv_handle;
520                 gboolean status = FALSE;
521
522                 g_variant_get(msg, "(ib)", &slot_id, &status);
523
524                 BT_DBG("Advertising Enabled : slot_id [%d]  status [%d]", slot_id, status);
525
526                 /* Send event to application */
527                 _bt_set_advertising_status(slot_id, status);
528
529                 adv_handle = _bt_get_adv_slot_adv_handle(slot_id);
530
531                 if (status)
532                         event = BLUETOOTH_EVENT_ADVERTISING_STARTED;
533                 else
534                         event = BLUETOOTH_EVENT_ADVERTISING_STOPPED;
535                 param = g_variant_new("(ii)", result,
536                                         adv_handle);
537
538 #if 0
539                 const char *sender;
540                 sender = _bt_get_adv_slot_owner(slot_id);
541                 _bt_send_event_to_dest(sender, BT_ADAPTER_EVENT,
542                                 event,
543                                 param);
544 #else
545                 _bt_send_event(BT_ADAPTER_EVENT, event, param);
546 #endif
547
548                 if (event == BLUETOOTH_EVENT_ADVERTISING_STOPPED)
549                         _bt_unregister_adv_slot_owner(slot_id);
550         } else if (strcasecmp(member, "RssiEnabled") == 0) {
551                 BT_DBG("RSSI Enabled");
552                 gboolean status = FALSE;
553                 char *address = NULL;
554                 int link_type;
555                 g_variant_get(msg, "(sib)", &address, &link_type, &status);
556
557                 BT_DBG("RSSI Enabled [%s %d]", address, status);
558                 param = g_variant_new("(isib)", result,
559                                         address, link_type, status);
560                 _bt_send_event(BT_DEVICE_EVENT,
561                                 BLUETOOTH_EVENT_RSSI_ENABLED,
562                                 param);
563                 g_free(address);
564         } else if (strcasecmp(member, "RssiAlert") == 0) {
565                 BT_DBG("RSSI Alert");
566                 int alert_type;
567                 int rssi_dbm;
568                 int link_type;
569                 char *address = NULL;
570                 g_variant_get(msg, "(siii)", &address, &link_type, &alert_type, &rssi_dbm);
571
572                 BT_DBG("RSSI Alert: [Address %s LinkType %d] [Type %d DBM %d]",
573                                 address, alert_type, rssi_dbm);
574                 param = g_variant_new("(isiii)", result,
575                                         address, link_type, alert_type, rssi_dbm);
576                 _bt_send_event(BT_DEVICE_EVENT,
577                                 BLUETOOTH_EVENT_RSSI_ALERT,
578                                 param);
579                 g_free(address);
580         } else if (strcasecmp(member, "RawRssi") == 0) {
581                 BT_DBG("RSSI Raw");
582                 int rssi_dbm;
583                 int link_type;
584                 char *address = NULL;
585                 g_variant_get(msg, "(sii)", &address, &link_type, &rssi_dbm);
586
587                 BT_DBG("Raw RSSI: [Address %s] [Link Type %d][RSSI DBM %d]",
588                                 address, link_type, rssi_dbm);
589                 param = g_variant_new("(isii)", result,
590                                         address, link_type, rssi_dbm);
591                 _bt_send_event(BT_DEVICE_EVENT,
592                                 BLUETOOTH_EVENT_RAW_RSSI,
593                                 param);
594                 g_free(address);
595         } else if (strcasecmp(member, BT_HARDWARE_ERROR) == 0) {
596                 BT_ERR_C("Hardware error received from BLUEZ");
597 /* Don't add the recovery logic into platform */
598 #if 0
599                 _bt_recover_adapter();
600 #endif
601         } else if (strcasecmp(member, BT_TX_TIMEOUT_ERROR) == 0) {
602                 BT_ERR_C("Tx timeout error received from BLUEZ");
603 /* Don't add the recovery logic into platform */
604 #if 0
605                 _bt_recover_adapter();
606 #endif
607         }
608         BT_DBG("-");
609 }
610
611 static void __bt_adapter_property_changed_event(GVariant *msg, const char *path)
612 {
613         GDBusProxy *adapter_proxy;
614         int mode = 0;
615         int result = BLUETOOTH_ERROR_NONE;
616         GVariantIter value_iter;
617         GVariant *val = NULL;
618         GVariant *ret = NULL;
619         GError *err = NULL;
620         char *property = NULL;
621         GVariant *param = NULL;
622         g_variant_iter_init(&value_iter, msg);
623         while ((g_variant_iter_loop(&value_iter, "{sv}", &property, &val))) {
624                 BT_INFO("Property %s", property);
625
626                 if (strcasecmp(property, "Discovering") == 0) {
627                         gboolean discovering = FALSE;
628                         g_variant_get(val, "b", &discovering);
629                         /* Send event to application */
630                         BT_DBG("Discovering %d", discovering);
631                         if (discovering == TRUE) {
632                                 _bt_set_discovery_status(TRUE);
633                                 param = g_variant_new("(i)", result);
634                                 _bt_send_event(BT_ADAPTER_EVENT,
635                                         BLUETOOTH_EVENT_DISCOVERY_STARTED,
636                                         param);
637                         } else {
638                                 ret_if(event_id > 0);
639
640                                 adapter_proxy = _bt_get_adapter_proxy();
641                                 ret_if(adapter_proxy == NULL);
642
643                                 /* Need to stop searching */
644                                 ret = g_dbus_proxy_call_sync(adapter_proxy, "StopDiscovery",
645                                         NULL,
646                                         G_DBUS_CALL_FLAGS_NONE,
647                                         DBUS_TIMEOUT, NULL,
648                                         &err);
649                                 if (err) {
650                                         BT_ERR("Dbus Error : %s", err->message);
651                                         g_clear_error(&err);
652                                 }
653                                 if (ret)
654                                         g_variant_unref(ret);
655
656                                 event_id = g_timeout_add(BT_DISCOVERY_FINISHED_DELAY,
657                                   (GSourceFunc)_bt_discovery_finished_cb, NULL);
658                         }
659                 } else if (strcasecmp(property, "LEDiscovering") == 0) {
660                         gboolean le_discovering = FALSE;
661
662                         g_variant_get(val, "b", &le_discovering);
663                         /* Send event to application */
664                         if (le_discovering == TRUE) {
665                                 _bt_set_le_scan_status(TRUE);
666                                 param = g_variant_new("(i)", result);
667                                 _bt_send_event(BT_LE_ADAPTER_EVENT,
668                                 BLUETOOTH_EVENT_LE_DISCOVERY_STARTED,
669                                 param);
670                         } else {
671                                 ret_if(event_id > 0);
672
673                                 adapter_proxy = _bt_get_adapter_proxy();
674                                 ret_if(adapter_proxy == NULL);
675
676                                 /* Need to stop searching */
677                                 ret = g_dbus_proxy_call_sync(adapter_proxy, "StopLEDiscovery",
678                                         NULL,
679                                         G_DBUS_CALL_FLAGS_NONE,
680                                         DBUS_TIMEOUT, NULL,
681                                         &err);
682                                 if (err) {
683                                         BT_ERR("Dbus Error %s", err->message);
684                                         g_clear_error(&err);
685                                 }
686                                 if (ret)
687                                         g_variant_unref(ret);
688
689                                 event_id = g_timeout_add(BT_DISCOVERY_FINISHED_DELAY,
690                                                 (GSourceFunc)__bt_le_discovery_finished_cb, NULL);
691                                 }
692                 } else if (strcasecmp(property, "Name") == 0) {
693                         char *name = NULL;
694                         g_variant_get(val, "s", &name);
695                         param = g_variant_new("(is)", result, name);
696                         /* Send event to application */
697                         _bt_send_event(BT_ADAPTER_EVENT,
698                                 BLUETOOTH_EVENT_LOCAL_NAME_CHANGED,
699                                 param);
700                         g_free(name);
701                 } else if (strcasecmp(property, "Alias") == 0) {
702                         char *alias = NULL;
703                         g_variant_get(val, "s", &alias);
704                         param = g_variant_new("(is)", result, alias);
705                         /* Send event to application */
706                         _bt_send_event(BT_ADAPTER_EVENT,
707                                 BLUETOOTH_EVENT_LOCAL_NAME_CHANGED,
708                                 param);
709                         g_free(alias);
710                 } else if (strcasecmp(property, "Discoverable") == 0) {
711                         gboolean discoverable = FALSE;
712
713                         g_variant_get(val, "b", &discoverable);
714                         BT_DBG("discoverable %d", discoverable);
715
716                         if (discoverable == FALSE) {
717                                 if (_bt_get_discoverable_timeout_property() > 0) {
718                                         int time = 0;
719                                         adapter_proxy = _bt_get_adapter_properties_proxy();
720                                         ret_if(adapter_proxy == NULL);
721                                         ret = g_dbus_proxy_call_sync(adapter_proxy, "Set",
722                                                 g_variant_new("(ssv)", BT_ADAPTER_INTERFACE,
723                                                 "DiscoverableTimeout",
724                                                 g_variant_new("i", time)),
725                                                 G_DBUS_CALL_FLAGS_NONE,
726                                                 DBUS_TIMEOUT, NULL,
727                                                 &err);
728
729                                         if (err != NULL) {
730                                                 BT_ERR("StopLEDiscovery Failed: %s", err->message);
731                                                 g_error_free(err);
732                                         }
733                                         if (ret)
734                                                 g_variant_unref(ret);
735                                 }
736
737                                 mode = BLUETOOTH_DISCOVERABLE_MODE_CONNECTABLE;
738
739                                 /* Send event to application */
740                                 BT_INFO("[Connectable]");
741                                 param = g_variant_new("(in)", result, mode);
742                                 _bt_send_event(BT_ADAPTER_EVENT,
743                                         BLUETOOTH_EVENT_DISCOVERABLE_MODE_CHANGED,
744                                         param);
745                         } else {
746                                 _bt_get_discoverable_mode(&mode);
747
748                                 /* Event will be sent by "DiscoverableTimeout" signal */
749                                 if (mode != BLUETOOTH_DISCOVERABLE_MODE_GENERAL_DISCOVERABLE) {
750                                         g_free(property);
751                                         g_variant_unref(val);
752                                         return;
753                                 }
754
755                                 /* Send event to application */
756                                 BT_INFO("[General Discoverable]");
757                                 param = g_variant_new("(in)", result, mode);
758                                 _bt_send_event(BT_ADAPTER_EVENT,
759                                         BLUETOOTH_EVENT_DISCOVERABLE_MODE_CHANGED,
760                                         param);
761                         }
762                 } else if (strcasecmp(property, "DiscoverableTimeout") == 0) {
763                         _bt_get_discoverable_mode(&mode);
764
765                         /* Event was already sent by "Discoverable" signal */
766                         if (mode == BLUETOOTH_DISCOVERABLE_MODE_CONNECTABLE ||
767                                 mode == BLUETOOTH_DISCOVERABLE_MODE_GENERAL_DISCOVERABLE) {
768                                 g_free(property);
769                                 g_variant_unref(val);
770                                 return;
771                         }
772
773                         /* Send event to application */
774                         BT_INFO("[Limited Discoverable (Timeout %u secs)]",
775                         _bt_get_discoverable_timeout_property());
776                         param = g_variant_new("(in)", result, mode);
777                         _bt_send_event(BT_ADAPTER_EVENT,
778                                 BLUETOOTH_EVENT_DISCOVERABLE_MODE_CHANGED,
779                                 param);
780                 } else if (strcasecmp(property, "Powered") == 0) {
781                         /* TODO: Need to check this operation!! */
782                         gboolean powered = FALSE;
783                         int bt_state;
784
785                         g_variant_get(val, "b", &powered);
786                         BT_DBG("Powered = %d", powered);
787                         if (powered == FALSE) {
788 #ifdef USB_BLUETOOTH
789                                 _bt_handle_adapter_removed();
790 #else
791                                 if (vconf_get_int(VCONFKEY_BT_STATUS, &bt_state) == 0 &&
792                                 bt_state != VCONFKEY_BT_STATUS_OFF) {
793                                         if (__bt_handle_is_flight_mode_enabled() == FALSE)
794                                                 _bt_disable_adapter();
795                                         else
796                                                 _bt_handle_adapter_removed();
797                                 }
798 #endif
799                                 if (vconf_get_int(VCONFKEY_BT_LE_STATUS, &bt_state) == 0 &&
800                                         bt_state != VCONFKEY_BT_LE_STATUS_OFF) {
801                                         _bt_set_le_disabled(BLUETOOTH_ERROR_NONE);
802                                 }
803                         } else {
804 #ifdef USB_BLUETOOTH
805                                 _bt_handle_adapter_added();
806 #endif
807                         }
808                 } else if (strcasecmp(property, "Connectable") == 0) {
809                         gboolean connectable = FALSE;
810
811                         g_variant_get(val, "b", &connectable);
812
813                         BT_DBG("Connectable property is changed : %d", connectable);
814                         param = g_variant_new("(b)", connectable);
815                         _bt_send_event(BT_ADAPTER_EVENT,
816                                 BLUETOOTH_EVENT_CONNECTABLE_CHANGED,
817                                 param);
818 #if 0
819                         if (_bt_adapter_get_status() == BT_DEACTIVATING &&
820                         _bt_adapter_get_le_status() == BT_LE_ACTIVATED &&
821                         connectable == 0)
822                         _bt_set_disabled(BLUETOOTH_ERROR_NONE);
823 #endif
824                 } else if (strcasecmp(property, "SupportedLEFeatures") == 0) {
825                         char *name = NULL;
826                         char *value = NULL;
827                         GVariantIter *iter = NULL;
828                         g_variant_get(val, "as", &iter);
829                         while (g_variant_iter_loop(iter, "s", &name)) {
830                                 BT_DBG("name = %s", name);
831                                 g_variant_iter_loop(iter, "s", &value);
832                                 BT_DBG("Value = %s", value);
833                                 if (FALSE == _bt_update_le_feature_support(name, value))
834                                         BT_INFO("Fail to update LE feature info");
835                         }
836                         if (iter)
837                                 g_variant_iter_free(iter);
838                 } else if (strcasecmp(property, "IpspInitStateChanged") == 0) {
839                         gboolean ipsp_initialized = FALSE;
840
841                         g_variant_get(val, "b", &ipsp_initialized);
842                         BT_DBG("IPSP init state changed: %d", ipsp_initialized);
843                         param = g_variant_new("(b)", ipsp_initialized);
844
845                         /* Send event to application */
846                         _bt_send_event(BT_ADAPTER_EVENT,
847                                         BLUETOOTH_EVENT_IPSP_INIT_STATE_CHANGED,
848                                         param);
849                 } else {
850                         BT_DBG("property : [%s]", property);
851                 }
852         }
853 }
854
855 static void __bt_obex_property_changed_event(GVariant *msg, const char *path)
856 {
857         BT_DBG("+");
858
859         GVariantIter value_iter;
860         GVariant *child = NULL, *val = NULL;
861         char *property = NULL;
862         g_variant_iter_init(&value_iter, msg);
863         while ((child = g_variant_iter_next_value(&value_iter))) {
864                 g_variant_get(child, "{sv}", &property, &val);
865
866                 ret_if(property == NULL);
867
868                 BT_DBG("property :%s", property);
869
870                 if (strcasecmp(property, "Status") == 0) {
871                         char  *status;
872                         g_variant_get(val, "s", &status);
873
874                         if (strcasecmp(status, "active") == 0) {
875                                 _bt_obex_transfer_started(path);
876                         } else if (strcasecmp(status, "complete") == 0) {
877                                 _bt_obex_transfer_completed(path, TRUE);
878                                 _bt_pbap_obex_transfer_completed(path, TRUE);
879                         } else if (strcasecmp(status, "error") == 0) {
880                                 _bt_obex_transfer_completed(path, FALSE);
881                                 _bt_pbap_obex_transfer_completed(path, FALSE);
882                         }
883                         g_free(status);
884                 } else if (strcasecmp(property, "Transferred") == 0) {
885                         guint64 transferred  = 0;
886                         /* As Transferred is expected guint64 so change int to guint64 and
887                          * eariler transferred is static because of it can overwrite data
888                          * on present on opc_obex_conn or obexd_conn as these are
889                          * static memory are in sequential */
890                         g_variant_get(val, "t", &transferred);
891
892                         _bt_obex_transfer_progress(path, transferred);
893                 }
894                 g_free(property);
895                 g_variant_unref(val);
896                 g_variant_unref(child);
897         }
898         BT_DBG("-");
899 }
900
901 static void __bt_device_property_changed_event(GVariant *msg, const char *path)
902 {
903         BT_DBG("+");
904
905         int event;
906         int result = BLUETOOTH_ERROR_NONE;
907         GVariantIter value_iter;
908         GVariant *val;
909         char *property = NULL;
910         char *address;
911         GVariant *param = NULL;
912         bt_remote_dev_info_t *remote_dev_info;
913         g_variant_iter_init(&value_iter, msg);
914         while ((g_variant_iter_loop(&value_iter, "{sv}", &property, &val))) {
915                 BT_DBG("Property %s", property);
916                 if (strcasecmp(property, "Connected") == 0) {
917                         guint connected = 0;
918
919                         g_variant_get(val, "i", &connected);
920
921                         event = (connected != BLUETOOTH_CONNECTED_LINK_NONE) ?
922                                 BLUETOOTH_EVENT_DEVICE_CONNECTED :
923                                 BLUETOOTH_EVENT_DEVICE_DISCONNECTED;
924
925                         address = g_malloc0(BT_ADDRESS_STRING_SIZE);
926
927                         _bt_convert_device_path_to_address(path, address);
928
929                         BT_DBG("connected: %d", connected);
930                         BT_DBG("address: %s", address);
931
932                         remote_dev_info = _bt_get_remote_device_info_by_object_path(path);
933
934                         if (remote_dev_info != NULL) {
935                                 __bt_device_remote_connected_properties(
936                                                 remote_dev_info, address,
937                                                 connected != BLUETOOTH_CONNECTED_LINK_NONE ?
938                                                 TRUE : FALSE);
939                                 _bt_free_device_info(remote_dev_info);
940                         }
941                         param = g_variant_new("(is)", result, address);
942                         /* Send event to application */
943                         _bt_send_event(BT_DEVICE_EVENT,
944                                         event,
945                                         param);
946                         g_free(address);
947                 } else if (strcasecmp(property, "RSSI") == 0) {
948                         bt_remote_dev_info_t *remote_dev_info;
949
950                         address = g_malloc0(BT_ADDRESS_STRING_SIZE);
951
952                         _bt_convert_device_path_to_address(path, address);
953                         BT_DBG("address: %s", address);
954
955                         remote_dev_info = _bt_get_remote_device_info_by_object_path(path);
956                         if (remote_dev_info == NULL) {
957                                 g_free(property);
958                                 g_variant_unref(val);
959                                 g_free(address);
960                                 return;
961                         }
962                         BT_DBG("Address type  %d", remote_dev_info->addr_type);
963
964                         if (remote_dev_info->addr_type == 0) {
965                                 BT_DBG("Name %s", remote_dev_info->name);
966
967 #ifdef TIZEN_DPM_ENABLE
968                                 if (_bt_dpm_get_bluetooth_desktop_connectivity_state() ==
969                                                         DPM_RESTRICTED) {
970                                         bluetooth_device_class_t device_class;
971                                         _bt_divide_device_class(&device_class, remote_dev_info->class);
972
973                                         if (device_class.major_class ==
974                                                 BLUETOOTH_DEVICE_MAJOR_CLASS_COMPUTER) {
975                                                 _bt_free_device_info(remote_dev_info);
976                                                 g_free(property);
977                                                 g_variant_unref(val);
978                                                 g_free(address);
979                                                 return;
980                                         }
981                                 }
982 #endif
983
984                                 GVariant *uuids = NULL;
985                                 GVariantBuilder *builder = NULL;
986                                 int i = 0;
987                                 builder = g_variant_builder_new(G_VARIANT_TYPE("as"));
988                                 for (i = 0; i < remote_dev_info->uuid_count; i++) {
989                                         g_variant_builder_add(builder, "s",
990                                                 remote_dev_info->uuids[i]);
991                                 }
992                                 uuids = g_variant_new("as", builder);
993                                 g_variant_builder_unref(builder);
994                                 GVariant *manufacturer_data =  NULL;
995                                 manufacturer_data = g_variant_new_from_data(G_VARIANT_TYPE_BYTESTRING,
996                                                                         remote_dev_info->manufacturer_data,
997                                                                         remote_dev_info->manufacturer_data_len,
998                                                                         TRUE,
999                                                                         NULL, NULL);
1000                                 param = g_variant_new("(isunsbub@asn@ay)", result,
1001                                                         remote_dev_info->address,
1002                                                         remote_dev_info->class,
1003                                                         remote_dev_info->rssi,
1004                                                         remote_dev_info->name,
1005                                                         remote_dev_info->paired,
1006                                                         remote_dev_info->connected,
1007                                                         remote_dev_info->trust,
1008                                                         uuids,
1009                                                         remote_dev_info->manufacturer_data_len,
1010                                                         manufacturer_data);
1011
1012                                 _bt_send_event(BT_ADAPTER_EVENT,
1013                                         BLUETOOTH_EVENT_REMOTE_DEVICE_FOUND,
1014                                         param);
1015                                 g_free(address);
1016                         }
1017                         _bt_free_device_info(remote_dev_info);
1018                 } else if (strcasecmp(property, "GattConnected") == 0) {
1019                         gboolean gatt_connected = FALSE;
1020
1021                         g_variant_get(val, "b", &gatt_connected);
1022
1023                         event = gatt_connected ? BLUETOOTH_EVENT_GATT_CONNECTED :
1024                                         BLUETOOTH_EVENT_GATT_DISCONNECTED;
1025
1026                         address = g_malloc0(BT_ADDRESS_STRING_SIZE);
1027
1028                         _bt_convert_device_path_to_address(path, address);
1029
1030                         BT_DBG("gatt_connected: %d", gatt_connected);
1031                         BT_DBG("address: %s", address);
1032                         param = g_variant_new("(is)", result, address);
1033                         /* Send event to application */
1034                         _bt_send_event(BT_DEVICE_EVENT,
1035                                         event,
1036                                         param);
1037                         g_free(address);
1038                 } else if (strcasecmp(property, "Paired") == 0) {
1039                         gboolean paired = FALSE;
1040                         bt_remote_dev_info_t *remote_dev_info;
1041                         g_variant_get(val, "b", &paired);
1042                         _bt_agent_set_canceled(FALSE);
1043                         /* BlueZ sends paired signal for each paired device */
1044                         /* during activation, We should ignore this, otherwise*/
1045                         /* application thinks that a new device got paired */
1046                         if (_bt_adapter_get_status() != BT_ACTIVATED) {
1047                                 BT_DBG("BT is not activated, so ignore this");
1048                                 g_free(property);
1049                                 g_variant_unref(val);
1050                                 return;
1051                         }
1052
1053                         address = g_malloc0(BT_ADDRESS_STRING_SIZE);
1054
1055                         _bt_convert_device_path_to_address(path, address);
1056
1057                         remote_dev_info = _bt_get_remote_device_info_by_object_path(path);
1058                         if (remote_dev_info == NULL) {
1059                                 g_free(property);
1060                                 g_variant_unref(val);
1061                                 g_free(address);
1062                                 return;
1063                         }
1064
1065                         if (paired == FALSE) {
1066                                 BT_INFO("Unpaired: %s", address);
1067                                 __bt_update_remote_cache_devinfo(address, FALSE);
1068                                 param = g_variant_new("(is)", result, address);
1069                                 _bt_send_event(BT_ADAPTER_EVENT,
1070                                         BLUETOOTH_EVENT_BONDED_DEVICE_REMOVED,
1071                                         param);
1072 #ifdef TIZEN_BT_A2DP_SINK_AUTO_CONNECT
1073                                 {
1074                                         char *last_connected = NULL;
1075                                         last_connected = vconf_get_str(BT_LAST_CONNECTED_DEVICE);
1076                                         if (!g_strcmp0(address, last_connected))
1077                                                 _bt_audio_set_auto_connect_device_addr("");
1078                                         if (last_connected)
1079                                                 free(last_connected);
1080                                 }
1081 #endif
1082                         } else {
1083                                 char secure_addr[BT_ADDRESS_STRING_SIZE] = { 0 };
1084
1085                                 _bt_convert_addr_string_to_secure_string(secure_addr, address);
1086                                 BT_INFO("### Paired: %s", secure_addr);
1087                                 __bt_update_remote_cache_devinfo(address, TRUE);
1088
1089                                 if (_bt_is_device_creating() == TRUE) {
1090                                         BT_DBG("Try to Pair by me");
1091                                         _bt_free_device_info(remote_dev_info);
1092                                         g_free(address);
1093                                         g_free(property);
1094                                         g_variant_unref(val);
1095                                         return;
1096                                 }
1097                                 GVariant *uuids = NULL;
1098                                 GVariantBuilder *builder = NULL;
1099                                 int i = 0;
1100                                 builder = g_variant_builder_new(G_VARIANT_TYPE("as"));
1101                                 for (i = 0; i < remote_dev_info->uuid_count; i++) {
1102                                         g_variant_builder_add(builder, "s",
1103                                                 remote_dev_info->uuids[i]);
1104                                 }
1105                                 uuids = g_variant_new("as", builder);
1106                                 g_variant_builder_unref(builder);
1107                                 GVariant *manufacturer_data =  NULL;
1108                                 manufacturer_data = g_variant_new_from_data(G_VARIANT_TYPE_BYTESTRING,
1109                                                                         remote_dev_info->manufacturer_data,
1110                                                                         remote_dev_info->manufacturer_data_len,
1111                                                                         TRUE,
1112                                                                         NULL, NULL);
1113
1114                                 param = g_variant_new("(isunsbub@asn@ay)", result,
1115                                                         address, remote_dev_info->class,
1116                                                         remote_dev_info->rssi,
1117                                                         remote_dev_info->name,
1118                                                         remote_dev_info->paired,
1119                                                         remote_dev_info->connected,
1120                                                         remote_dev_info->trust,
1121                                                         uuids,
1122                                                         remote_dev_info->manufacturer_data_len,
1123                                                         manufacturer_data);
1124                                 _bt_send_event(BT_ADAPTER_EVENT,
1125                                         BLUETOOTH_EVENT_BONDING_FINISHED,
1126                                         param);
1127                         }
1128                         _bt_free_device_info(remote_dev_info);
1129                         g_free(address);
1130                 } else if (strcasecmp(property, "LegacyPaired") == 0) {
1131                         gboolean paired = FALSE;
1132                         bt_remote_dev_info_t *remote_dev_info;
1133                         unsigned char auth_info[5] = {0, };
1134
1135                         if (_bt_adapter_get_status() != BT_ACTIVATED) {
1136                                 BT_DBG("BT is not activated, so ignore this");
1137                                 g_free(property);
1138                                 g_variant_unref(val);
1139                                 return;
1140                         }
1141
1142                         g_variant_get(val, "b", &paired);
1143                         address = g_malloc0(BT_ADDRESS_STRING_SIZE);
1144                         BT_DBG("LegacyPaired: %d", paired);
1145                         _bt_convert_device_path_to_address(path, address);
1146
1147                         remote_dev_info = _bt_get_remote_device_info_by_object_path(path);
1148                         if (remote_dev_info == NULL) {
1149                                 g_free(address);
1150                                 g_free(property);
1151                                 g_variant_unref(val);
1152                                 return;
1153                         }
1154                         if (remote_dev_info->is_alias_set == FALSE) {
1155                                 /*minimum Size of the samsung specific manufacturer data is greater than 30 */
1156                                 if ((remote_dev_info->manufacturer_data_len > 30) &&
1157                                         (remote_dev_info->manufacturer_data[0] == 0x00) &&
1158                                         (remote_dev_info->manufacturer_data[1] == 0x75)) {
1159
1160                                         /* 2  samsung (0x00 0x75) + 1 (control and version) + 1 (service ID) +
1161                                         1 (discovery version) + 1 (associated service ID)
1162                                         2 (Proxamity and locality) + 2 (Device type and icon) = 10 */
1163
1164                                         memcpy(auth_info, &(remote_dev_info->manufacturer_data[10]), 5);
1165                                 }
1166                         }
1167
1168                         BT_DBG("LegacyPairing Failed with %s. Show Error Popup", remote_dev_info->name);
1169                         _bt_launch_system_popup(BT_AGENT_EVENT_LEGACY_PAIR_FAILED_FROM_REMOTE,
1170                                                 remote_dev_info->name, auth_info, NULL, NULL, NULL);
1171
1172                         _bt_free_device_info(remote_dev_info);
1173                         g_free(address);
1174                 } else if (strcasecmp(property, "Trusted") == 0) {
1175                         gboolean trusted = FALSE;
1176
1177                         g_variant_get(val, "b", &trusted);
1178
1179                         event = trusted ? BLUETOOTH_EVENT_DEVICE_AUTHORIZED :
1180                                         BLUETOOTH_EVENT_DEVICE_UNAUTHORIZED;
1181
1182                         address = g_malloc0(BT_ADDRESS_STRING_SIZE);
1183
1184                         _bt_convert_device_path_to_address(path, address);
1185
1186                         BT_DBG("trusted: %d", trusted);
1187                         BT_DBG("address: %s", address);
1188                         param = g_variant_new("(is)", result, address);
1189                         /* Send event to application */
1190                         _bt_send_event(BT_DEVICE_EVENT,
1191                                         event,
1192                                         param);
1193                         g_free(address);
1194                 } else if (strcasecmp(property, "TrustedProfiles") == 0) {
1195                         int trusted = 0;
1196
1197                         g_variant_get(val, "u", &trusted);
1198
1199                         address = g_malloc0(BT_ADDRESS_STRING_SIZE);
1200                         _bt_convert_device_path_to_address(path, address);
1201
1202                         BT_DBG("Address: %s, TrustedProfiles: %d", address, trusted);
1203                         _bt_send_event(BT_DEVICE_EVENT,
1204                                         BLUETOOTH_EVENT_SUPPORTED_PROFILE_TRUSTED,
1205                                         g_variant_new("(isi)", result, address, trusted));
1206                         g_free(address);
1207                 } else if (strcasecmp(property, "IpspConnected") == 0) {
1208                         gboolean connected = FALSE;
1209
1210                         g_variant_get(val, "b", &connected);
1211
1212
1213                         event = connected ? BLUETOOTH_EVENT_IPSP_CONNECTED :
1214                                                         BLUETOOTH_EVENT_IPSP_DISCONNECTED;
1215
1216                         address = g_malloc0(BT_ADDRESS_STRING_SIZE);
1217
1218                         _bt_convert_device_path_to_address(path, address);
1219
1220                         BT_DBG("Ipspconnected: %d", connected);
1221                         BT_DBG("address: %s", address);
1222                         param = g_variant_new("(is)", result, address);
1223
1224                         /* Send event to application */
1225                         _bt_send_event(BT_DEVICE_EVENT,
1226                                         event,
1227                                         param);
1228                         g_free(address);
1229                 } else if (strcasecmp(property, "IpspBtInterfaceInfo") == 0) {
1230                         char *ifname = NULL;
1231
1232                         g_variant_get(val, "s", &ifname);
1233
1234                         address = g_malloc0(BT_ADDRESS_STRING_SIZE);
1235
1236                         _bt_convert_device_path_to_address(path, address);
1237
1238                         BT_DBG("Ipsp BT Interface Name: %s", ifname);
1239                         BT_DBG("address: %s", address);
1240                         param = g_variant_new("(iss)", result, address, ifname);
1241
1242                         /* Send event to application */
1243                         _bt_send_event(BT_DEVICE_EVENT,
1244                                         BLUETOOTH_EVENT_IPSP_INTERFACE_INFO,
1245                                         param);
1246                         g_free(address);
1247                 }
1248         }
1249         BT_DBG("-");
1250 }
1251
1252 static void __bt_media_control_changed_event(GVariant *msg, const char *path)
1253 {
1254         int event;
1255         int result = BLUETOOTH_ERROR_NONE;
1256         GVariantIter value_iter;
1257         char *property = NULL;
1258         char *address;
1259         GVariant *val = NULL;
1260         GVariant *child = NULL;
1261         bt_remote_dev_info_t *remote_dev_info;
1262         GVariant *param = NULL;
1263         g_variant_iter_init(&value_iter, msg);
1264         while ((child = g_variant_iter_next_value(&value_iter))) {
1265                 g_variant_get(child, "{sv}", &property, &val);
1266                 BT_INFO("Property %s", property);
1267                 if (strcasecmp(property, "Connected") == 0) {
1268                         gboolean connected = FALSE;
1269
1270                         g_variant_get(val, "b", &connected);
1271
1272                         event = connected ? BLUETOOTH_EVENT_AVRCP_CONNECTED :
1273                                         BLUETOOTH_EVENT_AVRCP_DISCONNECTED;
1274
1275                         address = g_malloc0(BT_ADDRESS_STRING_SIZE);
1276
1277                         _bt_convert_device_path_to_address(path, address);
1278
1279                         BT_DBG("connected: %d", connected);
1280                         BT_DBG("address: %s", address);
1281
1282                         remote_dev_info = _bt_get_remote_device_info(address);
1283
1284                         if (remote_dev_info != NULL) {
1285                                 __bt_device_remote_connected_properties(
1286                                 remote_dev_info, address, connected);
1287                                 _bt_free_device_info(remote_dev_info);
1288                         }
1289                         param = g_variant_new("(is)", result, address);
1290                         /* Send event to application */
1291                         _bt_send_event(BT_AVRCP_EVENT,
1292                                 event,
1293                                 param);
1294                         g_free(address);
1295                 }
1296                 g_free(property);
1297                 g_variant_unref(child);
1298                 g_variant_unref(val);
1299         }
1300         BT_DBG("-");
1301 }
1302
1303 int get_alert_level_enum(const char *alert)
1304 {
1305         int lvl = -1;
1306
1307         if (strcmp(alert, "none") == 0)
1308                 lvl = BT_PXP_ALERT_NONE;
1309         else if (strcmp(alert, "mild") == 0)
1310                 lvl = BT_PXP_ALERT_MILD;
1311         else if (strcmp(alert, "high") == 0)
1312                 lvl = BT_PXP_ALERT_HIGH;
1313
1314         return lvl;
1315 }
1316
1317 static void _bt_handle_pxp_property_changed_event(GVariant *msg, const char *path, int role)
1318 {
1319         int result = BLUETOOTH_ERROR_NONE;
1320         int service_type;
1321         int alert_lvl;
1322         GVariantIter value_iter;
1323         char *property = NULL;
1324         char *address;
1325         GVariant *val = NULL;
1326         GVariant *child = NULL;
1327         GVariant *param = NULL;
1328         g_variant_iter_init(&value_iter, msg);
1329
1330         BT_DBG("+");
1331         while ((child = g_variant_iter_next_value(&value_iter))) {
1332                 g_variant_get(child, "{sv}", &property, &val);
1333                 BT_INFO("Property %s", property);
1334
1335                 if ((strcasecmp(property, "LinkLossAlertLevel") == 0) ||
1336                         (strcasecmp(property, "ImmediateAlertLevel") == 0)) {
1337                         char *alert_str = NULL;
1338
1339                         address = g_malloc0(BT_ADDRESS_STRING_SIZE);
1340                         _bt_convert_device_path_to_address(path, address);
1341
1342                         if (strcasecmp(property, "LinkLossAlertLevel") == 0)
1343                                 service_type = BT_PXP_PROPERTY_LLS;
1344                         else
1345                                 service_type = BT_PXP_PROPERTY_IAS;
1346
1347                         g_variant_get(val, "s", &alert_str);
1348                         alert_lvl = get_alert_level_enum(alert_str);
1349
1350                         param = g_variant_new("(isiii)", result, address,
1351                                                                 role, service_type, alert_lvl);
1352
1353                         /* Send event to application */
1354                         _bt_send_event(BT_DEVICE_EVENT,
1355                                         BLUETOOTH_EVENT_PXP_PROPERTY_CHANGED,
1356                                         param);
1357                         g_free(address);
1358                         g_free(alert_str);
1359                 }
1360                 g_free(property);
1361                 g_variant_unref(child);
1362                 g_variant_unref(val);
1363         }
1364         BT_DBG("-");
1365 }
1366
1367 void _bt_handle_property_changed_event(GVariant *msg, const char *object_path)
1368 {
1369         char *interface_name = NULL;
1370         GVariant *val = NULL;
1371
1372         g_variant_get(msg, "(&s@a{sv}@as)", &interface_name, &val, NULL);
1373
1374         if (strcasecmp(interface_name, BT_ADAPTER_INTERFACE) == 0) {
1375                 __bt_adapter_property_changed_event(val,
1376                                         object_path);
1377         } else if (strcasecmp(interface_name, BT_DEVICE_INTERFACE) == 0) {
1378                 __bt_device_property_changed_event(val, object_path);
1379         } else if (strcasecmp(interface_name, BT_OBEX_TRANSFER_INTERFACE) == 0) {
1380                 BT_DBG("BT_OBEX_TRANSFER_INTERFACE");
1381                 __bt_obex_property_changed_event(val,
1382                                         object_path);
1383         } else if (strcasecmp(interface_name, BT_MEDIA_CONTROL_INTERFACE) == 0) {
1384                 __bt_media_control_changed_event(val,
1385                                         object_path);
1386         } else if (strcasecmp(interface_name, BT_PLAYER_CONTROL_INTERFACE) == 0) {
1387                 _bt_handle_avrcp_control_event(val,
1388                                         object_path);
1389         } else if (strcasecmp(interface_name, BT_NETWORK_CLIENT_INTERFACE) == 0) {
1390                 BT_DBG("BT_NETWORK_CLIENT_INTERFACE");
1391                 _bt_handle_network_client_event(val,
1392                                         object_path);
1393         } else if (strcasecmp(interface_name, BT_GATT_CHAR_INTERFACE) == 0) {
1394                 __bt_gatt_char_property_changed_event(val,
1395                                         object_path);
1396         } else if (strcasecmp(interface_name, BT_PROXIMITY_REPORTER_INTERFACE) == 0) {
1397                 BT_DBG("BT_PROXIMITY_REPORTER_INTERFACE");
1398                 _bt_handle_pxp_property_changed_event(val,
1399                                         object_path, BT_PXP_REPORTER_ROLE);
1400         } else if (strcasecmp(interface_name, BT_PROXIMITY_MONITOR_INTERFACE) == 0) {
1401                 BT_DBG("BT_PROXIMITY_MONITOR_INTERFACE");
1402                 _bt_handle_pxp_property_changed_event(val,
1403                                         object_path, BT_PXP_MONITOR_ROLE);
1404         }
1405         g_variant_unref(val);
1406 }
1407
1408 void __bt_opc_property_changed_event(GVariant *msg,
1409                                                 const char *path)
1410 {
1411         GVariantIter value_iter;
1412         char *property = NULL;
1413         GVariant *val = NULL;
1414         GVariant *child = NULL;
1415
1416         g_variant_iter_init(&value_iter, msg);
1417         while ((child = g_variant_iter_next_value(&value_iter))) {
1418                 g_variant_get(child, "{sv}", &property, &val);
1419                 ret_if(property == NULL);
1420
1421                 if (strcasecmp(property, "Status") == 0) {
1422                         char *status = NULL;
1423                         g_variant_get(val, "s", &status);
1424                         BT_DBG("Status is %s", status);
1425
1426                         if (strcasecmp(status, "active") == 0)
1427                                 _bt_obex_client_started(path);
1428                         else if (strcasecmp(status, "complete") == 0)
1429                                 _bt_obex_client_completed(path, TRUE);
1430                         else if (strcasecmp(status, "error") == 0)
1431                                 _bt_obex_client_completed(path, FALSE);
1432
1433                         g_free(status);
1434                 } else if (strcasecmp(property, "Transferred") == 0) {
1435                         guint64 transferred  = 0;
1436                         g_variant_get(val, "t", &transferred);
1437
1438                         _bt_obex_client_progress(path, transferred);
1439                 } else {
1440                         BT_DBG("property : [%s]", property);
1441                 }
1442                 g_free(property);
1443                 g_variant_unref(child);
1444                 g_variant_unref(val);
1445         }
1446 }
1447
1448 void _bt_opc_property_changed_event(GVariant *msg, char *path)
1449 {
1450         char *interface_name = NULL;
1451         GVariant *value = NULL;
1452         g_variant_get(msg, "(&s@a{sv}@as)", &interface_name, &value, NULL);
1453         BT_INFO("interface_name = %s", interface_name);
1454         if (strcasecmp(interface_name, BT_OBEX_TRANSFER_INTERFACE) == 0) {
1455                 __bt_opc_property_changed_event(value,
1456                                         path);
1457         } else {
1458                 BT_DBG("interface_name : [%s]", interface_name);
1459         }
1460         g_variant_unref(value);
1461 }
1462
1463
1464 void _bt_handle_input_event(GVariant *msg, const char *path)
1465 {
1466         int result = BLUETOOTH_ERROR_NONE;
1467         gboolean property_flag = FALSE;
1468         GVariantIter value_iter;
1469         char *property = NULL;
1470         GVariant *child = NULL, *val = NULL;
1471         bt_remote_dev_info_t *remote_dev_info;
1472         GVariant *param = NULL;
1473         g_variant_iter_init(&value_iter, msg);
1474         while ((child = g_variant_iter_next_value(&value_iter))) {
1475                 g_variant_get(child, "{sv}", &property, &val);
1476
1477                 ret_if(property == NULL);
1478
1479                 if (strcasecmp(property, "Connected") == 0) {
1480                         int event = BLUETOOTH_EVENT_NONE;
1481                         char *address;
1482                         g_variant_get(val, "b", &property_flag);
1483
1484                         address = g_malloc0(BT_ADDRESS_STRING_SIZE);
1485
1486                         _bt_convert_device_path_to_address(path, address);
1487
1488                         event = (property_flag == TRUE) ?
1489                                         BLUETOOTH_HID_CONNECTED :
1490                                         BLUETOOTH_HID_DISCONNECTED;
1491                         param = g_variant_new("(is)", result, address);
1492                         _bt_send_event(BT_HID_EVENT, event,
1493                                 param);
1494                         /* Check HID connection type (Keyboard or Mouse) and update the status */
1495                         remote_dev_info = _bt_get_remote_device_info_by_object_path(path);
1496
1497                         if (property_flag == TRUE) {
1498                                 hid_connected_device_count++;
1499                                 __bt_set_device_values(TRUE,
1500                                                 VCONFKEY_BT_DEVICE_HID_CONNECTED);
1501                         } else {
1502                                 hid_connected_device_count--;
1503                                 if (hid_connected_device_count == 0)
1504                                         __bt_set_device_values(FALSE,
1505                                                         VCONFKEY_BT_DEVICE_HID_CONNECTED);
1506                         }
1507
1508                         if (remote_dev_info != NULL) {
1509                                 BT_DBG("HID device class [%x]", remote_dev_info->class);
1510                                 if (remote_dev_info->class &
1511                                         BLUETOOTH_DEVICE_MINOR_CLASS_KEY_BOARD) {
1512                                         __bt_set_device_values(property_flag,
1513                                                 VCONFKEY_BT_DEVICE_HID_KEYBOARD_CONNECTED);
1514
1515                                 }
1516
1517                                 if (remote_dev_info->class &
1518                                                 BLUETOOTH_DEVICE_MINOR_CLASS_POINTING_DEVICE) {
1519                                         __bt_set_device_values(property_flag,
1520                                                         VCONFKEY_BT_DEVICE_HID_MOUSE_CONNECTED);
1521                                 }
1522                                 _bt_free_device_info(remote_dev_info);
1523                         }
1524                         g_free(address);
1525                 }
1526                 g_free(property);
1527                 g_variant_unref(val);
1528                 g_variant_unref(child);
1529          }
1530 }
1531
1532 void _bt_handle_network_server_event(GVariant *msg, const char *member)
1533 {
1534         int result = BLUETOOTH_ERROR_NONE;
1535         char *address = NULL;
1536         char *device = NULL;
1537         GVariant *param = NULL;
1538         ret_if(member == NULL);
1539         if (strcasecmp(member, "PeerConnected") == 0) {
1540                 g_variant_get(msg, "(ss)", &device, &address);
1541
1542                 __bt_set_device_values(TRUE,
1543                                 VCONFKEY_BT_DEVICE_PAN_CONNECTED);
1544                 param = g_variant_new("(iss)", result, device, address);
1545                 _bt_send_event(BT_NETWORK_EVENT, BLUETOOTH_EVENT_NETWORK_SERVER_CONNECTED,
1546                         param);
1547                 g_free(device);
1548                 g_free(address);
1549                  nap_connected_device_count++;
1550         } else if (strcasecmp(member, "PeerDisconnected") == 0) {
1551                 g_variant_get(msg, "(ss)", &device, &address);
1552                 nap_connected_device_count--;
1553                 if (nap_connected_device_count == 0)
1554                         __bt_set_device_values(FALSE,
1555                                 VCONFKEY_BT_DEVICE_PAN_CONNECTED);
1556                 param = g_variant_new("(iss)", result, device, address);
1557                 _bt_send_event(BT_NETWORK_EVENT, BLUETOOTH_EVENT_NETWORK_SERVER_DISCONNECTED,
1558                         param);
1559                 g_free(device);
1560                 g_free(address);
1561         }
1562 }
1563
1564 void _bt_handle_network_client_event(GVariant *msg,
1565                                 const char *path)
1566 {
1567         BT_DBG("+");
1568
1569         int result = BLUETOOTH_ERROR_NONE;
1570         gboolean property_flag = FALSE;
1571         char *property = NULL;
1572         GVariant *val = NULL;
1573         GVariantIter value_iter;
1574         GVariant *param = NULL;
1575         g_variant_iter_init(&value_iter, msg);
1576         while ((g_variant_iter_loop(&value_iter, "{sv}", &property, &val))) {
1577                 if (strcasecmp(property, "Connected") == 0) {
1578                         int event = BLUETOOTH_EVENT_NONE;
1579                         char *address;
1580
1581                         g_variant_get(val, "b", &property_flag);
1582                         address = g_malloc0(BT_ADDRESS_STRING_SIZE);
1583
1584                         _bt_convert_device_path_to_address(path, address);
1585
1586                         BT_DBG("property_flag %d", property_flag);
1587                         if (property_flag == TRUE) {
1588                                 event = BLUETOOTH_EVENT_NETWORK_CONNECTED;
1589                                 nap_connected_device_count++;
1590                                 __bt_set_device_values(TRUE,
1591                                         VCONFKEY_BT_DEVICE_PAN_CONNECTED);
1592                         } else {
1593                                 event = BLUETOOTH_EVENT_NETWORK_DISCONNECTED;
1594                                 nap_connected_device_count--;
1595                                 if (nap_connected_device_count == 0)
1596                                         __bt_set_device_values(FALSE,
1597                                                 VCONFKEY_BT_DEVICE_PAN_CONNECTED);
1598                         }
1599                         param = g_variant_new("(is)", result, address);
1600                         _bt_send_event(BT_NETWORK_EVENT, event,
1601                                 param);
1602
1603                         g_free(address);
1604                 }
1605         }
1606         BT_DBG("-");
1607 }
1608
1609 void __bt_gatt_char_property_changed_event(GVariant *msg,
1610                                 const char *path)
1611 {
1612         GVariantIter value_iter;
1613         char *property = NULL;
1614         char * char_handle = NULL;
1615         GVariant *val = NULL;
1616         int result = BLUETOOTH_ERROR_NONE;
1617         GVariant *param = NULL;
1618         g_variant_iter_init(&value_iter, msg);
1619         char_handle = g_strdup(path);
1620         while ((g_variant_iter_loop(&value_iter, "{sv}", &property, &val))) {
1621                 BT_INFO("Property %s", property);
1622
1623                 ret_if(property == NULL);
1624
1625                 if (strcasecmp(property, "Notifying") == 0) {
1626                         gboolean property_flag = FALSE;
1627                         g_variant_get(val, "b", &property_flag);
1628                         if (property_flag == TRUE)
1629                                 BT_DBG("notifying is enabled");
1630                         else
1631                                 BT_DBG("notifying is disabled");
1632                 } else if (strcasecmp(property, "ChangedValue") == 0) {
1633                         int len = 0;
1634                         GByteArray *gp_byte_array = NULL;
1635                         BT_INFO("Type '%s'\n", g_variant_get_type_string(val));
1636
1637                         if (val) {
1638                                 gp_byte_array = g_byte_array_new();
1639                                 len = g_variant_get_size(val);
1640                                 BT_DBG("Len = %d", len);
1641                                 g_byte_array_append(gp_byte_array,
1642                                         (const guint8 *) g_variant_get_data(val), len);
1643                                 if (gp_byte_array->len != 0) {
1644                                         GVariant *byte_array = NULL;
1645                                         byte_array = g_variant_new_from_data(
1646                                                                 G_VARIANT_TYPE_BYTESTRING,
1647                                                                 gp_byte_array->data,
1648                                                                 gp_byte_array->len,
1649                                                                 TRUE, NULL, NULL);
1650                                         param = g_variant_new("(is@ay)", result, char_handle,
1651                                                                 byte_array);
1652
1653                                         /* Send event only registered client */
1654                                         _bt_send_char_value_changed_event(param);
1655                                 }
1656                                 g_byte_array_free(gp_byte_array, TRUE);
1657                         }
1658                 }
1659         }
1660         g_free(char_handle);
1661 }
1662
1663 void _bt_handle_gatt_event(GVariant *msg, const char *member, const char *path)
1664 {
1665         ret_if(path == NULL);
1666
1667         if (strcasecmp(member, "GattValueChanged") == 0) {
1668
1669 #if 0 // Debug Only
1670                 /*** Debug only ***/
1671                 GVariant *value = NULL;
1672                 int value_len = 0;
1673                 char *buffer = NULL;
1674
1675                 g_variant_get(msg, "(is@ay)", NULL, NULL, &value);
1676                 value_len = g_variant_get_size(value);
1677                 if (value_len > 0) {
1678                         char buf[8 * 5 + 1] = { 0 };
1679                         int i;
1680                         int to;
1681                         buffer = (char *)g_variant_get_data(value);
1682                         to = value_len > (sizeof(buf) / 5) ? sizeof(buf) / 5 : value_len;
1683
1684                         for (i = 0; i < to; i++)
1685                                 snprintf(&buf[i * 5], 6, "0x%02x ", buffer[i]);
1686                         buf[i * 5] = '\0';
1687                         BT_DBG("GATT Val[%d] %s", value_len, buf);
1688                 }
1689                 g_variant_unref(value);
1690                 /******/
1691 #endif
1692
1693                 /* Send event only registered client */
1694                 _bt_send_char_value_changed_event(msg);
1695         }
1696 }
1697
1698
1699 void _bt_handle_device_event(GVariant *msg, const char *member, const char *path)
1700 {
1701         int event = 0;
1702         int result = BLUETOOTH_ERROR_NONE;
1703         char *address;
1704         char *dev_name = NULL;
1705         const char *property = NULL;
1706         GVariant *param = NULL;
1707         char secure_address[BT_ADDRESS_STRING_SIZE] = { 0 };
1708         ret_if(path == NULL);
1709
1710         if (strcasecmp(member, "PropertyChanged") == 0) {
1711
1712                 g_variant_get(msg, "(s)", &property);
1713
1714                 ret_if(property == NULL);
1715
1716                 if (strcasecmp(property, "GattConnected") == 0) {
1717                         gboolean connected = FALSE;
1718                         char *address;
1719                         address = g_malloc0(BT_ADDRESS_STRING_SIZE);
1720                         ret_if(address == NULL);
1721
1722                         _bt_convert_device_path_to_address(path, address);
1723                         g_variant_get(msg, "(b)", &connected);
1724
1725                         event = connected ? BLUETOOTH_EVENT_GATT_CONNECTED :
1726                                         BLUETOOTH_EVENT_GATT_DISCONNECTED;
1727                         param = g_variant_new("(is)", result, address);
1728                         _bt_send_event(BT_DEVICE_EVENT,
1729                                         event,
1730                                         param);
1731                         g_free(address);
1732                 } else if (strcasecmp(property, "Paired") == 0) {
1733                         gboolean paired = FALSE;
1734                         bt_remote_dev_info_t *remote_dev_info;
1735                         g_variant_get(msg, "(b)", &paired);
1736
1737                         ret_if(paired == FALSE);
1738
1739                         /* BlueZ sends paired signal for each paired device */
1740                         /* during activation, We should ignore this, otherwise*/
1741                         /* application thinks that a new device got paired */
1742                         if (_bt_adapter_get_status() != BT_ACTIVATED) {
1743                                 BT_DBG("BT is not activated, so ignore this");
1744                                 return;
1745                         }
1746
1747                         if (_bt_is_device_creating() == TRUE) {
1748                                 BT_DBG("Try to Pair by me");
1749                                 return;
1750                         }
1751
1752                         address = g_malloc0(BT_ADDRESS_STRING_SIZE);
1753                         ret_if(address == NULL);
1754
1755                         _bt_convert_device_path_to_address(path, address);
1756
1757                         remote_dev_info = _bt_get_remote_device_info_by_object_path(path);
1758                         if (remote_dev_info == NULL) {
1759                                 g_free(address);
1760                                 return;
1761                         }
1762                         GVariant *uuids = NULL;
1763                         GVariantBuilder *builder = NULL;
1764                         int i = 0;
1765                         builder = g_variant_builder_new(G_VARIANT_TYPE("as"));
1766                         for (i = 0; i < remote_dev_info->uuid_count; i++) {
1767                                 g_variant_builder_add(builder, "s",
1768                                         remote_dev_info->uuids[i]);
1769                         }
1770                         uuids = g_variant_new("as", builder);
1771                         g_variant_builder_unref(builder);
1772                         GVariant *manufacturer_data = NULL;
1773                         manufacturer_data = g_variant_new_from_data(
1774                                                 G_VARIANT_TYPE_BYTESTRING,
1775                                                 remote_dev_info->manufacturer_data,
1776                                                 remote_dev_info->manufacturer_data_len,
1777                                                 TRUE, NULL, NULL);
1778                         param = g_variant_new("(isunsbub@asn@ay)", result,
1779                                                 address,
1780                                                 remote_dev_info->class,
1781                                                 remote_dev_info->rssi,
1782                                                 remote_dev_info->name,
1783                                                 remote_dev_info->paired,
1784                                                 remote_dev_info->connected,
1785                                                 remote_dev_info->trust,
1786                                                 uuids,
1787                                                 remote_dev_info->manufacturer_data_len,
1788                                                 manufacturer_data);
1789                         _bt_send_event(BT_ADAPTER_EVENT,
1790                                 BLUETOOTH_EVENT_BONDING_FINISHED,
1791                                 param);
1792                         _bt_free_device_info(remote_dev_info);
1793                         g_free(address);
1794
1795                 } else if (strcasecmp(property, "UUIDs") == 0) {
1796                         /* Once we get the updated uuid information after
1797                          * reverse service search, update it to application */
1798
1799                         bt_remote_dev_info_t *remote_dev_info;
1800
1801                         ret_if(_bt_is_device_creating() == TRUE);
1802
1803                         address = g_malloc0(BT_ADDRESS_STRING_SIZE);
1804                         ret_if(address == NULL);
1805
1806                         _bt_convert_device_path_to_address(path, address);
1807
1808                         remote_dev_info = _bt_get_remote_device_info_by_object_path(path);
1809                         if (remote_dev_info == NULL) {
1810                                 g_free(address);
1811                                 return;
1812                         }
1813
1814                         BT_DBG("UUID's count = %d", remote_dev_info->uuid_count);
1815                         if (remote_dev_info->paired && remote_dev_info->uuid_count) {
1816                                 GVariant *uuids = NULL;
1817                                 GVariantBuilder *builder = NULL;
1818                                 int i = 0;
1819                                 builder = g_variant_builder_new(G_VARIANT_TYPE("as"));
1820                                 for (i = 0; i < remote_dev_info->uuid_count; i++) {
1821                                         g_variant_builder_add(builder, "s",
1822                                                 remote_dev_info->uuids[i]);
1823                                 }
1824                                 uuids = g_variant_new("as", builder);
1825                                 g_variant_builder_unref(builder);
1826                                 GVariant *manufacture_data = g_variant_new_from_data((const GVariantType *)"ay",
1827                                                 remote_dev_info->manufacturer_data, remote_dev_info->manufacturer_data_len,
1828                                                 TRUE, NULL, NULL);
1829
1830                                 param = g_variant_new("(isunsbub@asn@ay)", result,
1831                                                         address, remote_dev_info->class,
1832                                                         remote_dev_info->rssi,
1833                                                         remote_dev_info->name,
1834                                                         remote_dev_info->paired,
1835                                                         remote_dev_info->connected,
1836                                                         remote_dev_info->trust,
1837                                                         uuids,
1838                                                         remote_dev_info->manufacturer_data_len,
1839                                                         manufacture_data);
1840                                 _bt_send_event(BT_ADAPTER_EVENT,
1841                                         BLUETOOTH_EVENT_SERVICE_SEARCHED,
1842                                         param);
1843                         }
1844
1845                         _bt_free_device_info(remote_dev_info);
1846                         g_free(address);
1847                 }
1848         } else if (strcasecmp(member, "DeviceConnected") == 0) {
1849                 unsigned char addr_type = 0;
1850
1851                 g_variant_get(msg, "(y)", &addr_type);
1852
1853                 address = g_malloc0(BT_ADDRESS_STRING_SIZE);
1854                 ret_if(address == NULL);
1855
1856                 _bt_convert_device_path_to_address(path, address);
1857                 dev_name = _bt_get_bonded_device_name(address);
1858
1859                 _bt_convert_addr_string_to_secure_string(secure_address, address);
1860                 BT_INFO("Address : %s Type : %d", secure_address, addr_type);
1861                 BT_ERR_C("### Connected [%s] [%s]", !addr_type ? "BREDR" : "LE",
1862                                 !addr_type ? dev_name : secure_address);
1863                 g_free(dev_name);
1864
1865                 _bt_logging_connection(TRUE, addr_type);
1866                 param = g_variant_new("(isy)", result, address, addr_type);
1867                 /*Send event to application*/
1868                 _bt_send_event(BT_DEVICE_EVENT,
1869                                         BLUETOOTH_EVENT_DEVICE_CONNECTED,
1870                                         param);
1871                 g_free(address);
1872         } else if (strcasecmp(member, "Disconnected") == 0) {
1873                 unsigned char disc_reason = 0;
1874                 unsigned char addr_type = 0;
1875                 char *dev_name = NULL;
1876                 gboolean sending = FALSE;
1877
1878                 g_variant_get(msg, "(yys)", &addr_type, &disc_reason, &dev_name);
1879
1880                 result = disc_reason;
1881
1882                 address = g_malloc0(BT_ADDRESS_STRING_SIZE);
1883                 ret_if(address == NULL);
1884
1885                 _bt_convert_device_path_to_address(path, address);
1886
1887                 /* 0x00 BDADDR_BRDER
1888                       0x01 BDADDR_LE_PUBLIC
1889                       0x02 BDADDR_LE_RANDOM */
1890                 _bt_convert_addr_string_to_secure_string(secure_address, address);
1891                 BT_INFO("Address : %s Type : %d", secure_address, addr_type);
1892                 BT_ERR_C("### Disconnected [%s] [%d : %s] [%s]", !addr_type ? "BREDR" : "LE",
1893                                 disc_reason, _bt_convert_disc_reason_to_string(disc_reason),
1894                                 !addr_type ? dev_name : secure_address);
1895                 g_free(dev_name);
1896
1897                 _bt_headset_set_local_connection(FALSE);
1898                 _bt_logging_connection(FALSE, addr_type);
1899
1900                 if (!addr_type) {
1901 #ifdef TIZEN_BT_A2DP_SINK_AUTO_CONNECT
1902                         {
1903                                 int bt_device_state = VCONFKEY_BT_DEVICE_NONE;
1904
1905                                 if (vconf_get_int(VCONFKEY_BT_DEVICE, &bt_device_state) != 0)
1906                                         BT_ERR("vconf_get_int failed");
1907
1908                                 BT_INFO("conn_state[0x%x], adapter_state [%d]",
1909                                                         bt_device_state, _bt_adapter_get_status());
1910
1911                                 if (disc_reason == BLUETOOTH_ERROR_CONNECTION_TIMEOUT) {
1912                                         _bt_audio_start_auto_connect(TRUE);
1913                                 } else if (bt_device_state &
1914                                                         VCONFKEY_BT_DEVICE_A2DP_SOURCE_CONNECTED) {
1915                                         BT_INFO("Disconnected due to turning BT off. Skip a address");
1916                                 } else {
1917                                         char *last_connected = NULL;
1918                                         last_connected = vconf_get_str(BT_LAST_CONNECTED_DEVICE);
1919                                         if (!g_strcmp0(address, last_connected))
1920                                                 _bt_audio_set_auto_connect_device_addr("");
1921                                         if (last_connected)
1922                                                 free(last_connected);
1923                                 }
1924                         }
1925
1926 #endif
1927                         /*Check for any OPP transfer on the device and cancel
1928                          * the transfer
1929                          */
1930                         _bt_obex_check_pending_transfer(address);
1931                         _bt_opp_client_is_sending(&sending);
1932                         if (sending == TRUE)
1933                                 _bt_opp_client_check_pending_transfer(address);
1934                 }
1935                 param = g_variant_new("(isy)", result, address, addr_type);
1936                 _bt_send_event(BT_DEVICE_EVENT,
1937                                         BLUETOOTH_EVENT_DEVICE_DISCONNECTED,
1938                                         param);
1939                 g_free(address);
1940         } else if (strcasecmp(member, "ProfileStateChanged") == 0) {
1941                 int state = 0;
1942                 char *profile_uuid = NULL;
1943                 bt_headset_wait_t *wait_list;
1944                 bluetooth_device_address_t bd_addr;
1945
1946                 g_variant_get(msg, "(si)", &profile_uuid, &state);
1947
1948                 address = g_malloc0(BT_ADDRESS_STRING_SIZE);
1949                 ret_if(address == NULL);
1950
1951                 _bt_convert_device_path_to_address(path, address);
1952                 _bt_convert_addr_string_to_type(bd_addr.addr, address);
1953
1954                 _bt_convert_addr_string_to_secure_string(secure_address, address);
1955                 BT_DBG("Address: %s", secure_address);
1956                 BT_DBG("Profile UUID: %s", profile_uuid);
1957                 BT_DBG("State: %d", state);
1958
1959                 if ((strcmp(profile_uuid, A2DP_SINK_UUID) == 0)  &&
1960                         (state == BT_PROFILE_STATE_CONNECTED)) {
1961
1962                         int event = BLUETOOTH_EVENT_AV_CONNECTED;
1963                         char connected_address[BT_ADDRESS_STRING_SIZE + 1];
1964                         bluetooth_device_address_t device_address;
1965                         gboolean connected;
1966                         bt_headset_wait_t *wait_list;
1967                         guint restricted = 0x0;
1968
1969                         __bt_set_device_values(TRUE,
1970                                 VCONFKEY_BT_DEVICE_A2DP_HEADSET_CONNECTED);
1971
1972                         __bt_connection_manager_set_state(address, event);
1973
1974                         _bt_get_restrict_profile(&bd_addr, RESTRICTED_PROFILE_HFP_HS, &restricted);
1975
1976                         if (_bt_headset_get_local_connection() == FALSE) {
1977                                 if (restricted == 0x0) /* not restricted*/
1978                                         _bt_start_timer_for_connection(address, BT_AUDIO_HSP);
1979                         } else {
1980                                 /* Connection Started from local device therefore no need to
1981                                  * intiate connection for pending profile */
1982                                 _bt_headset_set_local_connection(FALSE);
1983                         }
1984                         param = g_variant_new("(is)", result, address);
1985                         _bt_send_event(BT_HEADSET_EVENT, event,
1986                                 param);
1987                         connected = _bt_is_headset_type_connected(BT_AUDIO_A2DP,
1988                                                 connected_address);
1989                         if (connected) {
1990                                 if (g_strcmp0(connected_address, address) != 0) {
1991                                         _bt_convert_addr_string_to_type(
1992                                                 device_address.addr,
1993                                                 connected_address);
1994                                         _bt_audio_disconnect(0, BT_AUDIO_A2DP,
1995                                                 &device_address, NULL);
1996                                 }
1997                         }
1998
1999                         _bt_add_headset_to_list(BT_AUDIO_A2DP,
2000                                                 BT_STATE_CONNECTED, address);
2001
2002                         wait_list = _bt_get_audio_wait_data();
2003                         if (wait_list != NULL &&
2004                                 (g_strcmp0(wait_list->address, address) == 0))
2005                                 _bt_rel_wait_data();
2006
2007                 } else if ((strcmp(profile_uuid, A2DP_SINK_UUID) == 0)  &&
2008                         (state == BT_PROFILE_STATE_DISCONNECTED)) {
2009
2010                         int event = BLUETOOTH_EVENT_AV_DISCONNECTED;
2011
2012                         if (!_bt_is_service_connected(address, BT_AUDIO_A2DP)) {
2013                                 g_free(address);
2014                                 g_free(profile_uuid);
2015                                 return;
2016                         }
2017
2018                         __bt_set_device_values(FALSE,
2019                                 VCONFKEY_BT_DEVICE_A2DP_HEADSET_CONNECTED);
2020
2021                         __bt_connection_manager_set_state(address, event);
2022                         param = g_variant_new("(is)", result, address);
2023                         _bt_send_event(BT_HEADSET_EVENT, event,
2024                                 param);
2025                         /* Remove data from the connected list */
2026                         _bt_remove_headset_from_list(BT_AUDIO_A2DP, address);
2027                         wait_list = _bt_get_audio_wait_data();
2028
2029                         if (wait_list == NULL) {
2030                                 g_free(address);
2031                                 g_free(profile_uuid);
2032                                 return;
2033                         }
2034
2035                         if (((wait_list->type == BT_AUDIO_ALL) &&
2036                                 (wait_list->ag_flag == TRUE)) ||
2037                                 (wait_list->type == BT_AUDIO_A2DP) ||
2038                                 (wait_list->disconnection_type == BT_AUDIO_A2DP)) {
2039                                 bluetooth_device_address_t device_address;
2040                                 _bt_convert_addr_string_to_type(
2041                                                         device_address.addr,
2042                                                         wait_list->address);
2043
2044                                 _bt_audio_connect(wait_list->req_id,
2045                                                         wait_list->type,
2046                                                         &device_address,
2047                                                         NULL);
2048                         }
2049                 } else if (strcmp(profile_uuid, AVRCP_TARGET_UUID) == 0) {
2050
2051                         if (state == BT_PROFILE_STATE_CONNECTED) {
2052                                 int event = BLUETOOTH_EVENT_AVRCP_CONTROL_CONNECTED;
2053                                 char connected_address[BT_ADDRESS_STRING_SIZE + 1];
2054                                 bluetooth_device_address_t device_address;
2055                                 gboolean connected;
2056                                 param = g_variant_new("(is)", result, address);
2057                                 _bt_send_event(BT_AVRCP_CONTROL_EVENT, event,
2058                                         param);
2059                                 connected = _bt_is_headset_type_connected(
2060                                                         BT_AVRCP,
2061                                                         connected_address);
2062                                 if (connected) {
2063                                         if (g_strcmp0(connected_address,
2064                                                                 address) != 0) {
2065                                                 _bt_convert_addr_string_to_type(
2066                                                         device_address.addr,
2067                                                         connected_address);
2068                                                 _bt_audio_disconnect(0,
2069                                                         BT_AVRCP,
2070                                                         &device_address, NULL);
2071                                         }
2072                                 }
2073                                 BT_DBG("device Path: %s", path);
2074                                 _bt_add_headset_to_list(BT_AVRCP,
2075                                                 BT_STATE_CONNECTED, address);
2076                         } else if (state == BT_PROFILE_STATE_DISCONNECTED) {
2077                                 int event = BLUETOOTH_EVENT_AVRCP_CONTROL_DISCONNECTED;
2078                                 param = g_variant_new("(is)", result, address);
2079                                 _bt_send_event(BT_AVRCP_CONTROL_EVENT, event,
2080                                         param);
2081                                 /* Remove data from the connected list */
2082                                 _bt_remove_headset_from_list(BT_AVRCP, address);
2083                                 }
2084                 } else if (strcasecmp(profile_uuid, A2DP_SOURCE_UUID) == 0) {
2085                         if (state == BT_PROFILE_STATE_CONNECTED) {
2086                                 int event = BLUETOOTH_EVENT_AV_SOURCE_CONNECTED;
2087                                 BT_INFO("A2DP Source is connected");
2088 #ifdef TIZEN_BT_A2DP_SINK_ENABLE
2089                                 __bt_set_device_values(TRUE,
2090                                                 VCONFKEY_BT_DEVICE_A2DP_SOURCE_CONNECTED);
2091 #endif
2092
2093 #ifdef TIZEN_BT_A2DP_SINK_AUTO_CONNECT
2094                                 _bt_audio_set_auto_connect_device_addr(address);
2095                                 _bt_audio_stop_auto_connect();
2096 #endif
2097                                 _bt_add_headset_to_list(BT_AUDIO_A2DP_SOURCE,
2098                                                 BT_STATE_CONNECTED, address);
2099                                 _bt_send_event(BT_A2DP_SOURCE_EVENT, event,
2100                                         g_variant_new("(is)", result, address));
2101                         } else if (state == BT_PROFILE_STATE_DISCONNECTED) {
2102                                 int event = BLUETOOTH_EVENT_AV_SOURCE_DISCONNECTED;
2103                                 BT_INFO("A2DP Source Disconnected");
2104 #ifdef TIZEN_BT_A2DP_SINK_ENABLE
2105                                 __bt_set_device_values(FALSE,
2106                                                 VCONFKEY_BT_DEVICE_A2DP_SOURCE_CONNECTED);
2107 #endif
2108                                 _bt_remove_headset_from_list(BT_AUDIO_A2DP_SOURCE, address);
2109                                 _bt_send_event(BT_A2DP_SOURCE_EVENT, event,
2110                                                 g_variant_new("(is)", result, address));
2111
2112                                 wait_list = _bt_get_audio_wait_data();
2113                                 if (wait_list && wait_list->type == BT_AUDIO_A2DP_SOURCE) {
2114                                         bluetooth_device_address_t device_address;
2115                                         _bt_convert_addr_string_to_type(
2116                                                         device_address.addr,
2117                                                         wait_list->address);
2118
2119                                         _bt_audio_connect(wait_list->req_id,
2120                                                         wait_list->type,
2121                                                         &device_address,
2122                                                         NULL);
2123                                         /* Now free the wait list */
2124                                         _bt_rel_wait_data();
2125                                 }
2126                         }
2127                 } else if ((strcmp(profile_uuid, HID_UUID) == 0) &&
2128                         ((state == BT_PROFILE_STATE_CONNECTED) ||
2129                                 (state == BT_PROFILE_STATE_DISCONNECTED))) {
2130                         int event;
2131                         if (state == BT_PROFILE_STATE_CONNECTED)
2132                                 event = BLUETOOTH_HID_CONNECTED;
2133                         else
2134                                 event = BLUETOOTH_HID_DISCONNECTED;
2135                         param = g_variant_new("(is)", result, address);
2136                         _bt_send_event(BT_HID_EVENT, event,
2137                                 param);
2138                 } else if (strcmp(profile_uuid, HID_DEVICE_UUID) == 0) {
2139                         if (state == BT_PROFILE_STATE_CONNECTED) {
2140                                 int event;
2141                                 event = BLUETOOTH_HID_DEVICE_CONNECTED;
2142                                 param = g_variant_new("(is)", result, address);
2143                                 _bt_send_event(BT_HID_DEVICE_EVENT, event,
2144                                         param);
2145                         } else if (state == BT_PROFILE_STATE_DISCONNECTED) {
2146                                 event = BLUETOOTH_HID_DEVICE_DISCONNECTED;
2147                                 param = g_variant_new("(is)", result, address);
2148                                 _bt_send_event(BT_HID_DEVICE_EVENT, event,
2149                                         param);
2150                         }
2151                 }
2152                 g_free(address);
2153                 g_free(profile_uuid);
2154         } else if (strcasecmp(member, "AdvReport") == 0) {
2155
2156                 bt_remote_le_dev_info_t *le_dev_info = NULL;
2157                 char *buffer = NULL;
2158                 int buffer_len = 0;
2159                 bt_le_adv_info_t *adv_info = NULL;
2160                 GVariant *value = NULL;
2161                 ret_if(_bt_is_le_scanning() == FALSE);
2162
2163                 le_dev_info = g_malloc0(sizeof(bt_remote_le_dev_info_t));
2164                 if (le_dev_info == NULL)
2165                         return;
2166
2167                 g_variant_get(msg, "(syyii@ay)", &le_dev_info->address,
2168                                                 &le_dev_info->addr_type,
2169                                                 &le_dev_info->adv_type,
2170                                                 &le_dev_info->rssi,
2171                                                 &le_dev_info->adv_data_len,
2172                                                 &value);
2173                 _bt_convert_device_path_to_address(path, le_dev_info->address);
2174
2175                 buffer_len = g_variant_get_size(value);
2176                 if (buffer_len > 0)
2177                         buffer = (char *)g_variant_get_data(value);
2178
2179                 le_dev_info->adv_data = g_memdup(buffer, buffer_len);
2180                 if (le_dev_info->adv_data == NULL &&
2181                         le_dev_info->adv_type != BT_LE_ADV_SCAN_RSP) {
2182                         _bt_free_le_device_info(le_dev_info);
2183                         g_variant_unref(value);
2184                         return;
2185                 }
2186
2187                 if (_bt_get_le_scan_type() == BT_LE_PASSIVE_SCAN) {
2188                         _bt_send_scan_result_event(le_dev_info, NULL);
2189                         _bt_free_le_device_info(le_dev_info);
2190                         g_variant_unref(value);
2191                         return;
2192                 }
2193
2194                 if (le_dev_info->adv_type != BT_LE_ADV_SCAN_RSP) {       /* ADV_IND */
2195                         adv_info = g_malloc0(sizeof(bt_le_adv_info_t));
2196                         if (adv_info == NULL) {
2197                                 _bt_free_le_device_info(le_dev_info);
2198                                 g_variant_unref(value);
2199                                 return;
2200                         }
2201
2202                         adv_info->addr = g_strdup(le_dev_info->address);
2203                         adv_info->addr_type = le_dev_info->addr_type;
2204                         adv_info->rssi = le_dev_info->rssi;
2205                         adv_info->data_len = le_dev_info->adv_data_len;
2206                         adv_info->data = g_malloc0(le_dev_info->adv_data_len);
2207                         if (adv_info->data) {
2208                                 memcpy(adv_info->data, le_dev_info->adv_data,
2209                                                 le_dev_info->adv_data_len);
2210                         }
2211
2212                         if (__bt_add_adv_ind_info(adv_info) == 0) {
2213                                 adv_info->timer_id = g_timeout_add(1000,
2214                                         (GSourceFunc)__bt_adv_scan_req_timeout_cb, (void*)adv_info);
2215                         }
2216                 } else {     /* SCAN_RSP */
2217                         adv_info = __bt_get_adv_ind_info(le_dev_info->address);
2218                         if (adv_info) {
2219                                 _bt_send_scan_result_event(le_dev_info, adv_info);
2220                                 __bt_del_adv_ind_info(le_dev_info->address);
2221                         }
2222                 }
2223                 _bt_free_le_device_info(le_dev_info);
2224                 g_variant_unref(value);
2225         } else if  (strcasecmp(member, "LEDataLengthChanged") == 0) {
2226                 guint16 tx_octets = 0;
2227                 guint16 tx_time = 0;
2228                 guint16 rx_octets = 0;
2229                 guint16 rx_time = 0;
2230
2231                 g_variant_get(msg, "(qqqq)",
2232                                 &tx_octets, &tx_time, &rx_octets, &rx_time);
2233
2234                 address = g_malloc0(BT_ADDRESS_STRING_SIZE);
2235                 _bt_convert_device_path_to_address(path, address);
2236
2237                 param = g_variant_new("(isqqqq)", result, address, tx_octets, tx_time,
2238                                 rx_octets, rx_time);
2239                 /* Send event to application */
2240                 _bt_send_event(BT_DEVICE_EVENT,
2241                                 BLUETOOTH_EVENT_LE_DATA_LENGTH_CHANGED, param);
2242                 g_free(address);
2243         } else if  (strcasecmp(member, "IpspStateChanged") == 0) {
2244                 gboolean connected = FALSE;
2245                 char *ifname = NULL;
2246
2247                 g_variant_get(msg, "(bs)", &connected, &ifname);
2248
2249                 event = connected ? BLUETOOTH_EVENT_IPSP_CONNECTED :
2250                                                 BLUETOOTH_EVENT_IPSP_DISCONNECTED;
2251
2252                 address = g_malloc0(BT_ADDRESS_STRING_SIZE);
2253                 _bt_convert_device_path_to_address(path, address);
2254
2255                 BT_DBG("Ipsp BT Interface Name: %s", ifname);
2256                 BT_DBG("address: %s", address);
2257                 param = g_variant_new("(iss)", result, address, ifname);
2258
2259                 /* Send event to application */
2260                 _bt_send_event(BT_DEVICE_EVENT,
2261                                                 event,
2262                                                 param);
2263                 g_free(address);
2264         } else if (strcasecmp(member, "iBeaconReport") == 0) {
2265                 bt_remote_ibeacon_dev_info_t *ibeacon_dev_info = NULL;
2266
2267                 ret_if(_bt_is_le_scanning() == FALSE);
2268
2269                 ibeacon_dev_info = g_malloc0(sizeof(bt_remote_ibeacon_dev_info_t));
2270                 if (ibeacon_dev_info == NULL)
2271                         return;
2272
2273                 g_variant_get(msg, "(syuusuuy)", &ibeacon_dev_info->address,
2274                                                 &ibeacon_dev_info->addr_type,
2275                                                 &ibeacon_dev_info->company_id,
2276                                                 &ibeacon_dev_info->ibeacon_type,
2277                                                 &ibeacon_dev_info->uuid,
2278                                                 &ibeacon_dev_info->major_id,
2279                                                 &ibeacon_dev_info->minor_id,
2280                                                 &ibeacon_dev_info->measured_power);
2281                 _bt_send_ibeacon_scan_result_event(ibeacon_dev_info);
2282                 g_free(ibeacon_dev_info);
2283         }
2284 }
2285
2286 void __bt_set_audio_values(gboolean connected, char *address)
2287 {
2288         char *name = NULL;
2289         int bt_device_state = VCONFKEY_BT_DEVICE_NONE;
2290
2291         /*  Set the headset name */
2292         if (connected == TRUE)
2293                 name = _bt_get_bonded_device_name(address);
2294         else
2295                 name = g_strdup("");
2296
2297         if (vconf_set_str(VCONFKEY_BT_HEADSET_NAME, name) != 0)
2298                 BT_ERR("vconf_set_str failed");
2299
2300         g_free(name);
2301
2302         /*  Set the headset state */
2303         if (vconf_get_int(VCONFKEY_BT_DEVICE, &bt_device_state) != 0)
2304                 BT_ERR("vconf_get_int failed");
2305
2306 #ifdef TIZEN_SUPPORT_DUAL_HF
2307         if ((connected == TRUE) &&
2308                 (FALSE == __bt_is_companion_device(address))) {
2309                 bt_device_state |= VCONFKEY_BT_DEVICE_HEADSET_CONNECTED;
2310         } else if ((bt_device_state & VCONFKEY_BT_DEVICE_HEADSET_CONNECTED) &&
2311                         (FALSE == __bt_is_companion_device(address))) {
2312                 bt_device_state ^= VCONFKEY_BT_DEVICE_HEADSET_CONNECTED;
2313         }
2314 #else
2315         if (connected == TRUE)
2316                 bt_device_state |= VCONFKEY_BT_DEVICE_HEADSET_CONNECTED;
2317         else if (bt_device_state & VCONFKEY_BT_DEVICE_HEADSET_CONNECTED)
2318                 bt_device_state ^= VCONFKEY_BT_DEVICE_HEADSET_CONNECTED;
2319 #endif
2320
2321         if (vconf_set_int(VCONFKEY_BT_DEVICE,
2322                                 bt_device_state) != 0) {
2323                 BT_ERR("vconf_set_int failed");
2324         }
2325 }
2326
2327 void _bt_handle_headset_event(GVariant *msg, const char *path)
2328 {
2329         int result = BLUETOOTH_ERROR_NONE;
2330         gboolean property_flag = FALSE;
2331         char *property = NULL;
2332         GVariant *value = NULL;
2333         GVariant *param = NULL;
2334         g_variant_get(msg, "(sv)", &property, &value);
2335         bluetooth_device_address_t bd_addr;
2336
2337         ret_if(property == NULL);
2338
2339         BT_DBG("Property = %s \n", property);
2340         /* We allow only 1 headset connection (HSP or HFP)*/
2341         if (strcasecmp(property, "Connected") == 0) {
2342                 int event = BLUETOOTH_EVENT_NONE;
2343                 bt_headset_wait_t *wait_list;
2344                 char *address;
2345                 guint restricted = 0x0;
2346                 g_variant_get(value, "b", &property_flag);
2347
2348                 address = g_malloc0(BT_ADDRESS_STRING_SIZE);
2349                 if (address == NULL)
2350                         return;
2351
2352                 _bt_convert_device_path_to_address(path, address);
2353                 _bt_convert_addr_string_to_type(bd_addr.addr, address);
2354
2355                 if (property_flag == TRUE) {
2356                         event = BLUETOOTH_EVENT_AG_CONNECTED;
2357                         _bt_get_restrict_profile(&bd_addr, RESTRICTED_PROFILE_A2DP, &restricted);
2358
2359                         if (_bt_headset_get_local_connection() == FALSE) {
2360                                 if (restricted == 0x0) /* not restricted*/
2361                                         _bt_start_timer_for_connection(address, BT_AUDIO_A2DP);
2362                         } else
2363                                 _bt_headset_set_local_connection(FALSE);
2364                 } else {
2365                         int previous_state;
2366
2367                         event = BLUETOOTH_EVENT_AG_DISCONNECTED;
2368
2369                         previous_state = _bt_get_device_state_from_list(BT_AUDIO_HSP, address);
2370                         if (previous_state == BT_STATE_DISCONNECTING)
2371                                 _bt_send_hf_local_term_event(address);
2372                 }
2373                 /* Set the State machine here */
2374                 __bt_connection_manager_set_state(address, event);
2375                 __bt_set_audio_values(property_flag, address);
2376                 param = g_variant_new("(is)", result, address);
2377                 _bt_send_event(BT_HEADSET_EVENT, event,
2378                         param);
2379
2380                 if (event == BLUETOOTH_EVENT_AG_DISCONNECTED) {
2381                         /* Remove data from the connected list */
2382                         _bt_remove_headset_from_list(BT_AUDIO_HSP, address);
2383
2384                         wait_list = _bt_get_audio_wait_data();
2385                         if (wait_list == NULL) {
2386                                 g_free(address);
2387                                 return;
2388                         }
2389
2390                         bluetooth_device_address_t device_address;
2391
2392                         _bt_set_audio_wait_data_flag(TRUE);
2393
2394                         _bt_convert_addr_string_to_type(device_address.addr,
2395                                                         wait_list->address);
2396                         _bt_audio_connect(wait_list->req_id, wait_list->type,
2397                                         &device_address, NULL);
2398                         _bt_rel_wait_data();
2399                 } else if (event == BLUETOOTH_EVENT_AG_CONNECTED) {
2400                         /* Add data to the connected list */
2401                         _bt_add_headset_to_list(BT_AUDIO_HSP,
2402                                                 BT_STATE_CONNECTED, address);
2403
2404                         wait_list = _bt_get_audio_wait_data();
2405                         if (wait_list != NULL &&
2406                                 (g_strcmp0(wait_list->address, address) == 0))
2407                         _bt_rel_wait_data();
2408
2409                         BT_INFO("Check A2DP pending connect");
2410                         _bt_audio_check_pending_connect();
2411                 }
2412                 g_free(address);
2413         } else if (strcasecmp(property, "State") == 0) {
2414                 char *state = NULL;
2415
2416                 g_variant_get(value, "s", &state);
2417
2418                 /* This code assumes we support only 1 headset connection */
2419                 /* Need to use the headset list, if we support multi-headsets */
2420                 if (strcasecmp(state, "Playing") == 0) {
2421                         BT_DBG("Playing: Sco Connected");
2422                 } else if (strcasecmp(state, "connected") == 0 ||
2423                                 strcasecmp(state, "disconnected") == 0) {
2424                         BT_DBG("connected/disconnected: Sco Disconnected");
2425                 } else {
2426                         BT_ERR("Not handled state - %s", state);
2427                         g_free(state);
2428                         return;
2429                 }
2430                 g_free(state);
2431         } else if (strcasecmp(property, "SpeakerGain") == 0) {
2432                 guint16 spkr_gain;
2433                 char *address;
2434
2435                 address = g_malloc0(BT_ADDRESS_STRING_SIZE);
2436
2437                 _bt_convert_device_path_to_address(path, address);
2438
2439                 spkr_gain = g_variant_get_uint16(value);
2440
2441                 BT_DBG("spkr_gain: %d", spkr_gain);
2442
2443                 param = g_variant_new("(i&sq)", result, address, spkr_gain);
2444                 _bt_send_event(BT_HEADSET_EVENT, BLUETOOTH_EVENT_AG_SPEAKER_GAIN,
2445                         param);
2446
2447                 g_free(address);
2448         } else if (strcasecmp(property, "MicrophoneGain") == 0) {
2449                 guint16 mic_gain;
2450                 char *address;
2451
2452                 address = g_malloc0(BT_ADDRESS_STRING_SIZE);
2453
2454                 _bt_convert_device_path_to_address(path, address);
2455
2456                 mic_gain = g_variant_get_uint16(value);
2457
2458                 param = g_variant_new("(i&sq)", result, address, mic_gain);
2459                 _bt_send_event(BT_HEADSET_EVENT, BLUETOOTH_EVENT_AG_MIC_GAIN,
2460                         param);
2461                 g_free(address);
2462         }
2463
2464         if (property)
2465                 g_free(property);
2466         g_variant_unref(value);
2467 }
2468
2469 void _bt_handle_sink_event(GVariant *msg, const char *path)
2470 {
2471         GVariantIter value_iter;
2472         char *property = NULL;
2473
2474         bt_headset_wait_t *wait_list;
2475
2476         GVariant *child = NULL;
2477         GVariant *val = NULL;
2478         GVariant *param = NULL;
2479         g_variant_iter_init(&value_iter, msg);
2480         while ((child = g_variant_iter_next_value(&value_iter))) {
2481
2482                 g_variant_get(child, "{sv}", &property, &val);
2483
2484                 ret_if(property == NULL);
2485
2486                 BT_DBG("Property = %s \n", property);
2487
2488
2489                 if (strcasecmp(property, "State") == 0) {
2490                         int result = BLUETOOTH_ERROR_NONE;
2491                         char *value;
2492
2493                         g_variant_get(val, "s", &value);
2494                         BT_DBG("value: %s", value);
2495
2496                         if (g_strcmp0(value, "disconnected") == 0) {
2497                                 char *address;
2498
2499                                 address = g_malloc0(BT_ADDRESS_STRING_SIZE);
2500
2501                                 _bt_convert_device_path_to_address(path, address);
2502
2503                                 __bt_set_device_values(FALSE,
2504                                         VCONFKEY_BT_DEVICE_A2DP_HEADSET_CONNECTED);
2505                                 param = g_variant_new("(is)", result, address);
2506                                 _bt_send_event(BT_HEADSET_EVENT,
2507                                         BLUETOOTH_EVENT_AV_DISCONNECTED,
2508                                         param);
2509
2510                                 /* Remove data from the connected list */
2511                                 _bt_remove_headset_from_list(BT_AUDIO_A2DP, address);
2512                                 wait_list = _bt_get_audio_wait_data();
2513                                 if (wait_list == NULL) {
2514                                         g_free(value);
2515                                         g_free(property);
2516                                         g_variant_unref(val);
2517                                         g_variant_unref(child);
2518                                         g_free(address);
2519                                         return;
2520                                 }
2521
2522                                 if (((wait_list->type == BT_AUDIO_ALL) &&
2523                                         (wait_list->ag_flag == TRUE)) ||
2524                                         (wait_list->type == BT_AUDIO_A2DP) ||
2525                                         (wait_list->disconnection_type == BT_AUDIO_A2DP)) {
2526                                         bluetooth_device_address_t device_address;
2527                                         _bt_convert_addr_string_to_type(
2528                                                                 device_address.addr,
2529                                                                 wait_list->address);
2530
2531                                         _bt_audio_connect(wait_list->req_id,
2532                                                                 wait_list->type,
2533                                                                 &device_address,
2534                                                                 NULL);
2535                                 }
2536                                 g_free(address);
2537                         } else if (strcasecmp(value, "Connected") == 0) {
2538                                 char *address;
2539                                 char connected_address[BT_ADDRESS_STRING_SIZE + 1];
2540                                 bluetooth_device_address_t device_address;
2541                                 gboolean connected;
2542
2543                                 address = g_malloc0(BT_ADDRESS_STRING_SIZE);
2544
2545                                 _bt_convert_device_path_to_address(path, address);
2546
2547                                 __bt_set_device_values(TRUE,
2548                                                 VCONFKEY_BT_DEVICE_A2DP_HEADSET_CONNECTED);
2549                                 param = g_variant_new("(is)", result, address);
2550                                 _bt_send_event(BT_HEADSET_EVENT,
2551                                         BLUETOOTH_EVENT_AV_CONNECTED,
2552                                         param);
2553                                 /* Check for existing Media device to disconnect */
2554                                 connected = _bt_is_headset_type_connected(BT_AUDIO_A2DP,
2555                                                                         connected_address);
2556                                 if (connected) {
2557                                         /* Match connected device address */
2558                                         if (g_strcmp0(connected_address, address) != 0) {
2559                                                 /* Convert BD adress from string type */
2560                                                 _bt_convert_addr_string_to_type(
2561                                                                 device_address.addr,
2562                                                                 connected_address);
2563                                                 _bt_audio_disconnect(0, BT_AUDIO_A2DP,
2564                                                                 &device_address, NULL);
2565                                         }
2566                                 }
2567
2568                                 /* Add data to the connected list */
2569                                 _bt_add_headset_to_list(BT_AUDIO_A2DP,
2570                                                 BT_STATE_CONNECTED, address);
2571
2572                                 g_free(address);
2573                         }
2574                         g_free(value);
2575                 }
2576                 g_free(property);
2577                 g_variant_unref(val);
2578                 g_variant_unref(child);
2579         }
2580 }
2581
2582 void _bt_handle_agent_event(GVariant *msg, const char *member)
2583 {
2584         int result = BLUETOOTH_ERROR_NONE;
2585         char *address = NULL;
2586         char *name = NULL;
2587         char *uuid = NULL;
2588         GVariant *param = NULL;
2589         ret_if(member == NULL);
2590
2591         if (strcasecmp(member, "ObexAuthorize") == 0) {
2592                 __bt_get_agent_signal_info(msg, &address, &name, &uuid);
2593                 param = g_variant_new("(iss)", result, address, name);
2594                 _bt_send_event(BT_OPP_SERVER_EVENT,
2595                         BLUETOOTH_EVENT_OBEX_SERVER_CONNECTION_AUTHORIZE,
2596                         param);
2597                 g_free(address);
2598                 g_free(name);
2599         } else if (strcasecmp(member, "RfcommAuthorize") == 0) {
2600                 bt_rfcomm_server_info_t *server_info;
2601
2602                 __bt_get_agent_signal_info(msg, &address, &name, &uuid);
2603
2604                 server_info = _bt_rfcomm_get_server_info_using_uuid(uuid);
2605                 ret_if(server_info == NULL);
2606                 ret_if(server_info->server_type != BT_CUSTOM_SERVER);
2607                 param = g_variant_new("(isssn)", result, address, uuid, name,
2608                                         server_info->control_fd);
2609                 _bt_send_event(BT_RFCOMM_SERVER_EVENT,
2610                         BLUETOOTH_EVENT_RFCOMM_AUTHORIZE,
2611                         param);
2612                 g_free(address);
2613                 g_free(uuid);
2614                 g_free(name);
2615         }
2616 }
2617
2618 static int __bt_get_object_path(GVariant *msg, char **path)
2619 {
2620         g_variant_get(msg, "(o*)", path, NULL);
2621         if (*path == NULL)
2622                 return BLUETOOTH_ERROR_INTERNAL;
2623
2624         return BLUETOOTH_ERROR_NONE;
2625 }
2626
2627 static void __bt_devices_list_free(void)
2628 {
2629         bt_cache_info_t *cache_info;
2630         GList *node;
2631
2632         node = g_list_first(p_cache_list);
2633
2634         while (node != NULL) {
2635                 cache_info = (bt_cache_info_t *)node->data;
2636                 p_cache_list = g_list_remove(p_cache_list, cache_info);
2637                 __bt_free_cache_info(cache_info);
2638
2639                 node = g_list_next(node);
2640         }
2641 }
2642
2643 static int __bt_parse_event(GVariant *msg)
2644 {
2645         GVariantIter iter;
2646         GVariant *child;
2647         char *interface_name = NULL;
2648         GVariant *inner_iter = NULL;
2649
2650         g_variant_iter_init(&iter, msg);
2651
2652         while ((child = g_variant_iter_next_value(&iter))) {
2653                 g_variant_get(child, "{&s@a{sv}}", &interface_name, &inner_iter);
2654                 if (g_strcmp0(interface_name,
2655                                 BT_DEVICE_INTERFACE) == 0) {
2656                         g_variant_unref(inner_iter);
2657                         g_variant_unref(child);
2658                         return BT_DEVICE_EVENT;
2659                 } else if (g_strcmp0(interface_name,
2660                                 BT_MEDIATRANSPORT_INTERFACE) == 0) {
2661                         g_variant_unref(inner_iter);
2662                         g_variant_unref(child);
2663                         return BT_MEDIA_TRANSFER_EVENT;
2664                 } else if (g_strcmp0(interface_name,
2665                                 BT_PLAYER_CONTROL_INTERFACE) == 0) {
2666                         g_variant_unref(inner_iter);
2667                         g_variant_unref(child);
2668                         return BT_AVRCP_CONTROL_EVENT;
2669                 }
2670                 g_variant_unref(inner_iter);
2671                 g_variant_unref(child);
2672         }
2673
2674         return 0;
2675 }
2676
2677 static  void __bt_manager_event_filter(GDBusConnection *connection,
2678                                         const gchar *sender_name,
2679                                         const gchar *object_path,
2680                                         const gchar *interface_name,
2681                                         const gchar *signal_name,
2682                                         GVariant *parameters,
2683                                         gpointer user_data)
2684 {
2685         bt_event_type_t bt_event = 0x00;
2686         int result = BLUETOOTH_ERROR_NONE;
2687         GVariant *value;
2688         char *obj_path = NULL;
2689         GVariant *param = NULL;
2690         if (signal_name == NULL)
2691                 return;
2692         if (strcasecmp(signal_name, "InterfacesAdded") == 0) {
2693                 g_variant_get(parameters, "(&o@a{sa{sv}})", &obj_path, &value);
2694
2695                 if (strcasecmp(obj_path, BT_BLUEZ_HCI_PATH) == 0) {
2696 #ifdef USB_BLUETOOTH
2697                         BT_DBG("Enable Adapter");
2698                         _bt_enable_adapter();
2699 #else
2700                         _bt_handle_adapter_added();
2701 #endif
2702                 } else {
2703                         bt_event = __bt_parse_event(value);
2704                         if (bt_event == BT_DEVICE_EVENT) {
2705                                 bt_cache_info_t *cache_info;
2706                                 bt_remote_dev_info_t *dev_info;
2707
2708                                 ret_if(_bt_is_discovering() == FALSE &&
2709                                                 _bt_is_le_scanning() == FALSE);
2710
2711                                 cache_info = g_malloc0(sizeof(bt_cache_info_t));
2712                                 ret_if(cache_info == NULL);
2713
2714                                 dev_info = g_malloc0(sizeof(bt_remote_dev_info_t));
2715                                 if (dev_info == NULL) {
2716                                         __bt_free_cache_info(cache_info);
2717                                         return;
2718                                 }
2719
2720                                 cache_info->dev_info = dev_info;
2721
2722                                 if (__bt_parse_interface(parameters, dev_info) == FALSE) {
2723                                         BT_ERR("Fail to parse the properies");
2724                                         __bt_free_cache_info(cache_info);
2725                                         g_variant_unref(value);
2726                                         return;
2727                                 }
2728
2729                                 if (dev_info->addr_type != BDADDR_BREDR) {
2730                                         /* Whenever emit the property changed from bluez,
2731                                                 some property doesn't reach to bt-service.
2732                                                 So LE device is handled as AdvReport signal */
2733                                         __bt_free_cache_info(cache_info);
2734                                         g_variant_unref(value);
2735                                         return;
2736                                 }
2737
2738                                 if (dev_info->name == NULL)
2739                                         /* If Remote device name is NULL or still RNR is not done
2740                                          * then display address as name.
2741                                          */
2742                                         dev_info->name = g_strdup(dev_info->address);
2743
2744 #ifdef TIZEN_DPM_ENABLE
2745                                 if (_bt_dpm_get_bluetooth_desktop_connectivity_state() ==
2746                                                         DPM_RESTRICTED) {
2747                                         bluetooth_device_class_t device_class;
2748                                         _bt_divide_device_class(&device_class, dev_info->class);
2749                                         BT_DBG("[%s]device_class.major_class : %d", dev_info->name, device_class.major_class);
2750
2751                                         if (device_class.major_class ==
2752                                                 BLUETOOTH_DEVICE_MAJOR_CLASS_COMPUTER) {
2753                                                 __bt_free_cache_info(cache_info);
2754                                                 g_variant_unref(value);
2755                                                 return;
2756                                         }
2757                                 }
2758 #endif
2759
2760                                 GVariant *uuids = NULL;
2761                                 GVariantBuilder *builder = NULL;
2762                                 int i = 0;
2763                                 builder = g_variant_builder_new(G_VARIANT_TYPE("as"));
2764                                 for (i = 0; i < dev_info->uuid_count; i++) {
2765                                         g_variant_builder_add(builder, "s",
2766                                                 dev_info->uuids[i]);
2767                                 }
2768                                 uuids = g_variant_new("as", builder);
2769                                 g_variant_builder_unref(builder);
2770                                 GVariant *manufacturer_data = NULL;
2771                                 manufacturer_data = g_variant_new_from_data(
2772                                                         G_VARIANT_TYPE_BYTESTRING,
2773                                                         dev_info->manufacturer_data,
2774                                                         dev_info->manufacturer_data_len,
2775                                                         TRUE, NULL, NULL);
2776                                 param = g_variant_new("(isunsbub@asn@ay)", result,
2777                                                         dev_info->address,
2778                                                         dev_info->class,
2779                                                         dev_info->rssi,
2780                                                         dev_info->name,
2781                                                         dev_info->paired,
2782                                                         dev_info->connected,
2783                                                         dev_info->trust,
2784                                                         uuids,
2785                                                         dev_info->manufacturer_data_len,
2786                                                         manufacturer_data);
2787                                 _bt_send_event(BT_ADAPTER_EVENT,
2788                                         BLUETOOTH_EVENT_REMOTE_DEVICE_FOUND,
2789                                          param);
2790                                 p_cache_list = g_list_append(p_cache_list, cache_info);
2791                         } else if (bt_event == BT_AVRCP_CONTROL_EVENT) {
2792                                 BT_DBG("Device path : %s ", obj_path);
2793                                 _bt_set_control_device_path(obj_path);
2794                         }
2795                 }
2796                 g_variant_unref(value);
2797         } else if (strcasecmp(signal_name, "InterfacesRemoved") == 0) {
2798 #ifdef USB_BLUETOOTH
2799                 BT_DBG("InterfacesRemoved");
2800                 _bt_handle_adapter_removed();
2801 #endif
2802                 if (g_strcmp0(interface_name, BT_MEDIATRANSPORT_INTERFACE) == 0)
2803                         bt_event = BT_MEDIA_TRANSFER_EVENT;
2804                 else if (g_strcmp0(interface_name, BT_DEVICE_INTERFACE) == 0)
2805                         bt_event = BT_DEVICE_EVENT;
2806                 else if (g_strcmp0(interface_name, BT_PLAYER_CONTROL_INTERFACE) == 0)
2807                         bt_event = BT_AVRCP_CONTROL_EVENT;
2808
2809                 if ((bt_event != 0) && (bt_event != BT_MEDIA_TRANSFER_EVENT)) {
2810                         _bt_handle_adapter_event(parameters, signal_name);
2811                         if (bt_event == BT_AVRCP_CONTROL_EVENT) {
2812                                 BT_INFO("Object Path %s", obj_path);
2813                                 _bt_remove_control_device_path(obj_path);
2814                         }
2815                 }
2816         } else if (strcasecmp(signal_name, "NameOwnerChanged") == 0) {
2817                 gboolean value;
2818                 char *name = NULL;
2819                 char *previous = NULL;
2820                 char *current = NULL;
2821
2822                 if (__bt_get_owner_info(parameters, &name, &previous, &current)) {
2823                         BT_ERR("Fail to get the owner info");
2824                         return;
2825                 }
2826
2827                 if (*current != '\0') {
2828                         g_free(current);
2829                         if (name)
2830                                 g_free(name);
2831                         if (previous)
2832                                 g_free(previous);
2833                         return;
2834                 }
2835
2836                 if (strcasecmp(name, BT_BLUEZ_NAME) == 0) {
2837                         BT_DBG("Bluetoothd is terminated");
2838                         if (_bt_adapter_get_status() == BT_ACTIVATED)
2839                                  _bt_disable_cb();
2840
2841                         _bt_handle_adapter_removed();
2842                         __bt_devices_list_free();
2843                 }
2844
2845                 _bt_obex_server_check_allocation(&value);
2846
2847                 if (value == TRUE) {
2848                         /* Check if the obex server was terminated abnormally */
2849                         _bt_obex_server_check_termination(name);
2850                 }
2851
2852                 _bt_rfcomm_server_check_existence(&value);
2853
2854                 if (value == TRUE) {
2855                         /* The obex server was terminated abnormally */
2856                         _bt_rfcomm_server_check_termination(name);
2857                 }
2858
2859                 /* Stop advertising started by terminated process */
2860                 _bt_stop_advertising_by_terminated_process(name);
2861                 /* Stop LE Scan */
2862                 _bt_stop_le_scan(name);
2863                 g_free(name);
2864                 g_free(previous);
2865                 g_free(current);
2866         } else if (g_strcmp0(interface_name, BT_PROPERTIES_INTERFACE) == 0) {
2867                 const char *path = object_path;
2868
2869                 if (strncmp(path, BT_MEDIA_OBJECT_PATH,
2870                                 strlen(BT_MEDIA_OBJECT_PATH)) == 0)
2871                         return;
2872
2873                 _bt_handle_property_changed_event(parameters, object_path);
2874         } else if (g_strcmp0(interface_name, BT_ADAPTER_INTERFACE) == 0) {
2875                 _bt_handle_adapter_event(parameters, signal_name);
2876         } else if (g_strcmp0(interface_name, BT_INPUT_INTERFACE) == 0) {
2877                 _bt_handle_input_event(parameters, object_path);
2878         } else if (g_strcmp0(interface_name, BT_NETWORK_SERVER_INTERFACE) == 0) {
2879                 _bt_handle_network_server_event(parameters, signal_name);
2880         } else if (g_strcmp0(interface_name, BT_HEADSET_INTERFACE) == 0) {
2881                 _bt_handle_headset_event(parameters, object_path);
2882         } else if (g_strcmp0(interface_name, BT_SINK_INTERFACE) == 0) {
2883                 _bt_handle_sink_event(parameters, object_path);
2884         } else if (g_strcmp0(interface_name, BT_AGENT_INTERFACE) == 0) {
2885                 _bt_handle_agent_event(parameters, signal_name);
2886         } else if (g_strcmp0(interface_name, BT_DEVICE_INTERFACE) == 0) {
2887                 _bt_handle_device_event(parameters, signal_name, object_path);
2888         } else if (g_strcmp0(interface_name, BT_GATT_CHAR_INTERFACE) == 0) {
2889                 _bt_handle_gatt_event(parameters, signal_name, object_path);
2890         }
2891
2892         return;
2893 }
2894
2895 static gboolean __bt_is_obexd_event(GVariant *msg, const char *interface)
2896 {
2897
2898         if (g_strcmp0(interface, BT_PROPERTIES_INTERFACE) == 0) {
2899                 char *interface_name = NULL;
2900
2901                 g_variant_get(msg, "(&s@a{sv}@as)", &interface_name, NULL, NULL);
2902                 retv_if(interface_name == NULL, FALSE);
2903
2904                 if (strcasecmp(interface_name, BT_OBEX_TRANSFER_INTERFACE) == 0) {
2905                         BT_DBG("BT_OBEX_TRANSFER_INTERFACE");
2906                         return TRUE;
2907                 }
2908         }
2909
2910         return FALSE;
2911 }
2912
2913 static  void __bt_obexd_event_filter(GDBusConnection *connection,
2914                                         const gchar *sender_name,
2915                                         const gchar *object_path,
2916                                         const gchar *interface_name,
2917                                         const gchar *signal_name,
2918                                         GVariant *parameters,
2919                                         gpointer user_data)
2920 {
2921         const char *member = signal_name;
2922         char *obj_path = NULL;
2923         ret_if(member == NULL);
2924
2925         if (strcasecmp(member, "InterfacesAdded") == 0) {
2926                 if (__bt_get_object_path(parameters, &obj_path)) {
2927                         BT_ERR("Fail to get the path");
2928                         return;
2929                 }
2930                 BT_INFO("object_path = [%s]", obj_path);
2931
2932                 /*Handle OPP_SERVER_CONNECTED_EVENT here */
2933                 if (strncmp(obj_path, BT_SESSION_BASEPATH_SERVER,
2934                                 strlen(BT_SESSION_BASEPATH_SERVER)) != 0) {
2935                         g_free(obj_path);
2936                         return;
2937                 }
2938
2939                 if (g_strrstr(obj_path, "session") && g_strrstr(obj_path, "transfer")) {
2940                         BT_DBG("Obex_Server_Session_Transfer connected");
2941                         _bt_obex_transfer_connected(obj_path);
2942                 }
2943                 g_free(obj_path);
2944         } else if (strcasecmp(member, "InterfacesRemoved") == 0) {
2945                 /*Handle OPP_SERVER_DISCONNECTED_EVENT here */
2946                 if (__bt_get_object_path(parameters, &obj_path)) {
2947                         BT_ERR("Fail to get the path");
2948                         return;
2949                 }
2950                 BT_INFO("object_path = [%s]", obj_path);
2951
2952                 if (strncmp(obj_path, BT_SESSION_BASEPATH_CLIENT,
2953                                 strlen(BT_SESSION_BASEPATH_CLIENT)) == 0) {
2954                         BT_DBG("Call PBAP Disconnected");
2955                         _bt_obex_pbap_client_disconnect(obj_path);
2956                 }
2957
2958                 if (strncmp(obj_path, BT_SESSION_BASEPATH_SERVER,
2959                                 strlen(BT_SESSION_BASEPATH_SERVER)) != 0) {
2960                         g_free(obj_path);
2961                         return;
2962                 }
2963
2964                 if (g_strrstr(obj_path, "session") && g_strrstr(obj_path, "transfer")) {
2965                         BT_DBG("Obex_Server_Session_Transfer disconnected %s",
2966                                                                 obj_path);
2967
2968                         _bt_obex_transfer_disconnected(obj_path);
2969                 }
2970                 g_free(obj_path);
2971         } else if (__bt_is_obexd_event(parameters, interface_name) == TRUE) {
2972                 const char *path = object_path;
2973
2974                 if (strncmp(path, BT_SESSION_BASEPATH_SERVER,
2975                                 strlen(BT_SESSION_BASEPATH_SERVER)) != 0 &&
2976                         strncmp(path, BT_SESSION_BASEPATH_CLIENT,
2977                                 strlen(BT_SESSION_BASEPATH_CLIENT)) != 0) {
2978                         BT_DBG("DBUS_HANDLER_RESULT_NOT_YET_HANDLED");
2979                         return;
2980                 }
2981
2982                 _bt_handle_property_changed_event(parameters, path);
2983         }
2984         BT_DBG("-");
2985         return;
2986 }
2987
2988 static gboolean __bt_is_obexd_client_event(GVariant *msg, const char *interface)
2989 {
2990         BT_DBG("+");
2991
2992         if (g_strcmp0(interface, BT_PROPERTIES_INTERFACE) == 0) {
2993                 char *interface_name = NULL;
2994
2995                 g_variant_get(msg, "(&s@a{sv}@as)", &interface_name, NULL, NULL);
2996
2997                 retv_if(interface_name == NULL, FALSE);
2998
2999                 if (strcasecmp(interface_name,
3000                                         BT_OBEX_TRANSFER_INTERFACE) == 0) {
3001                         BT_DBG("-");
3002                         return TRUE;
3003                 }
3004         }
3005
3006         BT_DBG("-");
3007
3008         return FALSE;
3009 }
3010
3011 static  void __bt_opc_event_filter(GDBusConnection *connection,
3012                                         const gchar *sender_name,
3013                                         const gchar *object_path,
3014                                         const gchar *interface_name,
3015                                         const gchar *signal_name,
3016                                         GVariant *parameters,
3017                                         gpointer user_data)
3018 {
3019         const char *member = signal_name;
3020         char *obj_path = NULL;
3021         if (strcasecmp(member, "InterfacesAdded") == 0) {
3022                 BT_DBG("InterfacesAdded");
3023         } else if (strcasecmp(member, "InterfacesRemoved") == 0) {
3024
3025                 if (__bt_get_object_path(parameters, &obj_path)) {
3026                         BT_ERR("Fail to get the path");
3027                         return;
3028                 }
3029
3030                 BT_DBG("object_path = %s", obj_path);
3031
3032                 if (strncmp(obj_path, BT_SESSION_BASEPATH_CLIENT,
3033                                 strlen(BT_SESSION_BASEPATH_CLIENT)) != 0
3034                                 || strstr(obj_path, "transfer") == NULL) {
3035                         g_free(obj_path);
3036                         return;
3037                 } else if (strncmp(obj_path, BT_SESSION_BASEPATH_CLIENT,
3038                                 strlen(BT_SESSION_BASEPATH_CLIENT)) == 0) {
3039                         BT_DBG("Going to call opc disconnected");
3040                         _bt_opc_disconnected(obj_path);
3041                 }
3042
3043                 _bt_sending_files();
3044                 g_free(obj_path);
3045         } else if (__bt_is_obexd_client_event(parameters, interface_name) == TRUE) {
3046                 char *path = (char *)object_path;
3047                 BT_INFO("object_path %s", path);
3048                 if (strncmp(path, BT_SESSION_BASEPATH_CLIENT,
3049                         strlen(BT_SESSION_BASEPATH_CLIENT)) != 0) {
3050                         BT_DBG("NOT BT_SESSION_BASEPATH_CLIENT");
3051                         return;
3052                 }
3053
3054                 _bt_opc_property_changed_event(parameters, path);
3055         }
3056
3057         return;
3058 }
3059
3060 int _bt_opp_client_event_init(void)
3061 {
3062         GError *error = NULL;
3063
3064         if (opc_obexd_conn == NULL) {
3065                 opc_obexd_conn = g_bus_get_sync(G_BUS_TYPE_SESSION, NULL, &error);
3066
3067                 if (!opc_obexd_conn) {
3068                         if (error) {
3069                                 BT_ERR("Unable to connect to dbus: %s", error->message);
3070                                 g_clear_error(&error);
3071                         }
3072                 return BLUETOOTH_ERROR_INTERNAL;
3073                 }
3074         }
3075
3076         if (_bt_register_service_event(opc_obexd_conn,
3077                         BT_OPP_CLIENT_EVENT) != BLUETOOTH_ERROR_NONE) {
3078                         g_object_unref(opc_obexd_conn);
3079                         opc_obexd_conn = NULL;
3080                         return BLUETOOTH_ERROR_INTERNAL;
3081         }
3082
3083         return BLUETOOTH_ERROR_NONE;
3084 }
3085
3086 void _bt_opp_client_event_deinit(void)
3087 {
3088         if (opc_obexd_conn) {
3089                 _bt_unregister_service_event(opc_obexd_conn,
3090                                                 BT_OPP_CLIENT_EVENT);
3091                  g_object_unref(opc_obexd_conn);
3092                  opc_obexd_conn = NULL;
3093         }
3094 }
3095
3096 int _bt_register_manager_subscribe_signal(GDBusConnection *conn,
3097                 int subscribe)
3098 {
3099         if (conn == NULL)
3100                 return -1;
3101
3102         static int subs_interface_added_id = -1;
3103         static int subs_interface_removed_id = -1;
3104         static int subs_name_owner_id = -1;
3105         static int subs_property_id = -1;
3106         static int subs_adapter_id = -1;
3107         static int subs_gatt_id = -1;
3108
3109         if (subscribe) {
3110                 if (subs_interface_added_id == -1) {
3111                         subs_interface_added_id = g_dbus_connection_signal_subscribe(conn,
3112                                 NULL, BT_MANAGER_INTERFACE,
3113                                 BT_INTERFACES_ADDED, NULL, NULL, 0,
3114                                 __bt_manager_event_filter,
3115                                 NULL, NULL);
3116                 }
3117                 if (subs_interface_removed_id == -1) {
3118                         subs_interface_removed_id = g_dbus_connection_signal_subscribe(conn,
3119                                 NULL, BT_MANAGER_INTERFACE,
3120                                 BT_INTERFACES_REMOVED, NULL, NULL, 0,
3121                                 __bt_manager_event_filter,
3122                                 NULL, NULL);
3123                 }
3124                 if (subs_name_owner_id == -1) {
3125                         subs_name_owner_id = g_dbus_connection_signal_subscribe(conn,
3126                                 NULL, BT_FREEDESKTOP_INTERFACE,
3127                                 BT_NAME_OWNER_CHANGED, NULL, NULL, 0,
3128                                 __bt_manager_event_filter,
3129                                 NULL, NULL);
3130                 }
3131                 if (subs_property_id == -1) {
3132                         subs_property_id = g_dbus_connection_signal_subscribe(conn,
3133                                 NULL, BT_PROPERTIES_INTERFACE,
3134                                 BT_PROPERTIES_CHANGED, NULL, NULL, 0,
3135                                 __bt_manager_event_filter,
3136                                 NULL, NULL);
3137                 }
3138                 if (subs_adapter_id == -1) {
3139                         subs_adapter_id = g_dbus_connection_signal_subscribe(conn,
3140                                 NULL, BT_ADAPTER_INTERFACE,
3141                                 NULL, NULL, NULL, 0,
3142                                 __bt_manager_event_filter,
3143                                 NULL, NULL);
3144                 }
3145                 if (subs_gatt_id == -1) {
3146                         subs_gatt_id = g_dbus_connection_signal_subscribe(conn,
3147                                 NULL, BT_GATT_CHAR_INTERFACE,
3148                                 NULL, NULL, NULL, 0,
3149                                 __bt_manager_event_filter,
3150                                 NULL, NULL);
3151                 }
3152         } else {
3153                 if (subs_interface_added_id != -1) {
3154                         g_dbus_connection_signal_unsubscribe(conn,
3155                                         subs_interface_added_id);
3156                         subs_interface_added_id = -1;
3157                 }
3158                 if (subs_interface_removed_id != -1) {
3159                         g_dbus_connection_signal_unsubscribe(conn,
3160                                         subs_interface_removed_id);
3161                         subs_interface_removed_id = -1;
3162                 }
3163                 if (subs_name_owner_id != -1) {
3164                         g_dbus_connection_signal_unsubscribe(conn,
3165                                         subs_name_owner_id);
3166                         subs_name_owner_id = -1;
3167                 }
3168                 if (subs_property_id != -1) {
3169                         g_dbus_connection_signal_unsubscribe(conn,
3170                                         subs_property_id);
3171                         subs_property_id = -1;
3172                 }
3173                 if (subs_adapter_id != -1) {
3174                         g_dbus_connection_signal_unsubscribe(conn, subs_adapter_id);
3175                         subs_adapter_id = -1;
3176                 }
3177                 if (subs_gatt_id != -1) {
3178                         g_dbus_connection_signal_unsubscribe(conn, subs_gatt_id);
3179                         subs_gatt_id = -1;
3180                 }
3181         }
3182         return 0;
3183 }
3184
3185 int _bt_register_device_subscribe_signal(GDBusConnection *conn,
3186                 int subscribe)
3187 {
3188         if (conn == NULL)
3189                 return -1;
3190
3191         static int subs_device_id = -1;
3192
3193         if (subscribe) {
3194                 if (subs_device_id == -1) {
3195                         subs_device_id = g_dbus_connection_signal_subscribe(conn,
3196                                 NULL, BT_DEVICE_INTERFACE,
3197                                 NULL, NULL, NULL, 0,
3198                                 __bt_manager_event_filter,
3199                                 NULL, NULL);
3200                 }
3201         } else {
3202                 if (subs_device_id != -1) {
3203                         g_dbus_connection_signal_unsubscribe(conn,
3204                                         subs_device_id);
3205                         subs_device_id = -1;
3206                 }
3207         }
3208         return 0;
3209 }
3210
3211 int _bt_register_input_subscribe_signal(GDBusConnection *conn,
3212                 int subscribe)
3213 {
3214         if (conn == NULL)
3215                 return -1;
3216
3217         static int subs_input_id = -1;
3218
3219         if (subscribe) {
3220                 if (subs_input_id == -1) {
3221                         subs_input_id = g_dbus_connection_signal_subscribe(conn,
3222                                 NULL, BT_INPUT_INTERFACE,
3223                                 NULL, NULL, NULL, 0,
3224                                 __bt_manager_event_filter,
3225                                 NULL, NULL);
3226                 }
3227         } else {
3228                 if (subs_input_id != -1) {
3229                         g_dbus_connection_signal_unsubscribe(conn,
3230                                         subs_input_id);
3231                         subs_input_id = -1;
3232                 }
3233         }
3234         return 0;
3235 }
3236
3237 int _bt_register_network_subscribe_signal(GDBusConnection *conn,
3238                 int subscribe)
3239 {
3240         if (conn == NULL)
3241                 return -1;
3242
3243         static int subs_serv_id = -1;
3244         static int subs_client_id = -1;
3245
3246         if (subscribe) {
3247                 if (subs_serv_id == -1) {
3248                         subs_serv_id = g_dbus_connection_signal_subscribe(conn,
3249                                 NULL, BT_NETWORK_SERVER_INTERFACE,
3250                                 NULL, NULL, NULL, 0,
3251                                 __bt_manager_event_filter,
3252                                 NULL, NULL);
3253                 }
3254                 if (subs_client_id == -1) {
3255                         subs_client_id = g_dbus_connection_signal_subscribe(conn,
3256                                 NULL, BT_NETWORK_CLIENT_INTERFACE,
3257                                 NULL, NULL, NULL, 0,
3258                                 __bt_manager_event_filter,
3259                                 NULL, NULL);
3260                 }
3261         } else {
3262                 if (subs_serv_id != -1) {
3263                         g_dbus_connection_signal_unsubscribe(conn,
3264                                         subs_serv_id);
3265                         subs_serv_id = -1;
3266                 }
3267                 if (subs_client_id != -1) {
3268                         g_dbus_connection_signal_unsubscribe(conn,
3269                                         subs_client_id);
3270                         subs_client_id = -1;
3271                 }
3272         }
3273         return 0;
3274 }
3275
3276 int _bt_register_audio_subscribe_signal(GDBusConnection *conn,
3277                 int subscribe)
3278 {
3279         if (conn == NULL)
3280                 return -1;
3281
3282         static int subs_headset_id = -1;
3283         static int subs_sink_id = -1;
3284
3285         if (subscribe) {
3286                 if (subs_headset_id == -1) {
3287                         subs_headset_id = g_dbus_connection_signal_subscribe(conn,
3288                                 NULL, BT_HEADSET_INTERFACE,
3289                                 NULL, NULL, NULL, 0,
3290                                 __bt_manager_event_filter,
3291                                 NULL, NULL);
3292                 }
3293                 if (subs_sink_id == -1) {
3294                         subs_sink_id = g_dbus_connection_signal_subscribe(conn,
3295                                 NULL, BT_SINK_INTERFACE,
3296                                 NULL, NULL, NULL, 0,
3297                                 __bt_manager_event_filter,
3298                                 NULL, NULL);
3299                 }
3300         } else {
3301                 if (subs_headset_id != -1) {
3302                         g_dbus_connection_signal_unsubscribe(conn,
3303                                         subs_headset_id);
3304                         subs_headset_id = -1;
3305                 }
3306                 if (subs_sink_id != -1) {
3307                         g_dbus_connection_signal_unsubscribe(conn,
3308                                         subs_sink_id);
3309                         subs_sink_id = -1;
3310                 }
3311         }
3312         return 0;
3313 }
3314
3315 int _bt_register_opp_server_subscribe_signal(GDBusConnection *conn,
3316                 int subscribe)
3317 {
3318         if (conn == NULL)
3319                 return -1;
3320
3321         static int subs_opp_server_interface_added_id = -1;
3322         static int subs_opp_server_interface_removed_id = -1;
3323         static int subs_opp_server_property_id = -1;
3324
3325
3326         if (subscribe) {
3327                 if (subs_opp_server_interface_added_id == -1) {
3328                         subs_opp_server_interface_added_id = g_dbus_connection_signal_subscribe(conn,
3329                                 NULL, BT_MANAGER_INTERFACE,
3330                                 BT_INTERFACES_ADDED, NULL, NULL, 0,
3331                                 __bt_obexd_event_filter,
3332                                 NULL, NULL);
3333                 }
3334                 if (subs_opp_server_interface_removed_id == -1) {
3335                         subs_opp_server_interface_removed_id = g_dbus_connection_signal_subscribe(conn,
3336                                 NULL, BT_MANAGER_INTERFACE,
3337                                 BT_INTERFACES_REMOVED, NULL, NULL, 0,
3338                                 __bt_obexd_event_filter,
3339                                 NULL, NULL);
3340                 }
3341                 if (subs_opp_server_property_id == -1) {
3342                         subs_opp_server_property_id = g_dbus_connection_signal_subscribe(conn,
3343                                 NULL, BT_PROPERTIES_INTERFACE,
3344                                 BT_PROPERTIES_CHANGED, NULL, NULL, 0,
3345                                 __bt_obexd_event_filter,
3346                                 NULL, NULL);
3347                 }
3348         } else {
3349                 if (subs_opp_server_interface_added_id != -1) {
3350                         g_dbus_connection_signal_unsubscribe(conn,
3351                                         subs_opp_server_interface_added_id);
3352                         subs_opp_server_interface_added_id = -1;
3353                 }
3354                 if (subs_opp_server_interface_removed_id != -1) {
3355                         g_dbus_connection_signal_unsubscribe(conn,
3356                                         subs_opp_server_interface_removed_id);
3357                         subs_opp_server_interface_removed_id = -1;
3358                 }
3359                 if (subs_opp_server_property_id != -1) {
3360                         g_dbus_connection_signal_unsubscribe(conn,
3361                                         subs_opp_server_property_id);
3362                         subs_opp_server_property_id = -1;
3363                 }
3364         }
3365         return 0;
3366 }
3367
3368 int _bt_register_opp_client_subscribe_signal(GDBusConnection *conn,
3369                 int subscribe)
3370 {
3371         if (conn == NULL)
3372                 return -1;
3373
3374         static int subs_opp_client_interface_added_id = -1;
3375         static int subs_opp_client_interface_removed_id = -1;
3376         static int subs_opp_client_property_id = -1;
3377
3378
3379         if (subscribe) {
3380                 if (subs_opp_client_interface_added_id == -1) {
3381                         subs_opp_client_interface_added_id = g_dbus_connection_signal_subscribe(conn,
3382                                 NULL, BT_MANAGER_INTERFACE,
3383                                 BT_INTERFACES_ADDED, NULL, NULL, 0,
3384                                 __bt_opc_event_filter,
3385                                 NULL, NULL);
3386                 }
3387                 if (subs_opp_client_interface_removed_id == -1) {
3388                         subs_opp_client_interface_removed_id = g_dbus_connection_signal_subscribe(conn,
3389                                 NULL, BT_MANAGER_INTERFACE,
3390                                 BT_INTERFACES_REMOVED, NULL, NULL, 0,
3391                                 __bt_opc_event_filter,
3392                                 NULL, NULL);
3393                 }
3394                 if (subs_opp_client_property_id == -1) {
3395                         subs_opp_client_property_id = g_dbus_connection_signal_subscribe(conn,
3396                                 NULL, BT_PROPERTIES_INTERFACE,
3397                                 BT_PROPERTIES_CHANGED, NULL, NULL, 0,
3398                                 __bt_opc_event_filter,
3399                                 NULL, NULL);
3400                 }
3401         } else {
3402                 if (subs_opp_client_interface_added_id != -1) {
3403                         g_dbus_connection_signal_unsubscribe(conn,
3404                                         subs_opp_client_interface_added_id);
3405                         subs_opp_client_interface_added_id = -1;
3406                 }
3407                 if (subs_opp_client_interface_removed_id != -1) {
3408                         g_dbus_connection_signal_unsubscribe(conn,
3409                                         subs_opp_client_interface_removed_id);
3410                         subs_opp_client_interface_removed_id = -1;
3411                 }
3412                 if (subs_opp_client_property_id != -1) {
3413                         g_dbus_connection_signal_unsubscribe(conn,
3414                                         subs_opp_client_property_id);
3415                         subs_opp_client_property_id = -1;
3416                 }
3417         }
3418         return 0;
3419 }
3420
3421 int _bt_register_a2dp_subscribe_signal(GDBusConnection *conn,
3422                 int subscribe)
3423 {
3424         if (conn == NULL)
3425                 return -1;
3426
3427         static int subs_a2dp_source_id = -1;
3428         static int subs_a2dp_sink_id = -1;
3429
3430         if (subscribe) {
3431                 if (subs_a2dp_source_id == -1) {
3432                         subs_a2dp_source_id = g_dbus_connection_signal_subscribe(conn,
3433                                 NULL, BT_A2DP_SOURCE_INTERFACE,
3434                                 NULL, NULL, NULL, 0,
3435                                 __bt_opc_event_filter,
3436                                 NULL, NULL);
3437                 }
3438                 if (subs_a2dp_sink_id == -1) {
3439                         subs_a2dp_sink_id = g_dbus_connection_signal_subscribe(conn,
3440                                 NULL, BT_SINK_INTERFACE,
3441                                 NULL, NULL, NULL, 0,
3442                                 __bt_opc_event_filter,
3443                                 NULL, NULL);
3444                 }
3445         } else {
3446                 if (subs_a2dp_source_id != -1) {
3447                         g_dbus_connection_signal_unsubscribe(conn,
3448                                         subs_a2dp_source_id);
3449                         subs_a2dp_source_id = -1;
3450                 }
3451                 if (subs_a2dp_sink_id != -1) {
3452                         g_dbus_connection_signal_unsubscribe(conn,
3453                                         subs_a2dp_sink_id);
3454                         subs_a2dp_sink_id = -1;
3455                 }
3456         }
3457         return 0;
3458 }
3459
3460 static void __bt_dump_event_filter(GDBusConnection *connection,
3461                                         const gchar *sender_name,
3462                                         const gchar *object_path,
3463                                         const gchar *interface_name,
3464                                         const gchar *signal_name,
3465                                         GVariant *parameters,
3466                                         gpointer user_data)
3467 {
3468         return;
3469 }
3470
3471 int __bt_register_dump_subscribe_signal(GDBusConnection *conn,
3472                 gboolean subscribe)
3473 {
3474         if (conn == NULL)
3475                 return -1;
3476
3477         static int subs_source_id = -1;
3478
3479         if (subscribe) {
3480                 if (subs_source_id == -1) {
3481                         subs_source_id = g_dbus_connection_signal_subscribe(conn,
3482                                 NULL, BT_DUMP_SERVICE_INTERFACE,
3483                                 BT_DUMP_SERVICE_SIGNAL, BT_DUMP_SERVICE_PATH, NULL, 0,
3484                                 __bt_dump_event_filter,
3485                                 NULL, NULL);
3486                 }
3487         } else {
3488                 if (subs_source_id != -1) {
3489                         g_dbus_connection_signal_unsubscribe(conn,
3490                                         subs_source_id);
3491                         subs_source_id = -1;
3492                 }
3493         }
3494         return 0;
3495 }
3496
3497 int _bt_register_service_event(GDBusConnection *g_conn, int event_type)
3498 {
3499         BT_DBG("+");
3500
3501         retv_if(g_conn == NULL, BLUETOOTH_ERROR_INTERNAL);
3502
3503         switch (event_type) {
3504         case BT_MANAGER_EVENT:
3505                 _bt_register_manager_subscribe_signal(g_conn, TRUE);
3506                 break;
3507         case BT_DEVICE_EVENT:
3508                 _bt_register_device_subscribe_signal(g_conn, TRUE);
3509                 break;
3510         case BT_HID_EVENT:
3511                 _bt_register_input_subscribe_signal(g_conn, TRUE);
3512                 break;
3513         case BT_NETWORK_EVENT:
3514                 _bt_register_network_subscribe_signal(g_conn, TRUE);
3515                 break;
3516         case BT_HEADSET_EVENT:
3517                 _bt_register_audio_subscribe_signal(g_conn, TRUE);
3518                 break;
3519
3520         case BT_OPP_SERVER_EVENT:
3521                 BT_ERR("BT_OPP_SERVER_EVENT: register service event");
3522                 _bt_register_opp_server_subscribe_signal(g_conn, TRUE);
3523                 break;
3524         case BT_OPP_CLIENT_EVENT:
3525                 BT_ERR("BT_OPP_CLIENT_EVENT: register service event");
3526                 _bt_register_opp_client_subscribe_signal(g_conn, TRUE);
3527                 break;
3528         case BT_A2DP_SOURCE_EVENT:
3529                 BT_INFO("A2dp Source event");
3530                 _bt_register_a2dp_subscribe_signal(g_conn, TRUE);
3531                 break;
3532         default:
3533                 BT_ERR("Unknown event");
3534                 return BLUETOOTH_ERROR_INTERNAL;
3535         }
3536
3537         return BLUETOOTH_ERROR_NONE;
3538 }
3539
3540 void _bt_unregister_service_event(GDBusConnection *g_conn, int event_type)
3541 {
3542         BT_DBG("+");
3543
3544         ret_if(g_conn == NULL);
3545
3546         switch (event_type) {
3547         case BT_MANAGER_EVENT:
3548                 _bt_register_manager_subscribe_signal(g_conn, FALSE);
3549                 _bt_register_device_subscribe_signal(g_conn, FALSE);
3550                 _bt_register_input_subscribe_signal(g_conn, FALSE);
3551                 _bt_register_network_subscribe_signal(g_conn, FALSE);
3552                 _bt_register_audio_subscribe_signal(g_conn, FALSE);
3553                 break;
3554         case BT_OPP_SERVER_EVENT:
3555                 _bt_register_opp_server_subscribe_signal(g_conn, FALSE);
3556                 break;
3557         case BT_OPP_CLIENT_EVENT:
3558                 _bt_register_opp_client_subscribe_signal(g_conn, FALSE);
3559                 break;
3560         default:
3561                 BT_ERR("Unknown event");
3562                 return;
3563         }
3564
3565         BT_DBG("-");
3566 }
3567
3568 static int __bt_init_manager_receiver(void)
3569 {
3570         BT_DBG("+");
3571
3572         GError *error = NULL;
3573
3574         if (manager_conn == NULL) {
3575                 manager_conn =  g_bus_get_sync(G_BUS_TYPE_SYSTEM, NULL, &error);
3576                 if (error != NULL) {
3577                         BT_ERR("ERROR: Can't get on system bus [%s]", error->message);
3578                         g_clear_error(&error);
3579                 }
3580                 retv_if(manager_conn == NULL, BLUETOOTH_ERROR_INTERNAL);
3581         }
3582
3583         if (_bt_register_service_event(manager_conn,
3584                                 BT_MANAGER_EVENT) != BLUETOOTH_ERROR_NONE)
3585                 goto fail;
3586         if (_bt_register_service_event(manager_conn,
3587                                 BT_DEVICE_EVENT) != BLUETOOTH_ERROR_NONE)
3588                 goto fail;
3589
3590         if (_bt_register_service_event(manager_conn,
3591                                 BT_HID_EVENT) != BLUETOOTH_ERROR_NONE)
3592                 goto fail;
3593
3594         if (_bt_register_service_event(manager_conn,
3595                                 BT_HEADSET_EVENT) != BLUETOOTH_ERROR_NONE)
3596                 goto fail;
3597
3598         if (_bt_register_service_event(manager_conn,
3599                                 BT_NETWORK_EVENT) != BLUETOOTH_ERROR_NONE)
3600                 goto fail;
3601
3602         __bt_register_dump_subscribe_signal(manager_conn, TRUE);
3603         return BLUETOOTH_ERROR_NONE;
3604 fail:
3605         if (manager_conn) {
3606                 g_object_unref(manager_conn);
3607                 manager_conn = NULL;
3608         }
3609
3610         BT_DBG("-");
3611
3612         return BLUETOOTH_ERROR_INTERNAL;
3613 }
3614
3615 static int __bt_init_obexd_receiver(void)
3616 {
3617         BT_DBG("+");
3618 #ifndef TIZEN_TV /* TODO: obexd doesn't work in TV profile. It should be resolved later. */
3619         GError *error = NULL;
3620
3621         if (obexd_conn == NULL) {
3622                 obexd_conn = g_bus_get_sync(G_BUS_TYPE_SESSION, NULL, &error);
3623                 if (error != NULL) {
3624                         BT_ERR("ERROR: Can't get on session bus [%s]", error->message);
3625                         g_clear_error(&error);
3626                 }
3627                 retv_if(obexd_conn == NULL, BLUETOOTH_ERROR_INTERNAL);
3628         }
3629
3630         if (_bt_register_service_event(obexd_conn,
3631                                 BT_OPP_SERVER_EVENT) != BLUETOOTH_ERROR_NONE) {
3632                 BT_ERR("Error while registering service event");
3633                 g_object_unref(obexd_conn);
3634                 obexd_conn = NULL;
3635                 return BLUETOOTH_ERROR_INTERNAL;
3636         }
3637 #endif
3638         BT_DBG("-");
3639
3640         return BLUETOOTH_ERROR_NONE;
3641 }
3642
3643 gboolean __bt_reinit_obexd_receiver(gpointer user_data)
3644 {
3645         static int retry_cnt = 0;
3646         int result = BLUETOOTH_ERROR_NONE;
3647
3648         BT_DBG("+");
3649
3650         result = __bt_init_obexd_receiver();
3651         if (result != BLUETOOTH_ERROR_NONE) {
3652                 /* 20 ms * 50 = 10 seconds. During 10 seconds fail to initialize,
3653                    then it is not the timing issue. Just can't use the session bus connection */
3654                 if (retry_cnt > 100) {
3655                         BT_ERR("Fail to init obexd receiver by 50 times.");
3656                         retry_cnt = 0;
3657                         session_reinit_timer = 0;
3658                         return FALSE;
3659                 }
3660                 retry_cnt++;
3661                 BT_DBG("Retry to initialize the obexd receiver");
3662                 return TRUE;
3663         }
3664
3665         retry_cnt = 0;
3666         session_reinit_timer = 0;
3667
3668         BT_DBG("-");
3669
3670         return FALSE;
3671 }
3672
3673 /* To receive the event from bluez */
3674 int _bt_init_service_event_receiver(void)
3675 {
3676         BT_DBG("+");
3677
3678         int result;
3679
3680         result = __bt_init_manager_receiver();
3681         retv_if(result != BLUETOOTH_ERROR_NONE, result);
3682
3683         result = __bt_init_obexd_receiver();
3684         if (result != BLUETOOTH_ERROR_NONE) {
3685                 BT_ERR("Fail to init obexd receiver");
3686
3687                 /* Try to re-initialize obexd receiver in the timer */
3688                 if (session_reinit_timer > 0)
3689                         g_source_remove(session_reinit_timer);
3690
3691                 session_reinit_timer = g_timeout_add(BT_SESSION_BUS_GET_TIMEOUT,
3692                                                         (GSourceFunc)__bt_reinit_obexd_receiver, NULL);
3693         }
3694
3695         BT_DBG("-");
3696
3697         return BLUETOOTH_ERROR_NONE;
3698 }
3699
3700 void _bt_deinit_service_event_receiver(void)
3701 {
3702         BT_DBG("+");
3703
3704         _bt_unregister_service_event(manager_conn, BT_MANAGER_EVENT);
3705
3706         _bt_unregister_service_event(obexd_conn, BT_OPP_SERVER_EVENT);
3707
3708         __bt_register_dump_subscribe_signal(manager_conn, FALSE);
3709
3710         if (manager_conn) {
3711                 g_object_unref(manager_conn);
3712                 manager_conn = NULL;
3713         }
3714
3715         if (obexd_conn) {
3716                 g_object_unref(obexd_conn);
3717                 obexd_conn = NULL;
3718         }
3719
3720         if (event_id > 0)
3721                 g_source_remove(event_id);
3722         event_id = 0;
3723
3724         BT_DBG("-");
3725 }