e1ba5b9fdcf9e7a5a943edbf825a926ccb0234f5
[platform/core/connectivity/bluetooth-frwk.git] / bt-oal / hardware / bt_gatt_client.h
1 /*
2  * Copyright (C) 2013 The Android Open Source Project
3  * Copyright (C) 2009-2014 Broadcom Corporation
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18
19 #ifndef ANDROID_INCLUDE_BT_GATT_CLIENT_H
20 #define ANDROID_INCLUDE_BT_GATT_CLIENT_H
21
22 #include <stdint.h>
23 #include "bt_gatt_types.h"
24
25 __BEGIN_DECLS
26
27 #ifdef TIZEN_BT_HAL
28 #define BT_GATTC_LE_SCAN_TYPE_PASSIVE   0x00
29 #define BT_GATTC_LE_SCAN_TYPE_ACTIVE    0x01
30 #endif
31
32 /** Buffer type for unformatted reads/writes */
33 typedef struct {
34         uint8_t             value[BTGATT_MAX_ATTR_LEN];
35         uint16_t            len;
36 } btgatt_unformatted_value_t;
37
38 /** Parameters for GATT read operations */
39 typedef struct {
40         btgatt_srvc_id_t    srvc_id;
41         btgatt_gatt_id_t    char_id;
42         btgatt_gatt_id_t    descr_id;
43         btgatt_unformatted_value_t value;
44         uint16_t            value_type;
45         uint8_t             status;
46 } btgatt_read_params_t;
47
48 /** Parameters for GATT write operations */
49 typedef struct {
50         btgatt_srvc_id_t    srvc_id;
51         btgatt_gatt_id_t    char_id;
52         btgatt_gatt_id_t    descr_id;
53         uint8_t             status;
54 } btgatt_write_params_t;
55
56 /** Attribute change notification parameters */
57 typedef struct {
58         btgatt_srvc_id_t    srvc_id;
59         btgatt_gatt_id_t    char_id;
60         int fd;
61         uint8_t             status;
62 } btgatt_acquire_params_t;
63
64
65 /** Attribute change notification parameters */
66 typedef struct {
67         uint8_t             value[BTGATT_MAX_ATTR_LEN];
68         bt_bdaddr_t         bda;
69         btgatt_srvc_id_t    srvc_id;
70         btgatt_gatt_id_t    char_id;
71         uint16_t            len;
72         uint8_t             is_notify;
73 } btgatt_notify_params_t;
74
75 typedef struct {
76         bt_bdaddr_t        *bda1;
77         bt_uuid_t          *uuid1;
78         uint16_t            u1;
79         uint16_t            u2;
80         uint16_t            u3;
81         uint16_t            u4;
82         uint16_t            u5;
83 } btgatt_test_params_t;
84
85 /** BT-GATT Client callback structure. */
86
87 /** Callback invoked in response to register_client */
88 typedef void (*register_client_callback)(int status, int client_if,
89                 bt_uuid_t *app_uuid);
90
91 /** Callback for scan results */
92 typedef void (*scan_result_callback)(bt_bdaddr_t* bda, uint8_t addr_type, int rssi,
93                 uint8_t* adv_data, int adv_dat_len, uint8_t *scan_rsp_data, int scan_rsp_data_len);
94
95 /** GATT open callback invoked in response to open */
96 typedef void (*connect_callback)(int conn_id, int status, int client_if, bt_bdaddr_t* bda);
97
98 /** Callback invoked in response to close */
99 typedef void (*disconnect_callback)(int conn_id, int status,
100                 int client_if, bt_bdaddr_t* bda);
101
102 /**
103  * Invoked in response to search_service when the GATT service search
104  * has been completed.
105  */
106 typedef void (*search_complete_callback)(int conn_id, int status);
107
108 /** Reports GATT services on a remote device */
109 typedef void (*search_result_callback)(int conn_id, btgatt_srvc_id_t *srvc_id);
110
111 /** GATT characteristic enumeration result callback */
112 typedef void (*get_characteristic_callback)(int conn_id, int status,
113                 btgatt_srvc_id_t *srvc_id, btgatt_gatt_id_t *char_id,
114                 int char_prop);
115
116 /** GATT descriptor enumeration result callback */
117 typedef void (*get_descriptor_callback)(int conn_id, int status,
118                 btgatt_srvc_id_t *srvc_id, btgatt_gatt_id_t *char_id,
119                 btgatt_gatt_id_t *descr_id);
120
121 /** GATT included service enumeration result callback */
122 typedef void (*get_included_service_callback)(int conn_id, int status,
123                 btgatt_srvc_id_t *srvc_id, btgatt_srvc_id_t *incl_srvc_id);
124
125 /** Callback invoked in response to [de]register_for_notification */
126 typedef void (*register_for_notification_callback)(int conn_id,
127                 int registered, int status, btgatt_srvc_id_t *srvc_id,
128                 btgatt_gatt_id_t *char_id);
129
130 /**
131  * Remote device notification callback, invoked when a remote device sends
132  * a notification or indication that a client has registered for.
133  */
134 typedef void (*notify_callback)(int conn_id, btgatt_notify_params_t *p_data);
135
136 /** Registers service changed callback operation */
137 typedef void (*service_changed_callback)(bt_bdaddr_t *bd_addr, int change_type, uint8_t *uuid, int conn_id, int inst_id);
138
139 /** Reports result of a GATT read operation */
140 typedef void (*read_characteristic_callback)(int conn_id, int status,
141                 btgatt_read_params_t *p_data);
142
143 /** GATT write characteristic operation callback */
144 typedef void (*write_characteristic_callback)(int conn_id, int status,
145                 btgatt_write_params_t *p_data);
146
147 /** GATT execute prepared write callback */
148 typedef void (*execute_write_callback)(int conn_id, int status);
149
150 /** Callback invoked in response to read_descriptor */
151 typedef void (*read_descriptor_callback)(int conn_id, int status,
152                 btgatt_read_params_t *p_data);
153
154 /** Callback invoked in response to write_descriptor */
155 typedef void (*write_descriptor_callback)(int conn_id, int status,
156                 btgatt_write_params_t *p_data);
157
158 /** Callback triggered in response to read_remote_rssi */
159 typedef void (*read_remote_rssi_callback)(int client_if, bt_bdaddr_t* bda,
160                 int rssi, int status);
161
162 /** Callback invoked when the MTU for a given connection changes */
163 typedef void (*configure_mtu_callback)(int conn_id, int status, int mtu);
164
165 /** Callback invoked when a scan filter configuration command has completed */
166 typedef void (*scan_filter_cfg_callback)(int action, int client_if, int status, int filt_type,
167                 int avbl_space);
168
169 /** Callback invoked when scan param has been added, cleared, or deleted */
170 typedef void (*scan_filter_param_callback)(int action, int client_if, int status,
171                 int avbl_space);
172
173 /** Callback invoked when a scan filter configuration command has completed */
174 typedef void (*scan_filter_status_callback)(int enable, int client_if, int status);
175
176 /**
177  * Callback notifying an application that a remote device connection is currently congested
178  * and cannot receive any more data. An application should avoid sending more data until
179  * a further callback is received indicating the congestion status has been cleared.
180  */
181 typedef void (*congestion_callback)(int conn_id, bool congested);
182 /** Callback invoked when batchscan storage config operation has completed */
183 typedef void (*batchscan_cfg_storage_callback)(int client_if, int status);
184
185 /** Callback invoked when batchscan enable / disable operation has completed */
186 typedef void (*batchscan_enable_disable_callback)(int action, int client_if, int status);
187
188 /** Callback invoked when batchscan reports are obtained */
189 typedef void (*batchscan_reports_callback)(int client_if, int status, int report_format,
190                 int num_records, int data_len, uint8_t* rep_data);
191
192 /** Callback invoked when batchscan storage threshold limit is crossed */
193 typedef void (*batchscan_threshold_callback)(int client_if);
194
195 /** Track ADV VSE callback invoked when tracked device is found or lost */
196 typedef void (*track_adv_event_callback)(int client_if, int filt_index, int addr_type,
197                 bt_bdaddr_t* bda, int adv_state);
198 typedef struct {
199         register_client_callback            register_client_cb;
200         scan_result_callback                scan_result_cb;
201         connect_callback                    open_cb;
202         disconnect_callback                 close_cb;
203         search_complete_callback            search_complete_cb;
204         search_result_callback              search_result_cb;
205         get_characteristic_callback         get_characteristic_cb;
206         get_descriptor_callback             get_descriptor_cb;
207         get_included_service_callback       get_included_service_cb;
208         register_for_notification_callback  register_for_notification_cb;
209         notify_callback                     notify_cb;
210         service_changed_callback            service_changed_cb;
211         read_characteristic_callback        read_characteristic_cb;
212         write_characteristic_callback       write_characteristic_cb;
213         read_descriptor_callback            read_descriptor_cb;
214         write_descriptor_callback           write_descriptor_cb;
215         execute_write_callback              execute_write_cb;
216         read_remote_rssi_callback           read_remote_rssi_cb;
217         configure_mtu_callback              configure_mtu_cb;
218         scan_filter_cfg_callback            scan_filter_cfg_cb;
219         scan_filter_param_callback          scan_filter_param_cb;
220         scan_filter_status_callback         scan_filter_status_cb;
221         congestion_callback                 congestion_cb;
222         batchscan_cfg_storage_callback      batchscan_cfg_storage_cb;
223         batchscan_enable_disable_callback   batchscan_enb_disable_cb;
224         batchscan_reports_callback          batchscan_reports_cb;
225         batchscan_threshold_callback        batchscan_threshold_cb;
226         track_adv_event_callback            track_adv_event_cb;
227 } btgatt_client_callbacks_t;
228
229 /** Represents the standard BT-GATT client interface. */
230
231 typedef struct {
232         /** Registers a GATT client application with the stack */
233         bt_status_t (*register_client)(bt_uuid_t *uuid);
234
235         /** Unregister a client application from the stack */
236         bt_status_t (*unregister_client)(int client_if);
237
238         /** Start or stop LE device scanning */
239         bt_status_t (*scan)(int client_if, bool start);
240
241         /** Create a connection to a remote LE or dual-mode device */
242         bt_status_t (*connect)(int client_if, const bt_bdaddr_t *bd_addr,
243                         bool is_direct);
244
245         /** Disconnect a remote device or cancel a pending connection */
246         bt_status_t (*disconnect)(int client_if, const bt_bdaddr_t *bd_addr,
247                         int conn_id);
248
249         /** Clear the attribute cache for a given device */
250         bt_status_t (*refresh)(int client_if, const bt_bdaddr_t *bd_addr);
251
252         /**
253          * Enumerate all GATT services on a connected device.
254          * Optionally, the results can be filtered for a given UUID.
255          */
256         bt_status_t (*search_service)(int conn_id, bt_uuid_t *filter_uuid);
257
258         /**
259          * Enumerate included services for a given service.
260          * Set start_incl_srvc_id to NULL to get the first included service.
261          */
262         bt_status_t (*get_included_service)(int conn_id, btgatt_srvc_id_t *srvc_id,
263                         btgatt_srvc_id_t *start_incl_srvc_id);
264
265         /**
266          * Enumerate characteristics for a given service.
267          * Set start_char_id to NULL to get the first characteristic.
268          */
269         bt_status_t (*get_characteristic)(int conn_id,
270                         btgatt_srvc_id_t *srvc_id, btgatt_gatt_id_t *start_char_id);
271
272         /**
273          * Enumerate descriptors for a given characteristic.
274          * Set start_descr_id to NULL to get the first descriptor.
275          */
276         bt_status_t (*get_descriptor)(int conn_id,
277                         btgatt_srvc_id_t *srvc_id, btgatt_gatt_id_t *char_id,
278                         btgatt_gatt_id_t *start_descr_id);
279
280         /** Read a characteristic on a remote device */
281         bt_status_t (*read_characteristic)(int conn_id,
282                         btgatt_srvc_id_t *srvc_id, btgatt_gatt_id_t *char_id,
283                         int auth_req);
284
285         /** Write a remote characteristic */
286         bt_status_t (*write_characteristic)(int conn_id,
287                         btgatt_srvc_id_t *srvc_id, btgatt_gatt_id_t *char_id,
288                         int write_type, int len, int auth_req,
289                         char* p_value);
290
291         /** acquire fd for writing remote characterstics */
292         bt_status_t (*acquire_write)(int conn_id,
293                         btgatt_srvc_id_t *srvc_id, btgatt_gatt_id_t *char_id,
294                          int auth_req, int *fd , int *mtu);
295
296         /** acquire fd for notifying remote characterstics */
297         bt_status_t (*acquire_notify)(int conn_id,
298                         btgatt_srvc_id_t *srvc_id, btgatt_gatt_id_t *char_id,
299                          int *fd, int *mtu);
300
301         /** Read the descriptor for a given characteristic */
302         bt_status_t (*read_descriptor)(int conn_id,
303                         btgatt_srvc_id_t *srvc_id, btgatt_gatt_id_t *char_id,
304                         btgatt_gatt_id_t *descr_id, int auth_req);
305
306         /** Write a remote descriptor for a given characteristic */
307         bt_status_t (*write_descriptor)(int conn_id,
308                         btgatt_srvc_id_t *srvc_id, btgatt_gatt_id_t *char_id,
309                         btgatt_gatt_id_t *descr_id, int write_type, int len,
310                         int auth_req, char* p_value);
311
312         /** Execute a prepared write operation */
313         bt_status_t (*execute_write)(int conn_id, int execute);
314
315         /**
316          * Register to receive notifications or indications for a given
317          * characteristic
318          */
319         bt_status_t (*register_for_notification)(int conn_id,
320                         const bt_bdaddr_t *bd_addr, btgatt_srvc_id_t *srvc_id,
321                         btgatt_gatt_id_t *char_id);
322
323         /** Deregister a previous request for notifications/indications */
324         bt_status_t (*deregister_for_notification)(int conn_id,
325                         const bt_bdaddr_t *bd_addr, btgatt_srvc_id_t *srvc_id,
326                         btgatt_gatt_id_t *char_id);
327
328         /** Request RSSI for a given remote device */
329         bt_status_t (*read_remote_rssi)(int client_if, const bt_bdaddr_t *bd_addr);
330
331         /** OTA firmware download */
332         bt_status_t (*ota_fw_update)(int client_if, int conn_id, const bt_bdaddr_t *bd_addr, char* path);
333
334         /** Determine the type of the remote device (LE, BR/EDR, Dual-mode) */
335         int (*get_device_type)(const bt_bdaddr_t *bd_addr);
336
337         /** Request a connection parameter update */
338         bt_status_t (*conn_parameter_update)(bt_bdaddr_t *bd, int min_int, int max_int, int latency, int timeout);
339
340         /** Test mode interface */
341         bt_status_t (*test_command)(int command, btgatt_test_params_t* params);
342
343         /* Get current att mtu size of active connection */
344         bt_status_t (*get_att_mtu)(int conn_id, int *mtu_size);
345
346         /** MTU Exchange request from client */
347         bt_status_t (*configure_mtu)(int conn_id, int mtu);
348
349         /** Setup scan filter params */
350         bt_status_t (*scan_filter_param_setup)(int client_if, int action, int filt_index, int feat_seln,
351                         int list_logic_type, int filt_logic_type, int rssi_high_thres,
352                         int rssi_low_thres, int dely_mode, int found_timeout,
353                         int lost_timeout, int found_timeout_cnt);
354
355
356         /** Configure a scan filter condition  */
357         bt_status_t (*scan_filter_add_remove)(int client_if, int action, int filt_type,
358                         int filt_index, int company_id,
359                         int company_id_mask, const bt_uuid_t *p_uuid,
360                         const bt_uuid_t *p_uuid_mask, const bt_bdaddr_t *bd_addr,
361                         char addr_type, int data_len, char* p_data, int mask_len,
362                         char* p_mask);
363
364         /** Clear all scan filter conditions for specific filter index*/
365         bt_status_t (*scan_filter_clear)(int client_if, int filt_index);
366
367         /** Enable / disable scan filter feature*/
368         bt_status_t (*scan_filter_enable)(int client_if, bool enable);
369
370         /** Sets the LE scan interval and window in units of N*0.625 msec */
371 #ifdef TIZEN_BT_HAL
372         bt_status_t (*set_scan_parameters)(int scan_type, int scan_interval, int scan_window);
373 #else
374         bt_status_t (*set_scan_parameters)(int scan_interval, int scan_window);
375 #endif
376
377         /* Configure the batchscan storage */
378         bt_status_t (*batchscan_cfg_storage)(int client_if, int batch_scan_full_max,
379                         int batch_scan_trunc_max, int batch_scan_notify_threshold);
380
381         /* Enable batchscan */
382         bt_status_t (*batchscan_enb_batch_scan)(int client_if, int scan_mode,
383                         int scan_interval, int scan_window, int addr_type, int discard_rule);
384
385         /* Disable batchscan */
386         bt_status_t (*batchscan_dis_batch_scan)(int client_if);
387
388         /* Read out batchscan reports */
389         bt_status_t (*batchscan_read_reports)(int client_if, int scan_mode);
390
391         /** Adds a connection info in list */
392         bt_status_t (*add_connection_info)(const bt_bdaddr_t *bd_addr, int conn_id, int server_inst_id);
393
394         /** Get data batching available packets */
395         bt_status_t (*get_data_batching_available_packets)(unsigned int *available_packets);
396
397         /** Enable data batching */
398         bt_status_t (*enable_data_batching)(const bt_bdaddr_t *bd_addr, int packet_threshold, int timeout);
399
400         /** Disable data batching */
401         bt_status_t (*disable_data_batching)(const bt_bdaddr_t *bd_addr);
402 } btgatt_client_interface_t;
403
404 __END_DECLS
405
406 #endif /* ANDROID_INCLUDE_BT_GATT_CLIENT_H */