Port the Set LE Privacy functionality into BT HAL framework.
[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_PASSIVE_SCAN = 0x00,
48         BT_LE_ACTIVE_SCAN
49 } bt_le_scan_type_t;
50
51 int _bt_enable_adapter_le(void);
52
53 int _bt_disable_adapter_le(void);
54
55 int _bt_le_init(void);
56
57 void _bt_le_deinit(void);
58
59 int _bt_is_advertising(void);
60 int _bt_set_advertising(const char *sender, int adv_handle, gboolean enable, gboolean use_reserved_slot);
61
62 int _bt_set_custom_advertising(const char *sender, int adv_handle, gboolean enable, bluetooth_advertising_params_t *params, gboolean use_reserved_slot);
63
64 int _bt_set_advertising_data(const char *sender, int adv_handle, bluetooth_advertising_data_t *data, int length, gboolean use_reserved_slot);
65
66 int _bt_set_scan_response_data(const char *sender, int adv_handle, bluetooth_scan_resp_data_t *response, int length, gboolean use_reserved_slot);
67
68 int _bt_get_advertising_data(char *sender, int adv_handle, bluetooth_advertising_data_t *adv, int *length);
69
70 int _bt_get_scan_response_data(char *sender, int adv_handle, bluetooth_scan_resp_data_t *adv, int *length);
71
72 int _bt_start_le_scan(const char *sender);
73
74 int _bt_stop_le_scan(const char *sender);
75
76 int _bt_set_scan_parameters(bluetooth_le_scan_params_t *params);
77
78 int _bt_prepare_scan_parameters(bluetooth_le_scan_params_t *params, int scan_type);
79
80 gboolean _bt_is_le_scanning(void);
81
82 void _bt_check_le_scanner_app_termination(const char *sender);
83
84 void _bt_adapter_set_le_status(bt_le_status_t status);
85
86 bt_le_status_t _bt_adapter_get_le_status(void);
87
88 int _bt_service_le_init(void);
89
90 void _bt_service_le_deinit(void);
91
92 gboolean _bt_is_le_2m_phy_supported(void);
93
94 gboolean _bt_is_le_coded_phy_supported(void);
95
96 int _bt_set_le_static_random_address(gboolean is_enable);
97
98 int _bt_set_le_privacy(gboolean set_privacy);
99
100 int _bt_set_white_list(bluetooth_device_address_t *device_address, int address_type, bool is_add);
101 #ifdef __cplusplus
102 }
103 #endif /* __cplusplus */
104 #endif /*_BT_SERVICE_CORE_ADAPTER_LE_H_*/