tizen beta release
[framework/web/wrt-plugins-common.git] / src / modules / tizen / Haptics / 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 <Commons/Exception.h>
17 #include "Manager.h"
18
19 namespace {
20 const std::size_t NUMBER_OF_AVAILABLE_MOTORS = 2;
21 } // anonymous
22
23 namespace WrtDeviceApis {
24 namespace Haptics {
25 Manager& Manager::getInstance()
26 {
27     static Manager instance;
28     return instance;
29 }
30
31 Motor* Manager::getMotor(std::size_t index) const
32 {
33     switch (index) {
34     case 0:
35         return new Motor(DEV_IDX_ALL);
36     case 1:
37         return new Motor(DEV_IDX_0);
38     case 2:
39         return new Motor(DEV_IDX_1);
40     }
41     ThrowMsg(Commons::OutOfRangeException, "Motor unavailable.");
42 }
43
44 std::size_t Manager::getMotorsCount() const
45 {
46     return NUMBER_OF_AVAILABLE_MOTORS;
47 }
48
49 Manager::Manager()
50 {
51 }
52 } // Haptics
53 } // WrtDeviceApis