sensord: compare previous interval with current interval
[platform/core/system/sensord.git] / src / server / application_sensor_handler.h
1 /*
2  * sensord
3  *
4  * Copyright (c) 2017 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 __APPLICATION_SENSOR_HANDLER_H__
21 #define __APPLICATION_SENSOR_HANDLER_H__
22
23 #include <channel.h>
24 #include <sensor_types.h>
25 #include <unordered_map>
26
27 #include "sensor_handler.h"
28 #include "sensor_observer.h"
29
30 namespace sensor {
31
32 class application_sensor_handler : public sensor_handler {
33 public:
34         application_sensor_handler(const sensor_info &info);
35         ~application_sensor_handler();
36
37         /* TODO: const */
38         int post(sensor_data_t *data, int len);
39
40         /* sensor interface */
41         const sensor_info &get_sensor_info(void);
42
43         int start(sensor_observer *ob);
44         int stop(sensor_observer *ob);
45
46         int set_interval(sensor_observer *ob, int32_t interval);
47         int set_batch_latency(sensor_observer *ob, int32_t latency);
48         int set_attribute(sensor_observer *ob, int32_t attr, int32_t value);
49         int set_attribute(sensor_observer *ob, int32_t attr, const char *value, int len);
50         int flush(sensor_observer *ob);
51         int get_data(sensor_data_t **data, int *len);
52
53 private:
54         sensor_info m_info;
55         std::vector<sensor_handler *> m_required_sensors;
56 };
57
58 }
59
60 #endif /* __APPLICATION_SENSOR_HANDLER_H__ */