1096799858ac36421f02e67d43adc195e220ffc4
[platform/upstream/iotivity.git] / service / things-manager / sampleapp / linux / configuration / ConfigurationCollection.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
28 #include "OCPlatform.h"
29 #include "OCApi.h"
30 #include "ThingsManager.h"
31 #include "ConfigurationCollection.h"
32
33 using namespace OC;
34
35 /// This function internally calls registerResource API.
36 void ConfigurationResource::createResources(ResourceEntityHandler callback)
37 {
38     using namespace OC::OCPlatform;
39
40     if (callback == NULL)
41     {
42         std::cout << "callback should be binded\t";
43         return;
44     }
45
46     // This will internally create and register the resource.
47     OCStackResult result = registerResource(m_configurationHandle, m_configurationUri,
48             m_configurationTypes[0], m_configurationInterfaces[0], callback,
49             OC_DISCOVERABLE | OC_OBSERVABLE);
50
51     if (OC_STACK_OK != result)
52     {
53         std::cout << "Resource creation (configuration) was unsuccessful\n";
54     }
55
56     std::cout << "Configuration Resource is Created!(URI: " << m_configurationUri << ") \n";
57 }
58
59 void ConfigurationResource::setConfigurationRepresentation(OCRepresentation& rep)
60 {
61     string value;
62
63     if (rep.getValue("loc", value))
64     {
65         m_location = value;
66         std::cout << "\t\t\t\t" << "m_location: " << m_location << std::endl;
67     }
68
69     if (rep.getValue("st", value))
70     {
71         std::cout << "\t\t\t\t" << "SystemTime is not allowed to be written." << std::endl;
72     }
73
74     if (rep.getValue("c", value))
75     {
76         m_currency = value;
77         std::cout << "\t\t\t\t" << "m_currency: " << m_currency << std::endl;
78     }
79
80     if (rep.getValue("r", value))
81     {
82         m_region = value;
83         std::cout << "\t\t\t\t" << "m_region: " << m_region << std::endl;
84     }
85 }
86
87 OCRepresentation ConfigurationResource::getConfigurationRepresentation()
88 {
89     m_configurationRep.setValue("loc", m_location);
90     m_configurationRep.setValue("st", m_systemTime);
91     m_configurationRep.setValue("c", m_currency);
92     m_configurationRep.setValue("r", m_region);
93
94     return m_configurationRep;
95 }
96
97 std::string ConfigurationResource::getUri()
98 {
99     return m_configurationUri;
100 }
101
102 void ConfigurationResource::factoryReset()
103 {
104     m_location = defaultLocation;
105     m_systemTime = defaultSystemTime;
106     m_currency = defaultCurrency;
107     m_region = defaultRegion;
108 }
109