Fix for build errors of packages that are using deprecated sensor api
[platform/core/system/sensord.git] / src / shared / sensor_internal_deprecated.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_INTERNAL_DEPRECATED__
21 #define __SENSOR_INTERNAL_DEPRECATED__
22
23 #ifndef DEPRECATED
24 #define DEPRECATED __attribute__((deprecated))
25 #endif
26
27 #include "stdbool.h"
28
29 #ifdef __cplusplus
30 extern "C"
31 {
32 #endif
33
34 #include <sys/types.h>
35
36 /*header for common sensor type*/
37 #include <sensor_common.h>
38
39 /*header for each sensor type*/
40 #include <sensor_types.h>
41
42 #include <sensor_deprecated.h>
43
44 #define MAX_KEY_LEN 30
45
46 typedef struct {
47         condition_op_t cond_op;
48         float cond_value1;
49 } event_condition_t;
50
51 typedef struct {
52         size_t event_data_size;
53         void *event_data;
54 } sensor_event_data_t;
55
56 typedef void (*sensor_callback_func_t)(unsigned int, sensor_event_data_t *, void *);
57 typedef sensor_callback_func_t sensor_legacy_cb_t;
58
59 typedef struct {
60         int x;
61         int y;
62         int z;
63 } sensor_panning_data_t;
64
65 typedef struct {
66         int sensor_unit_idx;
67         float sensor_min_range;
68         float sensor_max_range;
69         float sensor_resolution;
70         char sensor_name[MAX_KEY_LEN];
71         char sensor_vendor[MAX_KEY_LEN];
72 } sensor_properties_t;
73
74 typedef struct {
75         int sensor_unit_idx;
76         float sensor_min_range;
77         float sensor_max_range;
78         float sensor_resolution;
79 } sensor_data_properties_t;
80
81 int sf_is_sensor_event_available(sensor_type_t sensor_type , unsigned int event_type);
82
83 int sf_get_data_properties(unsigned int data_id, sensor_data_properties_t *return_data_properties);
84
85 int sf_get_properties(sensor_type_t sensor_type, sensor_properties_t *return_properties);
86
87 int sf_check_rotation(unsigned long *rotation);
88
89 /**
90  * @fn int sf_connect(sensor_type_t sensor)
91  * @brief  This API connects a sensor type to respective sensor. The application calls with the type of the sensor (ex. ACCELEROMETER_SENSOR) and on basis of that server takes decision of which plug-in to be connected. Once sensor connected application can proceed for data processing. This API returns a positive handle which should be used by application to communicate on sensor type.
92  * @param[in] sensor_type your desired sensor type
93  * @return if it succeed, it return handle value( >=0 ) , otherwise negative value return
94  */
95 int sf_connect(sensor_type_t sensor_type);
96
97 /**
98  * @fn int sf_disconnect(int handle)
99  * @brief This API disconnects an attached sensor from an application. Application must use the handle retuned after attaching the sensor. After detaching, the corresponding handle will be released.
100  * @param[in] handle received handle value by sf_connect()
101  * @return if it succeed, it return zero value , otherwise negative value return
102  */
103 int sf_disconnect(int handle);
104
105 /**
106  * @fn int sf_start(int handle , int option)
107  * @brief This API sends a start command to sensor server. This intimates server that the client side is ready to handle data and start processing. The parameter option should be '0' for current usages.
108  * @param[in] handle received handle value by sf_connect()
109  * @param[in] option With SENSOR_OPTION_DEFAULT, it stops to sense when LCD is off, and with SENSOR_OPTION_ALWAYS_ON, it continues to sense even when LCD is off
110  * @return if it succeed, it return zero value , otherwise negative value return
111  */
112 int sf_start(int handle , int option);
113
114 /**
115  * @fn int sf_stop(int handle)
116  * @brief This API sends a stop command to the Sensor server indicating that the data processing is stopped from application side for this time.
117  * @param[in] handle received handle value by sf_connect()
118  * @return if it succeed, it return zero value , otherwise negative value return
119  */
120 int sf_stop(int handle);
121
122 /**
123  * @fn int sf_register_event(int handle , unsigned int event_type , event_conditon_t *event_condition , sensor_callback_func_t cb , void *user_data )
124  * @brief This API registers a user defined callback function with a connected sensor for a particular event. This callback function will be called when there is a change in the state of respective sensor. user_data will be the parameter used during the callback call. Callback interval can be adjusted using even_contion_t argument.
125  * @param[in] handle received handle value by sf_connect()
126  * @param[in] event_type your desired event_type to register it
127  * @param[in] event_condition input event_condition for special event. if you want to register without event_condition, just use a NULL value
128  * @param[in] cb your define callback function
129  * @param[in] user_data your option data that will be send when your define callback function called. if you don't have any option data, just use a NULL value
130  * @return if it succeed, it return zero value , otherwise negative value return
131  */
132 int sf_register_event(int handle , unsigned int event_type , event_condition_t *event_condition , sensor_callback_func_t cb , void *user_data );
133
134 /**
135  * @fn int sf_unregister_event(int handle, unsigned int event_type)
136  * @brief This API de-registers a user defined callback function with a sensor registered with the specified handle. After unsubscribe, no event will be sent to the application.
137  * @param[in] handle received handle value by sf_connect()
138  * @param[in] event_type your desired event_type that you want to unregister event
139  * @return if it succeed, it return zero value , otherwise negative value return
140  */
141 int sf_unregister_event(int handle, unsigned int event_type);
142
143 /**
144  * @fn int sf_get_data(int handle , unsigned int data_id , sensor_data_t* values)
145  * @brief This API gets raw data from a sensor with connecting the sensor-server. The type of sensor is supplied and return data is stored in the output parameter values [].
146  * @param[in] handle received handle value by sf_connect()
147  * @param[in] data_id predefined data_ID as every sensor in own header - sensor_xxx.h , enum xxx_data_id {}
148  * @param[out] values return values
149  * @return if it succeed, it return zero value , otherwise negative value return
150  */
151 int sf_get_data(int handle , unsigned int data_id , sensor_data_t* values);
152
153 /**
154  * @fn int sf_change_event_condition(int handle, unsigned int event_type, event_condition_t *event_condition)
155  * @brief This API change a user defined callback function condition with a sensor registered with the specified handle.
156  * @param[in] handle received handle value by sf_connect()
157  * @param[in] event_type your desired event_type that you want to unregister event
158  * @param[in] event_condition your desired event condition that you want to change event
159  * @return if it succeed, it return zero value , otherwise negative value return
160  */
161 int sf_change_event_condition(int handle, unsigned int event_type, event_condition_t *event_condition);
162
163 /**
164  * @fn int sf_change_sensor_option(int handle, int option)
165  * @brief This API change sensor option .
166  * @param[in] handle received handle value by sf_connect()
167  * @param[in] option your desired option that you want to turn on sensor during LCD OFF
168  * @return if it succeed, it return zero value , otherwise negative value return
169  */
170
171 int sf_change_sensor_option(int handle, int option);
172
173 /**
174  * @fn int sf_send_sensorhub_data(int handle, const char* buffer, int data_len)
175  * @brief This API sends data to sensorhub.
176  * @param[in] handle received handle by sf_connect()
177  * @param[in] data it holds data to send to sensorhub
178  * @param[in] data_len the length of data
179  * @return if it succeed, it returns zero, otherwise negative value
180  */
181 int sf_send_sensorhub_data(int handle, const char* data, int data_len);
182
183
184 #ifdef __cplusplus
185 }
186 #endif
187
188
189 #endif