Update Logic to manage Provider list.
[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_LOW_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_OK_V(obj) \
86     { \
87         OCStackResult _ret = (obj); \
88         if ( _ret != OC_STACK_OK) \
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_OK(obj, retVal) \
96     { \
97         OCStackResult _ret = (obj); \
98         if ( _ret != OC_STACK_OK) \
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_OK_WITH_POST_CLEANING(obj, retVal, func) \
106     { \
107         OCStackResult _ret = (obj); \
108         if ( _ret != OC_STACK_OK) \
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 struct
127 {
128     char providerId[NS_DEVICE_ID_LENGTH];
129
130     char * messageUri;
131     char * syncUri;
132
133     OCDoHandle messageHandle;
134     OCDoHandle syncHandle;
135     OCDevAddr * _addr;
136     NSAccessPolicy accessPolicy;
137
138 } NSProvider_internal;
139
140 typedef struct
141 {
142     uint64_t messageId;
143     char providerId[NS_DEVICE_ID_LENGTH];
144     NSSyncType state;
145
146     OCDevAddr * _addr;
147 } NSSyncInfo_internal;
148
149 typedef struct
150 {
151     // Mandatory
152     uint64_t messageId;
153     char providerId[NS_DEVICE_ID_LENGTH];
154
155     //optional
156     NSMessageType type;
157     char * dateTime;
158     uint64_t ttl;
159     char * title;
160     char * contentText;
161     char * sourceName;
162     NSMediaContents mediaContents;
163
164     OCDevAddr * _addr;
165     //NSConsumerMessageTypes messageTypes;
166     NSSyncType _messageTypes;
167 } NSMessage_consumer;
168
169 bool NSIsStartedConsumer();
170 void NSSetIsStartedConsumer(bool setValue);
171
172 void NSSetDiscoverProviderCb(NSProviderDiscoveredCallback cb);
173 void NSDiscoveredProvider(NSProvider * provider);
174
175 void NSSetSubscriptionAcceptedCb(NSSubscriptionAcceptedCallback cb);
176 void NSSubscriptionAccepted(NSProvider * provider);
177
178 void NSSetMessagePostedCb(NSMessageReceivedCallback  cb);
179 void NSMessagePost(NSMessage * obj);
180
181 void NSSetNotificationSyncCb(NSSyncInfoReceivedCallback cb);
182 void NSNotificationSync(NSSyncInfo * sync);
183
184 char ** NSGetConsumerId();
185 void NSSetConsumerId(char * cId);
186
187 char * NSMakeRequestUriWithConsumerId(const char * uri);
188
189 NSTask * NSMakeTask(NSTaskType, void *);
190
191 NSResult NSConsumerPushEvent(NSTask *);
192
193 NSMessage_consumer * NSCopyMessage(NSMessage_consumer *);
194 void NSRemoveMessage(NSMessage_consumer *);
195
196 NSProvider_internal * NSCopyProvider(NSProvider_internal *);
197 void NSRemoveProvider(NSProvider_internal *);
198
199 OCStackResult NSInvokeRequest(OCDoHandle * handle,
200         OCMethod method, const OCDevAddr * addr,
201         const char * queryUrl, OCPayload * payload,
202         void * callbackFunc, void * callbackData);
203
204 #ifdef __cplusplus
205 }
206 #endif // __cplusplus
207
208 #endif // _NS_CONSUMER_CONSTANTS_H_