Merge remote-tracking branch 'origin/master' into extended-easysetup
[platform/upstream/iotivity.git] / resource / csdk / stack / include / octypes.h
1 //******************************************************************
2 //
3 // Copyright 2014 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
22 /**
23  * @file
24  *
25  * This file contains the definition, types and APIs for resource(s) be implemented.
26  */
27
28 #ifndef OCTYPES_H_
29 #define OCTYPES_H_
30
31 #include "platform_features.h"
32 #include "ocstackconfig.h"
33 #include <stdbool.h>
34 #include <stdint.h>
35 #include <stdio.h>
36 #ifdef __cplusplus
37 #include <string.h>
38
39 extern "C" {
40 #endif // __cplusplus
41
42 /** For the feature presence.*/
43 #define WITH_PRESENCE
44
45 #include "ocpresence.h"
46 //-----------------------------------------------------------------------------
47 // Defines
48 //-----------------------------------------------------------------------------
49
50 /**
51  * OIC Virtual resources supported by every OIC device.
52  */
53 /**
54  *  Default discovery mechanism using '/oic/res' is supported by all OIC devices
55  *  That are Discoverable.
56  */
57 #define OC_RSRVD_WELL_KNOWN_URI               "/oic/res"
58
59 /** Device URI.*/
60 #define OC_RSRVD_DEVICE_URI                   "/oic/d"
61
62 /** Platform URI.*/
63 #define OC_RSRVD_PLATFORM_URI                 "/oic/p"
64
65 /** Resource Type.*/
66 #define OC_RSRVD_RESOURCE_TYPES_URI           "/oic/res/types/d"
67 #if defined (ROUTING_GATEWAY) || defined (ROUTING_EP)
68 /** Gateway URI.*/
69 #define OC_RSRVD_GATEWAY_URI                  "/oic/gateway"
70 #endif
71 #ifdef WITH_PRESENCE
72
73 /** Presence URI through which the OIC devices advertise their presence.*/
74 #define OC_RSRVD_PRESENCE_URI                 "/oic/ad"
75
76 /** Sets the default time to live (TTL) for presence.*/
77 #define OC_DEFAULT_PRESENCE_TTL_SECONDS (60)
78
79 /** For multicast Discovery mechanism.*/
80 #define OC_MULTICAST_DISCOVERY_URI           "/oic/res"
81
82 /** Separator for multiple query string.*/
83 #define OC_QUERY_SEPARATOR                "&;"
84
85 /**
86  *  OC_DEFAULT_PRESENCE_TTL_SECONDS sets the default time to live (TTL) for presence.
87  */
88 #define OC_DEFAULT_PRESENCE_TTL_SECONDS (60)
89
90 /**
91  *  OC_MAX_PRESENCE_TTL_SECONDS sets the maximum time to live (TTL) for presence.
92  *  NOTE: Changing the setting to a longer duration may lead to unsupported and untested
93  *  operation.
94  *  60 sec/min * 60 min/hr * 24 hr/day
95  */
96 #define OC_MAX_PRESENCE_TTL_SECONDS     (60 * 60 * 24)
97 #endif
98
99 /**
100  *  Presence "Announcement Triggers".
101  */
102
103 /** To create.*/
104 #define OC_RSRVD_TRIGGER_CREATE         "create"
105
106 /** To change.*/
107 #define OC_RSRVD_TRIGGER_CHANGE         "change"
108
109 /** To delete.*/
110 #define OC_RSRVD_TRIGGER_DELETE         "delete"
111
112 /**
113  *  Attributes used to form a proper OIC conforming JSON message.
114  */
115
116 #define OC_RSRVD_OC                     "oic"
117
118 /** For payload. */
119
120 #define OC_RSRVD_PAYLOAD                "payload"
121
122 /** To represent href */
123 #define OC_RSRVD_HREF                   "href"
124
125 /** To represent property*/
126 #define OC_RSRVD_PROPERTY               "prop"
127
128 /** For representation.*/
129 #define OC_RSRVD_REPRESENTATION         "rep"
130
131 /** To represent content type.*/
132 #define OC_RSRVD_CONTENT_TYPE           "ct"
133
134 /** To represent resource type.*/
135 #define OC_RSRVD_RESOURCE_TYPE          "rt"
136
137 /** To represent resource type with presence.*/
138 #define OC_RSRVD_RESOURCE_TYPE_PRESENCE "oic.wk.ad"
139
140 /** To represent resource type with device.*/
141 #define OC_RSRVD_RESOURCE_TYPE_DEVICE   "oic.wk.d"
142
143 /** To represent resource type with platform.*/
144 #define OC_RSRVD_RESOURCE_TYPE_PLATFORM "oic.wk.p"
145
146 /** To represent resource type with RES.*/
147 #define OC_RSRVD_RESOURCE_TYPE_RES    "oic.wk.res"
148
149 /** To represent interface.*/
150 #define OC_RSRVD_INTERFACE              "if"
151
152 /** To represent time to live.*/
153 #define OC_RSRVD_TTL                    "ttl"
154
155 /** To represent non*/
156 #define OC_RSRVD_NONCE                  "non"
157
158 /** To represent trigger type.*/
159 #define OC_RSRVD_TRIGGER                "trg"
160
161 /** To represent links.*/
162 #define OC_RSRVD_LINKS                  "links"
163
164 /** To represent default interface.*/
165 #define OC_RSRVD_INTERFACE_DEFAULT      "oic.if.baseline"
166
167 /** To represent read-only interface.*/
168 #define OC_RSRVD_INTERFACE_READ         "oic.if.r"
169
170 /** To represent ll interface.*/
171 #define OC_RSRVD_INTERFACE_LL           "oic.if.ll"
172
173 /** To represent batch interface.*/
174 #define OC_RSRVD_INTERFACE_BATCH        "oic.if.b"
175
176 /** To represent interface group.*/
177 #define OC_RSRVD_INTERFACE_GROUP        "oic.mi.grp"
178
179 /** To represent MFG date.*/
180 #define OC_RSRVD_MFG_DATE               "mndt"
181
182 /** To represent FW version.*/
183 #define OC_RSRVD_FW_VERSION             "mnfv"
184
185 /** To represent host name.*/
186 #define OC_RSRVD_HOST_NAME              "hn"
187
188 /** To represent policy.*/
189 #define OC_RSRVD_POLICY                 "p"
190
191 /** To represent bitmap.*/
192 #define OC_RSRVD_BITMAP                 "bm"
193
194 /** For security.*/
195 #define OC_RSRVD_SECURE                 "sec"
196
197 /** Port. */
198 #define OC_RSRVD_HOSTING_PORT           "port"
199
200 /** TCP Port. */
201 #define OC_RSRVD_TCP_PORT               "tcp"
202
203 /** For Server instance ID.*/
204 #define OC_RSRVD_SERVER_INSTANCE_ID     "sid"
205
206 /**
207  *  Platform.
208  */
209
210 /** Platform ID. */
211 #define OC_RSRVD_PLATFORM_ID            "pi"
212
213 /** Platform MFG NAME. */
214 #define OC_RSRVD_MFG_NAME               "mnmn"
215
216 /** Platform URL. */
217 #define OC_RSRVD_MFG_URL                "mnml"
218
219 /** Model Number.*/
220 #define OC_RSRVD_MODEL_NUM              "mnmo"
221
222 /** Platform MFG Date.*/
223 #define OC_RSRVD_MFG_DATE               "mndt"
224
225 /** Platform versio.n */
226 #define OC_RSRVD_PLATFORM_VERSION       "mnpv"
227
228 /** Platform Operating system version. */
229 #define OC_RSRVD_OS_VERSION             "mnos"
230
231 /** Platform Hardware version. */
232 #define OC_RSRVD_HARDWARE_VERSION       "mnhw"
233
234 /**Platform Firmware version. */
235 #define OC_RSRVD_FIRMWARE_VERSION       "mnfv"
236
237 /** Support URL for the platform. */
238 #define OC_RSRVD_SUPPORT_URL            "mnsl"
239
240 /** System time for the platform. */
241 #define OC_RSRVD_SYSTEM_TIME             "st"
242
243 /**
244  *  Device.
245  */
246
247 /** Device ID.*/
248 #define OC_RSRVD_DEVICE_ID              "di"
249
250 /** Device Name.*/
251 #define OC_RSRVD_DEVICE_NAME            "n"
252
253 /** Device specification version.*/
254 #define OC_RSRVD_SPEC_VERSION           "icv"
255
256 /** Device data model.*/
257 #define OC_RSRVD_DATA_MODEL_VERSION     "dmv"
258
259 /** Device specification version.*/
260 #define OC_SPEC_VERSION                "core.1.0.0"
261
262 /** Device Data Model version.*/
263 #define OC_DATA_MODEL_VERSION          "res.1.0.0"
264
265 /**
266  *  These provide backward compatibility - their use is deprecated.
267  */
268 #ifndef GOING_AWAY
269
270 /** Multicast Prefix.*/
271 #define OC_MULTICAST_PREFIX                  "224.0.1.187:5683"
272
273 /** Multicast IP address.*/
274 #define OC_MULTICAST_IP                      "224.0.1.187"
275
276 /** Multicast Port.*/
277 #define OC_MULTICAST_PORT                    5683
278 #endif // GOING_AWAY
279
280 /** Max Device address size. */
281 #ifdef RA_ADAPTER
282 #define MAX_ADDR_STR_SIZE (256)
283 #else
284 /** Max Address could be
285  * "coap+tcp://[xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:yyy.yyy.yyy.yyy]:xxxxx"
286  * +1 for null terminator.
287  */
288 #define MAX_ADDR_STR_SIZE (65)
289 #endif
290
291 /** Length of MAC address */
292 #define MAC_ADDR_STR_SIZE (17)
293
294 /** Blocks of MAC address */
295 #define MAC_ADDR_BLOCKS (6)
296
297 /** Max identity size. */
298 #define MAX_IDENTITY_SIZE (32)
299
300 /** Universal unique identity size. */
301 #define UUID_IDENTITY_SIZE (128/8)
302
303 /** Resource Directory */
304
305 /** Resource Directory URI used to Discover RD and Publish resources.*/
306 #define OC_RSRVD_RD_URI                  "/oic/rd"
307
308 /** To represent resource type with rd.*/
309 #define OC_RSRVD_RESOURCE_TYPE_RD        "oic.wk.rd"
310
311 /** RD Discovery bias factor type. */
312 #define OC_RSRVD_RD_DISCOVERY_SEL        "sel"
313
314 /** Base URI. */
315 #define OC_RSRVD_BASE_URI                "baseURI"
316
317 /** Unique value per collection/link. */
318 #define OC_RSRVD_INS                     "ins"
319
320 /** Allowable resource types in the links. */
321 #define OC_RSRVD_RTS                     "rts"
322
323 /** Default relationship. */
324 #define OC_RSRVD_DREL                    "drel"
325
326 /** Defines relationship between links. */
327 #define OC_RSRVD_REL                     "rel"
328
329 /** Defines title. */
330 #define OC_RSRVD_TITLE                   "title"
331
332 /** Defines URI. */
333 #define OC_RSRVD_URI                     "uri"
334
335 /** Defines media type. */
336 #define OC_RSRVD_MEDIA_TYPE              "mt"
337
338 /** To represent resource type with Publish RD.*/
339 #define OC_RSRVD_RESOURCE_TYPE_RDPUBLISH "oic.wk.rdpub"
340
341 /**
342  * Mark a parameter as unused. Used to prevent unused variable compiler warnings.
343  * Used in three cases:
344  * 1. in callbacks when one of the parameters are unused
345  * 2. when due to code changes a functions parameter is no longer
346  *    used but must be left in place for backward compatibility
347  *    reasons.
348  * 3. a variable is only used in the debug build variant and would
349  *    give a build warning in release mode.
350  */
351 #define OC_UNUSED(x) (void)(x)
352
353 /**
354  * These enums (OCTransportAdapter and OCTransportFlags) must
355  * be kept synchronized with OCConnectivityType (below) as well as
356  * CATransportAdapter and CATransportFlags (in CACommon.h).
357  */
358 typedef enum
359 {
360     /** value zero indicates discovery.*/
361     OC_DEFAULT_ADAPTER = 0,
362
363     /** IPv4 and IPv6, including 6LoWPAN.*/
364     OC_ADAPTER_IP           = (1 << 0),
365
366     /** GATT over Bluetooth LE.*/
367     OC_ADAPTER_GATT_BTLE    = (1 << 1),
368
369     /** RFCOMM over Bluetooth EDR.*/
370     OC_ADAPTER_RFCOMM_BTEDR = (1 << 2),
371 #ifdef RA_ADAPTER
372     /**Remote Access over XMPP.*/
373     OC_ADAPTER_REMOTE_ACCESS = (1 << 3),
374 #endif
375     /** CoAP over TCP.*/
376     OC_ADAPTER_TCP           = (1 << 4),
377
378     /** NFC Transport for Messaging.*/
379     OC_ADAPTER_NFC           = (1 << 5)
380 } OCTransportAdapter;
381
382 /**
383  *  Enum layout assumes some targets have 16-bit integer (e.g., Arduino).
384  */
385 typedef enum
386 {
387     /** default flag is 0*/
388     OC_DEFAULT_FLAGS = 0,
389
390     /** Insecure transport is the default (subject to change).*/
391     /** secure the transport path*/
392     OC_FLAG_SECURE     = (1 << 4),
393
394     /** IPv4 & IPv6 auto-selection is the default.*/
395     /** IP & TCP adapter only.*/
396     OC_IP_USE_V6       = (1 << 5),
397
398     /** IP & TCP adapter only.*/
399     OC_IP_USE_V4       = (1 << 6),
400
401     /** Multicast only.*/
402     OC_MULTICAST       = (1 << 7),
403
404     /** Link-Local multicast is the default multicast scope for IPv6.
405      *  These are placed here to correspond to the IPv6 multicast address bits.*/
406
407     /** IPv6 Interface-Local scope (loopback).*/
408     OC_SCOPE_INTERFACE = 0x1,
409
410     /** IPv6 Link-Local scope (default).*/
411     OC_SCOPE_LINK      = 0x2,
412
413     /** IPv6 Realm-Local scope. */
414     OC_SCOPE_REALM     = 0x3,
415
416     /** IPv6 Admin-Local scope. */
417     OC_SCOPE_ADMIN     = 0x4,
418
419     /** IPv6 Site-Local scope. */
420     OC_SCOPE_SITE      = 0x5,
421
422     /** IPv6 Organization-Local scope. */
423     OC_SCOPE_ORG       = 0x8,
424
425     /**IPv6 Global scope. */
426     OC_SCOPE_GLOBAL    = 0xE,
427
428 } OCTransportFlags;
429
430 /** Bit mask for scope.*/
431 #define OC_MASK_SCOPE    (0x000F)
432
433 /** Bit mask for Mods.*/
434 #define OC_MASK_MODS     (0x0FF0)
435 #define OC_MASK_FAMS     (OC_IP_USE_V6|OC_IP_USE_V4)
436
437 typedef struct OCStringLL
438 {
439     struct OCStringLL *next;
440     char* value;
441 } OCStringLL;
442
443 /**
444  * End point identity.
445  */
446 typedef struct
447 {
448     /** Identity Length */
449     uint16_t id_length;
450
451     /** Array of end point identity.*/
452     unsigned char id[MAX_IDENTITY_SIZE];
453 } OCIdentity;
454
455 /**
456  * Universally unique identifier.
457  */
458 typedef struct
459 {
460     /** identitifier string.*/
461     unsigned char id[UUID_IDENTITY_SIZE];
462 } OCUUIdentity;
463
464 /**
465  * Data structure to encapsulate IPv4/IPv6/Contiki/lwIP device addresses.
466  * OCDevAddr must be the same as CAEndpoint (in CACommon.h).
467  */
468 typedef struct
469 {
470     /** adapter type.*/
471     OCTransportAdapter      adapter;
472
473     /** transport modifiers.*/
474     OCTransportFlags        flags;
475
476     /** for IP.*/
477     uint16_t                port;
478
479     /** address for all adapters.*/
480     char                    addr[MAX_ADDR_STR_SIZE];
481
482     /** usually zero for default interface.*/
483     uint32_t                ifindex;
484 #if defined (ROUTING_GATEWAY) || defined (ROUTING_EP)
485     char                    routeData[MAX_ADDR_STR_SIZE]; //destination GatewayID:ClientId
486 #endif
487 } OCDevAddr;
488
489 /**
490  * This enum type includes elements of both ::OCTransportAdapter and ::OCTransportFlags.
491  * It is defined conditionally because the smaller definition limits expandability on 32/64 bit
492  * integer machines, and the larger definition won't fit into an enum on 16-bit integer machines
493  * like Arduino.
494  *
495  * This structure must directly correspond to ::OCTransportAdapter and ::OCTransportFlags.
496  */
497 typedef enum
498 {
499     /** use when defaults are ok. */
500     CT_DEFAULT = 0,
501
502     /** IPv4 and IPv6, including 6LoWPAN.*/
503     CT_ADAPTER_IP           = (1 << 16),
504
505     /** GATT over Bluetooth LE.*/
506     CT_ADAPTER_GATT_BTLE    = (1 << 17),
507
508     /** RFCOMM over Bluetooth EDR.*/
509     CT_ADAPTER_RFCOMM_BTEDR = (1 << 18),
510
511 #ifdef RA_ADAPTER
512     /** Remote Access over XMPP.*/
513     CT_ADAPTER_REMOTE_ACCESS = (1 << 19),
514 #endif
515     /** CoAP over TCP.*/
516     CT_ADAPTER_TCP     = (1 << 20),
517
518     /** NFC Transport.*/
519     CT_ADAPTER_NFC     = (1 << 21),
520
521     /** Insecure transport is the default (subject to change).*/
522
523     /** secure the transport path.*/
524     CT_FLAG_SECURE     = (1 << 4),
525
526     /** IPv4 & IPv6 autoselection is the default.*/
527
528     /** IP adapter only.*/
529     CT_IP_USE_V6       = (1 << 5),
530
531     /** IP adapter only.*/
532     CT_IP_USE_V4       = (1 << 6),
533
534     /** Link-Local multicast is the default multicast scope for IPv6.
535      * These are placed here to correspond to the IPv6 address bits.*/
536
537     /** IPv6 Interface-Local scope(loopback).*/
538     CT_SCOPE_INTERFACE = 0x1,
539
540     /** IPv6 Link-Local scope (default).*/
541     CT_SCOPE_LINK      = 0x2,
542
543     /** IPv6 Realm-Local scope.*/
544     CT_SCOPE_REALM     = 0x3,
545
546     /** IPv6 Admin-Local scope.*/
547     CT_SCOPE_ADMIN     = 0x4,
548
549     /** IPv6 Site-Local scope.*/
550     CT_SCOPE_SITE      = 0x5,
551
552     /** IPv6 Organization-Local scope.*/
553     CT_SCOPE_ORG       = 0x8,
554
555     /** IPv6 Global scope.*/
556     CT_SCOPE_GLOBAL    = 0xE,
557 } OCConnectivityType;
558
559 /** bit shift required for connectivity adapter.*/
560 #define CT_ADAPTER_SHIFT 16
561
562 /** Mask Flag.*/
563 #define CT_MASK_FLAGS 0xFFFF
564
565 /** Mask Adapter.*/
566 #define CT_MASK_ADAPTER 0xFFFF0000
567
568 /**
569  *  OCDoResource methods to dispatch the request
570  */
571 typedef enum
572 {
573     OC_REST_NOMETHOD       = 0,
574
575     /** Read.*/
576     OC_REST_GET            = (1 << 0),
577
578     /** Write.*/
579     OC_REST_PUT            = (1 << 1),
580
581     /** Update.*/
582     OC_REST_POST           = (1 << 2),
583
584     /** Delete.*/
585     OC_REST_DELETE         = (1 << 3),
586
587     /** Register observe request for most up date notifications ONLY.*/
588     OC_REST_OBSERVE        = (1 << 4),
589
590     /** Register observe request for all notifications, including stale notifications.*/
591     OC_REST_OBSERVE_ALL    = (1 << 5),
592
593     /** De-register observation, intended for internal use.*/
594     OC_REST_CANCEL_OBSERVE = (1 << 6),
595
596 #ifdef WITH_PRESENCE
597     /** Subscribe for all presence notifications of a particular resource.*/
598     OC_REST_PRESENCE       = (1 << 7),
599
600 #endif
601     /** Allows OCDoResource caller to do discovery.*/
602     OC_REST_DISCOVER       = (1 << 8)
603 } OCMethod;
604
605 /**
606  *  Formats for payload encoding.
607  */
608 typedef enum
609 {
610     OC_FORMAT_CBOR,
611     OC_FORMAT_UNDEFINED,
612     OC_FORMAT_UNSUPPORTED,
613 } OCPayloadFormat;
614
615 /**
616  * Host Mode of Operation.
617  */
618 typedef enum
619 {
620     OC_CLIENT = 0,
621     OC_SERVER,
622     OC_CLIENT_SERVER,
623     OC_GATEWAY          /**< Client server mode along with routing capabilities.*/
624 } OCMode;
625
626 /**
627  * Quality of Service attempts to abstract the guarantees provided by the underlying transport
628  * protocol. The precise definitions of each quality of service level depend on the
629  * implementation. In descriptions below are for the current implementation and may changed
630  * over time.
631  */
632 typedef enum
633 {
634     /** Packet delivery is best effort.*/
635     OC_LOW_QOS = 0,
636
637     /** Packet delivery is best effort.*/
638     OC_MEDIUM_QOS,
639
640     /** Acknowledgments are used to confirm delivery.*/
641     OC_HIGH_QOS,
642
643     /** No Quality is defined, let the stack decide.*/
644     OC_NA_QOS
645 } OCQualityOfService;
646
647 /**
648  * Resource Properties.
649  * The value of a policy property is defined as bitmap.
650  * The LSB represents OC_DISCOVERABLE and Second LSB bit represents OC_OBSERVABLE and so on.
651  * Not including the policy property is equivalent to zero.
652  *
653  */
654 typedef enum
655 {
656     /** When none of the bits are set, the resource is non-discoverable &
657      *  non-observable by the client.*/
658     OC_RES_PROP_NONE = (0),
659
660     /** When this bit is set, the resource is allowed to be discovered by clients.*/
661     OC_DISCOVERABLE  = (1 << 0),
662
663     /** When this bit is set, the resource is allowed to be observed by clients.*/
664     OC_OBSERVABLE    = (1 << 1),
665
666     /** When this bit is set, the resource is initialized, otherwise the resource
667      *  is 'inactive'. 'inactive' signifies that the resource has been marked for
668      *  deletion or is already deleted.*/
669     OC_ACTIVE        = (1 << 2),
670
671     /** When this bit is set, the resource has been marked as 'slow'.
672      * 'slow' signifies that responses from this resource can expect delays in
673      *  processing its requests from clients.*/
674     OC_SLOW          = (1 << 3),
675
676 #ifdef __WITH_DTLS__
677     /** When this bit is set, the resource is a secure resource.*/
678     OC_SECURE        = (1 << 4),
679 #else
680     OC_SECURE        = (0),
681 #endif
682
683     /** When this bit is set, the resource is allowed to be discovered only
684      *  if discovery request contains an explicit querystring.
685      *  Ex: GET /oic/res?rt=oic.sec.acl */
686     OC_EXPLICIT_DISCOVERABLE   = (1 << 5)
687 } OCResourceProperty;
688
689 /**
690  * Transport Protocol IDs.
691  */
692 typedef enum
693 {
694     /** For invalid ID.*/
695     OC_INVALID_ID   = (1 << 0),
696
697     /* For coap ID.*/
698     OC_COAP_ID      = (1 << 1)
699 } OCTransportProtocolID;
700
701 /**
702  * Declares Stack Results & Errors.
703  */
704 typedef enum
705 {
706     /** Success status code - START HERE.*/
707     OC_STACK_OK = 0,
708     OC_STACK_RESOURCE_CREATED,
709     OC_STACK_RESOURCE_DELETED,
710     OC_STACK_CONTINUE,
711     OC_STACK_RESOURCE_CHANGED,
712     /** Success status code - END HERE.*/
713
714     /** Error status code - START HERE.*/
715     OC_STACK_INVALID_URI = 20,
716     OC_STACK_INVALID_QUERY,
717     OC_STACK_INVALID_IP,
718     OC_STACK_INVALID_PORT,
719     OC_STACK_INVALID_CALLBACK,
720     OC_STACK_INVALID_METHOD,
721
722     /** Invalid parameter.*/
723     OC_STACK_INVALID_PARAM,
724     OC_STACK_INVALID_OBSERVE_PARAM,
725     OC_STACK_NO_MEMORY,
726     OC_STACK_COMM_ERROR,
727     OC_STACK_TIMEOUT,
728     OC_STACK_ADAPTER_NOT_ENABLED,
729     OC_STACK_NOTIMPL,
730
731     /** Resource not found.*/
732     OC_STACK_NO_RESOURCE,
733
734     /** e.g: not supported method or interface.*/
735     OC_STACK_RESOURCE_ERROR,
736     OC_STACK_SLOW_RESOURCE,
737     OC_STACK_DUPLICATE_REQUEST,
738
739     /** Resource has no registered observers.*/
740     OC_STACK_NO_OBSERVERS,
741     OC_STACK_OBSERVER_NOT_FOUND,
742     OC_STACK_VIRTUAL_DO_NOT_HANDLE,
743     OC_STACK_INVALID_OPTION,
744
745     /** The remote reply contained malformed data.*/
746     OC_STACK_MALFORMED_RESPONSE,
747     OC_STACK_PERSISTENT_BUFFER_REQUIRED,
748     OC_STACK_INVALID_REQUEST_HANDLE,
749     OC_STACK_INVALID_DEVICE_INFO,
750     OC_STACK_INVALID_JSON,
751
752     /** Request is not authorized by Resource Server. */
753     OC_STACK_UNAUTHORIZED_REQ,
754     OC_STACK_TOO_LARGE_REQ,
755
756     /** Error code from PDM */
757     OC_STACK_PDM_IS_NOT_INITIALIZED,
758     OC_STACK_DUPLICATE_UUID,
759     OC_STACK_INCONSISTENT_DB,
760
761     /**
762      * Error code from OTM
763      * This error is pushed from DTLS interface when handshake failure happens
764      */
765     OC_STACK_AUTHENTICATION_FAILURE,
766
767     /** Insert all new error codes here!.*/
768 #ifdef WITH_PRESENCE
769     OC_STACK_PRESENCE_STOPPED = 128,
770     OC_STACK_PRESENCE_TIMEOUT,
771     OC_STACK_PRESENCE_DO_NOT_HANDLE,
772 #endif
773     /** ERROR in stack.*/
774     OC_STACK_ERROR = 255
775     /** Error status code - END HERE.*/
776 } OCStackResult;
777
778 /**
779  * Handle to an OCDoResource invocation.
780  */
781 typedef void * OCDoHandle;
782
783 /**
784  * Handle to an OCResource object owned by the OCStack.
785  */
786 typedef void * OCResourceHandle;
787
788 /**
789  * Handle to an OCRequest object owned by the OCStack.
790  */
791 typedef void * OCRequestHandle;
792
793 /**
794  * Unique identifier for each observation request. Used when observations are
795  * registered or de-registered. Used by entity handler to signal specific
796  * observers to be notified of resource changes.
797  * There can be maximum of 256 observations per server.
798  */
799 typedef uint8_t OCObservationId;
800
801 /**
802  * Action associated with observation.
803  */
804 typedef enum
805 {
806     /** To Register. */
807     OC_OBSERVE_REGISTER = 0,
808
809     /** To Deregister. */
810     OC_OBSERVE_DEREGISTER = 1,
811
812     /** Others. */
813     OC_OBSERVE_NO_OPTION = 2
814 } OCObserveAction;
815
816
817 /**
818  * Persistent storage handlers. An APP must provide OCPersistentStorage handler pointers
819  * when it calls OCRegisterPersistentStorageHandler.
820  * Persistent storage open handler points to default file path.
821  * It should check file path and whether the file is symbolic link or no.
822  * Application can point to appropriate SVR database path for it's IoTivity Server.
823  */
824 typedef struct {
825     /** Persistent storage file path.*/
826     FILE* (* open)(const char *path, const char *mode);
827
828     /** Persistent storage read handler.*/
829     size_t (* read)(void *ptr, size_t size, size_t nmemb, FILE *stream);
830
831     /** Persistent storage write handler.*/
832     size_t (* write)(const void *ptr, size_t size, size_t nmemb, FILE *stream);
833
834     /** Persistent storage close handler.*/
835     int (* close)(FILE *fp);
836
837     /** Persistent storage unlink handler.*/
838     int (* unlink)(const char *path);
839 } OCPersistentStorage;
840
841 /**
842  * Possible returned values from entity handler.
843  */
844 typedef struct
845 {
846     /** Action associated with observation request.*/
847     OCObserveAction action;
848
849     /** Identifier for observation being registered/deregistered.*/
850     OCObservationId obsId;
851 } OCObservationInfo;
852
853 /**
854  * Possible returned values from entity handler.
855  */
856 typedef enum
857 {
858     OC_EH_OK = 0,
859     OC_EH_ERROR,
860     OC_EH_RESOURCE_CREATED, // 2.01
861     OC_EH_RESOURCE_DELETED, // 2.02
862     OC_EH_SLOW, // 2.05
863     OC_EH_FORBIDDEN, // 4.03
864     OC_EH_RESOURCE_NOT_FOUND, // 4.04
865     OC_EH_VALID,   // 2.03
866     OC_EH_CHANGED, // 2.04
867     OC_EH_CONTENT, // 2.05
868     OC_EH_BAD_REQ, // 4.00
869     OC_EH_UNAUTHORIZED_REQ, // 4.01
870     OC_EH_BAD_OPT, // 4.02
871     OC_EH_METHOD_NOT_ALLOWED, // 4.05
872     OC_EH_NOT_ACCEPTABLE, // 4.06
873     OC_EH_INTERNAL_SERVER_ERROR, // 5.00
874     OC_EH_RETRANSMIT_TIMEOUT // 5.04
875 } OCEntityHandlerResult;
876
877 /**
878  * This structure will be used to define the vendor specific header options to be included
879  * in communication packets.
880  */
881 typedef struct OCHeaderOption
882 {
883     /** The protocol ID this option applies to.*/
884     OCTransportProtocolID protocolID;
885
886     /** The header option ID which will be added to communication packets.*/
887     uint16_t optionID;
888
889     /** its length 191.*/
890     uint16_t optionLength;
891
892     /** pointer to its data.*/
893     uint8_t optionData[MAX_HEADER_OPTION_DATA_LENGTH];
894
895 #ifdef SUPPORTS_DEFAULT_CTOR
896     OCHeaderOption() = default;
897     OCHeaderOption(OCTransportProtocolID pid,
898                    uint16_t optId,
899                    uint16_t optlen,
900                    const uint8_t* optData)
901         : protocolID(pid),
902           optionID(optId),
903           optionLength(optlen)
904     {
905
906         // parameter includes the null terminator.
907         optionLength = optionLength < MAX_HEADER_OPTION_DATA_LENGTH ?
908                         optionLength : MAX_HEADER_OPTION_DATA_LENGTH;
909         memcpy(optionData, optData, optionLength);
910         optionData[optionLength - 1] = '\0';
911     }
912 #endif
913 } OCHeaderOption;
914
915
916 /**
917  * This structure describes the platform properties. All non-Null properties will be
918  * included in a platform discovery request.
919  */
920 typedef struct
921 {
922     /** Platform ID.*/
923     char *platformID;
924
925     /** Manufacturer name.*/
926     char *manufacturerName;
927
928     /** Manufacturer URL for platform property.*/
929     char *manufacturerUrl;
930
931     /** Model number.*/
932     char *modelNumber;
933
934     /** Manufacturer date.*/
935     char *dateOfManufacture;
936
937     /** Platform version.*/
938     char *platformVersion;
939
940     /** Operating system version.*/
941     char *operatingSystemVersion;
942
943     /** HW version.*/
944     char *hardwareVersion;
945
946     /** FW version.*/
947     char *firmwareVersion;
948
949     /** Platform support URL.*/
950     char *supportUrl;
951
952     /** System time.*/
953     char *systemTime;
954
955 } OCPlatformInfo;
956
957 /**
958  * This structure is expected as input for device properties.
959  * device name is mandatory and expected from the application.
960  * device id of type UUID will be generated by the stack.
961  */
962 typedef struct
963 {
964     /** Pointer to the device name.*/
965     char *deviceName;
966     /** Pointer to the types.*/
967     OCStringLL *types;
968     /** Pointer to the device specification version.*/
969     char *specVersion;
970     /** Pointer to the device data model versions (in CSV format).*/
971     OCStringLL *dataModelVersions;
972 } OCDeviceInfo;
973
974 #ifdef RA_ADAPTER
975 /**
976  * callback for bound JID
977  */
978 typedef void (*jid_bound_cb)(char *jid);
979
980 /**
981  * CA Remote Access information for XMPP Client
982  *
983  */
984 typedef struct
985 {
986     char *hostname;     /**< XMPP server hostname */
987     uint16_t   port;    /**< XMPP server serivce port */
988     char *xmpp_domain;  /**< XMPP login domain */
989     char *username;     /**< login username */
990     char *password;     /**< login password */
991     char *resource;     /**< specific resource for login */
992     char *user_jid;     /**< specific JID for login */
993     jid_bound_cb jidbound;  /**< callback when JID bound */
994 } OCRAInfo_t;
995 #endif  /* RA_ADAPTER */
996
997
998 /** Enum to describe the type of object held by the OCPayload object.*/
999 typedef enum
1000 {
1001     /** Contents of the payload are invalid */
1002     PAYLOAD_TYPE_INVALID,
1003     /** The payload is an OCDiscoveryPayload */
1004     PAYLOAD_TYPE_DISCOVERY,
1005     /** The payload is an OCDevicePayload */
1006     PAYLOAD_TYPE_DEVICE,
1007     /** The payload is an OCPlatformPayload */
1008     PAYLOAD_TYPE_PLATFORM,
1009     /** The payload is an OCRepPayload */
1010     PAYLOAD_TYPE_REPRESENTATION,
1011     /** The payload is an OCSecurityPayload */
1012     PAYLOAD_TYPE_SECURITY,
1013     /** The payload is an OCPresencePayload */
1014     PAYLOAD_TYPE_PRESENCE,
1015     /** The payload is an OCRDPayload */
1016     PAYLOAD_TYPE_RD
1017 } OCPayloadType;
1018
1019 /**
1020  * A generic struct representing a payload returned from a resource operation
1021  *
1022  * A pointer to OCPayLoad can be cast to a more specific struct to access members
1023  * for the its type.
1024  */
1025 typedef struct
1026 {
1027     /** The type of message that was received */
1028     OCPayloadType type;
1029 } OCPayload;
1030
1031 typedef enum
1032 {
1033     OCREP_PROP_NULL,
1034     OCREP_PROP_INT,
1035     OCREP_PROP_DOUBLE,
1036     OCREP_PROP_BOOL,
1037     OCREP_PROP_STRING,
1038     OCREP_PROP_BYTE_STRING,
1039     OCREP_PROP_OBJECT,
1040     OCREP_PROP_ARRAY
1041 }OCRepPayloadPropType;
1042
1043 /** This structure will be used to represent a binary string for CBOR payloads.*/
1044 typedef struct
1045 {
1046     /** pointer to data bytes.*/
1047     uint8_t* bytes;
1048
1049     /** number of data bytes.*/
1050     size_t   len;
1051 } OCByteString;
1052
1053 #define MAX_REP_ARRAY_DEPTH 3
1054 typedef struct
1055 {
1056     OCRepPayloadPropType type;
1057     size_t dimensions[MAX_REP_ARRAY_DEPTH];
1058
1059     union
1060     {
1061         int64_t* iArray;
1062         double* dArray;
1063         bool* bArray;
1064         char** strArray;
1065
1066         /** pointer to ByteString array.*/
1067         OCByteString* ocByteStrArray;
1068
1069         struct OCRepPayload** objArray;
1070     };
1071 } OCRepPayloadValueArray;
1072
1073 typedef struct OCRepPayloadValue
1074 {
1075     char* name;
1076     OCRepPayloadPropType type;
1077     union
1078     {
1079         int64_t i;
1080         double d;
1081         bool b;
1082         char* str;
1083
1084         /** ByteString object.*/
1085         OCByteString ocByteStr;
1086
1087         struct OCRepPayload* obj;
1088         OCRepPayloadValueArray arr;
1089     };
1090     struct OCRepPayloadValue* next;
1091
1092 } OCRepPayloadValue;
1093
1094 // used for get/set/put/observe/etc representations
1095 typedef struct OCRepPayload
1096 {
1097     OCPayload base;
1098     char* uri;
1099     OCStringLL* types;
1100     OCStringLL* interfaces;
1101     OCRepPayloadValue* values;
1102     struct OCRepPayload* next;
1103 } OCRepPayload;
1104
1105 // used inside a discovery payload
1106 typedef struct OCResourcePayload
1107 {
1108     char* uri;
1109     OCStringLL* types;
1110     OCStringLL* interfaces;
1111     uint8_t bitmap;
1112     bool secure;
1113     uint16_t port;
1114 #ifdef TCP_ADAPTER
1115     uint16_t tcpPort;
1116 #endif
1117     struct OCResourcePayload* next;
1118 } OCResourcePayload;
1119
1120 /**
1121  * Structure holding Links Payload. It is a sub-structure used in
1122  * OCResourceCollectionPayload.
1123  */
1124 typedef struct OCLinksPayload
1125 {
1126     /** This is the target relative URI. */
1127     char *href;
1128     /** Resource Type - A standard OIC specified or vendor defined resource
1129      * type of the resource referenced by the target URI. */
1130     OCStringLL *rt;
1131     /** Interface - The interfaces supported by the resource referenced by the target URI. */
1132     OCStringLL *itf;
1133     /** The relation of the target URI referenced by the link to the context URI;
1134      * The default value is null. */
1135     char *rel;
1136     /** Specifies if the resource referenced by the target URIis observable or not. */
1137     bool obs;
1138     /** A title for the link relation. Can be used by the UI to provide a context. */
1139     char *title;
1140     /** This is used to override the context URI e.g. override the URI of the containing collection. */
1141     char *uri;
1142     /** The instance identifier for this web link in an array of web links - used in links. */
1143     union
1144     {
1145         /** An ordinal number that is not repeated - must be unique in the collection context. */
1146         uint8_t ins;
1147         /** Any unique string including a URI. */
1148         char *uniqueStr;
1149         /** Use UUID for universal uniqueness - used in /oic/res to identify the device. */
1150         OCIdentity uniqueUUID;
1151     };
1152     /** A hint of the media type of the representation of the resource referenced by the target URI. */
1153     OCStringLL *mt;
1154     /** Holding address of the next resource. */
1155     struct OCLinksPayload *next;
1156 } OCLinksPayload;
1157
1158 /** Structure holding tags value of the links payload. */
1159 typedef struct
1160 {
1161     /** Name of tags. */
1162     OCDeviceInfo n;
1163     /** Device identifier. */
1164     OCIdentity di;
1165     /** The base URI where the resources are hold. */
1166     char *baseURI;
1167     /** Bitmap holds observable, discoverable, secure option flag.*/
1168     uint8_t bitmap;
1169     /** Port set in case, the secure flag is set above. */
1170     uint16_t port;
1171     /** Id for each set of links i.e. tag. */
1172     union
1173     {
1174         /** An ordinal number that is not repeated - must be unique in the collection context. */
1175         uint8_t ins;
1176         /** Any unique string including a URI. */
1177         char *uniqueStr;
1178         /** Use UUID for universal uniqueness - used in /oic/res to identify the device. */
1179         OCIdentity uniqueUUID;
1180     };
1181     /** Defines the list of allowable resource types (for Target and anchors) in links included
1182      * in the collection; new links being created can only be from this list. */
1183     char *rts;
1184     /** When specified this is the default relationship to use when an OIC Link does not specify
1185      * an explicit relationship with *rel* parameter. */
1186     char *drel;
1187     /** Time to keep holding resource.*/
1188     uint32_t ttl;
1189 } OCTagsPayload;
1190
1191 /** Resource collection payload. */
1192 typedef struct OCResourceCollectionPayload
1193 {
1194     /** Collection tags payload.*/
1195     OCTagsPayload *tags;
1196     /** Array of links payload. */
1197     OCLinksPayload *setLinks;
1198     /** Holding address of the next resource. */
1199     struct OCResourceCollectionPayload *next;
1200 } OCResourceCollectionPayload;
1201
1202 typedef struct OCDiscoveryPayload
1203 {
1204     OCPayload base;
1205
1206     /** Device Id */
1207     char *sid;
1208
1209     /** A special case for handling RD address. */
1210     char* baseURI;
1211
1212     /** Name */
1213     char *name;
1214
1215     /** HREF */
1216     char *uri;
1217
1218     /** Resource Type */
1219     OCStringLL *type;
1220
1221     /** Interface */
1222     OCStringLL *iface;
1223
1224     /** This structure holds the old /oic/res response. */
1225     OCResourcePayload *resources;
1226
1227     /** Holding address of the next DiscoveryPayload. */
1228     struct OCDiscoveryPayload *next;
1229
1230 } OCDiscoveryPayload;
1231
1232 /**
1233  * Structure holding discovery payload.
1234  */
1235 typedef struct
1236 {
1237     /** Device Name. */
1238     OCDeviceInfo n;
1239     /** Device Identity. */
1240     OCIdentity di;
1241     /** Value holding the bias factor of the RD. */
1242     uint8_t sel;
1243 } OCRDDiscoveryPayload;
1244
1245 /**
1246  * RD Payload that will be transmitted over the wire.
1247  */
1248 typedef struct
1249 {
1250     OCPayload base;
1251     /** Pointer to the discovery response payload.*/
1252     OCRDDiscoveryPayload *rdDiscovery;
1253     /** Pointer to the publish payload.*/
1254     OCResourceCollectionPayload *rdPublish;
1255 } OCRDPayload;
1256
1257 typedef struct
1258 {
1259     OCPayload base;
1260     char *sid;
1261     char* deviceName;
1262     char* specVersion;
1263     OCStringLL *dataModelVersions;
1264     OCStringLL *interfaces;
1265     OCStringLL *types;
1266 } OCDevicePayload;
1267
1268 typedef struct
1269 {
1270     OCPayload base;
1271     char* uri;
1272     OCPlatformInfo info;
1273     OCStringLL* rt;
1274     OCStringLL* interfaces;
1275 } OCPlatformPayload;
1276
1277 typedef struct
1278 {
1279     OCPayload base;
1280     uint8_t* securityData;
1281     size_t payloadSize;
1282 } OCSecurityPayload;
1283
1284 #ifdef WITH_PRESENCE
1285 typedef struct
1286 {
1287     OCPayload base;
1288     uint32_t sequenceNumber;
1289     uint32_t maxAge;
1290     OCPresenceTrigger trigger;
1291     char* resourceType;
1292 } OCPresencePayload;
1293 #endif
1294
1295 /**
1296  * Incoming requests handled by the server. Requests are passed in as a parameter to the
1297  * OCEntityHandler callback API.
1298  * The OCEntityHandler callback API must be implemented in the application in order
1299  * to receive these requests.
1300  */
1301 typedef struct
1302 {
1303     /** Associated resource.*/
1304     OCResourceHandle resource;
1305
1306     /** Associated request handle.*/
1307     OCRequestHandle requestHandle;
1308
1309     /** the REST method retrieved from received request PDU.*/
1310     OCMethod method;
1311
1312     /** description of endpoint that sent the request.*/
1313     OCDevAddr devAddr;
1314
1315     /** resource query send by client.*/
1316     char * query;
1317
1318     /** Information associated with observation - valid only when OCEntityHandler flag includes
1319      * ::OC_OBSERVE_FLAG.*/
1320     OCObservationInfo obsInfo;
1321
1322     /** Number of the received vendor specific header options.*/
1323     uint8_t numRcvdVendorSpecificHeaderOptions;
1324
1325     /** Pointer to the array of the received vendor specific header options.*/
1326     OCHeaderOption * rcvdVendorSpecificHeaderOptions;
1327
1328     /** Message id.*/
1329     uint16_t messageID;
1330
1331     /** the payload from the request PDU.*/
1332     OCPayload *payload;
1333
1334 } OCEntityHandlerRequest;
1335
1336
1337 /**
1338  * Response from queries to remote servers. Queries are made by calling the OCDoResource API.
1339  */
1340 typedef struct
1341 {
1342     /** Address of remote server.*/
1343     OCDevAddr devAddr;
1344
1345     /** backward compatibility (points to devAddr).*/
1346     OCDevAddr *addr;
1347
1348     /** backward compatibility.*/
1349     OCConnectivityType connType;
1350
1351     /** the security identity of the remote server.*/
1352     OCIdentity identity;
1353
1354     /** the is the result of our stack, OCStackResult should contain coap/other error codes.*/
1355     OCStackResult result;
1356
1357     /** If associated with observe, this will represent the sequence of notifications from server.*/
1358     uint32_t sequenceNumber;
1359
1360     /** resourceURI.*/
1361     const char * resourceUri;
1362
1363     /** the payload for the response PDU.*/
1364     OCPayload *payload;
1365
1366     /** Number of the received vendor specific header options.*/
1367     uint8_t numRcvdVendorSpecificHeaderOptions;
1368
1369     /** An array of the received vendor specific header options.*/
1370     OCHeaderOption rcvdVendorSpecificHeaderOptions[MAX_HEADER_OPTIONS];
1371 } OCClientResponse;
1372
1373 /**
1374  * Request handle is passed to server via the entity handler for each incoming request.
1375  * Stack assigns when request is received, server sets to indicate what request response is for.
1376  */
1377 typedef struct
1378 {
1379     /** Request handle.*/
1380     OCRequestHandle requestHandle;
1381
1382     /** Resource handle.*/
1383     OCResourceHandle resourceHandle;
1384
1385     /** Allow the entity handler to pass a result with the response.*/
1386     OCEntityHandlerResult  ehResult;
1387
1388     /** This is the pointer to server payload data to be transferred.*/
1389     OCPayload* payload;
1390
1391     /** number of the vendor specific header options .*/
1392     uint8_t numSendVendorSpecificHeaderOptions;
1393
1394     /** An array of the vendor specific header options the entity handler wishes to use in response.*/
1395     OCHeaderOption sendVendorSpecificHeaderOptions[MAX_HEADER_OPTIONS];
1396
1397     /** URI of new resource that entity handler might create.*/
1398     char resourceUri[MAX_URI_LENGTH];
1399
1400     /** Server sets to true for persistent response buffer,false for non-persistent response buffer*/
1401     uint8_t persistentBufferFlag;
1402 } OCEntityHandlerResponse;
1403
1404 /**
1405  * Entity's state
1406  */
1407 typedef enum
1408 {
1409     /** Request state.*/
1410     OC_REQUEST_FLAG = (1 << 1),
1411     /** Observe state.*/
1412     OC_OBSERVE_FLAG = (1 << 2)
1413 } OCEntityHandlerFlag;
1414
1415 /**
1416  * Possible return values from client application callback
1417  *
1418  * A client application callback returns an OCStackApplicationResult to indicate whether
1419  * the stack should continue to keep the callback registered.
1420  */
1421 typedef enum
1422 {
1423     /** Make no more calls to the callback and call the OCClientContextDeleter for this callback */
1424     OC_STACK_DELETE_TRANSACTION = 0,
1425     /** Keep this callback registered and call it if an apropriate event occurs */
1426     OC_STACK_KEEP_TRANSACTION
1427 } OCStackApplicationResult;
1428
1429
1430 //#ifdef DIRECT_PAIRING
1431 /**
1432  * @brief   direct pairing Method Type.
1433  *              0:  not allowed
1434  *              1:  pre-configured pin
1435  *              2:  random pin
1436  */
1437 typedef enum OCPrm
1438 {
1439     DP_NOT_ALLOWED             = 0x0,
1440     DP_PRE_CONFIGURED        = (0x1 << 0),
1441     DP_RANDOM_PIN               = (0x1 << 1),
1442 } OCPrm_t;
1443
1444 /**
1445  * Device Information of discoverd direct pairing device(s).
1446  */
1447 typedef struct OCDPDev
1448 {
1449     OCDevAddr               endpoint;
1450     OCConnectivityType   connType;
1451     uint16_t                     securePort;
1452     bool                  edp;
1453     OCPrm_t           *prm;
1454     size_t                prmLen;
1455     OCUUIdentity     deviceID;
1456     OCUUIdentity     rowner;
1457     struct OCDPDev *next;
1458 } OCDPDev_t;
1459 //#endif // DIRECT_PAIRING
1460
1461 /*
1462  * -------------------------------------------------------------------------------------------
1463  * Callback function definitions
1464  * -------------------------------------------------------------------------------------------
1465  */
1466
1467 /**
1468  * Client applications implement this callback to consume responses received from Servers.
1469  */
1470 typedef OCStackApplicationResult (* OCClientResponseHandler)(void *context, OCDoHandle handle,
1471     OCClientResponse * clientResponse);
1472
1473 /**
1474  * Client applications using a context pointer implement this callback to delete the
1475  * context upon removal of the callback/context pointer from the internal callback-list.
1476  */
1477 typedef void (* OCClientContextDeleter)(void *context);
1478
1479 /**
1480  * This info is passed from application to OC Stack when initiating a request to Server.
1481  */
1482 typedef struct OCCallbackData
1483 {
1484     /** Pointer to the context.*/
1485     void *context;
1486
1487     /** The pointer to a function the stack will call to handle the requests.*/
1488     OCClientResponseHandler cb;
1489
1490     /** A pointer to a function to delete the context when this callback is removed.*/
1491     OCClientContextDeleter cd;
1492
1493 #ifdef SUPPORTS_DEFAULT_CTOR
1494     OCCallbackData() = default;
1495     OCCallbackData(void* ctx, OCClientResponseHandler callback, OCClientContextDeleter deleter)
1496         :context(ctx), cb(callback), cd(deleter){}
1497 #endif
1498 } OCCallbackData;
1499
1500 /**
1501  * Application server implementations must implement this callback to consume requests OTA.
1502  * Entity handler callback needs to fill the resPayload of the entityHandlerRequest.
1503  */
1504 typedef OCEntityHandlerResult (*OCEntityHandler)
1505 (OCEntityHandlerFlag flag, OCEntityHandlerRequest * entityHandlerRequest, void* callbackParam);
1506
1507 /**
1508  * Device Entity handler need to use this call back instead of OCEntityHandler.
1509  */
1510 typedef OCEntityHandlerResult (*OCDeviceEntityHandler)
1511 (OCEntityHandlerFlag flag, OCEntityHandlerRequest * entityHandlerRequest, char* uri, void* callbackParam);
1512
1513 //#ifdef DIRECT_PAIRING
1514 /**
1515  * Callback function definition of direct-pairing
1516  *
1517  * @param[OUT] ctx - user context returned in the callback.
1518  * @param[OUT] peer - pairing device info.
1519  * @param[OUT} result - It's returned with 'OC_STACK_XXX'. It will return 'OC_STACK_OK'
1520  *                                   if D2D pairing is success without error
1521  */
1522 typedef void (*OCDirectPairingCB)(void *ctx, OCDPDev_t *peer, OCStackResult result);
1523 //#endif // DIRECT_PAIRING
1524
1525 #ifdef __cplusplus
1526 }
1527 #endif // __cplusplus
1528
1529 #endif /* OCTYPES_H_ */