Fix C samples format and style
[platform/upstream/iotivity.git] / resource / csdk / stack / samples / linux / SimpleClientServer / occlientcoll.cpp
1 //******************************************************************
2 //
3 // Copyright 2014 Intel Mobile Communications GmbH 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 <stdlib.h>
23 #include <string.h>
24 #include <signal.h>
25 #include <unistd.h>
26 #include <ocstack.h>
27 #include <iostream>
28 #include <sstream>
29 #include "logger.h"
30 const char *getResult(OCStackResult result);
31 std::string getIPAddrTBServer(OCClientResponse * clientResponse);
32 std::string getPortTBServer(OCClientResponse * clientResponse);
33 std::string getQueryStrForGetPut(unsigned  const char * responsePayload);
34
35 #define TAG PCF("occlient")
36 #define DEFAULT_CONTEXT_VALUE 0x99
37 #ifndef MAX_LENGTH_IPv4_ADDR
38 #define MAX_LENGTH_IPv4_ADDR 16
39 #endif
40
41 typedef enum
42 {
43     TEST_INVALID = 0,
44     TEST_GET_DEFAULT,
45     TEST_GET_BATCH,
46     TEST_GET_LINK_LIST,
47     TEST_PUT_DEFAULT,
48     TEST_PUT_BATCH,
49     TEST_PUT_LINK_LIST,
50     TEST_UNKNOWN_RESOURCE_GET_DEFAULT,
51     TEST_UNKNOWN_RESOURCE_GET_BATCH,
52     TEST_UNKNOWN_RESOURCE_GET_LINK_LIST,
53     MAX_TESTS
54 } CLIENT_TEST;
55
56 unsigned static int TEST = TEST_INVALID;
57
58 typedef struct
59 {
60     unsigned char text[30];
61     CLIENT_TEST test;
62 } testToTextMap;
63
64 testToTextMap queryInterface[] = {
65         {"invalid", TEST_INVALID},
66         {"?if=oc.mi.def", TEST_GET_DEFAULT},
67         {"?if=oc.mi.b", TEST_GET_BATCH},
68         {"?if=oc.mi.ll", TEST_GET_LINK_LIST},
69         {"?if=oc.mi.def", TEST_UNKNOWN_RESOURCE_GET_DEFAULT},
70         {"?if=oc.mi.b", TEST_UNKNOWN_RESOURCE_GET_BATCH},
71         {"?if=oc.mi.ll", TEST_UNKNOWN_RESOURCE_GET_LINK_LIST},
72         {"?if=oc.mi.def", TEST_PUT_DEFAULT},
73         {"?if=oc.mi.b", TEST_PUT_BATCH},
74         {"?if=oc.mi.ll", TEST_PUT_LINK_LIST},
75 };
76
77 static std::string putPayload = "{\"state\":\"off\",\"power\":\"0\"}";
78
79 //The following variable determines the interface (wifi, ethernet etc.)
80 //to be used for sending unicast messages. Default set to WIFI.
81 static OCConnectivityType OC_CONNTYPE = OC_WIFI;
82 static const char * MULTICAST_RESOURCE_DISCOVERY_QUERY = "/oc/core";
83
84 // The handle for the observe registration
85 OCDoHandle gObserveDoHandle;
86 // After this crosses a threshold client deregisters for further observations
87 int gNumObserveNotifies = 1;
88
89 int gQuitFlag = 0;
90 /* SIGINT handler: set gQuitFlag to 1 for graceful termination */
91 void handleSigInt(int signum)
92 {
93     if (signum == SIGINT)
94     {
95         gQuitFlag = 1;
96     }
97 }
98
99 // Forward Declaration
100 OCStackApplicationResult getReqCB(void* ctx, OCDoHandle handle, OCClientResponse * clientResponse);
101 int InitGetRequestToUnavailableResource(OCClientResponse * clientResponse);
102 int InitObserveRequest(OCClientResponse * clientResponse);
103 int InitPutRequest(OCClientResponse * clientResponse);
104 int InitGetRequest(OCClientResponse * clientResponse);
105 int InitDiscovery();
106
107 void PrintUsage()
108 {
109     OC_LOG(INFO, TAG, "Usage : occlientcoll -t <Test Case> -c <CA connectivity Type>");
110     OC_LOG(INFO, TAG, "-c <0|1> : Send messages over Ethernet or WIFI");
111     OC_LOG(INFO, TAG, "Test Case 1 : Discover Resources && Initiate GET Request on an"\
112             "available resource using default interface.");
113     OC_LOG(INFO, TAG, "Test Case 2 : Discover Resources && Initiate GET Request on an"\
114                  "available resource using batch interface.");
115     OC_LOG(INFO, TAG, "Test Case 3 : Discover Resources && Initiate GET Request on an"\
116                  "available resource using link list interface.");
117     OC_LOG(INFO, TAG, "Test Case 4 : Discover Resources && Initiate GET & PUT Request on an"\
118                  "available resource using default interface.");
119     OC_LOG(INFO, TAG, "Test Case 5 : Discover Resources && Initiate GET & PUT Request on an"\
120                  "available resource using batch interface.");
121     OC_LOG(INFO, TAG, "Test Case 6 : Discover Resources && Initiate GET & PUT Request on an"\
122                  "available resource using link list interface.");
123     OC_LOG(INFO, TAG, "Test Case 7 : Discover Resources && Initiate GET Request on an"\
124                  "unavailable resource using default interface.");
125     OC_LOG(INFO, TAG, "Test Case 8 : Discover Resources && Initiate GET Request on an"\
126                  "unavailable resource using batch interface.");
127     OC_LOG(INFO, TAG, "Test Case 9 : Discover Resources && Initiate GET Request on an"\
128                  "unavailable resource using link list interface.");
129 }
130
131 OCStackApplicationResult putReqCB(void* ctx, OCDoHandle handle, OCClientResponse * clientResponse)
132 {
133     if(clientResponse == NULL)
134     {
135         OC_LOG(INFO, TAG, "The clientResponse is NULL");
136         return   OC_STACK_DELETE_TRANSACTION;
137     }
138     if(ctx == (void*)DEFAULT_CONTEXT_VALUE)
139     {
140         OC_LOG_V(INFO, TAG, "Callback Context for PUT query recvd successfully");
141         OC_LOG_V(INFO, TAG, "JSON = %s =============> Discovered", clientResponse->resJSONPayload);
142     }
143
144     return OC_STACK_KEEP_TRANSACTION;
145 }
146
147 OCStackApplicationResult getReqCB(void* ctx, OCDoHandle handle, OCClientResponse * clientResponse)
148 {
149     OC_LOG_V(INFO, TAG, "StackResult: %s",
150             getResult(clientResponse->result));
151     if(ctx == (void*)DEFAULT_CONTEXT_VALUE)
152     {
153         OC_LOG_V(INFO, TAG, "SEQUENCE NUMBER: %d", clientResponse->sequenceNumber);
154         if(clientResponse->sequenceNumber == 0)
155         {
156             OC_LOG_V(INFO, TAG, "Callback Context for GET query recvd successfully");
157             OC_LOG_V(INFO, TAG, "Fnd' Rsrc': %s", clientResponse->resJSONPayload);
158         }
159         else
160         {
161             OC_LOG_V(INFO, TAG, "Callback Context for Get recvd successfully %d",
162                     gNumObserveNotifies);
163             OC_LOG_V(INFO, TAG, "Fnd' Rsrc': %s", clientResponse->resJSONPayload);
164             gNumObserveNotifies++;
165             if (gNumObserveNotifies == 3)
166             {
167                 if (OCCancel (gObserveDoHandle, OC_LOW_QOS, NULL, 0) != OC_STACK_OK)
168                 {
169                     OC_LOG(ERROR, TAG, "Observe cancel error");
170                 }
171             }
172         }
173     }
174     if(TEST == TEST_PUT_DEFAULT || TEST == TEST_PUT_BATCH || TEST == TEST_PUT_LINK_LIST)
175     {
176         InitPutRequest(clientResponse);
177     }
178     return OC_STACK_KEEP_TRANSACTION;
179 }
180
181
182 // This is a function called back when a device is discovered
183 OCStackApplicationResult discoveryReqCB(void* ctx, OCDoHandle handle,
184         OCClientResponse * clientResponse)
185 {
186     uint8_t remoteIpAddr[4];
187     uint16_t remotePortNu;
188
189     OC_LOG(INFO, TAG,
190             "Entering discoveryReqCB (Application Layer CB)");
191     OC_LOG_V(INFO, TAG, "StackResult: %s",
192             getResult(clientResponse->result));
193
194     if (ctx == (void*) DEFAULT_CONTEXT_VALUE)
195     {
196         OC_LOG_V(INFO, TAG, "Callback Context recvd successfully");
197     }
198
199     OCDevAddrToIPv4Addr((OCDevAddr *) clientResponse->addr, remoteIpAddr,
200             remoteIpAddr + 1, remoteIpAddr + 2, remoteIpAddr + 3);
201     OCDevAddrToPort((OCDevAddr *) clientResponse->addr, &remotePortNu);
202
203     OC_LOG_V(INFO, TAG,
204             "Device =============> Discovered %s @ %d.%d.%d.%d:%d",
205             clientResponse->resJSONPayload, remoteIpAddr[0], remoteIpAddr[1],
206             remoteIpAddr[2], remoteIpAddr[3], remotePortNu);
207
208     if(TEST == TEST_UNKNOWN_RESOURCE_GET_DEFAULT || TEST == TEST_UNKNOWN_RESOURCE_GET_BATCH ||\
209             TEST == TEST_UNKNOWN_RESOURCE_GET_LINK_LIST)
210     {
211         InitGetRequestToUnavailableResource(clientResponse);
212     }
213     else
214     {
215         InitGetRequest(clientResponse);
216     }
217     return OC_STACK_KEEP_TRANSACTION;
218 }
219
220
221 int InitGetRequestToUnavailableResource(OCClientResponse * clientResponse)
222 {
223     OCStackResult ret;
224     OCCallbackData cbData;
225     OCDoHandle handle;
226     std::ostringstream getQuery;
227     getQuery << "coap://" << getIPAddrTBServer(clientResponse) << ":" <<
228             getPortTBServer(clientResponse) << "/SomeUnknownResource";
229     cbData.cb = getReqCB;
230     cbData.context = (void*)DEFAULT_CONTEXT_VALUE;
231     cbData.cd = NULL;
232
233     ret = OCDoResource(&handle, OC_REST_GET, getQuery.str().c_str(), 0, 0, OC_CONNTYPE, OC_LOW_QOS,
234             &cbData, NULL, 0);
235     if (ret != OC_STACK_OK)
236     {
237         OC_LOG(ERROR, TAG, "OCStack resource error");
238     }
239     return ret;
240 }
241
242
243 int InitObserveRequest(OCClientResponse * clientResponse)
244 {
245     OCStackResult ret;
246     OCCallbackData cbData;
247     OCDoHandle handle;
248     std::ostringstream obsReg;
249     obsReg << "coap://" << getIPAddrTBServer(clientResponse) << ":" <<
250             getPortTBServer(clientResponse) <<
251             getQueryStrForGetPut(clientResponse->resJSONPayload);
252     cbData.cb = getReqCB;
253     cbData.context = (void*)DEFAULT_CONTEXT_VALUE;
254     cbData.cd = NULL;
255     OC_LOG_V(INFO, TAG, "OBSERVE payload from client = %s ", putPayload.c_str());
256
257     ret = OCDoResource(&handle, OC_REST_OBSERVE, obsReg.str().c_str(), 0, 0, OC_CONNTYPE,
258             OC_LOW_QOS, &cbData, NULL, 0);
259     if (ret != OC_STACK_OK)
260     {
261         OC_LOG(ERROR, TAG, "OCStack resource error");
262     }
263     else
264     {
265         gObserveDoHandle = handle;
266     }
267     return ret;
268 }
269
270
271 int InitPutRequest(OCClientResponse * clientResponse)
272 {
273     OCStackResult ret;
274     OCCallbackData cbData;
275     OCDoHandle handle;
276     //* Make a PUT query*/
277     std::ostringstream getQuery;
278     getQuery << "coap://" << getIPAddrTBServer(clientResponse) << ":" <<
279             getPortTBServer(clientResponse) <<
280             "/a/room" << queryInterface[TEST].text;
281     cbData.cb = putReqCB;
282     cbData.context = (void*)DEFAULT_CONTEXT_VALUE;
283     cbData.cd = NULL;
284     OC_LOG_V(INFO, TAG, "PUT payload from client = %s ", putPayload.c_str());
285
286     ret = OCDoResource(&handle, OC_REST_PUT, getQuery.str().c_str(), 0, putPayload.c_str(),
287                         OC_CONNTYPE, OC_LOW_QOS, &cbData, NULL, 0);
288     if (ret != OC_STACK_OK)
289     {
290         OC_LOG(ERROR, TAG, "OCStack resource error");
291     }
292     return ret;
293 }
294
295
296 int InitGetRequest(OCClientResponse * clientResponse)
297 {
298     OCStackResult ret;
299     OCCallbackData cbData;
300     OCDoHandle handle;
301
302     uint8_t remoteIpAddr[4];
303     uint16_t remotePortNu;
304
305     OCDevAddrToIPv4Addr((OCDevAddr *) clientResponse->addr, remoteIpAddr,
306             remoteIpAddr + 1, remoteIpAddr + 2, remoteIpAddr + 3);
307     OCDevAddrToPort((OCDevAddr *) clientResponse->addr, &remotePortNu);
308
309     //* Make a GET query*/
310     std::ostringstream getQuery;
311     getQuery << "coap://" << getIPAddrTBServer(clientResponse) << ":" <<
312             getPortTBServer(clientResponse) <<
313             "/a/room" << queryInterface[TEST].text;
314
315     std::cout << "Get Query: " << getQuery.str() << std::endl;
316
317     cbData.cb = getReqCB;
318     cbData.context = (void*)DEFAULT_CONTEXT_VALUE;
319     cbData.cd = NULL;
320     ret = OCDoResource(&handle, OC_REST_GET,
321             getQuery.str().c_str(), 0, 0, OC_CONNTYPE, OC_LOW_QOS,
322             &cbData, NULL, 0);
323     if (ret != OC_STACK_OK)
324     {
325         OC_LOG(ERROR, TAG, "OCStack resource error");
326     }
327     return ret;
328 }
329
330 int InitDiscovery()
331 {
332     OCStackResult ret;
333     OCCallbackData cbData;
334     OCDoHandle handle;
335     /* Start a discovery query*/
336     char szQueryUri[64] = { 0 };
337
338     strcpy(szQueryUri, MULTICAST_RESOURCE_DISCOVERY_QUERY);
339
340     cbData.cb = discoveryReqCB;
341     cbData.context = (void*)DEFAULT_CONTEXT_VALUE;
342     cbData.cd = NULL;
343     ret = OCDoResource(&handle, OC_REST_GET, szQueryUri, 0, 0, OC_ALL,
344                         OC_LOW_QOS,
345             &cbData, NULL, 0);
346     if (ret != OC_STACK_OK)
347     {
348         OC_LOG(ERROR, TAG, "OCStack resource error");
349     }
350     return ret;
351 }
352
353 int main(int argc, char* argv[])
354 {
355     int opt;
356
357     while ((opt = getopt(argc, argv, "t:c:")) != -1)
358     {
359         switch (opt)
360         {
361             case 't':
362                 TEST = atoi(optarg);
363                 break;
364             case 'c':
365                 OC_CONNTYPE = OCConnectivityType(atoi(optarg));
366                 break;
367             default:
368                 PrintUsage();
369                 return -1;
370         }
371     }
372     if (TEST <= TEST_INVALID || TEST >= MAX_TESTS)
373     {
374         PrintUsage();
375         return -1;
376     }
377
378     /* Initialize OCStack*/
379     if (OCInit(NULL, 0, OC_CLIENT) != OC_STACK_OK)
380     {
381         OC_LOG(ERROR, TAG, "OCStack init error");
382         return 0;
383     }
384
385     InitDiscovery();
386
387     // Break from loop with Ctrl+C
388     OC_LOG(INFO, TAG, "Entering occlient main loop...");
389     signal(SIGINT, handleSigInt);
390     while (!gQuitFlag)
391     {
392
393         if (OCProcess() != OC_STACK_OK)
394         {
395             OC_LOG(ERROR, TAG, "OCStack process error");
396             return 0;
397         }
398
399         sleep(2);
400     } OC_LOG(INFO, TAG, "Exiting occlient main loop...");
401
402     if (OCStop() != OC_STACK_OK)
403     {
404         OC_LOG(ERROR, TAG, "OCStack stop error");
405     }
406
407     return 0;
408 }
409
410 std::string getIPAddrTBServer(OCClientResponse * clientResponse)
411 {
412     if (!clientResponse)
413     {
414         return "";
415     }
416     if (!clientResponse->addr)
417     {
418         return "";
419     }
420     uint8_t a, b, c, d = 0;
421     if (0 != OCDevAddrToIPv4Addr(clientResponse->addr, &a, &b, &c, &d))
422     {
423         return "";
424     }
425
426     char ipaddr[16] = {'\0'};
427     // ostringstream not working correctly here, hence snprintf
428     snprintf(ipaddr,  sizeof(ipaddr), "%d.%d.%d.%d", a,b,c,d);
429     return std::string (ipaddr);
430 }
431
432 std::string getPortTBServer(OCClientResponse * clientResponse)
433 {
434     if (!clientResponse)
435     {
436         return "";
437     }
438     if (!clientResponse->addr)
439     {
440         return "";
441     }
442     uint16_t p = 0;
443     if (0 != OCDevAddrToPort(clientResponse->addr, &p))
444     {
445         return "";
446     }
447     std::ostringstream ss;
448     ss << p;
449     return ss.str();
450 }
451
452 std::string getQueryStrForGetPut(unsigned  const char * responsePayload)
453 {
454
455     std::string jsonPayload(reinterpret_cast<char*>(const_cast<unsigned char*>(responsePayload)));
456
457     return "/a/room";
458 }