cdd377bddcdf45427b662176110e5eeb37601960
[platform/upstream/iotivity.git] / resource / csdk / connectivity / api / cautilinterface.h
1 /* ****************************************************************
2  *
3  * Copyright 2016 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 #ifndef CA_UTILS_INTERFACE_H_
22 #define CA_UTILS_INTERFACE_H_
23
24 #include "cacommon.h"
25 #ifdef __ANDROID__
26 #include "jni.h"
27 #endif
28 #ifdef __cplusplus
29 extern "C"
30 {
31 #endif
32
33 /**
34  * Callback function type for connection status changes delivery.
35  */
36 typedef void (*CAConnectionStateChangedCB)(CATransportAdapter_t adapter,
37         const char *remote_address, bool connected);
38
39 /**
40  * Callback function type for adapter status changes delivery.
41  * @param[out]   adapter    Transport type information.
42  * @param[out]   enabled    Current adapter status info.
43  */
44 typedef void (*CAAdapterStateChangedCB)(CATransportAdapter_t adapter, bool enabled);
45
46 /**
47  * Register network monitoring callback.
48  * Network status changes are delivered these callback.
49  * @param[in]   adapterStateCB  Adapter state monitoring callback.
50  * @param[in]   connStateCB     Connection state monitoring callback.
51  *
52  * @return  ::CA_STATUS_OK or ::CA_STATUS_FAILED or ::CA_MEMORY_ALLOC_FAILED
53  */
54 CAResult_t CARegisterNetworkMonitorHandler(CAAdapterStateChangedCB adapterStateCB,
55                                            CAConnectionStateChangedCB connStateCB);
56
57 /**
58  * Set device to handle for auto connection.
59  * @param[in]   address         LE address to set.
60  *
61  * @return  ::CA_STATUS_OK or ::CA_STATUS_FAILED.
62  */
63 CAResult_t CASetAutoConnectionDeviceInfo(const char* address);
64
65 /**
66  * Unset device to handle for auto connection.
67  * @param[in]   address         LE address to unset.
68  *
69  * @return  ::CA_STATUS_OK or ::CA_STATUS_FAILED.
70  */
71 CAResult_t CAUnsetAutoConnectionDeviceInfo(const char* address);
72
73 #ifdef __ANDROID__
74 /**
75  * initialize util client for android
76  * @param[in]   env                   JNI interface pointer.
77  * @param[in]   jvm                   invocation inferface for JAVA virtual machine.
78  * @param[in]   context               application context.
79  *
80  * @return  ::CA_STATUS_OK or ::CA_STATUS_FAILED or ::CA_MEMORY_ALLOC_FAILED
81  */
82 CAResult_t CAUtilClientInitialize(JNIEnv *env, JavaVM *jvm, jobject context);
83
84 /**
85  * terminate util client for android
86  * @param[in]   env                   JNI interface pointer.
87  *
88  * @return  ::CA_STATUS_OK or ::CA_STATUS_FAILED or ::CA_MEMORY_ALLOC_FAILED
89  */
90 CAResult_t CAUtilClientTerminate(JNIEnv *env);
91
92 // BT pairing
93 /**
94  * start discovery for BT device which has iotivity UUID.
95  * @param[in]  env              JNI interface pointer.
96  */
97 CAResult_t CAUtilStartScan(JNIEnv *env);
98
99 /**
100  * stop discovery
101  * @param[in]  env              JNI interface pointer.
102  */
103 CAResult_t CAUtilStopScan(JNIEnv *env);
104
105 /**
106  * bonding between devices.
107  * @param[in]  env              JNI interface pointer.
108  * @param[in]  device           bluetooth device object.
109  */
110 CAResult_t CAUtilCreateBond(JNIEnv *env, jobject device);
111
112
113 /**
114  * set callback listener of found device.
115  * @param[in]  listener         callback listener
116  */
117 void CAUtilSetFoundDeviceListener(jobject listener);
118 #endif
119
120 #ifdef __cplusplus
121 } /* extern "C" */
122 #endif
123
124 #endif /* CA_UTILS_INTERFACE_H_ */
125