Implement set / get volume logic from transport
[platform/core/connectivity/bluetooth-frwk.git] / bt-service-adaptation / services / include / bt-service-core-adapter-le.h
1 /*
2  * Copyright (c) 2016 - 2017 Samsung Electronics Co., Ltd. All rights reserved.
3  *
4  * Contact:  Anupam Roy <anupam.r@samsung.com>
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *              http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  */
19
20
21 #ifndef _BT_SERVICE_CORE_ADAPTER_LE_H_
22 #define _BT_SERVICE_CORE_ADAPTER_LE_H_
23
24 #include <glib.h>
25 #include <sys/types.h>
26 #include "bluetooth-api.h"
27
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31
32 typedef enum {
33         LE_DISCOVERY_STOPPED,
34         LE_DISCOVERY_STARTED,
35         LE_DISCOVERY_STARTING,
36         LE_DISCOVERY_STOPPING,
37 } bt_le_discovery_state_t;
38
39 typedef enum {
40         BT_LE_DEACTIVATED,
41         BT_LE_ACTIVATED,
42         BT_LE_ACTIVATING,
43         BT_LE_DEACTIVATING,
44 } bt_le_status_t;
45
46 typedef enum {
47         BT_LE_AD_TYPE_INCOMP_LIST_16_BIT_SERVICE_CLASS_UUIDS = 0x02,
48         BT_LE_AD_TYPE_COMP_LIST_16_BIT_SERVICE_CLASS_UUIDS = 0x03,
49         BT_LE_AD_TYPE_INCOMP_LIST_128_BIT_SERVICE_CLASS_UUIDS = 0x06,
50         BT_LE_AD_TYPE_COMP_LIST_128_BIT_SERVICE_CLASS_UUIDS = 0x07,
51         BT_LE_AD_TYPE_SHORTENED_LOCAL_NAME = 0x08,
52         BT_LE_AD_TYPE_COMPLETE_LOCAL_NAME = 0x09,
53         BT_LE_AD_TYPE_LIST_16_BIT_SERVICE_SOLICITATION_UUIDS = 0x14,
54         BT_LE_AD_TYPE_LIST_128_BIT_SERVICE_SOLICITATION_UUIDS = 0x15,
55         BT_LE_AD_TYPE_SERVICE_DATA = 0x16,
56         BT_LE_AD_TYPE_MANUFACTURER_SPECIFIC_DATA = 0xFF,
57 } bt_le_ad_type_t;
58
59 typedef enum {
60         BT_LE_PASSIVE_SCAN = 0x00,
61         BT_LE_ACTIVE_SCAN
62 } bt_le_scan_type_t;
63
64 int _bt_enable_adapter_le(void);
65
66 int _bt_disable_adapter_le(void);
67
68 int _bt_le_init(void);
69
70 void _bt_le_deinit(void);
71
72 int _bt_is_advertising(void);
73 int _bt_set_advertising(const char *sender, int adv_handle, gboolean enable, gboolean use_reserved_slot);
74
75 int _bt_set_custom_advertising(const char *sender, int adv_handle, gboolean enable, bluetooth_advertising_params_t *params, gboolean use_reserved_slot);
76
77 int _bt_set_advertising_data(const char *sender, int adv_handle, bluetooth_advertising_data_t *data, int length, gboolean use_reserved_slot);
78
79 int _bt_set_scan_response_data(const char *sender, int adv_handle, bluetooth_scan_resp_data_t *response, int length, gboolean use_reserved_slot);
80
81 int _bt_get_advertising_data(char *sender, int adv_handle, bluetooth_advertising_data_t *adv, int *length);
82
83 int _bt_get_scan_response_data(char *sender, int adv_handle, bluetooth_scan_resp_data_t *adv, int *length);
84
85 int _bt_start_le_scan(const char *sender);
86
87 int _bt_stop_le_scan(const char *sender);
88
89 int _bt_set_scan_parameters(bluetooth_le_scan_params_t *params);
90
91 int _bt_prepare_scan_parameters(bluetooth_le_scan_params_t *params, int scan_type);
92
93 gboolean _bt_is_le_scanning(void);
94
95 void _bt_check_le_scanner_app_termination(const char *sender);
96
97 void _bt_adapter_set_le_status(bt_le_status_t status);
98
99 bt_le_status_t _bt_adapter_get_le_status(void);
100
101 int _bt_service_le_init(void);
102
103 void _bt_service_le_deinit(void);
104
105 gboolean _bt_is_le_2m_phy_supported(void);
106
107 gboolean _bt_is_le_coded_phy_supported(void);
108
109 gboolean _bt_is_scan_filter_supported(void);
110
111 int _bt_set_le_static_random_address(gboolean is_enable);
112
113 int _bt_set_le_privacy(gboolean set_privacy);
114
115 int _bt_set_white_list(bluetooth_device_address_t *device_address, int address_type, bool is_add);
116
117 int _bt_set_manufacturer_data(bluetooth_manufacturer_data_t *m_data);
118
119 int _bt_unregister_all_scan_filters(const char *sender);
120
121 int _bt_register_scan_filter(const char *sender, bluetooth_le_scan_filter_t *filter);
122 #ifdef __cplusplus
123 }
124 #endif /* __cplusplus */
125 #endif /*_BT_SERVICE_CORE_ADAPTER_LE_H_*/