Imported Upstream version 0.9.2
[platform/upstream/iotivity.git] / service / resource-encapsulation / src / resourceContainer / 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
48     BundleResource::setAttribute("on-off", false);
49     BundleResource::setAttribute("dim", 0);
50     BundleResource::setAttribute("color", 0);
51 }
52
53 RCSResourceAttributes &HueLight::getAttributes()
54 {
55     return BundleResource::getAttributes();
56 }
57
58 RCSResourceAttributes::Value HueLight::getAttribute(const std::string &key)
59 {
60     cout << "HueLight::getAttribute called for " << key <<  " called" << endl;
61     return BundleResource::getAttribute(key);
62 }
63
64 void HueLight::setAttribute(std::string attributeName, RCSResourceAttributes::Value &&value)
65 {
66     cout << "HueLight::setAttribute setting " << attributeName << " to " << value.toString() <<
67          std::endl;
68
69     if (attributeName == "on-off")
70     {
71         m_connector->transmit(this->m_address + "/state", "{\"on\":" + value.toString() + "}");
72     }
73
74     if (attributeName == "dim")
75     {
76         // needs conversion * 2.5
77         m_connector->transmit(this->m_address + "/state", "{\"bri\":" + value.toString() + "}");
78     }
79
80     if (attributeName == "color")
81     {
82         // needs conversion *650
83         m_connector->transmit(this->m_address + "/state", "{\"hue\":" + value.toString()   + "}");
84     }
85
86     BundleResource::setAttribute(attributeName, std::move(value));
87 }
88