Imported Upstream version 1.1.0
[platform/upstream/iotivity.git] / resource / csdk / connectivity / inc / camessagehandler.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 message functionality.
24  */
25
26 #ifndef CA_MESSAGE_HANDLER_H_
27 #define CA_MESSAGE_HANDLER_H_
28
29 #include "cacommon.h"
30 #include "coap.h"
31
32 #define CA_MEMORY_ALLOC_CHECK(arg) { if (NULL == arg) {OIC_LOG(ERROR, TAG, "Out of memory"); \
33 goto memory_error_exit;} }
34
35 typedef enum
36 {
37     SEND_TYPE_MULTICAST = 0,
38     SEND_TYPE_UNICAST
39 } CASendDataType_t;
40
41 typedef enum
42 {
43     CA_REQUEST_DATA = 1,
44     CA_RESPONSE_DATA = 2,
45     CA_ERROR_DATA = 3,
46 } CADataType_t;
47
48 typedef struct
49 {
50     CASendDataType_t type;
51     CAEndpoint_t *remoteEndpoint;
52     CARequestInfo_t *requestInfo;
53     CAResponseInfo_t *responseInfo;
54     CAErrorInfo_t *errorInfo;
55     CADataType_t dataType;
56 } CAData_t;
57
58 #ifdef __cplusplus
59 extern "C"
60 {
61 #endif
62
63 /**
64  * Detaches control from the caller for sending message.
65  * @param[in] endpoint    endpoint information where the data has to be sent.
66  * @param[in] sendMsg     message that needs to be sent.
67  * @param[in] dataType    type of the message(request/response).
68  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
69  */
70 CAResult_t CADetachSendMessage(const CAEndpoint_t *endpoint,
71                                const void *sendMsg,
72                                CADataType_t dataType);
73
74 /**
75  * Setting the request and response callbacks for network packets.
76  * @param[in] ReqHandler      callback for receiving the requests.
77  * @param[in] RespHandler     callback for receiving the response.
78  * @param[in] ErrorHandler    callback for receiving error response.
79  */
80 void CASetInterfaceCallbacks(CARequestCallback ReqHandler, CAResponseCallback RespHandler,
81                              CAErrorCallback ErrorHandler);
82
83 /**
84  * Initialize the message handler by starting thread pool and initializing the
85  * send and receive queue.
86  * @return  ::CA_STATUS_OK or ERROR CODES (::CAResult_t error codes in cacommon.h).
87  */
88 CAResult_t CAInitializeMessageHandler();
89
90 /**
91  * Terminate the message handler by stopping  the thread pool and destroying the queues.
92  */
93 void CATerminateMessageHandler();
94
95 /**
96  * Handler for receiving request and response callback in single thread model.
97  */
98 void CAHandleRequestResponseCallbacks();
99
100 /**
101  * Setting the Callback funtion for network state change callback.
102  * @param[in] nwMonitorHandler    callback for network state change.
103  */
104 void CASetNetworkMonitorCallback(CANetworkMonitorCallback nwMonitorHandler);
105
106 /**
107  * To log the PDU data.
108  * @param[in] pdu    pdu data.
109  * @param[in] endpoint  endpoint
110  */
111 void CALogPDUInfo(coap_pdu_t *pdu, const CAEndpoint_t *endpoint);
112
113 #ifdef WITH_BWT
114 /**
115  * Add the data to the send queue thread.
116  * @param[in] data    send data.
117  */
118 void CAAddDataToSendThread(CAData_t *data);
119
120 /**
121  * Add the data to the receive queue thread to notify received data.
122  * @param[in] data    received data.
123  */
124 void CAAddDataToReceiveThread(CAData_t *data);
125 #endif
126
127 #ifdef __cplusplus
128 } /* extern "C" */
129 #endif
130
131 #endif /* CA_MESSAGE_HANDLER_H_ */