[IOT-931] Added send logic to check write/notify in BLE
[platform/upstream/iotivity.git] / resource / csdk / connectivity / src / bt_le_adapter / android / caleclient.h
1 /* ****************************************************************
2  *
3  * Copyright 2014 Samsung Electronics All Rights Reserved.
4  *
5  *
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  ******************************************************************/
20
21 /**
22  * @file
23  * This file contains the APIs for BT LE communications.
24  */
25 #ifndef CA_LECLIENT_H_
26 #define CA_LECLIENT_H_
27
28 #include "cacommon.h"
29 #include "cathreadpool.h"
30 #include "uarraylist.h"
31 #include "jni.h"
32
33 #ifdef __cplusplus
34 extern "C"
35 {
36 #endif
37
38 static const uint16_t STATE_CHARACTER_SET = 2;
39 static const uint16_t STATE_CHARACTER_UNSET = 1;
40 static const uint16_t STATE_CHARACTER_NO_CHANGE = 0;
41
42 static const uint16_t STATE_SEND_NONE = 0;
43 static const uint16_t STATE_SEND_SUCCESS = 1;
44 static const uint16_t STATE_SEND_FAILED = 2;
45
46 static const jint STATE_CONNECTED = 2;
47 static const jint STATE_DISCONNECTED = 0;
48
49 typedef struct le_state_info
50 {
51     char address[CA_MACADDR_SIZE];
52     jint connectedState;
53     uint16_t notificationState;
54     uint16_t sendState;
55 } CALEState_t;
56
57 /**
58  * Callback to be notified on reception of any data from remote devices.
59  * @param[in]  address                MAC address of remote device.
60  * @param[in]  data                   Data received from remote device.
61  * @pre  Callback must be registered using CALESetCallback(CAPacketReceiveCallback callback)
62  */
63 typedef void (*CAPacketReceiveCallback)(const char *address, const uint8_t *data);
64
65 /**
66  * initialize JNI object.
67  */
68 void CALEClientJniInit();
69
70 /**
71  * set context of application.
72  */
73 void CALEClientJNISetContext();
74
75 /**
76  * create interface object and initialize the object.
77  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
78  */
79 CAResult_t CALEClientCreateJniInterfaceObject();
80
81 /**
82  * initialize client for BLE.
83  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
84  */
85 CAResult_t CALEClientInitialize();
86
87 /**
88  * terminate client for BLE.
89  */
90 void CALEClientTerminate();
91
92 /**
93  * destroy interface object and terminate the interface.
94  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
95  */
96 CAResult_t CALEClientDestroyJniInterface();
97
98 /**
99  * for destroy sending routine.
100  * @param[in]   env                   JNI interface pointer.
101  * @param[in]   gatt                  Gatt profile object.
102  */
103 void CALEClientSendFinish(JNIEnv *env, jobject gatt);
104
105 /**
106  * send data for unicast (interface).
107  * @param[in]   address               remote address.
108  * @param[in]   data                  data for transmission.
109  * @param[in]   dataLen               data length.
110  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
111  */
112 CAResult_t CALEClientSendUnicastMessage(const char *address, const uint8_t *data,
113                                         const uint32_t dataLen);
114
115 /**
116  * send data for multicast (interface).
117  * @param[in]   data                  data for transmission.
118  * @param[in]   dataLen               data length.
119  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
120  */
121 CAResult_t CALEClientSendMulticastMessage(const uint8_t *data, const uint32_t dataLen);
122
123 /**
124  * start unicast server.
125  * @param[in]   address               remote address.
126  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
127  */
128 CAResult_t CALEClientStartUnicastServer(const char *address);
129
130 /**
131  * start multicast server (start discovery).
132  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
133  */
134 CAResult_t CALEClientStartMulticastServer();
135
136 /**
137  * stop unicast server.
138  */
139 void CALEClientStopUnicastServer();
140
141 /**
142  * stop multicast server (stop discovery).
143  */
144 void CALEClientStopMulticastServer();
145
146 /**
147  * set this callback for receiving data packets from peer devices.
148  * @param[in]   callback              callback to be notified on reception of
149  *                                    unicast/multicast data packets.
150  */
151 void CALEClientSetCallback(CAPacketReceiveCallback callback);
152
153 /**
154  * send data for unicast (implement).
155  * @param[in]   address               remote address.
156  * @param[in]   data                  data for transmission.
157  * @param[in]   dataLen               data length.
158  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
159  */
160 CAResult_t CALEClientSendUnicastMessageImpl(const char *address, const uint8_t *data,
161                                             const uint32_t dataLen);
162
163 /**
164  * send data for multicast (implement).
165  * @param[in]   env                   JNI interface pointer.
166  * @param[in]   data                  data for transmission.
167  * @param[in]   dataLen               data length.
168  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
169  */
170 CAResult_t CALEClientSendMulticastMessageImpl(JNIEnv *env, const uint8_t *data,
171                                               const uint32_t dataLen);
172
173 /**
174  * check whether it is connected or not with remote address.
175  * @param[in]   address               remote address.
176  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
177  */
178 CAResult_t CALECheckSendState(const char* address);
179
180 /**
181  * send data to remote device.
182  * if it isn't connected yet. connect LE before try to send data.
183  * @param[in]   env                   JNI interface pointer.
184  * @param[in]   device                bluetooth device object.
185  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
186  */
187 CAResult_t CALEClientSendData(JNIEnv *env, jobject device);
188
189 /**
190  * get address from bluetooth gatt object.
191  * @param[in]   env                   JNI interface pointer.
192  * @param[in]   gatt                  Gatt profile object.
193  * @return  bluetooth address.
194  */
195 jstring CALEClientGetAddressFromGattObj(JNIEnv *env, jobject gatt);
196
197 /**
198  * get remote address from bluetooth socket object.
199  * @param[in]   env                   JNI interface pointer.
200  * @param[in]   bluetoothSocketObj    bluetooth socket.
201  * @return  bluetooth address.
202  */
203 jstring CALEClientGetRemoteAddress(JNIEnv *env, jobject bluetoothSocketObj);
204
205 /**
206  * close gatt.
207  * @param[in]   env                   JNI interface pointer.
208  * @param[in]   bluetoothGatt         gatt profile object.
209  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
210  */
211 CAResult_t CALEClientGattClose(JNIEnv *env, jobject bluetoothGatt);
212
213 /**
214  * start to scan whole bluetooth devices (interface).
215  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
216  */
217 CAResult_t CALEClientStartScan();
218
219 /**
220  * start to scan whole bluetooth devices (implement).
221  * @param[in]   env                   JNI interface pointer.
222  * @param[in]   callback              callback to receive device object by scanning.
223  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
224  */
225 CAResult_t CALEClientStartScanImpl(JNIEnv *env, jobject callback);
226
227 /**
228  * start to scan target bluetooth devices for service uuid (implement).
229  * @param[in]   env                   JNI interface pointer.
230  * @param[in]   uuids                 target UUID.
231  * @param[in]   callback              callback to receive device object by scanning.
232  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
233  */
234 CAResult_t CALEClientStartScanWithUUIDImpl(JNIEnv *env, jobjectArray uuids,
235                                            jobject callback);
236
237 /**
238  * get uuid object.
239  * @param[in]   env                   JNI interface pointer.
240  * @param[in]   uuid                  uuid.
241  * @return  uuid object.
242  */
243 jobject CALEClientGetUUIDObject(JNIEnv *env, const char *uuid);
244
245 /**
246  * stop scan (interface).
247  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
248  */
249 CAResult_t CALEClientStopScan();
250
251 /**
252  * set ble scanning flag.
253  * @param[in]   flag        scan flag.
254  */
255 void CALEClientSetScanFlag(bool flag);
256
257 /**
258  * stop scan (implement).
259  * @param[in]   env                   JNI interface pointer.
260  * @param[in]   callback              callback to receive device object by scanning.
261  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
262  */
263 CAResult_t CALEClientStopScanImpl(JNIEnv *env, jobject callback);
264
265 /**
266  * connect to gatt server hosted.
267  * @param[in]   env                   JNI interface pointer.
268  * @param[in]   bluetoothDevice       bluetooth Device object.
269  * @param[in]   autoconnect           whether to directly connect to the remote device(false) or
270  *                                     to automatically connect as soon as the remote device
271  *                                     becomes available.
272  * @param[in]   callback              callback for connection state change.
273  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
274  */
275 CAResult_t CALEClientConnect(JNIEnv *env, jobject bluetoothDevice, jboolean autoconnect,
276                              jobject callback);
277
278 /**
279  * disconnect to gatt server by a target device.
280  * @param[in]   env                   JNI interface pointer.
281  * @param[in]   bluetoothGatt         Gatt profile object.
282  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
283  */
284 CAResult_t CALEClientDisconnect(JNIEnv *env, jobject bluetoothGatt);
285
286 /**
287  * disconnect to gatt server by whole devices.
288  * @param[in]   env                   JNI interface pointer.
289  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
290  */
291 CAResult_t CALEClientDisconnectAll(JNIEnv *env);
292
293 /**
294  * start discovery server.
295  * @param[in]   env                   JNI interface pointer.
296  * @param[in]   bluetoothGatt         Gatt profile object.
297  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
298  */
299 CAResult_t CALEClientDiscoverServices(JNIEnv *env, jobject bluetoothGatt);
300
301 /**
302  * call CALESetValueAndWriteCharacteristic when connection is successful.
303  * @param[in]   env                   JNI interface pointer.
304  * @param[in]   gatt                  Gatt profile object.
305  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
306  */
307 CAResult_t CALEClientWriteCharacteristic(JNIEnv *env, jobject gatt);
308
309 /**
310  * create GattCharacteristic and call CALEClientWriteCharacteristicImpl
311  * for request to write gatt characteristic.
312  * @param[in]   env                   JNI interface pointer.
313  * @param[in]   gatt                  Gatt profile object.
314  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
315  */
316 CAResult_t CALESetValueAndWriteCharacteristic(JNIEnv *env, jobject gatt);
317
318 /**
319  * request to write gatt characteristic.
320  * @param[in]   env                   JNI interface pointer.
321  * @param[in]   bluetoothGatt         Gatt profile object.
322  * @param[in]   gattCharacteristic    characteristic object that contain data to send.
323  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
324  */
325 CAResult_t CALEClientWriteCharacteristicImpl(JNIEnv *env, jobject bluetoothGatt,
326                                              jobject gattCharacteristic);
327
328 /**
329  * request to read gatt characteristic.
330  * @param[in]   env                   JNI interface pointer.
331  * @param[in]   bluetoothGatt         Gatt profile object.
332  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
333  */
334 CAResult_t CALEClientReadCharacteristic(JNIEnv *env, jobject bluetoothGatt);
335
336 /**
337  * enable notification for a target device.
338  * @param[in]   env                   JNI interface pointer.
339  * @param[in]   bluetoothGatt         Gatt profile object.
340  * @param[in]   characteristic        Characteristic object.
341  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
342  */
343 CAResult_t CALEClientSetCharacteristicNotification(JNIEnv *env, jobject bluetoothGatt,
344                                                   jobject characteristic);
345
346 /**
347  * create gatt characteristic object.
348  * @param[in]   env                   JNI interface pointer.
349  * @param[in]   bluetoothGatt         Gatt profile object.
350  * @param[in]   data                  for make Characteristic with data.
351  * @return  Gatt Characteristic object.
352  */
353 jobject CALEClientCreateGattCharacteristic(JNIEnv *env, jobject bluetoothGatt, jbyteArray data);
354
355 /**
356  * get gatt service.
357  * @param[in]   env                   JNI interface pointer.
358  * @param[in]   bluetoothGatt         Gatt profile object.
359  * @param[in]   characterUUID         for make BluetoothGattCharacteristic object.
360  * @return  Gatt Service.
361  */
362 jobject CALEClientGetGattService(JNIEnv *env, jobject bluetoothGatt, jstring characterUUID);
363
364 /**
365  * get value from characteristic.
366  * @param[in]   env                   JNI interface pointer.
367  * @param[in]   characteristic        Characteristic object.
368  * @return  value in characteristic.
369  */
370 jbyteArray CALEClientGetValueFromCharacteristic(JNIEnv *env, jobject characteristic);
371
372 /**
373  * create UUID List.
374  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
375  */
376 CAResult_t CALEClientCreateUUIDList();
377
378 /**
379  * set UUID to descriptor.
380  * @param[in]   env                   JNI interface pointer.
381  * @param[in]   bluetoothGatt         Gatt profile object.
382  * @param[in]   characteristic        Characteristic object.
383  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
384  */
385 CAResult_t CALEClientSetUUIDToDescriptor(JNIEnv *env, jobject bluetoothGatt,
386                                          jobject characteristic);
387
388 /**
389  * add device object to scan device list.
390  * @param[in]   env                   JNI interface pointer.
391  * @param[in]   device                bluetooth device object.
392  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
393  */
394 CAResult_t CALEClientAddScanDeviceToList(JNIEnv *env, jobject device);
395
396 /**
397  * check whether the device exist in list or not.
398  * @param[in]   env                   JNI interface pointer.
399  * @param[in]   remoteAddress         remote address.
400  * @return  true or false.
401  */
402 bool CALEClientIsDeviceInScanDeviceList(JNIEnv *env, const char *remoteAddress);
403
404 /**
405  * remove all devices in scan device list.
406  * @param[in]   env                   JNI interface pointer.
407  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
408  */
409 CAResult_t CALEClientRemoveAllScanDevices(JNIEnv *env);
410
411 /**
412  * remove target device in scan device list.
413  * @param[in]   env                   JNI interface pointer.
414  * @param[in]   remoteAddress         remote address.
415  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
416  */
417 CAResult_t CALEClientRemoveDeviceInScanDeviceList(JNIEnv *env, jstring remoteAddress);
418
419 /**
420  * add gatt object to gatt object list.
421  * @param[in]   env                   JNI interface pointer.
422  * @param[in]   gatt                  Gatt profile object.
423  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
424  */
425 CAResult_t CALEClientAddGattobjToList(JNIEnv *env, jobject gatt);
426
427 /**
428  * check whether the gatt object exist in list or not.
429  * @param[in]   env                   JNI interface pointer.
430  * @param[in]   remoteAddress         remote address.
431  * @return  true or false.
432  */
433 bool CALEClientIsGattObjInList(JNIEnv *env, const char *remoteAddress);
434
435 /**
436  * get the gatt object.
437  * @param[in]   env                   JNI interface pointer.
438  * @param[in]   remoteAddress         remote address.
439  * @return  gatt object.
440  */
441 jobject CALEClientGetGattObjInList(JNIEnv *env, const char* remoteAddress);
442
443 /**
444  * remove all gatt objects in gatt object list.
445  * @param[in]   env                   JNI interface pointer.
446  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
447  */
448 CAResult_t CALEClientRemoveAllGattObjs(JNIEnv *env);
449
450 /**
451  * remove target device in gatt object list.
452  * @param[in]   env                   JNI interface pointer.
453  * @param[in]   gatt                  Gatt profile object.
454  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
455  */
456 CAResult_t CALEClientRemoveGattObj(JNIEnv *env, jobject gatt);
457
458 /**
459  * remove gatt object of target device for address in gatt object list.
460  * @param[in]   env                   JNI interface pointer.
461  * @param[in]   gatt                  Gatt profile object.
462  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
463  */
464 CAResult_t CALEClientRemoveGattObjForAddr(JNIEnv *env, jstring addr);
465
466 /**
467  * update new state information.
468  * @param[in]   address               remote address.
469  * @param[in]   connectedState        connection state.
470  * @param[in]   notificationState     whether characteristic notification already set or not.
471  * @param[in]   sendState             whether sending was success or not.
472  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
473  */
474 CAResult_t CALEClientUpdateDeviceState(const char* address, uint32_t connectedState,
475                                        uint16_t notificationState, uint16_t sendState);
476
477 /**
478  * add new state to state list.
479  * @param[in]   state                 new state.
480  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
481  */
482 CAResult_t CALEClientAddDeviceStateToList(CALEState_t* state);
483
484 /**
485  * check whether the remote address is existed or not.
486  * @param[in]   address               remote address.
487  * @return  true or false.
488  */
489 bool CALEClientIsDeviceInList(const char *remoteAddress);
490
491 /**
492  * remove all device states.
493  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
494  */
495 CAResult_t CALEClientRemoveAllDeviceState();
496
497 /**
498  * remove the device state for a remote device.
499  * @param[in]   remoteAddress         remote address.
500  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
501  */
502 CAResult_t CALEClientRemoveDeviceState(const char* remoteAddress);
503
504 /**
505  * get state information for a remote device.
506  * @param[in]   remoteAddress         remote address.
507  * @return  CALEState_t.
508  */
509 CALEState_t* CALEClientGetStateInfo(const char* remoteAddress);
510
511 /**
512  * check whether the remote address is connected or not.
513  * @param[in]   remoteAddress         remote address.
514  * @return  true or false.
515  */
516 bool CALEClientIsConnectedDevice(const char* remoteAddress);
517
518 /**
519  * check whether the remote address set CharacteristicNotification or not.
520  * @param[in]   remoteAddress         remote address.
521  * @return  true or false.
522  */
523 bool CALEClientIsSetCharacteristic(const char* remoteAddress);
524
525 /**
526  * create scan device list.
527  */
528 void CALEClientCreateDeviceList();
529
530 /**
531  * update the counter which data is sent to remote device.
532  * @param[in]   env                   JNI interface pointer.
533  */
534 void CALEClientUpdateSendCnt(JNIEnv *env);
535
536 /**
537  * initialize mutex.
538  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
539  */
540 CAResult_t CALEClientInitGattMutexVaraibles();
541
542 /**
543  * terminate mutex.
544  */
545 void CALEClientTerminateGattMutexVariables();
546
547 /**
548  * set send finish flag.
549  * @param[in]   flag        finish flag.
550  */
551 void CALEClientSetSendFinishFlag(bool flag);
552
553 #ifdef __cplusplus
554 } /* extern "C" */
555 #endif
556
557 #endif /* CA_LECLIENT_H_ */