1 //******************************************************************
3 // Copyright 2014 Samsung Electronics All Rights Reserved.
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
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
11 // http://www.apache.org/licenses/LICENSE-2.0
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.
19 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
21 #include "OCPlatform.h"
31 namespace PH = std::placeholders;
33 OCResourceHandle resourceHandle;
34 std::vector< OCResourceHandle > resourceHandleVector;
36 static void printUsage()
38 std::cout<<"Usage: groupclient <0|1>\n";
39 std::cout<<"ConnectivityType: Default \n";
40 std::cout<<"ConnectivityType 0: IP\n";
42 void foundResource(std::shared_ptr< OCResource > resource)
45 std::string resourceURI;
46 std::string hostAddress;
50 cout << "FOUND RESOURCE" << endl;
54 resourceURI = resource->uri();
55 hostAddress = resource->host();
57 cout << "\tResource URI : " << resourceURI << endl;
58 cout << "\tResource Host : " << hostAddress << endl;
59 cout << "\tResource Interfaces : " << resource->getResourceInterfaces().front() << endl;
60 cout << "\tResource Type : " << resource->getResourceTypes().front() << endl;
61 if (resourceURI == "/a/light" || resourceURI == "/a/fan")
63 OCResourceHandle foundResourceHandle;
64 OCStackResult result = OCPlatform::registerResource(foundResourceHandle, resource);
65 cout << "\tresource registed!" << endl;
66 if (result == OC_STACK_OK)
68 OCPlatform::bindResource(resourceHandle, foundResourceHandle);
69 resourceHandleVector.push_back(foundResourceHandle);
73 cout << "\tresource Error!" << endl;
78 catch (std::exception& e)
80 std::cout << "Exception in foundResource:"<< e.what() << std::endl;
85 int main(int argc, char* argv[])
87 ostringstream requestURI;
89 OCConnectivityType connectivityType = CT_ADAPTER_IP;
95 std::size_t inputValLen;
96 int optionSelected = stoi(argv[1], &inputValLen);
98 if(inputValLen == strlen(argv[1]))
100 if(optionSelected == 0)
102 std::cout << "Using IP."<< std::endl;
103 connectivityType = CT_ADAPTER_IP;
107 std::cout << "Invalid connectivity type selected. Using default IP" << std::endl;
112 std::cout << "Invalid connectivity type selected. Using default IP" << std::endl;
117 std::cout << "Invalid input argument. Using IP as connectivity type" << std::endl;
126 PlatformConfig config
127 { OC::ServiceType::InProc, ModeType::Both, "0.0.0.0", 0, OC::QualityOfService::LowQos };
131 string resourceURI = "/core/a/collection";
132 string resourceTypeName = "a.collection";
133 string resourceInterface = BATCH_INTERFACE;
134 OCPlatform::Configure(config);
136 // EntityHandler cb = std::bind(, PH::_1, PH::_2);
138 OCPlatform::registerResource(resourceHandle, resourceURI, resourceTypeName,
141 //&entityHandler, // entityHandler
144 cout << "registerResource is called." << endl;
146 requestURI << OC_RSRVD_WELL_KNOWN_URI << "?rt=core.light";
148 OCPlatform::findResource("", requestURI.str(),
149 connectivityType, &foundResource);
151 OCPlatform::bindInterfaceToResource(resourceHandle, GROUP_INTERFACE);
152 OCPlatform::bindInterfaceToResource(resourceHandle, DEFAULT_INTERFACE);
158 cout << endl << "0 :: Quit 1 :: UNREGISTER RESOURCES\n" << endl;
159 std::cin >> selectedMenu;
167 std::cout << "Unregistering resources" << std::endl;
168 for (unsigned int i = 0; i < resourceHandleVector.size(); ++i)
170 OCPlatform::unregisterResource(resourceHandleVector.at(i));
174 cout << "Invalid option" << endl;
179 catch (OCException& e)
181 oclog() << "Exception in main: "<< e.what();