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 #include <sensor_internal.h>
24 #include <sensor_handle_info.h>
25 #include <reg_event_info.h>
26 #include <sensor_log.h>
27
28 #define BASE_GATHERING_INTERVAL 100
29
30 const char *get_sensor_name(sensor_id_t sensor_id);
31 const char *get_event_name(unsigned int event_type);
32
33 unsigned int get_calibration_event_type(unsigned int event_type);
34 unsigned int get_log_per_count(sensor_id_t id);
35
36 void print_event_occurrence_log(sensor_handle_info &sensor_handle_info);
37
38 class sensor_info;
39 sensor_info *sensor_to_sensor_info(sensor_t sensor);
40 sensor_t sensor_info_to_sensor(const sensor_info *info);
41
42 #endif /* _CLIENT_COMMON_H_ */