X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=bt-api%2Fbt-adapter.c;h=fc41fa206a54f80c7728a8967794f19bb2eaed04;hb=a0e93a330aa0362824aa37ab8aebd20a3127a434;hp=b4794c9a74cb6be1198746b4df8adb8ea5e1762f;hpb=1dbc9f0c5c26474e747524e8993af3fb2a2ea5d2;p=platform%2Fcore%2Fconnectivity%2Fbluetooth-frwk.git diff --git a/bt-api/bt-adapter.c b/bt-api/bt-adapter.c index b4794c9..fc41fa2 100644 --- a/bt-api/bt-adapter.c +++ b/bt-api/bt-adapter.c @@ -1,13 +1,11 @@ /* - * bluetooth-frwk - * - * Copyright (c) 2012-2013 Samsung Electronics Co., Ltd. + * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, @@ -18,9 +16,6 @@ */ #include -#if !defined(LIBNOTIFY_SUPPORT) && !defined(LIBNOTIFICATION_SUPPORT) -#include -#endif #include "bluetooth-api.h" #include "bt-internal-types.h" @@ -29,31 +24,48 @@ #include "bt-request-sender.h" #include "bt-event-handler.h" +/* Avoid the build error related to vconf.h's dependency */ +#ifndef VCONFKEY_BATTERY_MONITOR_STATUS +#define VCONFKEY_BATTERY_MONITOR_STATUS "db/bluetooth/bmstatus" +#endif + + +typedef enum { + BT_MONITOR_NONE = -1, + BT_MONITOR_OFF = 0, + BT_MONITOR_ON = 1, +} bt_battery_monitor_state_t; + +static int battery_monitor_state = BT_MONITOR_NONE; + static int __bt_fill_device_list(GArray *out_param2, GPtrArray **dev_list) { int i; guint size; - bluetooth_device_info_t info; + bluetooth_device_info_t *info; BT_CHECK_PARAMETER(out_param2, return); BT_CHECK_PARAMETER(dev_list, return); size = out_param2->len; - retv_if(size == 0, BLUETOOTH_ERROR_NONE); + + if (size == 0) { + BT_ERR("No bonded device"); + return BLUETOOTH_ERROR_NONE; + } size = (out_param2->len) / sizeof(bluetooth_device_info_t); for (i = 0; i < size; i++) { bluetooth_device_info_t *dev_info = NULL; - info = g_array_index(out_param2, + info = &g_array_index(out_param2, bluetooth_device_info_t, i); - dev_info = g_memdup(&info, sizeof(bluetooth_device_info_t)); + dev_info = g_memdup(info, sizeof(bluetooth_device_info_t)); - if (dev_info) { + if (dev_info) g_ptr_array_add(*dev_list, (gpointer)dev_info); - } } return BLUETOOTH_ERROR_NONE; @@ -61,37 +73,178 @@ static int __bt_fill_device_list(GArray *out_param2, GPtrArray **dev_list) BT_EXPORT_API int bluetooth_check_adapter(void) { + int value = VCONFKEY_BT_STATUS_OFF; + +#ifndef TIZEN_TEST_EMUL + int ret; + + ret = _bt_get_adapter_path(_bt_get_system_private_conn(), NULL); + + if (ret != BLUETOOTH_ERROR_NONE) + return BLUETOOTH_ADAPTER_DISABLED; +#endif + + /* check VCONFKEY_BT_STATUS */ + if (vconf_get_int(VCONFKEY_BT_STATUS, &value) != 0) { + BT_ERR("fail to get vconf key!"); + return BLUETOOTH_ADAPTER_DISABLED; + } + + return value == VCONFKEY_BT_STATUS_OFF ? BLUETOOTH_ADAPTER_DISABLED : + BLUETOOTH_ADAPTER_ENABLED; +} + +BT_EXPORT_API int bluetooth_enable_adapter(void) +{ int result; - bluetooth_adapter_state_t state; + + BT_INFO_C("### Enable adapter"); + _bt_print_api_caller_name(); + retv_if(bluetooth_check_adapter() == BLUETOOTH_ADAPTER_ENABLED, + BLUETOOTH_ERROR_DEVICE_ALREADY_ENABLED); + +#ifdef TIZEN_FEATURE_BT_DPM + retv_if(bluetooth_dpm_is_mode_allowed() == BLUETOOTH_ERROR_PERMISSION_DEINED, + BLUETOOTH_ERROR_PERMISSION_DEINED); +#endif BT_INIT_PARAMS(); BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param); - result = _bt_send_request(BT_BLUEZ_SERVICE, BT_CHECK_ADAPTER, + result = _bt_send_request(BT_BLUEZ_SERVICE, BT_ENABLE_ADAPTER, in_param1, in_param2, in_param3, in_param4, &out_param); - if (result == BLUETOOTH_ERROR_NONE) { - state = g_array_index(out_param, bluetooth_adapter_state_t, 0); + BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param); + + return result; +} + +BT_EXPORT_API int bluetooth_set_battery_monitor_state(bool state) +{ + if (vconf_set_bool(VCONFKEY_BATTERY_MONITOR_STATUS, state) != 0) + { + BT_ERR("vconf_set_bool failed"); + return BLUETOOTH_ERROR_INTERNAL; } - BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param); + battery_monitor_state = (state == false) ? BT_MONITOR_OFF : BT_MONITOR_ON; - return state ? BLUETOOTH_ADAPTER_ENABLED : BLUETOOTH_ADAPTER_DISABLED; + return BLUETOOTH_ERROR_NONE; } -BT_EXPORT_API int bluetooth_enable_adapter(void) +static void __bt_battery_monitor_status_changed_cb(keynode_t *node, void *data) +{ + gboolean status = FALSE; + int type; + + type = vconf_keynode_get_type(node); + if (type == VCONF_TYPE_BOOL) { + status = vconf_keynode_get_bool(node); + + BT_DBG("Update the monitor state to %d", status); + + battery_monitor_state = (status == FALSE) ? BT_MONITOR_OFF : BT_MONITOR_ON; + } else { + BT_ERR("Invaild vconf key type : %d", type); + return; + } +} + +void _bt_reset_battery_monitor_info(void) +{ + vconf_ignore_key_changed(VCONFKEY_BATTERY_MONITOR_STATUS, + (vconf_callback_fn)__bt_battery_monitor_status_changed_cb); + + _bt_rfcomm_server_reset_timer(); + _bt_rfcomm_client_reset_timer(); + + battery_monitor_state = BT_MONITOR_NONE; +} + +BT_EXPORT_API int bluetooth_get_battery_monitor_state() +{ + int state = 0; + + if (battery_monitor_state != BT_MONITOR_NONE) + return battery_monitor_state; + + if (vconf_get_bool(VCONFKEY_BATTERY_MONITOR_STATUS, &state) != 0) + BT_ERR("vconf_get_bool failed"); + + battery_monitor_state = state; + + if (vconf_notify_key_changed(VCONFKEY_BATTERY_MONITOR_STATUS, + (vconf_callback_fn)__bt_battery_monitor_status_changed_cb, NULL) < 0) + BT_ERR("Unable to register key handler"); + + return state; +} + +BT_EXPORT_API int bluetooth_read_battery_data(bt_battery_data *data) { int result; + bt_battery_dbus_data_t *info = NULL; + + BT_CHECK_PARAMETER(data, return); + + BT_INFO("### Requesting battery data"); + retv_if(bluetooth_check_adapter() != BLUETOOTH_ADAPTER_ENABLED, + BLUETOOTH_ADAPTER_DISABLED); + + retv_if(bluetooth_get_battery_monitor_state() == FALSE, + BLUETOOTH_ERROR_NOT_SUPPORT); + +#ifdef TIZEN_FEATURE_BT_DPM + retv_if(bluetooth_dpm_is_mode_allowed() == BLUETOOTH_ERROR_PERMISSION_DEINED, + BLUETOOTH_ERROR_PERMISSION_DEINED); +#endif BT_INIT_PARAMS(); BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param); - retv_if(bluetooth_check_adapter() == BLUETOOTH_ADAPTER_ENABLED, - BLUETOOTH_ERROR_DEVICE_ALREADY_ENABLED); - - result = _bt_send_request(BT_BLUEZ_SERVICE, BT_ENABLE_ADAPTER, + result = _bt_send_request(BT_BLUEZ_SERVICE, BT_BATTERY_READ_DATA, in_param1, in_param2, in_param3, in_param4, &out_param); + if (result != BLUETOOTH_ERROR_NONE) { + BT_ERR("Error encountered"); + BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param); + return result; + } + + info = &g_array_index(out_param, bt_battery_dbus_data_t, 0); + + data->session_start_time = info->session_start_time; + data->session_end_time = info->session_end_time; + data->session_scan_time = info->session_scan_time; + data->session_connected_time = info->session_connected_time; + data->atm_list = NULL; + + BT_DBG("Received battery data in bt-api: %ld %ld %d %d.", + data->session_start_time, data->session_end_time, + data->session_scan_time, data->session_connected_time); + + /*Copying app wise details*/ + int n = NUM_APP_MAX < info->num_app ? NUM_APP_MAX : info->num_app; //Maximum NUM_APP_MAX details will be fetched + + for (int i = 0; i < n; i++) { + bt_battery_app_data *app_data = NULL; + app_data = g_malloc0(sizeof(bt_battery_app_data)); + memcpy(app_data, &(info->app_data[i]), sizeof(bt_battery_app_data)); + data->atm_list = g_slist_append(data->atm_list, app_data); + } + + if (data->atm_list == NULL) { + BT_DBG("No app data transaction in this session"); + BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param); + return result; + } + + BT_DBG("App-wise data transaction details:"); + for (GSList *l = data->atm_list; l != NULL; l = g_slist_next(l)) { + bt_battery_app_data *t = (bt_battery_app_data *)(l->data); + BT_DBG("%ld %ld %d %d %u", (long int)(t->uid), (long int)(t->pid), t->rx_bytes, t->tx_bytes, t->time); + } + BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param); return result; @@ -101,6 +254,8 @@ BT_EXPORT_API int bluetooth_disable_adapter(void) { int result; + BT_INFO_C("### Disable adapter"); + _bt_print_api_caller_name(); BT_CHECK_ENABLED(return); BT_INIT_PARAMS(); @@ -114,10 +269,29 @@ BT_EXPORT_API int bluetooth_disable_adapter(void) return result; } +BT_EXPORT_API int bluetooth_recover_adapter(void) +{ + int result; + + BT_INFO_C("### Recover adapter"); + BT_CHECK_ENABLED(return); + + BT_INIT_PARAMS(); + BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param); + + result = _bt_send_request(BT_BLUEZ_SERVICE, BT_RECOVER_ADAPTER, + in_param1, in_param2, in_param3, in_param4, &out_param); + + BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param); + + return result; +} + BT_EXPORT_API int bluetooth_reset_adapter(void) { int result; + BT_INFO(""); BT_INIT_PARAMS(); BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param); @@ -134,6 +308,7 @@ BT_EXPORT_API int bluetooth_get_local_address(bluetooth_device_address_t *local_ int result; BT_CHECK_PARAMETER(local_address, return); + BT_CHECK_ENABLED_ANY(return); BT_INIT_PARAMS(); BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param); @@ -151,11 +326,33 @@ BT_EXPORT_API int bluetooth_get_local_address(bluetooth_device_address_t *local_ return result; } +BT_EXPORT_API int bluetooth_get_local_version(bluetooth_version_t *local_version) +{ + int result; + + BT_CHECK_PARAMETER(local_version, return); + BT_CHECK_ENABLED_ANY(return); + + BT_INIT_PARAMS(); + BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param); + + result = _bt_send_request(BT_BLUEZ_SERVICE, BT_GET_LOCAL_VERSION, + in_param1, in_param2, in_param3, in_param4, &out_param); + + if (result == BLUETOOTH_ERROR_NONE) + *local_version = g_array_index(out_param, bluetooth_version_t, 0); + + BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param); + + return result; +} + BT_EXPORT_API int bluetooth_get_local_name(bluetooth_device_name_t *local_name) { int result; BT_CHECK_PARAMETER(local_name, return); + BT_CHECK_ENABLED_ANY(return); BT_INIT_PARAMS(); BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param); @@ -178,7 +375,7 @@ BT_EXPORT_API int bluetooth_set_local_name(const bluetooth_device_name_t *local_ int result; BT_CHECK_PARAMETER(local_name, return); - BT_CHECK_ENABLED(return); + BT_CHECK_ENABLED_ANY(return); BT_INIT_PARAMS(); BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param); @@ -212,9 +409,8 @@ BT_EXPORT_API int bluetooth_is_service_used(const char *service_uuid, result = _bt_send_request(BT_BLUEZ_SERVICE, BT_IS_SERVICE_USED, in_param1, in_param2, in_param3, in_param4, &out_param); - if (result == BLUETOOTH_ERROR_NONE) { + if (result == BLUETOOTH_ERROR_NONE) *used = g_array_index(out_param, gboolean, 0); - } BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param); @@ -225,20 +421,37 @@ BT_EXPORT_API int bluetooth_get_discoverable_mode(bluetooth_discoverable_mode_t discoverable_mode_ptr) { int result; - int timeout = 0; BT_CHECK_PARAMETER(discoverable_mode_ptr, return); + if (!TIZEN_PROFILE_WEARABLE) { + int timeout = 0; + /* Requirement in OSP */ + if (bluetooth_check_adapter() == BLUETOOTH_ADAPTER_DISABLED) { + if (vconf_get_int(BT_FILE_VISIBLE_TIME, &timeout) != 0) { + BT_ERR("Fail to get the timeout value"); + return BLUETOOTH_ERROR_DEVICE_NOT_ENABLED; + } + + if (timeout == -1) + *discoverable_mode_ptr = BLUETOOTH_DISCOVERABLE_MODE_GENERAL_DISCOVERABLE; + else + *discoverable_mode_ptr = BLUETOOTH_DISCOVERABLE_MODE_CONNECTABLE; + + return BLUETOOTH_ERROR_NONE; + } + } else { + BT_CHECK_ENABLED(return); + } + BT_INIT_PARAMS(); BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param); result = _bt_send_request(BT_BLUEZ_SERVICE, BT_GET_DISCOVERABLE_MODE, in_param1, in_param2, in_param3, in_param4, &out_param); - if (result == BLUETOOTH_ERROR_NONE) { - *discoverable_mode_ptr = g_array_index(out_param, - int, 0); - } + if (result == BLUETOOTH_ERROR_NONE) + *discoverable_mode_ptr = g_array_index(out_param, int, 0); BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param); @@ -279,9 +492,8 @@ BT_EXPORT_API int bluetooth_get_timeout_value(int *timeout) result = _bt_send_request(BT_BLUEZ_SERVICE, BT_GET_DISCOVERABLE_TIME, in_param1, in_param2, in_param3, in_param4, &out_param); - if (result == BLUETOOTH_ERROR_NONE) { + if (result == BLUETOOTH_ERROR_NONE) *timeout = g_array_index(out_param, int, 0); - } BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param); @@ -299,6 +511,10 @@ BT_EXPORT_API int bluetooth_start_discovery(unsigned short max_response, BT_INIT_PARAMS(); BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param); + g_array_append_vals(in_param1, &max_response, sizeof(unsigned short)); + g_array_append_vals(in_param2, &discovery_duration, sizeof(unsigned short)); + g_array_append_vals(in_param3, &classOfDeviceMask, sizeof(unsigned int)); + result = _bt_send_request(BT_BLUEZ_SERVICE, BT_START_DISCOVERY, in_param1, in_param2, in_param3, in_param4, &out_param); @@ -307,6 +523,30 @@ BT_EXPORT_API int bluetooth_start_discovery(unsigned short max_response, return result; } +BT_EXPORT_API int bluetooth_start_custom_discovery(bt_discovery_role_type_t role, + unsigned short max_response, + unsigned short discovery_duration, + unsigned int classOfDeviceMask) +{ + int result; + + if (role == DISCOVERY_ROLE_LE) + BT_CHECK_ENABLED_LE(return); + else + BT_CHECK_ENABLED(return); + + BT_INIT_PARAMS(); + BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param); + + g_array_append_vals(in_param1, &role, sizeof(bt_discovery_role_type_t)); + result = _bt_send_request(BT_BLUEZ_SERVICE, BT_START_CUSTOM_DISCOVERY, + in_param1, in_param2, in_param3, in_param4, &out_param); + + BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param); + + return result; +} + BT_EXPORT_API int bluetooth_cancel_discovery(void) { int result; @@ -343,6 +583,7 @@ BT_EXPORT_API int bluetooth_is_discovering(void) int, 0); } else { BT_ERR("Fail to send request"); + is_discovering = result; } BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param); @@ -350,6 +591,47 @@ BT_EXPORT_API int bluetooth_is_discovering(void) return is_discovering; } +BT_EXPORT_API int bluetooth_is_connectable(gboolean *is_connectable) +{ + int result; + + BT_CHECK_ENABLED_ANY(return); + + BT_INIT_PARAMS(); + BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param); + + result = _bt_send_request(BT_BLUEZ_SERVICE, BT_GET_CONNECTABLE, + in_param1, in_param2, in_param3, in_param4, &out_param); + + if (result == BLUETOOTH_ERROR_NONE) + *is_connectable = g_array_index(out_param, int, 0); + else + BT_ERR("Fail to send request"); + + BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param); + + return result; +} + +BT_EXPORT_API int bluetooth_set_connectable(gboolean is_connectable) +{ + int result; + + BT_CHECK_ENABLED_ANY(return); + + BT_INIT_PARAMS(); + BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param); + + g_array_append_vals(in_param1, &is_connectable, sizeof(gboolean)); + + result = _bt_send_request(BT_BLUEZ_SERVICE, BT_SET_CONNECTABLE, + in_param1, in_param2, in_param3, in_param4, &out_param); + + BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param); + + return result; +} + BT_EXPORT_API int bluetooth_get_bonded_device_list(GPtrArray **dev_list) { int result; @@ -363,8 +645,60 @@ BT_EXPORT_API int bluetooth_get_bonded_device_list(GPtrArray **dev_list) result = _bt_send_request(BT_BLUEZ_SERVICE, BT_GET_BONDED_DEVICES, in_param1, in_param2, in_param3, in_param4, &out_param); - if (result == BLUETOOTH_ERROR_NONE) { + if (result == BLUETOOTH_ERROR_NONE) result = __bt_fill_device_list(out_param, dev_list); + + BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param); + + return result; +} + +BT_EXPORT_API int bluetooth_get_profile_connected_device_list( + const char *profile_uuid, GPtrArray **addr_list) +{ + char uuid[BLUETOOTH_UUID_STRING_MAX]; + int result; + guint size; + int i; + + BT_CHECK_PARAMETER(profile_uuid, return); + BT_CHECK_PARAMETER(addr_list, return); + BT_CHECK_ENABLED(return); + + BT_INIT_PARAMS(); + BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param); + + g_strlcpy(uuid, profile_uuid, sizeof(uuid)); + g_array_append_vals(in_param1, uuid, BLUETOOTH_UUID_STRING_MAX); + + result = _bt_send_request(BT_BLUEZ_SERVICE, BT_GET_PROFILE_CONNECTED_DEVICES, + in_param1, in_param2, in_param3, in_param4, &out_param); + + if (result == BLUETOOTH_ERROR_NONE) { + if (out_param == NULL) { + BT_ERR("out_param is NULL"); + result = BLUETOOTH_ERROR_INTERNAL; + } else { + size = (out_param->len) / sizeof(bluetooth_device_address_t); + + if (size == 0) { + BT_ERR("No connected device"); + result = BLUETOOTH_ERROR_NOT_CONNECTED; + } + + for (i = 0; i < size; i++) { + bluetooth_device_address_t *addr = NULL; + bluetooth_device_address_t *ptr = NULL; + + ptr = &g_array_index(out_param, + bluetooth_device_address_t, i); + + addr = g_memdup(ptr, sizeof(bluetooth_device_address_t)); + + if (addr) + g_ptr_array_add(*addr_list, (gpointer)addr); + } + } } BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param); @@ -372,3 +706,45 @@ BT_EXPORT_API int bluetooth_get_bonded_device_list(GPtrArray **dev_list) return result; } +BT_EXPORT_API int bluetooth_set_manufacturer_data(const bluetooth_manufacturer_data_t *value) +{ + int result; + + BT_CHECK_PARAMETER(value, return); + BT_CHECK_ENABLED_ANY(return); + + if (value->data_len > BLUETOOTH_MANUFACTURER_DATA_LENGTH_MAX) + return BLUETOOTH_ERROR_INVALID_PARAM; + + BT_INIT_PARAMS(); + BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param); + + g_array_append_vals(in_param1, value, sizeof(bluetooth_manufacturer_data_t)); + + result = _bt_send_request(BT_BLUEZ_SERVICE, BT_SET_MANUFACTURER_DATA, + in_param1, in_param2, in_param3, in_param4, &out_param); + + BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param); + + return result; +} + +BT_EXPORT_API int bluetooth_set_passkey_notification(gboolean enable) +{ + int result; + + BT_CHECK_ENABLED_ANY(return); + + BT_INIT_PARAMS(); + BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param); + + g_array_append_vals(in_param1, &enable, sizeof(gboolean)); + + result = _bt_send_request(BT_BLUEZ_SERVICE, BT_SET_PASSKEY_NOTIFICATION, + in_param1, in_param2, in_param3, in_param4, &out_param); + + BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param); + + return result; +} +