[Simulator] Minor UI changes fixing the IOT-1087.
[platform/upstream/iotivity.git] / resource / csdk / connectivity / src / bt_edr_adapter / android / caedrserver.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 EDR communications.
24  */
25 #ifndef CA_EDR_SERVER_H_
26 #define CA_EDR_SERVER_H_
27
28 #include <stdbool.h>
29
30 #include "cacommon.h"
31 #include "cathreadpool.h"
32 #include "jni.h"
33
34 #ifdef __cplusplus
35 extern "C"
36 {
37 #endif
38
39 typedef void (*CAPacketReceiveCallback)(const char *address, const char *data);
40
41 /**
42  * Initialize JNI object.
43  */
44 void CAEDRServerJniInit();
45
46 /**
47  * Start Accept Thread.
48  * @return ::CA_STATUS_OK or Appropriate error code.
49  */
50 CAResult_t CAEDRServerStartAcceptThread();
51
52 /**
53  * Start receive thread.
54  * @param[in]   isSecured       unicast server type.
55  * @return ::CA_STATUS_OK or Appropriate error code.
56  */
57 CAResult_t CAEDRStartReceiveThread(bool isSecured);
58
59 /**
60  * Stop receive thread.
61  * @return ::CA_STATUS_OK or Appropriate error code.
62  */
63 CAResult_t CAEDRStopReceiveThread();
64
65 /**
66  * This function will read the data from remote device.
67  * @param[in]  env              JNI interface pointer.
68  * @param[in]  id               index of remote address.
69  * @return ::CA_STATUS_OK or Appropriate error code.
70  */
71 CAResult_t CAEDRNativeReadData(JNIEnv *env, uint32_t id);
72
73 /**
74  * Start Listen Task.
75  * @param[in]   env             JNI interface pointer.
76  */
77 void CANativeStartListenTask(JNIEnv *env);
78
79 /**
80  * This function will listen the connection from remote device.
81  * @param[in]  env              JNI interface pointer.
82  * @return server socket object or NULL.
83  */
84 jobject CAEDRNativeListen(JNIEnv *env);
85
86 /**
87  * This function will listen the connection from remote device.
88  * @param[in]  env              JNI interface pointer.
89  * @param[in]  socket           server socket object.
90  * @return JNI_TRUE or JNI_FALSE.
91  */
92 jboolean CAEDRIsConnectedForSocket(JNIEnv *env, jobject socket);
93
94 /**
95  * This function will accept the connection from remote device.
96  * @param[in]  env                  JNI interface pointer.
97  * @param[in]  severSocketObject    server socket object.
98  */
99 void CAEDRNativeAccept(JNIEnv *env, jobject severSocketObject);
100
101 /**
102  * Remove all device objects in the list.
103  * @param[in]   env    JNI interface pointer.
104  */
105 void CAEDRNatvieCloseServerTask(JNIEnv* env);
106
107 #ifdef __cplusplus
108 } /* extern "C" */
109 #endif
110
111 #endif /* CA_EDR_SERVER_H_ */