Merge branch 'devel/tizen_3.0' into tizen
[platform/core/system/sensord.git] / src / client / client_common.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 _CLIENT_COMMON_H_
21 #define _CLIENT_COMMON_H_
22
23 /*header for each sensor type*/
24 #include <sensor_internal.h>
25 #include <sensor_handle_info.h>
26 #include <reg_event_info.h>
27 #include <sensor_log.h>
28
29 #define BASE_GATHERING_INTERVAL 100
30
31 #define CLIENT_NAME_SIZE NAME_MAX+10
32
33 struct log_attr {
34         const char *sensor_name;
35         const char *event_name;
36 };
37
38 bool is_one_shot_event(unsigned int event_type);
39 bool is_ontime_event(unsigned int event_type);
40 bool is_panning_event(unsigned int event_type);
41 bool is_single_state_event(unsigned int event_type);
42 unsigned int get_calibration_event_type(unsigned int event_type);
43 unsigned long long get_timestamp(void);
44
45 const char* get_sensor_name(sensor_id_t sensor_id);
46 const char* get_event_name(unsigned int event_type);
47 void print_event_occurrence_log(sensor_handle_info &sensor_handle_info, const reg_event_info *event_info);
48
49 class sensor_info;
50 sensor_info *sensor_to_sensor_info(sensor_t sensor);
51 sensor_t sensor_info_to_sensor(const sensor_info *info);
52
53 #endif /* _CLIENT_COMMON_H_ */