Imported Upstream version 1.1.0
[platform/upstream/iotivity.git] / service / resource-container / examples / HueSampleBundle / src / HueLight.cpp
1 //******************************************************************
2 //
3 // Copyright 2015 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 "HueLight.h"
22
23 #include <iostream>
24
25 using namespace std;
26 using namespace OIC::Service;
27
28 HueLight::HueLight()
29 {
30     m_connector = nullptr;
31 }
32
33 HueLight::HueLight(HueConnector *connector, std::string address)
34 {
35     m_address = address;
36     m_connector = connector;
37     initAttributes();
38 }
39
40 HueLight::~HueLight()
41 {
42     m_connector = nullptr;
43 }
44
45 void HueLight::initAttributes()
46 {
47     BundleResource::setAttribute("on-off", false, false);
48     BundleResource::setAttribute("dim", 0, false);
49     BundleResource::setAttribute("color", 0, false);
50 }
51
52 RCSResourceAttributes HueLight::handleGetAttributesRequest()
53 {
54     cout << "HueLight::handleGetAttributesRequest" << endl;
55     // TODO read from HueLight and update attribute data
56     return BundleResource::getAttributes();
57 }
58
59 void HueLight::handleSetAttributesRequest(const RCSResourceAttributes &value)
60 {
61     cout << "HueLight::handleSetAttributesRequest" << std::endl;
62
63     // TODO construct single write
64
65     for (RCSResourceAttributes::const_iterator it = value.begin(); it != value.end(); it++)
66     {
67         std::string attributeName = it->key();
68         RCSResourceAttributes::Value attrValue = it->value();
69
70         if (attributeName == "on-off")
71         {
72             //m_connector->transmit(this->m_address + "/state", "{\"on\":" + attrValue.toString() + "}");
73         }
74
75         if (attributeName == "dim")
76         {
77             // needs conversion * 2.5
78             //m_connector->transmit(this->m_address + "/state", "{\"bri\":" + attrValue.toString() + "}");
79         }
80
81         if (attributeName == "color")
82         {
83             // needs conversion *650
84             //m_connector->transmit(this->m_address + "/state", "{\"hue\":" + attrValue.toString() + "}");
85         }
86     }
87
88     BundleResource::setAttributes(value);
89 }