Merge "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_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 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     char * messageUri;
78     char * syncUri;
79
80     NSSelector accessPolicy;
81
82     NSProviderConnectionInfo * connection;
83
84 } NSProvider_internal;
85
86 typedef struct
87 {
88     uint64_t messageId;
89     char providerId[NS_DEVICE_ID_LENGTH];
90     NSSyncType state;
91
92     NSProviderConnectionInfo * connection;
93
94 } NSSyncInfo_internal;
95
96 typedef struct
97 {
98     NSSyncType status;
99     NSMessage * msg;
100
101 } NSStoreMessage;
102
103 bool NSIsStartedConsumer();
104 void NSSetIsStartedConsumer(bool setValue);
105
106 void NSSetDiscoverProviderCb(NSProviderDiscoveredCallback cb);
107 void NSDiscoveredProvider(NSProvider * provider);
108
109 void NSSetSubscriptionAcceptedCb(NSSubscriptionAcceptedCallback cb);
110 void NSSubscriptionAccepted(NSProvider * provider);
111
112 void NSSetMessagePostedCb(NSMessageReceivedCallback  cb);
113 void NSMessagePost(NSMessage * obj);
114
115 void NSSetNotificationSyncCb(NSSyncInfoReceivedCallback cb);
116 void NSNotificationSync(NSSyncInfo * sync);
117
118 char ** NSGetConsumerId();
119 void NSSetConsumerId(char * cId);
120
121 char * NSMakeRequestUriWithConsumerId(const char * uri);
122
123 NSTask * NSMakeTask(NSTaskType, void *);
124
125 NSResult NSConsumerPushEvent(NSTask *);
126
127 NSMessage * NSCopyMessage(NSMessage *);
128 void NSRemoveMessage(NSMessage *);
129
130 NSProviderConnectionInfo * NSCreateProviderConnections(OCDevAddr * inAddr);
131 NSProviderConnectionInfo * NSCopyProviderConnections(NSProviderConnectionInfo * conn);
132 void NSRemoveConnections(NSProviderConnectionInfo * connections);
133
134 NSProvider_internal * NSCopyProvider(NSProvider_internal *);
135 void NSRemoveProvider(NSProvider_internal *);
136
137 OCStackResult NSInvokeRequest(OCDoHandle * handle,
138         OCMethod method, const OCDevAddr * addr,
139         const char * queryUrl, OCPayload * payload,
140         void * callbackFunc, void * callbackData, OCConnectivityType type);
141
142 bool NSOCResultToSuccess(OCStackResult ret);
143
144 #ifdef __cplusplus
145 }
146 #endif // __cplusplus
147
148 #endif // _NS_CONSUMER_CONSTANTS_H_