sensord: clean up sf_common.h/sensor_common.h/sensor_logs.h
[platform/core/system/sensord.git] / src / server / physical_sensor.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 _PHYSICAL_SENSOR_H_
21 #define _PHYSICAL_SENSOR_H_
22
23 #include <sensor_base.h>
24 #include <worker_thread.h>
25
26 class physical_sensor : public sensor_base {
27 public:
28         physical_sensor();
29         virtual ~physical_sensor();
30
31         /* setting module */
32         void set_sensor_handle(sensor_handle_t handle);
33         void set_sensor_device(sensor_device *device);
34
35         /* module 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         virtual uint32_t get_hal_id(void);
40
41         int get_poll_fd();
42
43         virtual bool read_fd(std::vector<uint32_t> &ids);
44         virtual int get_data(sensor_data_t **data, int *length);
45         virtual bool flush(void);
46 private:
47         static cmutex m_mutex;
48
49         sensor_handle_t m_handle;
50         sensor_device *m_sensor_device;
51         uint32_t hal_id;
52
53         virtual bool set_interval(unsigned long interval);
54         virtual bool set_batch_latency(unsigned long latency);
55         virtual int set_attribute(int32_t attribute, int32_t value);
56         virtual int set_attribute(int32_t attribute, char *value, int value_len);
57         virtual bool set_wakeup(int wakeup);
58         virtual bool on_start(void);
59         virtual bool on_stop(void);
60         virtual bool get_sensor_info(sensor_info &info);
61 };
62
63 #endif /* _PHYSICAL_SENSOR_H_ */