BLE Gatt Server Socket write implemetation
[platform/core/connectivity/bluetooth-frwk.git] / bt-service-adaptation / services / include / bt-service-gatt.h
1 /*
2  * Bluetooth-frwk
3  *
4  * Copyright (c) 2016-2017 Samsung Electronics Co., Ltd.
5  *
6  * Contact: Anupam Roy (anupam.r@samsung.com)
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *              http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  */
21
22 #ifndef BT_SERVICE_GATT_H_
23 #define BT_SERVICE_GATT_H_
24
25 #include <glib.h>
26 #include <sys/types.h>
27 #include "bluetooth-api.h"
28 #include "bluetooth-gatt-server-api.h"
29
30 #ifdef TIZEN_GATT_CLIENT
31 #include "bluetooth-gatt-client-api.h"
32 #endif
33
34 #ifdef __cplusplus
35 extern "C" {
36 #endif
37
38 int _bt_gatt_init(void);
39
40 void _bt_gatt_deinit(void);
41
42 int _bt_get_allocated_server_instance(const char *sender, int adv_handle, gboolean use_reserved_slot);
43
44 int _bt_register_server_instance(const char *sender, int adv_handle);
45
46 int _bt_unregister_server_instance(const char *sender, int adv_handle);
47
48 char* _bt_get_sender_and_handle(int server_instance, int *adv_handle);
49
50 int _bt_register_server_instance(const char *sender, int adv_handle);
51
52 void _bt_get_adv_handle_from_instance(int server_inst, int *adv_handle);
53
54 void _bt_set_new_scan_rsp_data(bluetooth_scan_resp_data_t *scan, int len, int instance);
55
56 void _bt_set_new_adv_data(bluetooth_advertising_data_t *adv, int len, int instance);
57
58 void _bt_update_adv_handle(const char *sender, int adv_handle);
59
60 void _bt_get_previous_adv_data(bluetooth_advertising_data_t *adv, int *len, int instance);
61
62 void _bt_get_previous_scan_rsp_data(bluetooth_scan_resp_data_t *scan, int *len, int instance);
63
64 int _bt_is_sender_gatt_server_with_no_adv(const char *sender, int adv_handle);
65
66 void _bt_check_adv_app_termination(const char *name);
67
68 int _bt_gatt_server_add_service(char *sender, int service_type,
69                 int num_handles, char *svc_uuid, int instance_id);
70
71 int _bt_gatt_server_add_included_service(char *sender, int instance_id,
72                 int service_handle, int included_svc_handle);
73
74 int _bt_gatt_server_add_characteristic(char *sender, char *char_uuid,
75                 bluetooth_gatt_server_attribute_params_t *param);
76
77 int _bt_gatt_server_add_descriptor(char *sender, char *desc_uuid,
78                 bt_gatt_permission_t *perm, int service_handle, int instance_id);
79
80 int _bt_gatt_server_start_service(char *sender, int service_handle, int instance_id);
81
82 int _bt_gatt_server_stop_service(char *sender, int service_handle, int instance_id);
83
84 int _bt_gatt_server_delete_service(char *sender, int service_handle, int instance_id);
85
86 int _bt_gatt_server_send_response(char *sender, bluetooth_gatt_att_data_t *data,
87                 bluetooth_gatt_server_response_params_t *param);
88
89 int _bt_gatt_server_send_indication(char *sender, bluetooth_device_address_t *addr, bluetooth_gatt_att_data_t *data,
90                 bluetooth_gatt_server_indication_params_t *param);
91
92 int _bt_gatt_server_update_attribute_value(char *sender, int instance_id,
93                 bluetooth_gatt_server_update_value_t *param);
94
95 int _bt_get_att_mtu(bluetooth_device_address_t *address,
96                 unsigned int *mtu);
97
98 int _bt_gatt_server_acquire_send_response(char *sender, bluetooth_gatt_server_acquire_response_params_t *param, void *);
99
100 #ifdef TIZEN_GATT_CLIENT
101 char * _bt_gatt_get_default_gatt_client_uuid(void);
102
103 int _bt_register_gatt_client_instance(const char *sender,
104                 bluetooth_device_address_t *address);
105
106 gboolean _bt_is_remote_gatt_device_connected(bluetooth_device_address_t *address);
107
108
109 int _bt_connect_le_device(bluetooth_device_address_t *address,
110                 int auto_connect, int client_id);
111
112 int _bt_gatt_get_primary_services(char *address);
113
114 int _bt_gatt_get_all_characteristic(bluetooth_gatt_client_svc_prop_info_t *svc);
115
116 int _bt_gatt_get_all_characteristic_properties(
117                 bluetooth_gatt_client_char_prop_info_t *prop);
118
119 int _bt_gatt_read_characteristic_value(
120                 bluetooth_gatt_client_char_prop_info_t *desc);
121
122 int _bt_gatt_read_descriptor_value(
123                 bluetooth_gatt_client_desc_prop_info_t *desc);
124
125 int _bt_gatt_write_characteristic_value_by_type(
126                 bluetooth_gatt_client_char_prop_info_t *chr,
127                 bluetooth_gatt_att_data_t *data,
128                 bluetooth_gatt_write_type_e write_type);
129
130 int _bt_gatt_write_descriptor_value_by_type(
131                 bluetooth_gatt_client_desc_prop_info_t *desc,
132                 bluetooth_gatt_att_data_t *data,
133                 bluetooth_gatt_write_type_e write_type);
134
135 int _bt_disconnect_le_device(bluetooth_device_address_t *address,
136                 int client_id);
137
138 int _bt_gatt_watch_characteristic(bluetooth_gatt_client_char_prop_info_t *chr,
139                 int client_id, gboolean is_notify);
140
141 int _bt_gatt_watch_service_changed_indication(const char *sender,
142                 bluetooth_device_address_t *address,
143                 gboolean is_enabled);
144
145 int _bt_unregister_gatt_client_instance(const char *sender,
146                 int client_id);
147
148 #endif
149 //int _bt_gatt_server_enable_application(int instance_id);
150 #if 0
151 int _bt_gatt_server_register(char *sender);
152
153 int _bt_gatt_server_unregister(char *sender);
154
155 int _bt_gatt_server_update_multi_adv_info(char *name, int instance_id);
156
157 int _bt_gatt_server_connect_remote_client(char *sender,
158                                 bluetooth_device_address_t *address, int instance_id);
159
160 int _bt_gatt_server_disconnect_remote_client(char *sender,
161                                 bluetooth_device_address_t *address,
162                                 int instance_id);
163
164 int _bt_gatt_server_add_service(char *sender, int service_type,
165                                 int num_handles, char *svc_uuid, int instance_id);
166
167 int _bt_gatt_server_add_included_service(char *sender, int instance_id,
168                 int service_handle, int included_svc_handle);
169
170 int _bt_gatt_server_add_characteristic(char *sender, char *char_uuid,
171                                 bluetooth_gatt_server_attribute_params_t *param);
172
173 int _bt_gatt_server_add_descriptor(char *sender, char *desc_uuid,
174                                 bt_gatt_permission_t *perm, int service_handle, int instance_id);
175
176 int _bt_gatt_server_start_service(char *sender, int service_handle, int instance_id);
177
178 int _bt_gatt_server_stop_service(char *sender, int service_handle, int instance_id);
179
180 int _bt_gatt_server_delete_service(char *sender, int service_handle, int instance_id);
181
182 int _bt_gatt_server_send_indication(char *sender, bluetooth_device_address_t *addr, bluetooth_gatt_att_data_t *data,
183                                         bluetooth_gatt_server_indication_params_t *param);
184
185 int _bt_gatt_server_send_response(char *sender, bluetooth_gatt_att_data_t *data,
186                                         bluetooth_gatt_server_response_params_t *param);
187
188 void _bt_gatt_server_clear_req_info(void);
189
190 void _bt_gatt_server_clear_connection_info(void);
191
192 bt_product_gatt_permission_t _bt_gatt_convert_attr_permission_to_stack_specific(
193                 bt_gatt_permission_t perm);
194
195 void _bt_check_gatt_server_app_termination(const char *name);
196
197 int _bt_gatt_server_get_att_mtu(bluetooth_device_address_t *address, unsigned int *mtu);
198
199 #endif
200
201 #ifdef __cplusplus
202 }
203 #endif /* __cplusplus */
204 #endif /* BT_SERVICE_GATT_H_ */