52679a0d88c64f1ac8a74e37bbace1d0bde79fdf
[platform/hal/backend/emulator/sensor-emulator.git] / src / pressure / pressure_device.h
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd.
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  */
17
18 #ifndef _PRESSURE_DEVICE_H_
19 #define _PRESSURE_DEVICE_H_
20
21 #include <hal/hal-sensor-interface.h>
22 #include <string>
23 #include <vector>
24 #include <functional>
25
26 class pressure_device : public sensor_device {
27 public:
28         pressure_device();
29         virtual ~pressure_device();
30
31         int get_poll_fd(void);
32         int get_sensors(const sensor_info_t **sensors);
33
34         bool enable(uint32_t id);
35         bool disable(uint32_t id);
36
37         bool set_interval(uint32_t id, unsigned long val);
38
39         int read_fd(uint32_t **ids);
40         int get_data(uint32_t id, sensor_data_t **data, int *length);
41
42 private:
43         int m_node_handle;
44         int m_pressure;
45         int m_temperature;
46         float m_sea_level_pressure;
47         unsigned long m_polling_interval;
48         unsigned long long m_fired_time;
49         bool m_sensorhub_controlled;
50
51         int m_method;
52         std::string m_data_node;
53         std::string m_enable_node;
54         std::string m_interval_node;
55
56         std::function<bool(void)> update_value;
57
58         std::vector<uint32_t> event_ids;
59
60         bool update_value_input_event(void);
61         bool update_value_iio(void);
62
63         void raw_to_base(sensor_data_t *data);
64         float pressure_to_altitude(float pressure);
65 };
66 #endif /*_PRESSURE_DEVICE_H_*/