Imported Upstream version 1.0.0
[platform/upstream/iotivity.git] / service / resource-container / examples / HueSampleBundle / include / HueSampleBundleActivator.h
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 #ifndef HUESAMPLEBUNDLEACTIVATOR_H_
22 #define HUESAMPLEBUNDLEACTIVATOR_H_
23
24 #include "ResourceContainerBundleAPI.h"
25 #include "BundleActivator.h"
26 #include "BundleResource.h"
27 #include "HueConnector.h"
28
29 using namespace OIC::Service;
30
31 namespace OIC
32 {
33     namespace Service
34     {
35         class HueSampleBundleActivator: public BundleActivator
36         {
37             public:
38                 HueSampleBundleActivator();
39                 ~HueSampleBundleActivator();
40
41                 void activateBundle(ResourceContainerBundleAPI *resourceContainer,
42                                     std::string bundleId);
43                 void deactivateBundle();
44
45                 void createResource(resourceInfo resourceInfo);
46                 void destroyResource(BundleResource::Ptr pBundleResource);
47
48                 std::string m_bundleId;
49                 ResourceContainerBundleAPI *m_pResourceContainer;
50                 std::vector< BundleResource::Ptr > m_vecResources;
51             private:
52                 HueConnector *m_connector;
53         };
54     }
55 }
56
57 #endif /* HUESAMPLEBUNDLEACTIVATOR_H_ */