update Resource Container
[platform/upstream/iotivity.git] / service / resource-manipulation / modules / resourceContainer / examples / HueSampleBundle / src / HueSampleBundleActivator.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 "HueSampleBundleActivator.h"
22 #include "HueLight.h"
23
24 #include <algorithm>
25 #include <vector>
26
27 using namespace OIC::Service;
28
29 HueSampleBundleActivator *bundle;
30
31 HueSampleBundleActivator::HueSampleBundleActivator()
32 {
33 }
34
35 HueSampleBundleActivator::~HueSampleBundleActivator()
36 {
37 }
38
39 void HueSampleBundleActivator::activateBundle(ResourceContainerBundleAPI *resourceContainer,
40         std::string bundleId)
41 {
42     std::cout << "HueSampleBundle::activateBundle called" << std::endl;
43
44     m_pResourceContainer = resourceContainer;
45     m_bundleId = bundleId;
46     m_connector = new HueConnector();
47
48     vector< resourceInfo > resourceConfig;
49
50     resourceContainer->getResourceConfiguration(m_bundleId, &resourceConfig);
51
52     for (vector< resourceInfo >::iterator itor = resourceConfig.begin();
53             itor != resourceConfig.end(); itor++)
54     {
55         createResource(*itor);
56     }
57 }
58
59 void HueSampleBundleActivator::deactivateBundle()
60 {
61     std::cout << "HueSampleBundle::deactivateBundle called" << std::endl;
62
63     for (std::vector< BundleResource * >::iterator itor = m_vecResources.begin();
64             itor != m_vecResources.end(); itor++)
65     {
66         destroyResource(*itor);
67     }
68 }
69
70 void HueSampleBundleActivator::createResource(resourceInfo resourceInfo)
71 {
72     std::cout << "HueSampleBundle::createResource called" << std::endl;
73
74     if (resourceInfo.resourceType == "oic.light.control")
75     {
76         static int lightCount = 1;
77         HueLight* hueLight = new HueLight(m_connector, resourceInfo.address);
78         resourceInfo.uri = "/hue/light/" + std::to_string(lightCount++);
79         std::cout << "Registering resource " << resourceInfo.uri << std::endl;
80         hueLight->m_uri = resourceInfo.uri;
81         hueLight->m_resourceType = resourceInfo.resourceType;
82         hueLight->m_name = resourceInfo.name;
83
84         m_pResourceContainer->registerResource(hueLight);
85         m_vecResources.push_back(hueLight);
86     }
87 }
88
89 void HueSampleBundleActivator::destroyResource(BundleResource *resource)
90 {
91     std::cout << "HueSampleBundle::destroyResource called" << resource->m_uri << std::endl;
92
93     std::vector< BundleResource * >::iterator itor;
94
95     itor = std::find(m_vecResources.begin(), m_vecResources.end(), resource);
96
97     if (itor != m_vecResources.end())
98     {
99         m_pResourceContainer->unregisterResource(resource);
100     }
101
102     //TODO
103     /*std::cout << "Clearing up memory.\n";
104
105     if (itor != m_vecResources.end())
106         m_vecResources.erase(itor);*/
107
108     // check
109     //delete resource;
110
111
112 }
113
114 extern "C" void externalActivateBundle(ResourceContainerBundleAPI *resourceContainer,
115         std::string bundleId)
116 {
117     bundle = new HueSampleBundleActivator();
118     bundle->activateBundle(resourceContainer, bundleId);
119 }
120
121 extern "C" void externalDeactivateBundle()
122 {
123     bundle->deactivateBundle();
124 }