Imported Upstream version 1.2.0
[platform/upstream/iotivity.git] / service / things-manager / sampleapp / linux / configuration / FactorySetCollection.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 ///
22 /// This sample shows how one could create a resource (collection) with children.
23 ///
24
25 #include <functional>
26 #include <thread>
27 #include <string.h>
28
29 #include "OCPlatform.h"
30 #include "OCApi.h"
31 #include "FactorySetCollection.h"
32
33 using namespace OC;
34 using namespace std;
35
36 FactorySetResource::FactorySetResource()
37 {
38     m_configurationUri = "/factoryset"; // URI of the resource
39     m_configurationTypes.clear();
40     m_configurationTypes.push_back("factoryset"); // resource type name.
41     m_configurationRep.setUri(m_configurationUri);
42     m_configurationRep.setResourceTypes(m_configurationTypes);
43 }
44
45 FactorySetResource::~FactorySetResource()
46 {
47 }
48
49 /// This function internally calls registerResource API.
50 void FactorySetResource::createResources(ResourceEntityHandler callback)
51 {
52     using namespace OC::OCPlatform;
53
54     if (callback == NULL)
55     {
56         std::cout << "callback should be binded\t";
57         return;
58     }
59
60     // This will internally create and register the resource.
61     OCStackResult result = registerResource(m_configurationHandle, m_configurationUri,
62             m_configurationTypes[0], m_configurationInterfaces[0], callback,
63             OC_DISCOVERABLE | OC_OBSERVABLE);
64
65     if (OC_STACK_OK != result)
66     {
67         std::cout << "Resource creation (configuration) was unsuccessful\n";
68     }
69
70     std::cout << "FactorySet Resource is Created!\n";
71 }
72
73 void FactorySetResource::setFactorySetRepresentation(OCRepresentation& rep)
74 {
75     string value;
76
77     if (rep.getValue("n", value))
78     {
79         m_deviceName = value;
80         std::cout << "\t\t\t\t" << "m_deviceName: " << m_deviceName << std::endl;
81     }
82
83     if (rep.getValue("loc", value))
84     {
85         m_location = value;
86         std::cout << "\t\t\t\t" << "m_location: " << m_location << std::endl;
87     }
88
89     if (rep.getValue("locn", value))
90     {
91         m_locationName = value;
92         std::cout << "\t\t\t\t" << "m_locationName: " << m_locationName << std::endl;
93     }
94
95     if (rep.getValue("c", value))
96     {
97         m_currency = value;
98         std::cout << "\t\t\t\t" << "m_currency: " << m_currency << std::endl;
99     }
100
101     if (rep.getValue("r", value))
102     {
103         m_region = value;
104         std::cout << "\t\t\t\t" << "m_region: " << m_region << std::endl;
105     }
106 }
107
108 OCRepresentation FactorySetResource::getFactorySetRepresentation()
109 {
110     m_configurationRep.setValue("n", m_deviceName);
111     m_configurationRep.setValue("loc", m_location);
112     m_configurationRep.setValue("locn", m_locationName);
113     m_configurationRep.setValue("c", m_currency);
114     m_configurationRep.setValue("r", m_region);
115
116     return m_configurationRep;
117 }
118
119 std::string FactorySetResource::getUri()
120 {
121     return m_configurationUri;
122 }
123