[IOT-1089] Change Android build system to accomodate both Android and Generic Java...
[contrib/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 __JAVA__
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 __JAVA__
74 #ifdef __ANDROID__
75 /**
76  * initialize util client for android
77  * @param[in]   env                   JNI interface pointer.
78  * @param[in]   jvm                   invocation inferface for JAVA virtual machine.
79  * @param[in]   context               application context.
80  *
81  * @return  ::CA_STATUS_OK or ::CA_STATUS_FAILED or ::CA_MEMORY_ALLOC_FAILED
82  */
83 CAResult_t CAUtilClientInitialize(JNIEnv *env, JavaVM *jvm, jobject context);
84 #else
85 /**
86  * initialize util client for android
87  * @param[in]   env                   JNI interface pointer.
88  * @param[in]   jvm                   invocation inferface for JAVA virtual machine.
89  *
90  * @return  ::CA_STATUS_OK or ::CA_STATUS_FAILED or ::CA_MEMORY_ALLOC_FAILED
91  */
92 CAResult_t CAUtilClientInitialize(JNIEnv *env, JavaVM *jvm);
93 #endif
94
95 /**
96  * terminate util client for android
97  * @param[in]   env                   JNI interface pointer.
98  *
99  * @return  ::CA_STATUS_OK or ::CA_STATUS_FAILED or ::CA_MEMORY_ALLOC_FAILED
100  */
101 CAResult_t CAUtilClientTerminate(JNIEnv *env);
102
103 // BT pairing
104 /**
105  * start discovery for BT device which has iotivity UUID.
106  * @param[in]  env              JNI interface pointer.
107  */
108 CAResult_t CAUtilStartScan(JNIEnv *env);
109
110 /**
111  * stop discovery
112  * @param[in]  env              JNI interface pointer.
113  */
114 CAResult_t CAUtilStopScan(JNIEnv *env);
115
116 /**
117  * bonding between devices.
118  * @param[in]  env              JNI interface pointer.
119  * @param[in]  device           bluetooth device object.
120  */
121 CAResult_t CAUtilCreateBond(JNIEnv *env, jobject device);
122
123 /**
124  * set callback listener of found device.
125  * @param[in]  listener         callback listener
126  */
127 void CAUtilSetFoundDeviceListener(jobject listener);
128 #endif
129
130 #ifdef __cplusplus
131 } /* extern "C" */
132 #endif
133
134 #endif /* CA_UTILS_INTERFACE_H_ */
135