d73426e24bceea8e8a3b5e639ebda233a0850c7d
[framework/web/wrt-plugins-common.git] / src / modules / tizen / Power / Manager.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 #ifndef WRTDEVICEAPIS_POWER_MANAGER_H_
17 #define WRTDEVICEAPIS_POWER_MANAGER_H_
18
19 #include <cstddef>
20 #include <map>
21 #include <Power/IManager.h>
22 #include "Battery.h"
23 #include "Backlight.h"
24
25 namespace WrtDeviceApis {
26 namespace Power {
27
28 class Manager : public Api::IManager
29 {
30   public:
31     static Manager& getInstance();
32
33   public:
34     ~Manager();
35
36     /**
37      * @see Api::Power::IManager::getBattery()
38      */
39     Battery* getBattery(std::size_t index) const;
40
41     /**
42      * @see Api::Power::IManager::getBatteriesCount()
43      */
44     std::size_t getBatteriesCount() const;
45
46     /**
47      * @see Api::Power::IManager::getBacklight()
48      */
49
50     Api::IBacklightPtr getBacklight(void);
51
52     /**
53      * @see Api::Power::IManager::getBacklightCount()
54      */
55
56     std::size_t getBacklightCount() const;
57
58     /**
59      * @ release singleton resource while singleton deconstructor is not invoked.
60      */
61     void Release();
62   protected:
63     typedef std::map<std::size_t, Battery*> Batteries;
64
65   protected:
66     Manager();
67
68   private:
69     mutable Batteries m_batteries;
70     Api::IBacklightPtr m_backlight;
71 };
72
73 } // Power
74 } // WrtDeviceApis
75
76 #endif /* WRTDEVICEAPIS_POWER_MANAGER_H_ */