Fixes a large number of Klocwork identified issues.
[platform/upstream/iotivity.git] / resource / examples / groupserver.cpp
1 //******************************************************************
2 //
3 // Copyright 2014 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 "OCPlatform.h"
22 #include "OCApi.h"
23
24 #include <functional>
25 #include <pthread.h>
26 #include <iostream>
27
28 using namespace std;
29 using namespace OC;
30
31 namespace PH = std::placeholders;
32
33 OCResourceHandle resourceHandle;
34 std::vector< OCResourceHandle > resourceHandleVector;
35
36 void foundResource(std::shared_ptr< OCResource > resource)
37 {
38
39     std::string resourceURI;
40     std::string hostAddress;
41
42     try
43     {
44         cout << "FOUND RESOURCE" << endl;
45
46         if (resource)
47         {
48             resourceURI = resource->uri();
49             hostAddress = resource->host();
50
51             cout << "\tResource URI : " << resourceURI << endl;
52             cout << "\tResource Host : " << hostAddress << endl;
53             cout << "\tResource Interfaces : " << resource->getResourceInterfaces().front() << endl;
54             cout << "\tResource Type : " << resource->getResourceTypes().front() << endl;
55             if (resourceURI == "/a/light" || resourceURI == "/a/fan")
56             {
57                 OCResourceHandle foundResourceHandle;
58                 OCStackResult result = OCPlatform::registerResource(foundResourceHandle, resource);
59                 cout << "\tresource registed!" << endl;
60                 if (result == OC_STACK_OK)
61                 {
62                     OCPlatform::bindResource(resourceHandle, foundResourceHandle);
63                     resourceHandleVector.push_back(foundResourceHandle);
64                 }
65                 else
66                 {
67                     cout << "\tresource Error!" << endl;
68                 }
69             }
70         }
71     }
72     catch (std::exception& e)
73     {
74         std::cout << "Exception in foundResource:"<< e.what() << std::endl;
75     }
76
77 }
78
79 int main(int argc, char* argv[])
80 {
81     ostringstream requestURI;
82
83     OCConnectivityType connectivityType = OC_WIFI;
84
85     if(argc == 2)
86     {
87         try
88         {
89             std::size_t inputValLen;
90             int optionSelected = stoi(argv[1], &inputValLen);
91
92             if(inputValLen == strlen(argv[1]))
93             {
94                 if(optionSelected == 0)
95                 {
96                     connectivityType = OC_ETHERNET;
97                 }
98                 else if(optionSelected == 1)
99                 {
100                     connectivityType = OC_WIFI;
101                 }
102                 else
103                 {
104                     std::cout << "Invalid connectivity type selected. Using default WIFI"
105                         << std::endl;
106                 }
107             }
108             else
109             {
110                 std::cout << "Invalid connectivity type selected. Using default WIFI" << std::endl;
111             }
112         }
113         catch(exception&)
114         {
115             std::cout << "Invalid input argument. Using WIFI as connectivity type" << std::endl;
116         }
117     }
118     else
119     {
120         std::cout<<"Usage: groupclient <ConnectivityType(0|1)>\n";
121         std::cout<<"ConnectivityType: Default WIFI\n";
122         std::cout<<"ConnectivityType 0: ETHERNET\n";
123         std::cout<<"ConnectivityType 1: WIFI\n";
124     }
125
126     PlatformConfig config
127     { OC::ServiceType::InProc, ModeType::Both, "0.0.0.0", 0, OC::QualityOfService::LowQos };
128
129     try
130     {
131         string resourceURI = "/core/a/collection";
132         string resourceTypeName = "a.collection";
133         string resourceInterface = BATCH_INTERFACE;
134         OCPlatform::Configure(config);
135
136         // EntityHandler cb = std::bind(, PH::_1, PH::_2);
137
138         OCPlatform::registerResource(resourceHandle, resourceURI, resourceTypeName,
139                 resourceInterface,
140                 NULL,
141                 //&entityHandler, // entityHandler
142                 OC_DISCOVERABLE);
143
144         cout << "registerResource is called." << endl;
145
146         requestURI << OC_MULTICAST_DISCOVERY_URI << "?rt=core.light";
147
148         OCPlatform::findResource("", requestURI.str(),
149                                  OC_ALL, &foundResource);
150
151         OCPlatform::bindInterfaceToResource(resourceHandle, GROUP_INTERFACE);
152         OCPlatform::bindInterfaceToResource(resourceHandle, DEFAULT_INTERFACE);
153
154         int selectedMenu;
155         bool isRun = true;
156         while (isRun)
157         {
158             cout << endl << "0 :: Quit 1 :: UNREGISTER RESOURCES\n" << endl;
159             std::cin >> selectedMenu;
160
161             switch(selectedMenu)
162             {
163             case 0:
164                 isRun = false;
165                 break;
166             case 1:
167                 std::cout << "Unregistering resources" << std::endl;
168                 for (unsigned int i = 0; i < resourceHandleVector.size(); ++i)
169                 {
170                     OCPlatform::unregisterResource(resourceHandleVector.at(i));
171                 }
172                 break;
173             default:
174                 cout << "Invalid option" << endl;
175             }
176
177         }
178     }
179     catch (OCException& e)
180     {
181         oclog() << "Exception in main: "<< e.what();
182     }
183
184     return 0;
185 }
186