Replace gets function
[platform/upstream/iotivity.git] / service / notification / examples / linux / notificationconsumer.c
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 #include <stdio.h>
22 #include <unistd.h>
23 #include <string.h>
24 #include "pthread.h"
25
26 #include "ocstack.h"
27 #include "NSCommon.h"
28 #include "NSConsumerInterface.h"
29
30 #ifdef WITH_CLOUD
31 #include "NSConstants.h"
32 #include "oic_malloc.h"
33 #include "cloud_connector.h"
34
35 #define CLOUD_CONTEXT_VALUE 0x99
36
37 char CLOUD_ADDRESS[100];
38 char CLOUD_AUTH_PROVIDER[100];
39 char CLOUD_AUTH_CODE[100];
40 char CLOUD_UID[100];
41 char CLOUD_ACCESS_TOKEN[100];
42 #endif
43
44
45 NSProvider * g_provider = NULL;
46 NSTopicLL * g_topicLL = NULL;
47
48 FILE* server_fopen(const char *path, const char *mode)
49 {
50     (void)path;
51     return fopen("oic_ns_provider_db.dat", mode);
52 }
53
54 void printProviderTopicList(NSTopicLL * topics)
55 {
56     printf("printProviderTopicList\n");
57     if (topics)
58     {
59         NSTopicLL * iter = topics;
60         while (iter)
61         {
62             printf("Topic Name: %s\t Topic State: %d\n", iter->topicName, iter->state);
63             iter = iter->next;
64         }
65     }
66 }
67
68 void onProviderChanged(NSProvider * provider, NSProviderState response)
69 {
70     printf("Provider changed: %d\n", response);
71     printf("subscribed provider Id : %s\n", provider->providerId);
72
73     if (response == NS_DISCOVERED)
74     {
75         printf("notification resource discovered\n");
76         printf("subscribe result %d\n", NSSubscribe(provider->providerId));
77         printf("startSubscribing\n");
78     }
79
80     else if (response == NS_TOPIC)
81     {
82         printf ("Provider Topic Updated\n");
83         g_topicLL = NSConsumerGetTopicList(provider->providerId);
84         printProviderTopicList(g_topicLL);
85         g_provider = provider;
86     }
87 }
88
89 void onNotificationPosted(NSMessage * notification)
90 {
91     printf("id : %lld\n", (long long int)notification->messageId);
92     printf("title : %s\n", notification->title);
93     printf("content : %s\n", notification->contentText);
94     printf("source : %s\n", notification->sourceName);
95     if (notification->topic && strlen(notification->topic) > 0)
96     {
97         printf("topic : %s\n", notification->topic);
98     }
99     NSConsumerSendSyncInfo(notification->providerId, notification->messageId, NS_SYNC_READ);
100 }
101
102 void onNotificationSync(NSSyncInfo * sync)
103 {
104     printf("Sync ID : %lld\n", (long long int)sync->messageId);
105     printf("Sync STATE : %d\n", sync->state);
106 }
107
108 void* OCProcessThread(void * ptr)
109 {
110     (void) ptr;
111
112     while (true)
113     {
114         usleep(2000);
115         if(OCProcess() != OC_STACK_OK)
116         {
117             OCStop();
118             break;
119         }
120     }
121
122     return NULL;
123 }
124
125 void input(char * buffer)
126 {
127     char ch;
128     int i = 0;
129
130     while( (ch = getchar()) != '\n' && i < 100)
131         buffer[i++] = ch;
132
133     buffer[i] = '\0';
134 }
135
136 int main(void)
137 {
138     bool isExit = false;
139     pthread_t OCThread = NULL;
140
141     printf("start Iotivity\n");
142
143     // open oic_db
144     static OCPersistentStorage ps = {server_fopen, fread, fwrite, fclose, unlink};
145     OCRegisterPersistentStorageHandler(&ps);
146
147     if (OCInit1(OC_CLIENT_SERVER, OC_DEFAULT_FLAGS, OC_DEFAULT_FLAGS) != OC_STACK_OK)
148     {
149         printf("OCInit fail\n");
150         return 0;
151     }
152
153     NSConsumerConfig cfg;
154     cfg.changedCb = onProviderChanged;
155     cfg.messageCb = onNotificationPosted;
156     cfg.syncInfoCb = onNotificationSync;
157
158     pthread_create(&OCThread, NULL, OCProcessThread, NULL);
159
160     printf("start notification consumer service\n");
161     while (!isExit)
162     {
163         int num = 0;
164         char dummy = '\0';
165
166         printf("1. Start Consumer\n");
167         printf("2. Stop Consumer\n");
168         printf("3. Get Topics\n");
169         printf("4. Select Topics\n");
170         printf("5. Exit\n");
171 #ifdef WITH_CLOUD
172         printf("21. Enable Remote Service (after login)\n");
173         printf("31. Cloud Signup\n");
174         printf("32. Cloud Login\n");
175         printf("33. Cloud Logout\n");
176 #endif
177
178         printf("Input: ");
179
180         scanf("%d", &num);
181         fflush(stdin);
182         scanf("%c", &dummy);
183         fflush(stdin);
184
185         switch (num)
186         {
187             case 1:
188                 printf("1. Start Consumer\n");
189                 NSStartConsumer(cfg);
190                 break;
191             case 2:
192                 printf("2. Stop Consumer");
193                 NSStopConsumer();
194                 break;
195             case 3:
196                 printf("3. Get Topics\n");
197                 if(g_provider)
198                 {
199                     g_topicLL = NSConsumerGetTopicList(g_provider->providerId);
200                     printProviderTopicList(g_topicLL);
201                 }
202                 break;
203             case 4:
204                 printf("4. Select Topics\n");
205
206                 if (g_provider && g_topicLL)
207                 {
208                     NSTopicLL * iter = g_topicLL;
209                     int i = 0;
210                     while (iter)
211                     {
212                         iter->state = (i++)%2;
213                         iter = iter->next;
214                     }
215                     NSResult ret = NSConsumerUpdateTopicList(g_provider->providerId, g_topicLL);
216                     if (ret == NS_OK)
217                     {
218                         printProviderTopicList(g_topicLL);
219                     }
220                     else
221                     {
222                         printf("Update fail\n");
223                     }
224                 }
225                 break;
226             case 5:
227                 printf("5. Exit");
228                 isExit = true;
229                 break;
230 #ifdef WITH_CLOUD
231             case 21:
232                 printf("Enable Remote Service");
233                 if(!IsCloudLoggedin())
234                 {
235                     printf("Cloud Login required");
236                     break;
237                 }
238                 NSConsumerEnableRemoteService(CLOUD_ADDRESS);
239                 break;
240             case 31:
241                 printf("Remote Server Address: ");
242                 input(CLOUD_ADDRESS);
243
244                 printf("Auth Provider(eg. github): ");
245                 input(CLOUD_AUTH_PROVIDER);
246
247                 printf("Auth Code: ");
248                 input(CLOUD_AUTH_CODE);
249
250                 OCCloudSignup(CLOUD_ADDRESS, OCGetServerInstanceIDString(),
251                     CLOUD_AUTH_PROVIDER, CLOUD_AUTH_CODE, CloudSignupCallback);
252                 printf("OCCloudSignup requested");
253                 break;
254             case 32:
255                 printf("Remote Server Address: ");
256                 input(CLOUD_ADDRESS);
257
258                 printf("UID: ");
259                 input(CLOUD_UID);
260
261                 printf("ACCESS_TOKEN: ");
262                 input(CLOUD_ACCESS_TOKEN);
263
264                 OCCloudLogin(CLOUD_ADDRESS, CLOUD_UID, OCGetServerInstanceIDString(),
265                     CLOUD_ACCESS_TOKEN, CloudLoginoutCallback);
266                 printf("OCCloudLogin requested");
267                 break;
268             case 33:
269                 OCCloudLogout(CLOUD_ADDRESS, CloudLoginoutCallback);
270                 printf("OCCloudLogin requested");
271                 break;
272 #endif
273             default:
274                 break;
275         }
276     }
277     return 0;
278 }