update Resource Container
[platform/upstream/iotivity.git] / service / resource-manipulation / modules / resourceContainer / examples / SoftSensorSampleBundle / src / SoftSensorBundleActivator.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 "SoftSensorBundleActivator.h"
22 #include "DiscomfortIndexSensorResource.h"
23
24 SoftSensorBundleActivator *bundle;
25
26 SoftSensorBundleActivator::SoftSensorBundleActivator()
27 {
28 }
29
30 SoftSensorBundleActivator::~SoftSensorBundleActivator()
31 {
32 }
33
34 void SoftSensorBundleActivator::activateBundle(ResourceContainerBundleAPI *resourceContainer,
35         std::string bundleId)
36 {
37     std::cout << "SoftSensorSampleBundle::activateBundle called" << std::endl;
38
39     m_pResourceContainer = resourceContainer;
40     m_bundleId = bundleId;
41
42     vector<resourceInfo> resourceConfig;
43
44     resourceContainer->getResourceConfiguration(m_bundleId, &resourceConfig);
45
46     for (vector<resourceInfo>::iterator itor = resourceConfig.begin();
47          itor != resourceConfig.end(); itor++)
48     {
49         createResource(*itor);
50     }
51 }
52
53 void SoftSensorBundleActivator::deactivateBundle()
54 {
55     std::cout << "SoftSensorSampleBundle::deactivateBundle called" << std::endl;
56
57     for (std::vector<BundleResource *>::iterator itor = m_vecResources.begin();
58          itor != m_vecResources.end(); itor++)
59     {
60         destroyResource(*itor);
61     }
62
63     m_vecResources.clear();
64 }
65
66 void SoftSensorBundleActivator::createResource(resourceInfo resourceInfo)
67 {
68     std::cout << "SoftSensorSampleBundle::createResource called" << std::endl;
69
70     static int discomfortIndexSensorCount = 1;
71
72     std::vector< std::map< std::string, std::string > >::iterator itor_vec;
73     std::map< std::string, std::string >::iterator itor_map;
74     std::vector <std::string> inputs;
75
76     for (itor_vec = resourceInfo.resourceProperty["input"].begin();
77          itor_vec != resourceInfo.resourceProperty["input"].end(); itor_vec++)
78     {
79         for (itor_map = (*itor_vec).begin(); itor_map != (*itor_vec).end(); itor_map++)
80         {
81             inputs.push_back(itor_map->second);
82         }
83     }
84     std::cout << "SoftSensorSampleBundle::creating new discomfort index sensor " << std::endl;
85     // create DISensor resource
86     DiscomfortIndexSensorResource *newResource = new DiscomfortIndexSensorResource(inputs);
87
88     newResource->m_uri = "/softsensor/discomfortIndex/" + std::to_string(
89                              discomfortIndexSensorCount++);
90     newResource->m_resourceType = resourceInfo.resourceType;
91     newResource->m_mapResourceProperty = resourceInfo.resourceProperty;
92
93     // setting input Attributes count
94     newResource->inputCount = newResource->m_mapResourceProperty["input"].size();
95
96     m_pResourceContainer->registerResource(newResource);
97     m_vecResources.push_back(newResource);
98 }
99
100 void SoftSensorBundleActivator::destroyResource(BundleResource *resource)
101 {
102     std::cout << "SoftSensorSampleBundle::destroyResource called" << std::endl;
103
104     std::vector <BundleResource *>::iterator itor;
105
106     itor = std::find(m_vecResources.begin(), m_vecResources.end(), resource);
107
108     if (itor != m_vecResources.end())
109     {
110         m_pResourceContainer->unregisterResource(resource);
111     }
112
113     //TODO
114     /*std::cout << "Clearing up memory.\n";*/
115 }
116
117 extern "C" void externalActivateBundle(ResourceContainerBundleAPI *resourceContainer,
118                                        std::string bundleId)
119 {
120     bundle = new SoftSensorBundleActivator();
121     bundle->activateBundle(resourceContainer, bundleId);
122 }
123
124 extern "C" void externalDeactivateBundle()
125 {
126     bundle->deactivateBundle();
127 }