added CA interface to monitoring network status for android ble.
[platform/upstream/iotivity.git] / resource / csdk / connectivity / util / src / cautilinterface.c
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 #include "camanagerleinterface.h"
22 #include "cautilinterface.h"
23
24 #include "cacommon.h"
25 #include "logger.h"
26
27 #define TAG "OIC_CA_UTIL_INF"
28
29 CAResult_t CARegisterNetworkMonitorHandler(CAAdapterStateChangedCB adapterStateCB,
30                                            CAConnectionStateChangedCB connStateCB)
31 {
32     OIC_LOG(DEBUG, TAG, "CARegisterNetworkMonitorHandler");
33
34 #ifdef LE_ADAPTER
35     CASetLENetworkMonitorCallbacks(adapterStateCB, connStateCB);
36     return CA_STATUS_OK;
37 #else
38     return CA_NOT_SUPPORTED;
39 #endif
40
41 }
42
43 CAResult_t CASetAutoConnectionDeviceInfo(const char *address)
44 {
45     OIC_LOG(DEBUG, TAG, "CASetAutoConnectionDeviceInfo");
46
47 #ifdef LE_ADAPTER
48     return CASetLEClientAutoConnectionDeviceInfo(address);
49 #else
50     return CA_NOT_SUPPORTED;
51 #endif
52 }
53
54 CAResult_t CAUnsetAutoConnectionDeviceInfo(const char *address)
55 {
56     OIC_LOG(DEBUG, TAG, "CAUnsetAutoConnectionDeviceInfo");
57
58 #ifdef LE_ADAPTER
59     return CAUnsetLEClientAutoConnectionDeviceInfo(address);
60 #else
61     return CA_NOT_SUPPORTED;
62 #endif
63 }
64
65 #ifdef __ANDROID__
66 /**
67  * initialize client connection manager
68  * @param[in]   env                   JNI interface pointer.
69  * @param[in]   jvm                   invocation inferface for JAVA virtual machine.
70  * @param[in]   context               application context.
71  */
72 CAResult_t CAUtilClientInitialize(JNIEnv *env, JavaVM *jvm, jobject context)
73 {
74     OIC_LOG(DEBUG, TAG, "CAUtilClientInitialize");
75 #ifdef LE_ADAPTER
76
77 #else
78     OIC_LOG(DEBUG, TAG, "it is not supported");
79     return CA_NOT_SUPPORTED;
80 #endif
81
82     return CA_STATUS_OK;
83 }
84
85 /**
86  * terminate client connection manager
87  * @param[in]   env                   JNI interface pointer.
88  */
89 CAResult_t CAUtilClientTerminate(JNIEnv *env)
90 {
91     OIC_LOG(DEBUG, TAG, "CAUtilClientTerminate");
92 #ifdef LE_ADAPTER
93
94 #else
95     OIC_LOG(DEBUG, TAG, "it is not supported");
96     return CA_NOT_SUPPORTED;
97 #endif
98
99     return CA_STATUS_OK;
100 }
101 #endif