Reduce the predefined logic (PredefinedPreprocessor)
[platform/core/connectivity/bluetooth-frwk.git] / bt-service / services / include / bt-service-core-device.h
1 /*
2  * Copyright (c) 2015 - 2016 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 #ifndef _BT_SERVICE_CORE_DEVICE_H_
21 #define _BT_SERVICE_CORE_DEVICE_H_
22
23 #include <sys/types.h>
24 #include "bluetooth-api.h"
25
26 #ifdef __cplusplus
27 extern "C" {
28 #endif
29
30 #define BT_DEVICE_PIN_CODE_SLOT_MAX 10
31 typedef struct {
32         char *address;
33         char *pin_code;
34 } bt_pin_code_info_t;
35
36 gboolean _bt_is_device_creating(void);
37
38 int _bt_le_connection_update(const char *sender,
39                 unsigned char *device_address,
40                 float interval_min, float interval_max,
41                 guint16 latency, guint16 time_out);
42
43 #ifdef TIZEN_FEATURE_BT_OBEX
44 bluetooth_trusted_profile_t _bt_get_trusted_profile_enum(const char *uuid);
45 #endif
46
47 void _bt_device_state_handle_callback_set_request(void);
48
49 int _bt_device_get_bonded_device_info(bluetooth_device_address_t *addr);
50
51 int _bt_set_alias(bluetooth_device_address_t *device_address, const char *alias);
52
53 int _bt_bond_device(bluetooth_device_address_t *device_address,
54                 unsigned short conn_type, GArray **out_param1);
55
56 int _bt_unbond_device(bluetooth_device_address_t *device_address,
57                 GArray **out_param1);
58
59 int _bt_cancel_bonding(void);
60
61 gboolean _bt_is_bonding_device_address(const char *address);
62
63 gboolean _bt_device_is_bonding(void);
64
65 gboolean _bt_device_is_pairing(void);
66
67 int _bt_cancel_search_device(void);
68
69 int _bt_search_device(bluetooth_device_address_t *device_address);
70
71 gboolean _bt_is_bonding_device_address(const char *address);
72
73 void _bt_set_autopair_status_in_bonding_info(gboolean is_autopair);
74
75 int _bt_passkey_reply(const char *passkey, gboolean authentication_reply);
76
77 int _bt_passkey_confirmation_reply(gboolean confirmation_reply);
78
79 int _bt_set_authorization(bluetooth_device_address_t *device_address,
80                                 gboolean authorize);
81
82 gboolean _bt_is_device_connected(bluetooth_device_address_t *device_address, int svc_type);
83
84 int _bt_rfcomm_reply_conn_authorization(char *address, gboolean reply);
85
86 int _bt_get_bonded_device_info(bluetooth_device_address_t *dev_addr);
87
88 int _bt_get_bonded_devices(void);
89
90 void _bt_service_get_bonded_dev_list(GArray **dev_list);
91
92 bt_remote_dev_info_t *_bt_service_get_remote_dev_info(const char *address);
93
94 gboolean _bt_is_bonded_devices_retrived(void);
95
96 void _bt_device_handle_paired_address_list(bluetooth_device_address_t *addr_list, int count);
97
98 void _bt_device_handle_adapter_state(gboolean enabled);
99
100 int _bt_is_alias_set(bluetooth_device_address_t *device_address);
101
102 int _bt_get_connected_link(bluetooth_device_address_t *device_address);
103
104 int _bt_set_trust_profile(bluetooth_device_address_t *bd_addr,
105                 bluetooth_trusted_profile_t profile, gboolean trust);
106
107 int _bt_get_trust_profile(bluetooth_device_address_t *bd_addr,
108                 bluetooth_trusted_profile_t profile, guint *trust);
109
110 int _bt_enable_rssi(bluetooth_device_address_t *addr, int link_type,
111                 int low_threshold, int in_range_threshold, int high_threshold);
112
113 int _bt_get_rssi_strength(bluetooth_device_address_t *bd_addr, int link_type);
114
115 int _bt_set_passkey_notification(const char *sender, gboolean enable);
116
117 int _bt_set_pin_code(bluetooth_device_address_t *device_address,
118                 bluetooth_device_pin_code_t *pin_code);
119
120 int _bt_unset_pin_code(bluetooth_device_address_t *device_address);
121
122 int _bt_disconnect_device(bluetooth_device_address_t *device_addr);
123
124 int _bt_get_le_connection_parameter(bluetooth_le_connection_mode_t mode,
125                 bluetooth_le_connection_param_t *param);
126 int _bt_device_get_ida(bluetooth_device_address_t *device_address,
127                 bluetooth_device_address_t *id_address);
128 #ifdef __cplusplus
129 }
130 #endif /* __cplusplus */
131 #endif /*_BT_SERVICE_CORE_DEVICE_H_*/
132