Merge branch 'master' into notification-service
[platform/upstream/iotivity.git] / service / notification / src / consumer / NSConsumerCommon.h
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 #ifndef _NS_CONSUMER_CONSTANTS_H_
22 #define _NS_CONSUMER_CONSTANTS_H_
23
24 #ifdef __cplusplus
25 extern "C" {
26 #endif // __cplusplus
27
28 #include <stdio.h>
29 #include <stdbool.h>
30
31 #include "NSConsumerInterface.h"
32 #include "NSStructs.h"
33 #include "ocstack.h"
34
35 #define NS_QOS OC_HIGH_QOS
36 #define NS_RESOURCE_TYPE "oic.r.notification"
37 #define NS_RESOURCE_URI "/notification"
38 #define NS_INTERFACE_BASELINE "oic.if.baseline"
39 #define NS_INTERFACE_NOTIFICATION "oic.if.notification"
40 #define NS_RESOURCE_QUERY "/oic/res"
41
42 #define NS_DISCOVER_QUERY "/oic/res?rt=oic.r.notification"
43 #define NS_DEVICE_ID_LENGTH 37
44
45 #define NS_VERIFY_NOT_NULL_V(obj) \
46     { \
47         if ((obj) == NULL) \
48         { \
49             NS_LOG_V(ERROR, "%s : %s is null", __func__, #obj); \
50             return; \
51         } \
52     }
53
54 #define NS_VERIFY_NOT_NULL(obj, retVal) \
55     { \
56         if ((obj) == NULL) \
57         { \
58             NS_LOG_V(ERROR, "%s : %s is null", __func__, #obj); \
59             return (retVal); \
60         } \
61     }
62
63 #define NS_VERIFY_NOT_NULL_WITH_POST_CLEANING_V(obj, func) \
64     { \
65         if ((obj) == NULL) \
66         { \
67             NS_LOG_V(ERROR, "%s : %s is null", __func__, #obj); \
68             NS_LOG(ERROR, "execute deletion"); \
69             (func); \
70             return; \
71         } \
72     }
73
74 #define NS_VERIFY_NOT_NULL_WITH_POST_CLEANING(obj, retVal, func) \
75     { \
76         if ((obj) == NULL) \
77         { \
78             NS_LOG_V(ERROR, "%s : %s is null", __func__, #obj); \
79             NS_LOG(ERROR, "execute deletion"); \
80             (func); \
81             return (retVal); \
82         } \
83     }
84
85 #define NS_VERIFY_STACK_SUCCESS_V(obj) \
86     { \
87         bool _ret = (obj); \
88         if ( _ret != true) \
89         { \
90             NS_LOG_V(ERROR, "%s : %s is not OC_STACK_OK : %d", __func__, #obj, _ret); \
91             return; \
92         } \
93     }
94
95 #define NS_VERIFY_STACK_SUCCESS(obj, retVal) \
96     { \
97         bool _ret = (obj); \
98         if ( _ret != true) \
99         { \
100             NS_LOG_V(ERROR, "%s : %s is not OC_STACK_OK : %d", __func__, #obj, _ret); \
101             return (retVal); \
102         } \
103     }
104
105 #define NS_VERIFY_STACK_SUCCESS_WITH_POST_CLEANING(obj, retVal, func) \
106     { \
107         bool _ret = (obj); \
108         if ( _ret != true) \
109         { \
110             NS_LOG_V(ERROR, "%s : %s is not OC_STACK_OK : %d", __func__, #obj, _ret); \
111             (func); \
112             return (retVal); \
113         } \
114     }
115
116 #define NSOICFree(obj) \
117     { \
118         if ((obj)) \
119         { \
120             OICFree((obj)); \
121             (obj) = NULL; \
122             NS_LOG_V(DEBUG, "%s : %s Removed", __func__, #obj); \
123         } \
124     }
125
126 typedef enum
127 {
128     NS_DISCOVER_DEFAULT, // will work for adapter_ip.
129     NS_DISCOVER_UDP,
130     NS_DISCOVER_TCP,
131     NS_DISCOVER_CLOUD
132 } NSConsumerDiscoverType;
133
134 typedef enum
135 {
136     NS_SELECTION_CONSUMER = 0,
137     NS_SELECTION_PROVIDER = 1
138 } NSSelector;
139
140 typedef struct NSProviderConnectionInfo
141 {
142     OCDevAddr * addr;
143
144     OCDoHandle messageHandle;
145     OCDoHandle syncHandle;
146
147     bool isCloudConnection;
148     bool isSubscribing;
149
150     struct NSProviderConnectionInfo * next;
151
152 } NSProviderConnectionInfo;
153
154 typedef struct
155 {
156     char providerId[NS_DEVICE_ID_LENGTH];
157
158     char * messageUri;
159     char * syncUri;
160
161     NSSelector accessPolicy;
162
163     NSProviderConnectionInfo * connection;
164
165 } NSProvider_internal;
166
167 typedef struct
168 {
169     uint64_t messageId;
170     char providerId[NS_DEVICE_ID_LENGTH];
171     NSSyncType state;
172
173     NSProviderConnectionInfo * connection;
174
175 } NSSyncInfo_internal;
176
177 typedef struct
178 {
179     NSSyncType status;
180     NSMessage * msg;
181
182 } NSStoreMessage;
183
184 bool NSIsStartedConsumer();
185 void NSSetIsStartedConsumer(bool setValue);
186
187 void NSSetDiscoverProviderCb(NSProviderDiscoveredCallback cb);
188 void NSDiscoveredProvider(NSProvider * provider);
189
190 void NSSetSubscriptionAcceptedCb(NSSubscriptionAcceptedCallback cb);
191 void NSSubscriptionAccepted(NSProvider * provider);
192
193 void NSSetMessagePostedCb(NSMessageReceivedCallback  cb);
194 void NSMessagePost(NSMessage * obj);
195
196 void NSSetNotificationSyncCb(NSSyncInfoReceivedCallback cb);
197 void NSNotificationSync(NSSyncInfo * sync);
198
199 char ** NSGetConsumerId();
200 void NSSetConsumerId(char * cId);
201
202 char * NSMakeRequestUriWithConsumerId(const char * uri);
203
204 NSTask * NSMakeTask(NSTaskType, void *);
205
206 NSResult NSConsumerPushEvent(NSTask *);
207
208 NSMessage * NSCopyMessage(NSMessage *);
209 void NSRemoveMessage(NSMessage *);
210
211 NSProviderConnectionInfo * NSCreateProviderConnections(OCDevAddr * inAddr);
212 NSProviderConnectionInfo * NSCopyProviderConnections(NSProviderConnectionInfo * conn);
213 void NSRemoveConnections(NSProviderConnectionInfo * connections);
214
215 NSProvider_internal * NSCopyProvider(NSProvider_internal *);
216 void NSRemoveProvider(NSProvider_internal *);
217
218 OCStackResult NSInvokeRequest(OCDoHandle * handle,
219         OCMethod method, const OCDevAddr * addr,
220         const char * queryUrl, OCPayload * payload,
221         void * callbackFunc, void * callbackData, OCConnectivityType type);
222
223 bool NSOCResultToSuccess(OCStackResult ret);
224
225 #ifdef __cplusplus
226 }
227 #endif // __cplusplus
228
229 #endif // _NS_CONSUMER_CONSTANTS_H_