Merge branch '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_COMMON_H_
22 #define _NS_CONSUMER_COMMON_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 typedef enum
46 {
47     NS_DISCOVER_DEFAULT, // will work for adapter_ip.
48     NS_DISCOVER_UDP,
49     NS_DISCOVER_TCP,
50     NS_DISCOVER_CLOUD
51 } NSConsumerDiscoverType;
52
53 typedef enum
54 {
55     NS_SELECTION_CONSUMER = 0,
56     NS_SELECTION_PROVIDER = 1
57 } NSSelector;
58
59 typedef struct NSProviderConnectionInfo
60 {
61     OCDevAddr * addr;
62
63     OCDoHandle messageHandle;
64     OCDoHandle syncHandle;
65
66     bool isCloudConnection;
67     bool isSubscribing;
68
69     struct NSProviderConnectionInfo * next;
70
71 } NSProviderConnectionInfo;
72
73 typedef struct
74 {
75     char providerId[NS_DEVICE_ID_LENGTH];
76
77     NSTopicLL * topicLL;
78
79     char * messageUri;
80     char * syncUri;
81     char * topicUri;
82
83     NSSelector accessPolicy;
84     NSProviderState state;
85
86     NSProviderConnectionInfo * connection;
87
88 } NSProvider_internal;
89
90 typedef struct
91 {
92     uint64_t messageId;
93     char providerId[NS_DEVICE_ID_LENGTH];
94     NSSyncType state;
95
96     NSProviderConnectionInfo * connection;
97
98 } NSSyncInfo_internal;
99
100 typedef struct
101 {
102     NSSyncType status;
103     NSMessage * msg;
104
105 } NSStoreMessage;
106
107 bool NSIsStartedConsumer();
108 void NSSetIsStartedConsumer(bool setValue);
109
110 void NSSetProviderChangedCb(NSProviderStateCallback cb);
111 void NSProviderChanged(NSProvider * provider, NSProviderState response);
112
113 void NSSetMessagePostedCb(NSMessageReceivedCallback  cb);
114 void NSMessagePost(NSMessage * obj);
115
116 void NSSetNotificationSyncCb(NSSyncInfoReceivedCallback cb);
117 void NSNotificationSync(NSSyncInfo * sync);
118
119 char ** NSGetConsumerId();
120 void NSSetConsumerId(char * cId);
121
122 char * NSMakeRequestUriWithConsumerId(const char * uri);
123
124 NSTask * NSMakeTask(NSTaskType, void *);
125
126 NSResult NSConsumerPushEvent(NSTask *);
127
128 NSMessage * NSCopyMessage(NSMessage *);
129 void NSRemoveMessage(NSMessage *);
130
131 NSProviderConnectionInfo * NSCreateProviderConnections(OCDevAddr *);
132 NSProviderConnectionInfo * NSCopyProviderConnections(NSProviderConnectionInfo *);
133 void NSRemoveConnections(NSProviderConnectionInfo *);
134
135 NSProvider_internal * NSCopyProvider_internal(NSProvider_internal *);
136 NSProvider * NSCopyProvider(NSProvider_internal *);
137 void NSRemoveProvider_internal(NSProvider_internal *);
138 void NSRemoveProvider(NSProvider *);
139
140 NSSyncInfo_internal * NSCopySyncInfo(NSSyncInfo_internal *);
141 void NSRemoveSyncInfo(NSSyncInfo_internal *);
142
143 NSTopicLL * NSCopyTopicNode(NSTopicLL *);
144 void NSRemoveTopicNode(NSTopicLL *);
145 NSResult NSInsertTopicNode(NSTopicLL *, NSTopicLL *);
146
147 NSTopicLL * NSCopyTopicLL(NSTopicLL *);
148 void NSRemoveTopicLL(NSTopicLL *);
149
150 OCStackResult NSInvokeRequest(OCDoHandle * handle,
151         OCMethod method, const OCDevAddr * addr,
152         const char * queryUrl, OCPayload * payload,
153         void * callbackFunc, void * callbackData, OCConnectivityType type);
154
155 bool NSOCResultToSuccess(OCStackResult ret);
156
157 #ifdef __cplusplus
158 }
159 #endif // __cplusplus
160
161 #endif // _NS_CONSUMER_COMMON_H_