sensord: create sensor-hal-devel package
[platform/core/system/sensord.git] / src / server / sensor_event_dispatcher.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_EVENT_DISPATCHER_H_
21 #define _SENSOR_EVENT_DISPATCHER_H_
22
23 #include <sf_common.h>
24 #include <sensor_event_queue.h>
25 #include <client_info_manager.h>
26 #include <csocket.h>
27 #include <virtual_sensor.h>
28 #include <unordered_map>
29 #include <list>
30 #include <vector>
31
32
33 typedef std::unordered_map<unsigned int, sensor_event_t> event_type_last_event_map;
34 typedef std::list<virtual_sensor *> virtual_sensors;
35
36 class sensor_event_dispatcher {
37 private:
38         bool m_lcd_on;
39         csocket m_accept_socket;
40         cmutex m_mutex;
41         cmutex m_last_events_mutex;
42         event_type_last_event_map m_last_events;
43         virtual_sensors m_active_virtual_sensors;
44         cmutex m_active_virtual_sensors_mutex;
45
46         sensor_event_dispatcher();
47         ~sensor_event_dispatcher();
48         sensor_event_dispatcher(sensor_event_dispatcher const&) {};
49         sensor_event_dispatcher& operator=(sensor_event_dispatcher const&);
50
51         void accept_connections(void);
52         void accept_event_channel(csocket client_socket);
53
54         void dispatch_event(void);
55         void send_sensor_events(std::vector<void *> &events);
56         static client_info_manager& get_client_info_manager(void);
57         static sensor_event_queue& get_event_queue(void);
58
59         bool is_record_event(unsigned int event_type);
60         void put_last_event(unsigned int event_type, const sensor_event_t &event);
61         bool get_last_event(unsigned int event_type, sensor_event_t &event);
62
63         bool has_active_virtual_sensor(virtual_sensor *sensor);
64         virtual_sensors get_active_virtual_sensors(void);
65
66         void sort_sensor_events(std::vector<void *> &events);
67 public:
68         static sensor_event_dispatcher& get_instance();
69         bool run(void);
70         void request_last_event(int client_id, sensor_id_t sensor_id);
71
72         bool add_active_virtual_sensor(virtual_sensor *sensor);
73         bool delete_active_virtual_sensor(virtual_sensor *sensor);
74 };
75
76 #endif /* _SENSOR_EVENT_DISPATCHER_H_ */