2a984c79e4113d3b2d8bdbe64c8f3e0782a1a688
[platform/core/system/sensord.git] / src / sensor / rotation_vector / rv_sensor.h
1 /*
2  * sensord
3  *
4  * Copyright (c) 2016 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 _ROTATION_VECTOR_SENSOR_H_
21 #define _ROTATION_VECTOR_SENSOR_H_
22
23 #include <virtual_sensor.h>
24 #include <sensor_types.h>
25 #include <gyro_magnetic_fusion.h>
26
27 class rv_sensor : public virtual_sensor {
28 public:
29         rv_sensor();
30         virtual ~rv_sensor();
31
32         /* initialize sensor */
33         bool init(void);
34
35         /* sensor info */
36         virtual sensor_type_t get_type(void);
37         virtual unsigned int get_event_type(void);
38         virtual const char* get_name(void);
39
40         virtual bool get_sensor_info(sensor_info &info);
41
42         /* synthesize event */
43         virtual void synthesize(const sensor_event_t& event);
44
45         bool add_interval(int client_id, unsigned int interval, bool is_processor);
46         bool delete_interval(int client_id, bool is_processor);
47
48         /* get data */
49         virtual int get_data(sensor_data_t **data, int *length);
50 private:
51         sensor_base *m_accel_sensor;
52         sensor_base *m_mag_sensor;
53         sensor_base *m_gyro_sensor;
54         gyro_magnetic_fusion m_fusion;
55
56         float m_x;
57         float m_y;
58         float m_z;
59         float m_w;
60         unsigned long long m_time;
61         unsigned long m_interval;
62         int m_accuracy;
63
64         virtual bool set_interval(unsigned long interval);
65         virtual bool set_batch_latency(unsigned long latency);
66
67         virtual bool on_start(void);
68         virtual bool on_stop(void);
69 };
70
71 #endif /* _ROTATION_VECTOR_SENSOR_H_ */