4cebd44b17a2da58abd28e1808ad6330e62180f8
[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             // p_platform.bindResource(resourceHandle, foundResourceHandle);
72
73         }
74     }
75     catch (std::exception& e)
76     {
77         std::cout << "" << std::endl;
78     }
79
80 }
81
82 int main()
83 {
84     PlatformConfig config
85     { OC::ServiceType::InProc, ModeType::Both, "0.0.0.0", 0, OC::QualityOfService::LowQos };
86
87     try
88     {
89         string resourceURI = "/core/a/collection";
90         string resourceTypeName = "a.collection";
91         string resourceInterface = BATCH_INTERFACE;
92         OCPlatform::Configure(config);
93
94         // EntityHandler cb = std::bind(, PH::_1, PH::_2);
95
96         OCPlatform::registerResource(resourceHandle, resourceURI, resourceTypeName,
97                 resourceInterface,
98                 NULL,
99                 //&entityHandler, // entityHandler
100                 OC_DISCOVERABLE);
101
102         cout << "registerResource is called." << endl;
103
104         OCPlatform::findResource("", "coap://224.0.1.187/oc/core?rt=core.light", &foundResource);
105         OCPlatform::bindInterfaceToResource(resourceHandle, GROUP_INTERFACE);
106         OCPlatform::bindInterfaceToResource(resourceHandle, DEFAULT_INTERFACE);
107
108         int selectedMenu;
109         while (true)
110         {
111             std::cin >> selectedMenu;
112
113             if (selectedMenu == 1)
114             {
115                 for (unsigned int i = 0; i < resourceHandleVector.size(); ++i)
116                 {
117                     OCPlatform::unregisterResource(resourceHandleVector.at(i));
118                 }
119             }
120
121         }
122     }
123     catch (OCException& e)
124     {
125
126     }
127
128     return 0;
129 }