[Release] wrt-plugins-common_0.3.65
[platform/framework/web/wrt-plugins-common.git] / src / modules / tizen / Cpu / Manager.cpp
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 #include "Manager.h"
17 #include <Commons/Exception.h>
18
19 namespace {
20 const std::size_t NUMBER_OF_AVAILABLE_CPUS = 1;
21 }
22
23 namespace WrtDeviceApis {
24 namespace Cpu {
25
26 Manager& Manager::getInstance()
27 {
28     static Manager instance;
29     return instance;
30 }
31
32 Api::IUnit* Manager::getUnit(std::size_t index) const
33 {
34     if (index > NUMBER_OF_AVAILABLE_CPUS) {
35         Throw(Commons::OutOfRangeException);
36     }
37
38     Units::const_iterator it = m_units.find(index);
39     if (it != m_units.end()) {
40         return it->second;
41     }
42     return (m_units[index] = new Unit(index));
43 }
44
45 std::size_t Manager::getUnitsCount() const
46 {
47     return NUMBER_OF_AVAILABLE_CPUS;
48 }
49
50 Manager::Manager()
51 {
52 }
53
54 } // Cpu
55 } // WrtDeviceApis