[IOT-1209] Fix provisioningclient for Windows
[platform/upstream/iotivity.git] / resource / csdk / stack / include / ocpayload.h
1 //******************************************************************
2 //
3 // Copyright 2015 Intel Mobile Communications GmbH 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 OCPAYLOAD_H_
22 #define OCPAYLOAD_H_
23
24 #ifndef __STDC_FORMAT_MACROS
25 #define __STDC_FORMAT_MACROS
26 #endif
27 #ifndef __STDC_LIMIT_MACROS
28 #define __STDC_LIMIT_MACROS
29 #endif
30 #include <stdbool.h>
31 #include <inttypes.h>
32 #include "octypes.h"
33
34 #ifdef __cplusplus
35 extern "C"
36 {
37 #endif
38
39 /**
40  * Macro to verify the validity of cbor operation.
41  */
42 #define VERIFY_CBOR_SUCCESS(log_tag, err, log_message) \
43     if ((CborNoError != (err)) && (CborErrorOutOfMemory != (err))) \
44     { \
45         if ((log_tag) && (log_message)) \
46         { \
47             OIC_LOG_V(ERROR, (log_tag), "%s with cbor error: \'%s\'.", \
48                     (log_message), (cbor_error_string(err))); \
49         } \
50         goto exit; \
51     } \
52
53 #define VERIFY_PARAM_NON_NULL(log_tag, err, log_message) \
54     if (NULL == (err)) \
55     { \
56         OIC_LOG_V(FATAL, (log_tag), "%s", (log_message)); \
57         goto exit;\
58     } \
59
60
61 typedef struct OCResource OCResource;
62
63 void OCPayloadDestroy(OCPayload* payload);
64
65 // Representation Payload
66 OCRepPayload* OCRepPayloadCreate();
67
68 size_t calcDimTotal(const size_t dimensions[MAX_REP_ARRAY_DEPTH]);
69
70 OCRepPayload* OCRepPayloadClone(const OCRepPayload* payload);
71
72 void OCRepPayloadAppend(OCRepPayload* parent, OCRepPayload* child);
73
74 bool OCRepPayloadSetUri(OCRepPayload* payload, const char* uri);
75
76 bool OCRepPayloadAddResourceType(OCRepPayload* payload, const char* resourceType);
77 bool OCRepPayloadAddInterface(OCRepPayload* payload, const char* iface);
78 bool OCRepPayloadAddModelVersion(OCRepPayload* payload, const char* dmv);
79
80 bool OCRepPayloadAddResourceTypeAsOwner(OCRepPayload* payload, char* resourceType);
81 bool OCRepPayloadAddInterfaceAsOwner(OCRepPayload* payload, char* iface);
82
83 bool OCRepPayloadIsNull(const OCRepPayload* payload, const char* name);
84 bool OCRepPayloadSetNull(OCRepPayload* payload, const char* name);
85
86 bool OCRepPayloadSetPropInt(OCRepPayload* payload, const char* name, int64_t value);
87 bool OCRepPayloadGetPropInt(const OCRepPayload* payload, const char* name, int64_t* value);
88
89 bool OCRepPayloadSetPropDouble(OCRepPayload* payload, const char* name, double value);
90 bool OCRepPayloadGetPropDouble(const OCRepPayload* payload, const char* name, double* value);
91
92 /**
93  * This function allocates memory for the byte string and sets it in the payload.
94  *
95  * @param payload      Pointer to the payload to which byte string needs to be added.
96  * @param name         Name of the byte string.
97  * @param value        Byte string and it's length.
98  *
99  * @return true on success, false upon failure.
100  */
101 bool OCRepPayloadSetPropByteString(OCRepPayload* payload, const char* name, OCByteString value);
102
103 /**
104  * This function sets the byte string in the payload.
105  *
106  * @param payload      Pointer to the payload to which byte string needs to be added.
107  * @param name         Name of the byte string.
108  * @param value        Byte string and it's length.
109  *
110  * @return true on success, false upon failure.
111  */
112 bool OCRepPayloadSetPropByteStringAsOwner(OCRepPayload* payload, const char* name,
113         OCByteString* value);
114
115 /**
116  * This function gets the byte string from the payload.
117  *
118  * @param payload      Pointer to the payload from which byte string needs to be retrieved.
119  * @param name         Name of the byte string.
120  * @param value        Byte string and it's length.
121  *
122  * @note: Caller needs to invoke OCFree on value.bytes after it is finished using the byte string.
123  *
124  * @return true on success, false upon failure.
125  */
126 bool OCRepPayloadGetPropByteString(const OCRepPayload* payload, const char* name,
127         OCByteString* value);
128
129 bool OCRepPayloadSetPropString(OCRepPayload* payload, const char* name, const char* value);
130 bool OCRepPayloadSetPropStringAsOwner(OCRepPayload* payload, const char* name, char* value);
131 bool OCRepPayloadGetPropString(const OCRepPayload* payload, const char* name, char** value);
132
133 bool OCRepPayloadSetPropBool(OCRepPayload* payload, const char* name, bool value);
134 bool OCRepPayloadGetPropBool(const OCRepPayload* payload, const char* name, bool* value);
135
136 bool OCRepPayloadSetPropObject(OCRepPayload* payload, const char* name, const OCRepPayload* value);
137 bool OCRepPayloadSetPropObjectAsOwner(OCRepPayload* payload, const char* name, OCRepPayload* value);
138 bool OCRepPayloadGetPropObject(const OCRepPayload* payload, const char* name, OCRepPayload** value);
139
140 /**
141  * This function allocates memory for the byte string array and sets it in the payload.
142  *
143  * @param payload      Pointer to the payload to which byte string array needs to be added.
144  * @param name         Name of the byte string.
145  * @param array        Byte string array.
146  * @param dimensions   Number of byte strings in above array.
147  *
148  * @return true on success, false upon failure.
149  */
150 bool OCRepPayloadSetByteStringArrayAsOwner(OCRepPayload* payload, const char* name,
151         OCByteString* array, size_t dimensions[MAX_REP_ARRAY_DEPTH]);
152
153 /**
154  * This function sets the byte string array in the payload.
155  *
156  * @param payload      Pointer to the payload to which byte string array needs to be added.
157  * @param name         Name of the byte string.
158  * @param array        Byte string array.
159  * @param dimensions   Number of byte strings in above array.
160  *
161  * @return true on success, false upon failure.
162  */
163 bool OCRepPayloadSetByteStringArray(OCRepPayload* payload, const char* name,
164         const OCByteString* array, size_t dimensions[MAX_REP_ARRAY_DEPTH]);
165
166 /**
167  * This function gets the byte string array from the payload.
168  *
169  * @param payload      Pointer to the payload from which byte string array needs to be retrieved.
170  * @param name         Name of the byte string array.
171  * @param value        Byte string array.
172  * @param dimensions   Number of byte strings in above array.
173  *
174  * @note: Caller needs to invoke OICFree on 'bytes' field of all array elements after it is
175  *        finished using the byte string array.
176  *
177  * @return true on success, false upon failure.
178  */
179 bool OCRepPayloadGetByteStringArray(const OCRepPayload* payload, const char* name,
180         OCByteString** array, size_t dimensions[MAX_REP_ARRAY_DEPTH]);
181
182 bool OCRepPayloadSetIntArrayAsOwner(OCRepPayload* payload, const char* name,
183         int64_t* array, size_t dimensions[MAX_REP_ARRAY_DEPTH]);
184 bool OCRepPayloadSetIntArray(OCRepPayload* payload, const char* name,
185         const int64_t* array, size_t dimensions[MAX_REP_ARRAY_DEPTH]);
186 bool OCRepPayloadGetIntArray(const OCRepPayload* payload, const char* name,
187         int64_t** array, size_t dimensions[MAX_REP_ARRAY_DEPTH]);
188
189 bool OCRepPayloadSetDoubleArrayAsOwner(OCRepPayload* payload, const char* name,
190         double* array, size_t dimensions[MAX_REP_ARRAY_DEPTH]);
191 bool OCRepPayloadSetDoubleArray(OCRepPayload* payload, const char* name,
192         const double* array, size_t dimensions[MAX_REP_ARRAY_DEPTH]);
193 bool OCRepPayloadGetDoubleArray(const OCRepPayload* payload, const char* name,
194         double** array, size_t dimensions[MAX_REP_ARRAY_DEPTH]);
195
196 bool OCRepPayloadSetStringArrayAsOwner(OCRepPayload* payload, const char* name,
197         char** array, size_t dimensions[MAX_REP_ARRAY_DEPTH]);
198 bool OCRepPayloadSetStringArray(OCRepPayload* payload, const char* name,
199         const char** array, size_t dimensions[MAX_REP_ARRAY_DEPTH]);
200 bool OCRepPayloadGetStringArray(const OCRepPayload* payload, const char* name,
201         char*** array, size_t dimensions[MAX_REP_ARRAY_DEPTH]);
202
203 bool OCRepPayloadSetBoolArrayAsOwner(OCRepPayload* payload, const char* name,
204         bool* array, size_t dimensions[MAX_REP_ARRAY_DEPTH]);
205 bool OCRepPayloadSetBoolArray(OCRepPayload* payload, const char* name,
206         const bool* array, size_t dimensions[MAX_REP_ARRAY_DEPTH]);
207 bool OCRepPayloadGetBoolArray(const OCRepPayload* payload, const char* name,
208         bool** array, size_t dimensions[MAX_REP_ARRAY_DEPTH]);
209
210 bool OCRepPayloadSetPropObjectArrayAsOwner(OCRepPayload* payload, const char* name,
211         OCRepPayload** array, size_t dimensions[MAX_REP_ARRAY_DEPTH]);
212 bool OCRepPayloadSetPropObjectArray(OCRepPayload* payload, const char* name,
213         const OCRepPayload** array, size_t dimensions[MAX_REP_ARRAY_DEPTH]);
214 bool OCRepPayloadGetPropObjectArray(const OCRepPayload* payload, const char* name,
215         OCRepPayload*** array, size_t dimensions[MAX_REP_ARRAY_DEPTH]);
216
217 void OCRepPayloadDestroy(OCRepPayload* payload);
218
219 // Discovery Payload
220 OCDiscoveryPayload* OCDiscoveryPayloadCreate();
221
222 OCSecurityPayload* OCSecurityPayloadCreate(const uint8_t* securityData, size_t size);
223 void OCSecurityPayloadDestroy(OCSecurityPayload* payload);
224
225 #ifndef TCP_ADAPTER
226 void OCDiscoveryPayloadAddResource(OCDiscoveryPayload* payload, const OCResource* res,
227                                    uint16_t securePort);
228 #else
229 void OCDiscoveryPayloadAddResource(OCDiscoveryPayload* payload, const OCResource* res,
230                                    uint16_t securePort, uint16_t tcpPort);
231 #endif
232 void OCDiscoveryPayloadAddNewResource(OCDiscoveryPayload* payload, OCResourcePayload* res);
233 bool OCResourcePayloadAddStringLL(OCStringLL **payload, const char* type);
234
235 size_t OCDiscoveryPayloadGetResourceCount(OCDiscoveryPayload* payload);
236 OCResourcePayload* OCDiscoveryPayloadGetResource(OCDiscoveryPayload* payload, size_t index);
237
238 void OCDiscoveryResourceDestroy(OCResourcePayload* payload);
239 void OCDiscoveryPayloadDestroy(OCDiscoveryPayload* payload);
240
241 // Device Payload
242 OCDevicePayload* OCDevicePayloadCreate(const char* sid, const char* dname,
243         const OCStringLL *types, const char* specVer, const char* dmVer);
244 void OCDevicePayloadDestroy(OCDevicePayload* payload);
245
246 // Platform Payload
247 OCPlatformPayload* OCPlatformPayloadCreate(const OCPlatformInfo* platformInfo);
248 OCPlatformPayload* OCPlatformPayloadCreateAsOwner(OCPlatformInfo* platformInfo);
249 void OCPlatformInfoDestroy(OCPlatformInfo *info);
250 void OCPlatformPayloadDestroy(OCPlatformPayload* payload);
251
252 // Presence Payload
253 OCPresencePayload* OCPresencePayloadCreate(uint32_t seqNum, uint32_t maxAge,
254         OCPresenceTrigger trigger, const char* resourceType);
255 void OCPresencePayloadDestroy(OCPresencePayload* payload);
256
257 // Helper API
258 OCStringLL* CloneOCStringLL (OCStringLL* ll);
259 void OCFreeOCStringLL(OCStringLL* ll);
260
261 /**
262  * This function creates a list from a string (with separated contents if several)
263  * @param text         single string or CSV text fields
264  * @return newly allocated linked list
265  * @note separator is ',' (according to rfc4180, ';' is not valid)
266  **/
267 OCStringLL* OCCreateOCStringLL(const char* text);
268
269 /**
270  * This function creates a string from a list (with separated contents if several)
271  * @param ll           Pointer to list
272  * @return newly allocated string
273  * @note separator is ',' (according to rfc4180)
274  **/
275 char* OCCreateString(const OCStringLL* ll);
276
277 #ifdef __cplusplus
278 }
279 #endif
280
281 #endif