Merge branch 'devel/tizen' into tizen
[platform/core/system/sensord.git] / src / server / external_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 __EXTERNAL_SENSOR_HANDLER_H__
21 #define __EXTERNAL_SENSOR_HANDLER_H__
22
23 #include <message.h>
24 #include <sensor_types.h>
25 #include <external_sensor.h>
26 #include <unordered_map>
27
28 #include "sensor_handler.h"
29
30 namespace sensor {
31
32 class external_sensor_handler : public sensor_handler {
33 public:
34         external_sensor_handler(const sensor_info &info,
35                         external_sensor *sensor);
36         ~external_sensor_handler();
37
38         /* sensor interface */
39         const sensor_info &get_sensor_info(void);
40
41         int start(sensor_observer *ob);
42         int stop(sensor_observer *ob);
43
44         int set_interval(sensor_observer *ob, int32_t interval);
45         int set_batch_latency(sensor_observer *ob, int32_t latency);
46         int set_attribute(sensor_observer *ob, int32_t attr, int32_t value);
47         int set_attribute(sensor_observer *ob, int32_t attr, const char *value, int len);
48         int flush(sensor_observer *ob);
49         int get_data(sensor_data_t **data, int *len);
50
51 private:
52         bool init();
53         void deinit();
54
55         int get_min_interval(void);
56         int get_min_batch_latency(void);
57
58         external_sensor *m_sensor;
59         sensor_notifier *m_notifier;
60         int m_policy;
61
62         std::unordered_map<sensor_observer *, int> m_interval_map;
63         std::unordered_map<sensor_observer *, int> m_batch_latency_map;
64 };
65
66 }
67
68 #endif /* __EXTERNAL_SENSOR_HANDLER_H__ */