Update for attribute changed callback and attribute getter
[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 get_interval(sensor_observer *ob, int32_t& interval);
46
47         int set_batch_latency(sensor_observer *ob, int32_t latency);
48         int get_batch_latency(sensor_observer *ob, int32_t &latency);
49
50         int set_attribute(sensor_observer *ob, int32_t attr, int32_t value);
51         int set_attribute(sensor_observer *ob, int32_t attr, const char *value, int len);
52         int flush(sensor_observer *ob);
53         int get_data(sensor_data_t **data, int *len);
54
55 private:
56         bool init();
57         void deinit();
58
59         int get_min_interval(void);
60         int get_min_batch_latency(void);
61
62         external_sensor *m_sensor;
63         sensor_notifier *m_notifier;
64         int m_policy;
65
66         std::unordered_map<sensor_observer *, int> m_interval_map;
67         std::unordered_map<sensor_observer *, int> m_batch_latency_map;
68 };
69
70 }
71
72 #endif /* __EXTERNAL_SENSOR_HANDLER_H__ */