1 /* ****************************************************************
3 * Copyright 2016 Samsung Electronics All Rights Reserved.
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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.
19 ******************************************************************/
21 #ifndef CA_UTILS_INTERFACE_H_
22 #define CA_UTILS_INTERFACE_H_
34 * this level depends on transmission time.
35 * unicast based UDP will be checked by caretransmission.
45 /** address for all **/
46 char addr[MAX_ADDR_STR_SIZE_CA];
48 /** adapter priority of all transmissions. **/
49 CATransportAdapter_t adapter;
51 /** level about speed of response. **/
56 * CAUtilConfig_t structure.
60 CATransportBTFlags_t bleFlags;
61 CMConfigureInfo_t cmInfo;
65 * Callback function type for connection status changes delivery.
66 * @param[out] info Remote endpoint information.
67 * @param[out] isConnected Current connection status info.
69 typedef void (*CAConnectionStateChangedCB)(const CAEndpoint_t *info, bool isConnected);
72 * Callback function type for adapter status changes delivery.
73 * @param[out] adapter Transport type information.
74 * @param[out] enabled Current adapter status info.
76 typedef void (*CAAdapterStateChangedCB)(CATransportAdapter_t adapter, bool enabled);
79 * Register network monitoring callback.
80 * Network status changes are delivered these callback.
81 * @param[in] adapterStateCB Adapter state monitoring callback.
82 * @param[in] connStateCB Connection state monitoring callback.
84 * @return ::CA_STATUS_OK or ::CA_STATUS_FAILED or ::CA_MEMORY_ALLOC_FAILED
86 CAResult_t CARegisterNetworkMonitorHandler(CAAdapterStateChangedCB adapterStateCB,
87 CAConnectionStateChangedCB connStateCB);
90 * Unregister network monitoring callback.
91 * @param[in] adapterStateCB Adapter state monitoring callback.
92 * @param[in] connStateCB Connection state monitoring callback.
94 * @return ::CA_STATUS_OK or ::CA_STATUS_FAILED or ::CA_MEMORY_ALLOC_FAILED
96 CAResult_t CAUnregisterNetworkMonitorHandler(CAAdapterStateChangedCB adapterStateCB,
97 CAConnectionStateChangedCB connStateCB);
100 * Set device to handle for auto connection.
101 * @param[in] address LE address to set.
103 * @return ::CA_STATUS_OK or ::CA_STATUS_FAILED.
105 CAResult_t CASetAutoConnectionDeviceInfo(const char* address);
108 * Unset device to handle for auto connection.
109 * @param[in] address LE address to unset.
111 * @return ::CA_STATUS_OK or ::CA_STATUS_FAILED.
113 CAResult_t CAUnsetAutoConnectionDeviceInfo(const char* address);
116 * Set the port number to assign .
117 * @param[in] adapter Transport adapter information.
118 * @param[in] flag Transport flag information.
119 * @param[in] port The port number to use.
121 * @return ::CA_STATUS_OK or ::CA_STATUS_FAILED.
123 CAResult_t CASetPortNumberToAssign(CATransportAdapter_t adapter,
124 CATransportFlags_t flag, uint16_t port);
127 * Get the assigned port number currently.
128 * @param[in] adapter Transport adapter information.
129 * @param[in] flag Transport flag information.
131 * @return assigned port number information.
133 uint16_t CAGetAssignedPortNumber(CATransportAdapter_t adapter, CATransportFlags_t flag);
135 //custom advertisement data setting
136 #if defined(__TIZEN__) && defined(LE_ADAPTER) && defined(BLE_CUSTOM_ADVERTISE)
137 CAResult_t CASetAdvertisementData(const char* data, int length);
138 CAResult_t CASetScanResponseData(const char* data, int length);
143 * initialize client connection manager
145 CAResult_t CAUtilClientInitialize();
148 * terminate client connection manager
150 CAResult_t CAUtilClientTerminate();
154 * @return ::CA_STATUS_OK or ::CA_NOT_SUPPORTED
156 CAResult_t CAUtilStopLEScan();
160 * @return ::CA_STATUS_OK or ::CA_NOT_SUPPORTED
162 CAResult_t CAUtilStartLEScan();
166 * @return ::CA_STATUS_OK or ::CA_NOT_SUPPORTED
168 CAResult_t CAUtilClientDisconnect();
173 * initialize util client for android
174 * @param[in] env JNI interface pointer.
175 * @param[in] jvm invocation inferface for JAVA virtual machine.
176 * @param[in] context application context.
178 * @return ::CA_STATUS_OK or ::CA_STATUS_FAILED or ::CA_MEMORY_ALLOC_FAILED
180 CAResult_t CAUtilClientInitialize(JNIEnv *env, JavaVM *jvm, jobject context);
183 * terminate util client for android
184 * @param[in] env JNI interface pointer.
186 * @return ::CA_STATUS_OK or ::CA_STATUS_FAILED or ::CA_MEMORY_ALLOC_FAILED
188 CAResult_t CAUtilClientTerminate(JNIEnv *env);
192 * start discovery for BT device which has iotivity UUID.
193 * @param[in] env JNI interface pointer.
195 CAResult_t CAUtilStartScan(JNIEnv *env);
199 * @param[in] env JNI interface pointer.
201 CAResult_t CAUtilStopScan(JNIEnv *env);
204 * bonding between devices.
205 * @param[in] env JNI interface pointer.
206 * @param[in] device bluetooth device object.
208 CAResult_t CAUtilCreateBond(JNIEnv *env, jobject device);
212 * set callback listener of found device.
213 * @param[in] listener callback listener
215 void CAUtilSetFoundDeviceListener(jobject listener);
218 * set interval time and working count for LE scan.
219 * @param[in] intervalTime interval time(Seconds).
220 * @param[in] workingCount working cycle for selected interval time.
222 * @return ::CA_STATUS_OK or ::CA_NOT_SUPPORTED
224 CAResult_t CAUtilSetLEScanInterval(jint intervalTime, jint workingCount);
229 * @return ::CA_STATUS_OK or ::CA_NOT_SUPPORTED
231 CAResult_t CAUtilStopLEScan();
236 * start BLE advertising.
237 * @return ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
239 CAResult_t CAUtilStartLEAdvertising();
242 * stop BLE advertising.
243 * @return ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
245 CAResult_t CAUtilStopLEAdvertising();
248 * set CAUtil BT configure.
249 * @param[in] config ::CAUtilConfig_t value
250 * @return ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
252 CAResult_t CAUtilSetBTConfigure(CAUtilConfig_t config);
255 * set CAUtil log preference.
256 * @param[in] level ::CAUtilLogLevel_t value
257 * @param[in] hidePrivateLogEntries Private Log Entries.
259 * true : hide private log.
260 * false : show private log.
261 * (privacy : uid, did, access token, etc)
263 void CAUtilSetLogLevel(CAUtilLogLevel_t level, bool hidePrivateLogEntries);
266 * Set multicast time to live value to control the scope of the multicasts.
267 * @param[in] ttl To be set to any value from 0 to 255.
269 * 0: Are restricted to the same host.
270 * 1: Are restricted to the same subnet.
271 * 32: Are restricted to the same site.
272 * 64: Are restricted to the same region.
273 * 128: Are restricted to the same continent.
274 * 255: Are unrestricted in scope.
275 * We cannot support region, continent and unrestricted in scope.
277 * @return ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
279 CAResult_t CAUtilSetMulticastTTL(size_t ttl);
282 * Get multicast time to live value.
283 * @param[out] ttl TTL pointer to get the stored multicast time to live.
285 * @return ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
287 CAResult_t CAUtilGetMulticastTTL(size_t *ttl);
290 * Disconnect TCP session.
291 * When there is no transmission for a long time.
292 * Some carrier Vendor is blocking data.
293 * Thur, TCP Session is cleaned through this function.
294 * @param[in] address Address.
295 * @param[in] port Port.
296 * @param[in] flags Transport flag.
298 CAResult_t CAUtilTCPDisconnectSession(const char *address,
300 CATransportFlags_t flags);
302 CAResult_t CAUtilStartGattServer();
303 CAResult_t CAUtilStopGattServer();
309 #endif /* CA_UTILS_INTERFACE_H_ */