Fixed simpleclient crash caused by curResource being altered
[platform/upstream/iotivity.git] / resource / examples / simpleclient.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 // OCClient.cpp : Defines the entry point for the console application.
22 //
23 #include <string>
24 #include <map>
25 #include <cstdlib>
26 #include <pthread.h>
27 #include <mutex>
28 #include <condition_variable>
29 #include "OCPlatform.h"
30 #include "OCApi.h"
31
32 using namespace OC;
33
34 typedef std::map<OCResourceIdentifier, std::shared_ptr<OCResource>> DiscoveredResourceMap;
35
36 DiscoveredResourceMap discoveredResources;
37 std::shared_ptr<OCResource> curResource;
38 static ObserveType OBSERVE_TYPE_TO_USE = ObserveType::Observe;
39 std::mutex curResourceLock;
40
41 class Light
42 {
43 public:
44
45     bool m_state;
46     int m_power;
47     std::string m_name;
48
49     Light() : m_state(false), m_power(0), m_name("")
50     {
51     }
52 };
53
54 Light mylight;
55
56 int observe_count()
57 {
58     static int oc = 0;
59     return ++oc;
60 }
61
62 void onObserve(const HeaderOptions headerOptions, const OCRepresentation& rep,
63                     const int& eCode, const int& sequenceNumber)
64 {
65     try
66     {
67         if(eCode == OC_STACK_OK)
68         {
69             std::cout << "OBSERVE RESULT:"<<std::endl;
70             std::cout << "\tSequenceNumber: "<< sequenceNumber << endl;
71
72             rep.getValue("state", mylight.m_state);
73             rep.getValue("power", mylight.m_power);
74             rep.getValue("name", mylight.m_name);
75
76             std::cout << "\tstate: " << mylight.m_state << std::endl;
77             std::cout << "\tpower: " << mylight.m_power << std::endl;
78             std::cout << "\tname: " << mylight.m_name << std::endl;
79
80             if(observe_count() > 30)
81             {
82                 std::cout<<"Cancelling Observe..."<<std::endl;
83                 OCStackResult result = curResource->cancelObserve();
84
85                 std::cout << "Cancel result: "<< result <<std::endl;
86                 sleep(10);
87                 std::cout << "DONE"<<std::endl;
88                 std::exit(0);
89             }
90         }
91         else
92         {
93             std::cout << "onObserve Response error: " << eCode << std::endl;
94             std::exit(-1);
95         }
96     }
97     catch(std::exception& e)
98     {
99         std::cout << "Exception: " << e.what() << " in onObserve" << std::endl;
100     }
101
102 }
103
104 void onPost2(const HeaderOptions& headerOptions, const OCRepresentation& rep, const int eCode)
105 {
106     try
107     {
108         if(eCode == OC_STACK_OK || eCode == OC_STACK_RESOURCE_CREATED)
109         {
110             std::cout << "POST request was successful" << std::endl;
111
112             if(rep.hasAttribute("createduri"))
113             {
114                 std::cout << "\tUri of the created resource: "
115                     << rep.getValue<std::string>("createduri") << std::endl;
116             }
117             else
118             {
119                 rep.getValue("state", mylight.m_state);
120                 rep.getValue("power", mylight.m_power);
121                 rep.getValue("name", mylight.m_name);
122
123                 std::cout << "\tstate: " << mylight.m_state << std::endl;
124                 std::cout << "\tpower: " << mylight.m_power << std::endl;
125                 std::cout << "\tname: " << mylight.m_name << std::endl;
126             }
127
128             if (OBSERVE_TYPE_TO_USE == ObserveType::Observe)
129                 std::cout << endl << "Observe is used." << endl << endl;
130             else if (OBSERVE_TYPE_TO_USE == ObserveType::ObserveAll)
131                 std::cout << endl << "ObserveAll is used." << endl << endl;
132
133             curResource->observe(OBSERVE_TYPE_TO_USE, QueryParamsMap(), &onObserve);
134
135         }
136         else
137         {
138             std::cout << "onPost2 Response error: " << eCode << std::endl;
139             std::exit(-1);
140         }
141     }
142     catch(std::exception& e)
143     {
144         std::cout << "Exception: " << e.what() << " in onPost2" << std::endl;
145     }
146
147 }
148
149 void onPost(const HeaderOptions& headerOptions, const OCRepresentation& rep, const int eCode)
150 {
151     try
152     {
153         if(eCode == OC_STACK_OK || eCode == OC_STACK_RESOURCE_CREATED)
154         {
155             std::cout << "POST request was successful" << std::endl;
156
157             if(rep.hasAttribute("createduri"))
158             {
159                 std::cout << "\tUri of the created resource: "
160                     << rep.getValue<std::string>("createduri") << std::endl;
161             }
162             else
163             {
164                 rep.getValue("state", mylight.m_state);
165                 rep.getValue("power", mylight.m_power);
166                 rep.getValue("name", mylight.m_name);
167
168                 std::cout << "\tstate: " << mylight.m_state << std::endl;
169                 std::cout << "\tpower: " << mylight.m_power << std::endl;
170                 std::cout << "\tname: " << mylight.m_name << std::endl;
171             }
172
173             OCRepresentation rep2;
174
175             std::cout << "Posting light representation..."<<std::endl;
176
177             mylight.m_state = true;
178             mylight.m_power = 55;
179
180             rep2.setValue("state", mylight.m_state);
181             rep2.setValue("power", mylight.m_power);
182
183             curResource->post(rep2, QueryParamsMap(), &onPost2);
184         }
185         else
186         {
187             std::cout << "onPost Response error: " << eCode << std::endl;
188             std::exit(-1);
189         }
190     }
191     catch(std::exception& e)
192     {
193         std::cout << "Exception: " << e.what() << " in onPost" << std::endl;
194     }
195 }
196
197 // Local function to put a different state for this resource
198 void postLightRepresentation(std::shared_ptr<OCResource> resource)
199 {
200     if(resource)
201     {
202         OCRepresentation rep;
203
204         std::cout << "Posting light representation..."<<std::endl;
205
206         mylight.m_state = false;
207         mylight.m_power = 105;
208
209         rep.setValue("state", mylight.m_state);
210         rep.setValue("power", mylight.m_power);
211
212         // Invoke resource's post API with rep, query map and the callback parameter
213         resource->post(rep, QueryParamsMap(), &onPost);
214     }
215 }
216
217 // callback handler on PUT request
218 void onPut(const HeaderOptions& headerOptions, const OCRepresentation& rep, const int eCode)
219 {
220     try
221     {
222         if(eCode == OC_STACK_OK)
223         {
224             std::cout << "PUT request was successful" << std::endl;
225
226             rep.getValue("state", mylight.m_state);
227             rep.getValue("power", mylight.m_power);
228             rep.getValue("name", mylight.m_name);
229
230             std::cout << "\tstate: " << mylight.m_state << std::endl;
231             std::cout << "\tpower: " << mylight.m_power << std::endl;
232             std::cout << "\tname: " << mylight.m_name << std::endl;
233
234             postLightRepresentation(curResource);
235         }
236         else
237         {
238             std::cout << "onPut Response error: " << eCode << std::endl;
239             std::exit(-1);
240         }
241     }
242     catch(std::exception& e)
243     {
244         std::cout << "Exception: " << e.what() << " in onPut" << std::endl;
245     }
246 }
247
248 // Local function to put a different state for this resource
249 void putLightRepresentation(std::shared_ptr<OCResource> resource)
250 {
251     if(resource)
252     {
253         OCRepresentation rep;
254
255         std::cout << "Putting light representation..."<<std::endl;
256
257         mylight.m_state = true;
258         mylight.m_power = 15;
259
260         rep.setValue("state", mylight.m_state);
261         rep.setValue("power", mylight.m_power);
262
263         // Invoke resource's put API with rep, query map and the callback parameter
264         resource->put(rep, QueryParamsMap(), &onPut);
265     }
266 }
267
268 // Callback handler on GET request
269 void onGet(const HeaderOptions& headerOptions, const OCRepresentation& rep, const int eCode)
270 {
271     try
272     {
273         if(eCode == OC_STACK_OK)
274         {
275             std::cout << "GET request was successful" << std::endl;
276             std::cout << "Resource URI: " << rep.getUri() << std::endl;
277
278             rep.getValue("state", mylight.m_state);
279             rep.getValue("power", mylight.m_power);
280             rep.getValue("name", mylight.m_name);
281
282             std::cout << "\tstate: " << mylight.m_state << std::endl;
283             std::cout << "\tpower: " << mylight.m_power << std::endl;
284             std::cout << "\tname: " << mylight.m_name << std::endl;
285
286             putLightRepresentation(curResource);
287         }
288         else
289         {
290             std::cout << "onGET Response error: " << eCode << std::endl;
291             std::exit(-1);
292         }
293     }
294     catch(std::exception& e)
295     {
296         std::cout << "Exception: " << e.what() << " in onGet" << std::endl;
297     }
298 }
299
300 // Local function to get representation of light resource
301 void getLightRepresentation(std::shared_ptr<OCResource> resource)
302 {
303     if(resource)
304     {
305         std::cout << "Getting Light Representation..."<<std::endl;
306         // Invoke resource's get API with the callback parameter
307
308         QueryParamsMap test;
309         resource->get(test, &onGet);
310     }
311 }
312
313 // Callback to found resources
314 void foundResource(std::shared_ptr<OCResource> resource)
315 {
316     std::string resourceURI;
317     std::string hostAddress;
318     try
319     {
320         {
321             std::lock_guard<std::mutex> lock(curResourceLock);
322             if(discoveredResources.find(resource->uniqueIdentifier()) == discoveredResources.end())
323             {
324                 std::cout << "Found resource " << resource->uniqueIdentifier() <<
325                     " for the first time on server with ID: "<< resource->sid()<<std::endl;
326                 discoveredResources[resource->uniqueIdentifier()] = resource;
327             }
328             else
329             {
330                 std::cout<<"Found resource "<< resource->uniqueIdentifier() << " again!"<<std::endl;
331             }
332
333             if(curResource)
334             {
335                 std::cout << "Found another resource, ignoring"<<std::endl;
336                 return;
337             }
338         }
339
340         // Do some operations with resource object.
341         if(resource)
342         {
343             std::cout<<"DISCOVERED Resource:"<<std::endl;
344             // Get the resource URI
345             resourceURI = resource->uri();
346             std::cout << "\tURI of the resource: " << resourceURI << std::endl;
347
348             // Get the resource host address
349             hostAddress = resource->host();
350             std::cout << "\tHost address of the resource: " << hostAddress << std::endl;
351
352             // Get the resource types
353             std::cout << "\tList of resource types: " << std::endl;
354             for(auto &resourceTypes : resource->getResourceTypes())
355             {
356                 std::cout << "\t\t" << resourceTypes << std::endl;
357             }
358
359             // Get the resource interfaces
360             std::cout << "\tList of resource interfaces: " << std::endl;
361             for(auto &resourceInterfaces : resource->getResourceInterfaces())
362             {
363                 std::cout << "\t\t" << resourceInterfaces << std::endl;
364             }
365
366             if(resourceURI == "/a/light")
367             {
368                 curResource = resource;
369                 // Call a local function which will internally invoke get API on the resource pointer
370                 getLightRepresentation(resource);
371             }
372         }
373         else
374         {
375             // Resource is invalid
376             std::cout << "Resource is invalid" << std::endl;
377         }
378
379     }
380     catch(std::exception& e)
381     {
382         //log(e.what());
383     }
384 }
385
386 void PrintUsage()
387 {
388     std::cout << std::endl;
389 #ifdef CA_INT
390     std::cout << "Usage : simpleclient <ObserveType> <ConnectivityType>" << std::endl;
391 #else
392     std::cout << "Usage : simpleclient <ObserveType>" << std::endl;
393 #endif
394     std::cout << "   ObserveType : 1 - Observe" << std::endl;
395     std::cout << "   ObserveType : 2 - ObserveAll" << std::endl;
396 #ifdef CA_INT
397     std::cout<<"    connectivityType: Default WIFI" << std::endl;
398     std::cout << "   ConnectivityType : 0 - ETHERNET"<< std::endl;
399     std::cout << "   ConnectivityType : 1 - WIFI"<< std::endl;
400 #endif
401 }
402
403 int main(int argc, char* argv[]) {
404
405     ostringstream requestURI;
406
407 #ifdef CA_INT
408     OCConnectivityType connectivityType = OC_WIFI;
409 #endif
410     try
411     {
412         if (argc == 1)
413         {
414             OBSERVE_TYPE_TO_USE = ObserveType::Observe;
415         }
416 #ifdef CA_INT
417         else if (argc >= 2)
418 #else
419         else if (argc == 2)
420 #endif
421         {
422             int value = stoi(argv[1]);
423             if (value == 1)
424                 OBSERVE_TYPE_TO_USE = ObserveType::Observe;
425             else if (value == 2)
426                 OBSERVE_TYPE_TO_USE = ObserveType::ObserveAll;
427             else
428                 OBSERVE_TYPE_TO_USE = ObserveType::Observe;
429
430 #ifdef CA_INT
431             if(argc == 3)
432             {
433                 std::size_t inputValLen;
434                 int optionSelected = stoi(argv[2], &inputValLen);
435
436                 if(inputValLen == strlen(argv[2]))
437                 {
438                     if(optionSelected == 0)
439                     {
440                         connectivityType = OC_ETHERNET;
441                     }
442                     else if(optionSelected == 1)
443                     {
444                         connectivityType = OC_WIFI;
445                     }
446                     else
447                     {
448                         std::cout << "Invalid connectivity type selected. Using default WIFI"
449                             << std::endl;
450                     }
451                 }
452                 else
453                 {
454                     std::cout << "Invalid connectivity type selected. Using default WIFI"
455                     << std::endl;
456                 }
457             }
458         }
459 #endif
460         else
461         {
462             PrintUsage();
463             return -1;
464         }
465     }
466     catch(exception& e)
467     {
468         std::cout << "Invalid input argument. Using WIFI as connectivity type" << std::endl;
469     }
470
471
472     // Create PlatformConfig object
473     PlatformConfig cfg {
474         OC::ServiceType::InProc,
475         OC::ModeType::Client,
476         "0.0.0.0",
477         0,
478         OC::QualityOfService::LowQos
479     };
480
481     OCPlatform::Configure(cfg);
482     try
483     {
484         // makes it so that all boolean values are printed as 'true/false' in this stream
485         std::cout.setf(std::ios::boolalpha);
486         // Find all resources
487         requestURI << OC_WELL_KNOWN_QUERY << "?rt=core.light";
488
489 #ifdef CA_INT
490         OCPlatform::findResource("", requestURI.str(),
491                 connectivityType, &foundResource);
492 #else
493         OCPlatform::findResource("", requestURI.str(), &foundResource);
494 #endif
495         std::cout<< "Finding Resource... " <<std::endl;
496
497         // Find resource is done twice so that we discover the original resources a second time.
498         // These resources will have the same uniqueidentifier (yet be different objects), so that
499         // we can verify/show the duplicate-checking code in foundResource(above);
500 #ifdef CA_INT
501         OCPlatform::findResource("", requestURI.str(),
502                 connectivityType, &foundResource);
503 #else
504         OCPlatform::findResource("", requestURI.str(), &foundResource);
505 #endif
506         std::cout<< "Finding Resource for second time... " <<std::endl;
507         while(true)
508         {
509             // some operations
510         }
511
512         // A condition variable will free the mutex it is given, then do a non-
513         // intensive block until 'notify' is called on it.  In this case, since we
514         // don't ever call cv.notify, this should be a non-processor intensive version
515         // of while(true);
516         std::mutex blocker;
517         std::condition_variable cv;
518         std::unique_lock<std::mutex> lock(blocker);
519         cv.wait(lock);
520
521     }catch(OCException& e)
522     {
523         //log(e.what());
524     }
525
526     return 0;
527 }
528