sensord: add the sensord plugin logic for flexibility
[platform/core/system/sensord.git] / src / server / sensor_loader.h
1 /*
2  * libsensord-share
3  *
4  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  */
19
20 #ifndef _SENSOR_PLUGIN_LOADER_H_
21 #define _SENSOR_PLUGIN_LOADER_H_
22
23 #include <sensor_common.h>
24 #include <sensor_types.h>
25 #include <sensor_hal.h>
26
27 #include <cmutex.h>
28 #include <sstream>
29
30 #include <string>
31 #include <vector>
32 #include <map>
33 #include <set>
34 #include <memory>
35 #include <physical_sensor.h>
36 #include <virtual_sensor.h>
37
38 class sensor_base;
39
40 typedef std::multimap<sensor_type_t, std::shared_ptr<sensor_base>> sensor_map_t;
41 typedef std::map<const sensor_handle_t *, sensor_device *> sensor_device_map_t;
42
43 class sensor_loader {
44 private:
45         sensor_loader();
46
47         bool load_sensor_devices(const std::string &path, void* &handle);
48
49         void create_sensors(void);
50         template <typename _sensor> void create_physical_sensors(sensor_type_t type);
51         template <typename _sensor> void create_virtual_sensors(const char *name);
52         template <typename _sensor> sensor_base* create_sensor(void);
53
54         void show_sensor_info(void);
55         bool get_paths_from_dir(const std::string &dir_path, std::vector<std::string> &plugin_paths);
56
57         sensor_map_t m_sensors;
58         sensor_device_map_t m_devices;
59 public:
60         static sensor_loader& get_instance();
61         bool load(void);
62
63         sensor_base* get_sensor(sensor_type_t type);
64         sensor_base* get_sensor(sensor_id_t id);
65
66         std::vector<sensor_type_t> get_sensor_types(void);
67         std::vector<sensor_base *> get_sensors(sensor_type_t type);
68         std::vector<sensor_base *> get_virtual_sensors(void);
69 };
70 #endif  /* _SENSOR_PLUGIN_LOADER_H_ */