sensord: hal: splite sensor_hal.h into sensor_hal interface and hal
[platform/core/system/sensord.git] / src / server / sensor_base.h
1 /*
2  * sensord
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_BASE_H_
21 #define _SENSOR_BASE_H_
22
23 #include <sensor_types.h>
24 #include <sensor_info_list.h>
25 #include <cmutex.h>
26
27 #include <sensor_log.h>
28 #include <sensor_common.h>
29 #include <worker_thread.h>
30 #include <sensor_info.h>
31 #include <sensor_hal_types.h>
32 #include <vector>
33
34 class sensor_base {
35 public:
36         sensor_base();
37         virtual ~sensor_base();
38
39         /* id */
40         void set_id(sensor_id_t id);
41         sensor_id_t get_id(void);
42
43         /* sensor info */
44         virtual sensor_type_t get_type();
45         virtual unsigned int get_event_type(void);
46         virtual const char* get_name(void);
47         virtual bool is_virtual(void);
48
49         virtual bool get_sensor_info(sensor_info &info);
50
51         /* set/get data */
52         virtual int get_data(sensor_data_t **data, int *length);
53
54         virtual bool flush(void);
55         virtual int set_attribute(int32_t attribute, int32_t value);
56         virtual int set_attribute(int32_t attribute, char *value, int value_size);
57
58         /* start/stop */
59         bool start(void);
60         bool stop(void);
61         bool is_started(void);
62
63         /* interval / batch */
64         virtual bool add_interval(int client_id, unsigned int interval, bool is_processor);
65         virtual bool delete_interval(int client_id, bool is_processor);
66         unsigned int get_interval(int client_id, bool is_processor);
67
68         virtual bool add_batch(int client_id, unsigned int latency);
69         virtual bool delete_batch(int client_id);
70         unsigned int get_batch(int client_id);
71
72         bool push(sensor_event_t *event);
73
74         /* permission(privilege) */
75         int get_permission(void);
76
77 protected:
78         void set_permission(int permission);
79
80         static unsigned long long get_timestamp(void);
81         static unsigned long long get_timestamp(timeval *t);
82
83 private:
84         sensor_id_t m_id;
85         int m_permission;
86
87         sensor_info_list m_sensor_info_list;
88         cmutex m_sensor_info_list_mutex;
89
90         bool m_started;
91         unsigned int m_client;
92         cmutex m_client_mutex;
93
94         virtual bool set_interval(unsigned long interval);
95         virtual bool set_batch_latency(unsigned long latency);
96
97         virtual bool on_start(void);
98         virtual bool on_stop(void);
99 };
100
101 #endif /* _SENSOR_BASE_H_ */