Enabling Multiple Interfaces in CStack.
[platform/upstream/iotivity.git] / resource / csdk / stack / samples / linux / SimpleClientServer / occlient.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 <iostream>
27 #include <sstream>
28 #include "ocstack.h"
29 #include "logger.h"
30 #include "occlient.h"
31
32 static int UNICAST_DISCOVERY = 0;
33 static int TEST_CASE = 0;
34 static const char * TEST_APP_UNICAST_DISCOVERY_QUERY = "coap://0.0.0.0:5683/oc/core";
35 static const char * TEST_APP_UNICAST_DEVICE_DISCOVERY_QUERY = "coap://0.0.0.0:5683/oc/core/d";
36 static const char * TEST_APP_MULTICAST_DEVICE_DISCOVERY_QUERY = "coap://224.0.1.187:5683/oc/core/d";
37 static std::string putPayload = "{\"state\":\"on\",\"power\":5}";
38 static std::string coapServerIP = "255.255.255.255";
39 static std::string coapServerPort = "5683";
40 static std::string coapServerResource = "/a/light";
41
42 // The handle for the observe registration
43 OCDoHandle gObserveDoHandle;
44 #ifdef WITH_PRESENCE
45 // The handle for observe registration
46 OCDoHandle gPresenceHandle;
47 #endif
48 // After this crosses a threshold client deregisters for further notifications
49 int gNumObserveNotifies = 0;
50
51 #ifdef WITH_PRESENCE
52 int gNumPresenceNotifies = 0;
53 #endif
54
55 int gQuitFlag = 0;
56 /* SIGINT handler: set gQuitFlag to 1 for graceful termination */
57 void handleSigInt(int signum) {
58     if (signum == SIGINT) {
59         gQuitFlag = 1;
60     }
61 }
62
63 static void PrintUsage()
64 {
65     OC_LOG(INFO, TAG, "Usage : occlient -u <0|1> -t <1|2|3|4|5|6|7>");
66     OC_LOG(INFO, TAG, "-u <0|1> : Perform multicast/unicast discovery of resources");
67     OC_LOG(INFO, TAG, "-t 1  :  Discover Resources");
68     OC_LOG(INFO, TAG, "-t 2  :  Discover Resources and Initiate Nonconfirmable Get Request");
69     OC_LOG(INFO, TAG, "-t 3  :  Discover Resources and Initiate Nonconfirmable Put Requests");
70     OC_LOG(INFO, TAG, "-t 4  :  Discover Resources and Initiate Nonconfirmable Post Requests");
71     OC_LOG(INFO, TAG, "-t 5  :  Discover Resources and Initiate Nonconfirmable Delete Requests");
72     OC_LOG(INFO, TAG, "-t 6  :  Discover Resources and Initiate Nonconfirmable Observe Requests");
73     OC_LOG(INFO, TAG, "-t 7  :  Discover Resources and Initiate Nonconfirmable Get Request for a resource which is unavailable");
74
75     OC_LOG(INFO, TAG, "-t 8  :  Discover Resources and Initiate Confirmable Get Request");
76     OC_LOG(INFO, TAG, "-t 9  :  Discover Resources and Initiate Confirmable Post Request");
77     OC_LOG(INFO, TAG, "-t 10 :  Discover Resources and Initiate Confirmable Delete Requests");
78     OC_LOG(INFO, TAG, "-t 11 :  Discover Resources and Initiate Confirmable Observe Requests");
79
80     #ifdef WITH_PRESENCE
81     OC_LOG(INFO, TAG, "-t 12 :  Discover Resources and Initiate Nonconfirmable presence");
82     OC_LOG(INFO, TAG, "-t 13 :  Discover Resources and Initiate Nonconfirmable presence with "\
83             "filter");
84     OC_LOG(INFO, TAG, "-t 14 :  Discover Resources and Initiate Nonconfirmable presence with "\
85             "2 filters");
86     #endif
87
88     OC_LOG(INFO, TAG, "-t 15 :  Discover Resources and Initiate Nonconfirmable Observe Requests "\
89             "then cancel immediately");
90     OC_LOG(INFO, TAG, "-t 16 :  Discover Resources and Initiate Nonconfirmable Get Request and "\
91             "add  vendor specific header options");
92     OC_LOG(INFO, TAG, "-t 17 :  Discover Devices");
93 }
94
95 OCStackResult InvokeOCDoResource(std::ostringstream &query,
96                                  OCMethod method, OCQualityOfService qos,
97                                  OCClientResponseHandler cb, OCHeaderOption * options, uint8_t numOptions)
98 {
99     OCStackResult ret;
100     OCCallbackData cbData;
101     OCDoHandle handle;
102
103     cbData.cb = cb;
104     cbData.context = (void*)DEFAULT_CONTEXT_VALUE;
105     cbData.cd = NULL;
106
107 #ifdef CA_INT
108     ret = OCDoResource(&handle, method, query.str().c_str(), 0,
109                        (method == OC_REST_PUT) ? putPayload.c_str() : NULL,
110                        (OC_WIFI), qos, &cbData, options, numOptions);
111 #else
112     ret = OCDoResource(&handle, method, query.str().c_str(), 0,
113                        (method == OC_REST_PUT) ? putPayload.c_str() : NULL,
114                        qos, &cbData, options, numOptions);
115 #endif
116
117     if (ret != OC_STACK_OK)
118     {
119         OC_LOG_V(ERROR, TAG, "OCDoResource returns error %d with method %d", ret, method);
120     }
121     else if (method == OC_REST_OBSERVE || method == OC_REST_OBSERVE_ALL)
122     {
123         gObserveDoHandle = handle;
124     }
125     #ifdef WITH_PRESENCE
126     else if (method == OC_REST_PRESENCE)
127     {
128         gPresenceHandle = handle;
129     }
130     #endif
131
132     return ret;
133 }
134
135 OCStackApplicationResult putReqCB(void* ctx, OCDoHandle handle, OCClientResponse * clientResponse) {
136     if(ctx == (void*)DEFAULT_CONTEXT_VALUE)
137     {
138         OC_LOG(INFO, TAG, "Callback Context for PUT recvd successfully");
139     }
140
141     if(clientResponse)
142     {
143         OC_LOG_V(INFO, TAG, "StackResult: %s",  getResult(clientResponse->result));
144         OC_LOG_V(INFO, TAG, "JSON = %s =============> Put Response", clientResponse->resJSONPayload);
145     }
146     return OC_STACK_DELETE_TRANSACTION;
147 }
148
149 OCStackApplicationResult postReqCB(void *ctx, OCDoHandle handle, OCClientResponse *clientResponse)
150 {
151     if(ctx == (void*)DEFAULT_CONTEXT_VALUE)
152     {
153         OC_LOG(INFO, TAG, "Callback Context for POST recvd successfully");
154     }
155
156     if(clientResponse)
157     {
158         OC_LOG_V(INFO, TAG, "StackResult: %s",  getResult(clientResponse->result));
159         OC_LOG_V(INFO, TAG, "JSON = %s =============> Post Response", clientResponse->resJSONPayload);
160     }
161     return OC_STACK_DELETE_TRANSACTION;
162 }
163
164 OCStackApplicationResult deleteReqCB(void *ctx, OCDoHandle handle, OCClientResponse *clientResponse)
165 {
166     if(ctx == (void*)DEFAULT_CONTEXT_VALUE)
167     {
168         OC_LOG(INFO, TAG, "Callback Context for DELETE recvd successfully");
169     }
170
171     if(clientResponse)
172     {
173         OC_LOG_V(INFO, TAG, "StackResult: %s",  getResult(clientResponse->result));
174         OC_LOG_V(INFO, TAG, "JSON = %s =============> Delete Response", clientResponse->resJSONPayload);
175     }
176     return OC_STACK_DELETE_TRANSACTION;
177 }
178
179 OCStackApplicationResult getReqCB(void* ctx, OCDoHandle handle, OCClientResponse * clientResponse)
180 {
181     if(clientResponse == NULL)
182     {
183         OC_LOG(INFO, TAG, "The clientResponse is NULL");
184         return   OC_STACK_DELETE_TRANSACTION;
185     }
186     if(ctx == (void*)DEFAULT_CONTEXT_VALUE)
187     {
188         OC_LOG(INFO, TAG, "Callback Context for GET query recvd successfully");
189     }
190
191     OC_LOG_V(INFO, TAG, "StackResult: %s",  getResult(clientResponse->result));
192     OC_LOG_V(INFO, TAG, "SEQUENCE NUMBER: %d", clientResponse->sequenceNumber);
193     OC_LOG_V(INFO, TAG, "JSON = %s =============> Get Response", clientResponse->resJSONPayload);
194
195     if(clientResponse->rcvdVendorSpecificHeaderOptions &&
196             clientResponse->numRcvdVendorSpecificHeaderOptions)
197     {
198         OC_LOG (INFO, TAG, "Received vendor specific options");
199         uint8_t i = 0;
200         OCHeaderOption * rcvdOptions = clientResponse->rcvdVendorSpecificHeaderOptions;
201         for( i = 0; i < clientResponse->numRcvdVendorSpecificHeaderOptions; i++)
202         {
203             if(((OCHeaderOption)rcvdOptions[i]).protocolID == OC_COAP_ID)
204             {
205                 OC_LOG_V(INFO, TAG, "Received option with OC_COAP_ID and ID %u with",
206                         ((OCHeaderOption)rcvdOptions[i]).optionID );
207                 OC_LOG_BUFFER(INFO, TAG, ((OCHeaderOption)rcvdOptions[i]).optionData,
208                         ((OCHeaderOption)rcvdOptions[i]).optionLength);
209             }
210         }
211     }
212     return OC_STACK_DELETE_TRANSACTION;
213 }
214
215 OCStackApplicationResult obsReqCB(void* ctx, OCDoHandle handle, OCClientResponse * clientResponse) {
216     if(ctx == (void*)DEFAULT_CONTEXT_VALUE)
217     {
218         OC_LOG(INFO, TAG, "Callback Context for OBS query recvd successfully");
219     }
220
221     if(clientResponse)
222     {
223         OC_LOG_V(INFO, TAG, "StackResult: %s",  getResult(clientResponse->result));
224         OC_LOG_V(INFO, TAG, "SEQUENCE NUMBER: %d", clientResponse->sequenceNumber);
225         OC_LOG_V(INFO, TAG, "Callback Context for OBSERVE notification recvd successfully %d", gNumObserveNotifies);
226         OC_LOG_V(INFO, TAG, "JSON = %s =============> Obs Response", clientResponse->resJSONPayload);
227         gNumObserveNotifies++;
228         if (gNumObserveNotifies == 3)   //large number to test observing in DELETE case.
229         {
230             if(TEST_CASE == TEST_OBS_REQ_NON || TEST_CASE == TEST_OBS_REQ_CON){
231                 if (OCCancel (gObserveDoHandle, OC_LOW_QOS, NULL, 0) != OC_STACK_OK){
232                     OC_LOG(ERROR, TAG, "Observe cancel error");
233                 }
234                 return OC_STACK_DELETE_TRANSACTION;
235             }else if(TEST_CASE == TEST_OBS_REQ_NON_CANCEL_IMM){
236                 if (OCCancel (gObserveDoHandle, OC_HIGH_QOS, NULL, 0) != OC_STACK_OK){
237                     OC_LOG(ERROR, TAG, "Observe cancel error");
238                 }
239             }
240         }
241         if(clientResponse->sequenceNumber == OC_OBSERVE_REGISTER){
242             OC_LOG(INFO, TAG, "This also serves as a registration confirmation");
243         }else if(clientResponse->sequenceNumber == OC_OBSERVE_DEREGISTER){
244             OC_LOG(INFO, TAG, "This also serves as a deregistration confirmation");
245             return OC_STACK_DELETE_TRANSACTION;
246         }else if(clientResponse->sequenceNumber == OC_OBSERVE_NO_OPTION){
247             OC_LOG(INFO, TAG, "This also tells you that registration/deregistration failed");
248             return OC_STACK_DELETE_TRANSACTION;
249         }
250     }
251     return OC_STACK_KEEP_TRANSACTION;
252 }
253 #ifdef WITH_PRESENCE
254 OCStackApplicationResult presenceCB(void* ctx, OCDoHandle handle, OCClientResponse * clientResponse) {
255     if(ctx == (void*)DEFAULT_CONTEXT_VALUE)
256     {
257         OC_LOG(INFO, TAG, "Callback Context for Presence recvd successfully");
258     }
259
260     if(clientResponse)
261     {
262         OC_LOG_V(INFO, TAG, "StackResult: %s",  getResult(clientResponse->result));
263         OC_LOG_V(INFO, TAG, "NONCE NUMBER: %u", clientResponse->sequenceNumber);
264         OC_LOG_V(INFO, TAG, "Callback Context for Presence notification recvd successfully %d", gNumPresenceNotifies);
265         OC_LOG_V(INFO, TAG, "JSON = %s =============> Presence Response", clientResponse->resJSONPayload);
266         gNumPresenceNotifies++;
267         if (gNumPresenceNotifies == 20)
268         {
269             if (OCCancel (gPresenceHandle, OC_LOW_QOS, NULL, 0) != OC_STACK_OK){
270                 OC_LOG(ERROR, TAG, "Presence cancel error");
271             }
272             return OC_STACK_DELETE_TRANSACTION;
273         }
274     }
275     return OC_STACK_KEEP_TRANSACTION;
276 }
277 #endif
278
279 // This is a function called back when a device is discovered
280 OCStackApplicationResult discoveryReqCB(void* ctx, OCDoHandle handle,
281         OCClientResponse * clientResponse) {
282     uint8_t remoteIpAddr[4];
283     uint16_t remotePortNu;
284
285     if (ctx == (void*) DEFAULT_CONTEXT_VALUE)
286     {
287         OC_LOG(INFO, TAG, "Callback Context for DISCOVER query recvd successfully");
288     }
289
290     if (clientResponse)
291     {
292         OC_LOG_V(INFO, TAG, "StackResult: %s", getResult(clientResponse->result));
293
294         OCDevAddrToIPv4Addr((OCDevAddr *) clientResponse->addr, remoteIpAddr,
295                 remoteIpAddr + 1, remoteIpAddr + 2, remoteIpAddr + 3);
296         OCDevAddrToPort((OCDevAddr *) clientResponse->addr, &remotePortNu);
297
298 #ifdef CA_INT
299         OC_LOG_V(INFO, TAG,
300                 "Device =============> Discovered %s @ %d.%d.%d.%d:%d",
301                 clientResponse->resJSONPayload, remoteIpAddr[0], remoteIpAddr[1],
302                 remoteIpAddr[2], remoteIpAddr[3], remotePortNu);
303 #else
304         OC_LOG_V(INFO, TAG,
305                 "Device =============> Discovered %s @ %d.%d.%d.%d:%d",
306                 clientResponse->resJSONPayload, remoteIpAddr[0], remoteIpAddr[1],
307                 remoteIpAddr[2], remoteIpAddr[3], remotePortNu);
308 #endif
309
310         parseClientResponse(clientResponse);
311
312         switch(TEST_CASE)
313         {
314             case TEST_GET_REQ_NON:
315                 InitGetRequest(OC_LOW_QOS, 0);
316                 break;
317             case TEST_PUT_REQ_NON:
318                 InitPutRequest();
319                 break;
320             case TEST_POST_REQ_NON:
321                 InitPostRequest(OC_LOW_QOS);
322                 break;
323             case TEST_DELETE_REQ_NON:
324                 InitDeleteRequest(OC_LOW_QOS);
325                 break;
326             case TEST_OBS_REQ_NON:
327             case TEST_OBS_REQ_NON_CANCEL_IMM:
328                 InitObserveRequest(OC_LOW_QOS);
329                 break;
330             case TEST_GET_UNAVAILABLE_RES_REQ_NON:
331                 InitGetRequestToUnavailableResource();
332                 break;
333             case TEST_GET_REQ_CON:
334                 InitGetRequest(OC_HIGH_QOS, 0);
335                 break;
336             case TEST_POST_REQ_CON:
337                 InitPostRequest(OC_HIGH_QOS);
338                 break;
339             case TEST_DELETE_REQ_CON:
340                 InitDeleteRequest(OC_HIGH_QOS);
341                 break;
342             case TEST_OBS_REQ_CON:
343                 InitObserveRequest(OC_HIGH_QOS);
344                 break;
345             #ifdef WITH_PRESENCE
346             case TEST_OBS_PRESENCE:
347             case TEST_OBS_PRESENCE_WITH_FILTER:
348             case TEST_OBS_PRESENCE_WITH_FILTERS:
349                 InitPresence();
350                 break;
351             #endif
352             case TEST_GET_REQ_NON_WITH_VENDOR_HEADER_OPTIONS:
353                 InitGetRequest(OC_LOW_QOS, 1);
354                 break;
355             case TEST_DISCOVER_DEV_REQ:
356                 InitDeviceDiscovery();
357                 break;
358             default:
359                 PrintUsage();
360                 break;
361         }
362     }
363 #ifdef CA_INT
364     return OC_STACK_KEEP_TRANSACTION;
365 #else
366     return (UNICAST_DISCOVERY) ? OC_STACK_DELETE_TRANSACTION : OC_STACK_KEEP_TRANSACTION ;
367 #endif
368
369 }
370
371 OCStackApplicationResult DeviceDiscoveryReqCB (void* ctx, OCDoHandle handle,
372         OCClientResponse * clientResponse)
373 {
374     if (ctx == (void*) DEFAULT_CONTEXT_VALUE)
375     {
376         OC_LOG(INFO, TAG, "Callback Context for Device DISCOVER query recvd successfully");
377     }
378
379     if(clientResponse)
380     {
381         //OC_LOG truncates the response as it is too long.
382         fprintf(stderr, "Discovery response: \n %s\n", clientResponse->resJSONPayload);
383         fflush(stderr);
384     }
385
386     return (UNICAST_DISCOVERY) ? OC_STACK_DELETE_TRANSACTION : OC_STACK_KEEP_TRANSACTION;
387 }
388
389 #ifdef WITH_PRESENCE
390 int InitPresence()
391 {
392     OCStackResult result = OC_STACK_OK;
393     OC_LOG_V(INFO, TAG, "\n\nExecuting %s", __func__);
394     std::ostringstream query;
395     std::ostringstream querySuffix;
396     query << "coap://" << coapServerIP << ":" << coapServerPort << OC_PRESENCE_URI;
397     if(TEST_CASE == TEST_OBS_PRESENCE)
398     {
399         result = InvokeOCDoResource(query, OC_REST_PRESENCE, OC_LOW_QOS,
400                 presenceCB, NULL, 0);
401     }
402     if(TEST_CASE == TEST_OBS_PRESENCE_WITH_FILTER || TEST_CASE == TEST_OBS_PRESENCE_WITH_FILTERS)
403     {
404         querySuffix.str("");
405         querySuffix << query.str() << "?rt=core.light";
406         result = InvokeOCDoResource(querySuffix, OC_REST_PRESENCE, OC_LOW_QOS,
407                 presenceCB, NULL, 0);
408     }
409     if(TEST_CASE == TEST_OBS_PRESENCE_WITH_FILTERS)
410     {
411         if(result == OC_STACK_OK)
412         {
413             querySuffix.str("");
414             querySuffix << query.str() << "?rt=core.fan";
415             result = InvokeOCDoResource(querySuffix, OC_REST_PRESENCE, OC_LOW_QOS,
416                     presenceCB, NULL, 0);
417         }
418     }
419     return result;
420 }
421 #endif
422 int InitGetRequestToUnavailableResource()
423 {
424     OC_LOG_V(INFO, TAG, "\n\nExecuting %s", __func__);
425     std::ostringstream query;
426     query << "coap://" << coapServerIP << ":" << coapServerPort << "/SomeUnknownResource";
427     return (InvokeOCDoResource(query, OC_REST_GET, OC_LOW_QOS, getReqCB, NULL, 0));
428 }
429
430 int InitObserveRequest(OCQualityOfService qos)
431 {
432     OC_LOG_V(INFO, TAG, "\n\nExecuting %s", __func__);
433     std::ostringstream query;
434     query << "coap://" << coapServerIP << ":" << coapServerPort << coapServerResource;
435     return (InvokeOCDoResource(query, OC_REST_OBSERVE, (qos == OC_HIGH_QOS)? OC_HIGH_QOS:OC_LOW_QOS, obsReqCB, NULL, 0));
436 }
437
438 int InitPutRequest()
439 {
440     OC_LOG_V(INFO, TAG, "\n\nExecuting %s", __func__);
441     std::ostringstream query;
442     query << "coap://" << coapServerIP << ":" << coapServerPort << coapServerResource;
443     return (InvokeOCDoResource(query, OC_REST_PUT, OC_LOW_QOS, putReqCB, NULL, 0));
444 }
445
446 int InitPostRequest(OCQualityOfService qos)
447 {
448     OCStackResult result;
449     OC_LOG_V(INFO, TAG, "\n\nExecuting %s", __func__);
450     std::ostringstream query;
451     query << "coap://" << coapServerIP << ":" << coapServerPort << coapServerResource;
452
453     // First POST operation (to create an Light instance)
454     result = InvokeOCDoResource(query, OC_REST_POST,
455                                ((qos == OC_HIGH_QOS) ? OC_HIGH_QOS: OC_LOW_QOS),
456                                postReqCB, NULL, 0);
457     if (OC_STACK_OK != result)
458     {
459         // Error can happen if for example, network connectivity is down
460         OC_LOG(INFO, TAG, "First POST call did not succeed");
461     }
462
463     // Second POST operation (to create an Light instance)
464     result = InvokeOCDoResource(query, OC_REST_POST,
465                                ((qos == OC_HIGH_QOS) ? OC_HIGH_QOS: OC_LOW_QOS),
466                                postReqCB, NULL, 0);
467     if (OC_STACK_OK != result)
468     {
469         OC_LOG(INFO, TAG, "Second POST call did not succeed");
470     }
471
472     // This POST operation will update the original resourced /a/light
473     return (InvokeOCDoResource(query, OC_REST_POST,
474                                ((qos == OC_HIGH_QOS) ? OC_HIGH_QOS: OC_LOW_QOS),
475                                postReqCB, NULL, 0));
476 }
477
478 void* RequestDeleteDeathResourceTask(void* myqos)
479 {
480     sleep (30); //long enough to give the server time to finish deleting the resource.
481     std::ostringstream query;
482     query << "coap://" << coapServerIP << ":" << coapServerPort << coapServerResource;
483
484     OC_LOG_V(INFO, TAG, "\n\nExecuting %s", __func__);
485
486     // Second DELETE operation to delete the resource that might have been removed already.
487     OCQualityOfService qos;
488     if (myqos == NULL)
489         qos = OC_LOW_QOS;
490     else
491         qos = OC_HIGH_QOS;
492
493     OCStackResult result = InvokeOCDoResource(query, OC_REST_DELETE,
494                                qos,
495                                deleteReqCB, NULL, 0);
496
497     if (OC_STACK_OK != result)
498     {
499         OC_LOG(INFO, TAG, "Second DELETE call did not succeed");
500     }
501
502     return NULL;
503 }
504
505 int InitDeleteRequest(OCQualityOfService qos)
506 {
507     OCStackResult result;
508     std::ostringstream query;
509     query << "coap://" << coapServerIP << ":" << coapServerPort << coapServerResource;
510
511     OC_LOG_V(INFO, TAG, "\n\nExecuting %s", __func__);
512
513     // First DELETE operation
514     result = InvokeOCDoResource(query, OC_REST_DELETE,
515                                qos,
516                                deleteReqCB, NULL, 0);
517     if (OC_STACK_OK != result)
518     {
519         // Error can happen if for example, network connectivity is down
520         OC_LOG(INFO, TAG, "First DELETE call did not succeed");
521     }
522     else
523     {
524         //Create a thread to delete this resource again
525         pthread_t threadId;
526         pthread_create (&threadId, NULL, RequestDeleteDeathResourceTask, (void*)qos);
527     }
528
529     OC_LOG_V(INFO, TAG, "\n\nExit  %s", __func__);
530     return result;
531 }
532
533 int InitGetRequest(OCQualityOfService qos, uint8_t withVendorSpecificHeaderOptions)
534 {
535     OCHeaderOption options[MAX_HEADER_OPTIONS];
536
537     OC_LOG_V(INFO, TAG, "\n\nExecuting %s", __func__);
538     std::ostringstream query;
539     query << "coap://" << coapServerIP << ":" << coapServerPort << coapServerResource;
540
541     if(withVendorSpecificHeaderOptions)
542     {
543         uint8_t option0[] = {1,2,3,4,5,6,7,8,9,10};
544         uint8_t option1[] = {11,12,13,14,15,16,17,18,19,20};
545         memset(options, 0, sizeof(OCHeaderOption) * MAX_HEADER_OPTIONS);
546         options[0].protocolID = OC_COAP_ID;
547         options[0].optionID = 2048;
548         memcpy(options[0].optionData, option0, sizeof(option0));
549         options[0].optionLength = 10;
550         options[1].protocolID = OC_COAP_ID;
551         options[1].optionID = 3000;
552         memcpy(options[1].optionData, option1, sizeof(option1));
553         options[1].optionLength = 10;
554     }
555     if(withVendorSpecificHeaderOptions)
556     {
557         return (InvokeOCDoResource(query, OC_REST_GET, (qos == OC_HIGH_QOS)? OC_HIGH_QOS:OC_LOW_QOS, getReqCB, options, 2));
558     }
559     else
560     {
561         return (InvokeOCDoResource(query, OC_REST_GET, (qos == OC_HIGH_QOS)? OC_HIGH_QOS:OC_LOW_QOS, getReqCB, NULL, 0));
562     }
563 }
564
565 int InitDeviceDiscovery()
566 {
567     OCStackResult ret;
568     OCCallbackData cbData;
569     OCDoHandle handle;
570     char szQueryUri[64] = { 0 };
571
572     cbData.cb = DeviceDiscoveryReqCB;
573     cbData.context = (void*)DEFAULT_CONTEXT_VALUE;
574     cbData.cd = NULL;
575
576     if(UNICAST_DISCOVERY)
577     {
578         strncpy(szQueryUri, TEST_APP_UNICAST_DEVICE_DISCOVERY_QUERY,
579                         (strlen(TEST_APP_UNICAST_DEVICE_DISCOVERY_QUERY) + 1));
580     }
581     else
582     {
583         strncpy(szQueryUri, TEST_APP_MULTICAST_DEVICE_DISCOVERY_QUERY,
584                 (strlen(TEST_APP_MULTICAST_DEVICE_DISCOVERY_QUERY) + 1));
585     }
586
587 #ifdef CA_INT
588     ret = OCDoResource(&handle, OC_REST_GET, szQueryUri, 0, 0, (OC_ETHERNET | OC_WIFI),
589                         OC_LOW_QOS, &cbData, NULL, 0);
590 #else
591     ret = OCDoResource(&handle, OC_REST_GET, szQueryUri, 0, 0, OC_LOW_QOS, &cbData, NULL, 0);
592 #endif
593
594     if (ret != OC_STACK_OK)
595     {
596         OC_LOG(ERROR, TAG, "OCStack device error");
597     }
598
599     return ret;
600 }
601
602 int InitDiscovery()
603 {
604     OCStackResult ret;
605     OCCallbackData cbData;
606     OCDoHandle handle;
607     /* Start a discovery query*/
608     char szQueryUri[64] = { 0 };
609     if (UNICAST_DISCOVERY)
610     {
611         strcpy(szQueryUri, TEST_APP_UNICAST_DISCOVERY_QUERY);
612     }
613     else
614     {
615     #ifdef CA_INT
616         // TODO-CA CA is using 5298 for MC. Why 5298?
617         strcpy(szQueryUri, "coap://224.0.1.187:5298/oc/core");
618     #else
619         strcpy(szQueryUri, OC_WELL_KNOWN_QUERY);
620     #endif
621     }
622     cbData.cb = discoveryReqCB;
623     cbData.context = (void*)DEFAULT_CONTEXT_VALUE;
624     cbData.cd = NULL;
625 #ifdef CA_INT
626     ret = OCDoResource(&handle, OC_REST_GET, szQueryUri, 0, 0, (OC_ETHERNET | OC_WIFI),
627                         OC_LOW_QOS, &cbData, NULL, 0);
628 #else
629     ret = OCDoResource(&handle, OC_REST_GET, szQueryUri, 0, 0, OC_LOW_QOS, &cbData, NULL, 0);
630 #endif
631     if (ret != OC_STACK_OK)
632     {
633         OC_LOG(ERROR, TAG, "OCStack resource error");
634     }
635     return ret;
636 }
637
638 int main(int argc, char* argv[]) {
639     uint8_t addr[20] = {0};
640     uint8_t* paddr = NULL;
641     uint16_t port = USE_RANDOM_PORT;
642     uint8_t ifname[] = "eth0";
643     int opt;
644
645     while ((opt = getopt(argc, argv, "u:t:")) != -1)
646     {
647         switch(opt)
648         {
649             case 'u':
650                 UNICAST_DISCOVERY = atoi(optarg);
651                 break;
652             case 't':
653                 TEST_CASE = atoi(optarg);
654                 break;
655             default:
656                 PrintUsage();
657                 return -1;
658         }
659     }
660
661     if ((UNICAST_DISCOVERY != 0 && UNICAST_DISCOVERY != 1) ||
662             (TEST_CASE < TEST_DISCOVER_REQ || TEST_CASE >= MAX_TESTS) )
663     {
664         PrintUsage();
665         return -1;
666     }
667
668
669     /*Get Ip address on defined interface and initialize coap on it with random port number
670      * this port number will be used as a source port in all coap communications*/
671     if ( OCGetInterfaceAddress(ifname, sizeof(ifname), AF_INET, addr,
672                 sizeof(addr)) == ERR_SUCCESS)
673     {
674         OC_LOG_V(INFO, TAG, "Starting occlient on address %s",addr);
675         paddr = addr;
676     }
677
678     /* Initialize OCStack*/
679     if (OCInit((char *) paddr, port, OC_CLIENT) != OC_STACK_OK) {
680         OC_LOG(ERROR, TAG, "OCStack init error");
681         return 0;
682     }
683
684     InitDiscovery();
685
686     // Break from loop with Ctrl+C
687     OC_LOG(INFO, TAG, "Entering occlient main loop...");
688     signal(SIGINT, handleSigInt);
689     while (!gQuitFlag) {
690
691         if (OCProcess() != OC_STACK_OK) {
692             OC_LOG(ERROR, TAG, "OCStack process error");
693             return 0;
694         }
695
696         sleep(2);
697     }
698     OC_LOG(INFO, TAG, "Exiting occlient main loop...");
699
700     if (OCStop() != OC_STACK_OK) {
701         OC_LOG(ERROR, TAG, "OCStack stop error");
702     }
703
704     return 0;
705 }
706
707 std::string getIPAddrTBServer(OCClientResponse * clientResponse) {
708     if(!clientResponse) return "";
709     if(!clientResponse->addr) return "";
710     uint8_t a, b, c, d = 0;
711     if(0 != OCDevAddrToIPv4Addr(clientResponse->addr, &a, &b, &c, &d) ) return "";
712
713     char ipaddr[16] = {'\0'};
714     snprintf(ipaddr,  sizeof(ipaddr), "%d.%d.%d.%d", a,b,c,d); // ostringstream not working correctly here, hence snprintf
715     return std::string (ipaddr);
716 }
717
718 std::string getPortTBServer(OCClientResponse * clientResponse){
719     if(!clientResponse) return "";
720     if(!clientResponse->addr) return "";
721     uint16_t p = 0;
722     if(0 != OCDevAddrToPort(clientResponse->addr, &p) ) return "";
723     std::ostringstream ss;
724     ss << p;
725     return ss.str();
726 }
727
728 std::string getQueryStrForGetPut(OCClientResponse * clientResponse){
729
730     return "/a/light";
731 }
732
733 void parseClientResponse(OCClientResponse * clientResponse){
734     coapServerIP = getIPAddrTBServer(clientResponse);
735     coapServerPort = getPortTBServer(clientResponse);
736     coapServerResource = getQueryStrForGetPut(clientResponse);
737 }