sensord: clean up sf_common.h/sensor_common.h/sensor_logs.h
[platform/core/system/sensord.git] / src / client / sensor_handle_info.h
1 /*
2  * libsensord
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_HANDLE_INFO_H_
21 #define _SENSOR_HANDLE_INFO_H_
22
23 #include <reg_event_info.h>
24 #include <sensor_logs.h>
25 #include <string.h>
26 #include <unordered_map>
27 #include <glib.h>
28 #include <sensor_internal.h>
29
30 typedef std::unordered_map<unsigned int,reg_event_info> event_info_map;
31
32 class sensor_handle_info {
33 public:
34         int m_handle;
35         sensor_id_t m_sensor_id;
36         int m_sensor_state;
37         int m_sensor_option;
38         int m_sensor_wakeup;
39         int m_bad_accuracy;
40         int m_accuracy;
41         sensor_accuracy_changed_cb_t m_accuracy_cb;
42         void *m_accuracy_user_data;
43
44         sensor_handle_info();
45         ~sensor_handle_info();
46
47         bool add_reg_event_info(unsigned int event_type, unsigned int interval, unsigned int latency, int cb_type, void *cb,void *user_data);
48         bool delete_reg_event_info(unsigned int event_type);
49
50         bool change_reg_event_batch(unsigned int event_type, unsigned int interval, unsigned int latency);
51         bool change_reg_event_maincontext(unsigned int event_type, GMainContext *maincontext);
52
53         reg_event_info* get_reg_event_info(const unsigned int event_type);
54         void get_reg_event_types(event_type_vector &event_types);
55         void get_batch(unsigned int &interval, unsigned int &latency);
56         unsigned int get_reg_event_count(void);
57
58         void clear_all_events(void);
59         static unsigned long long renew_event_id(void);
60 private:
61         event_info_map m_reg_event_infos;
62         static unsigned long long m_event_id;
63 };
64
65
66 #endif /* _SENSOR_HANDLE_INFO_H_ */