4 * Copyright (c) 2017 Samsung Electronics Co., Ltd.
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
10 * http://www.apache.org/licenses/LICENSE-2.0
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.
20 #ifndef __EXTERNAL_SENSOR_HANDLER_H__
21 #define __EXTERNAL_SENSOR_HANDLER_H__
24 #include <sensor_types.h>
25 #include <external_sensor.h>
26 #include <unordered_map>
28 #include "sensor_handler.h"
32 class external_sensor_handler : public sensor_handler {
34 external_sensor_handler(const sensor_info &info,
35 external_sensor *sensor);
36 ~external_sensor_handler();
38 /* sensor interface */
39 const sensor_info &get_sensor_info(void);
41 int start(sensor_observer *ob);
42 int stop(sensor_observer *ob);
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);
55 int get_min_interval(void);
56 int get_min_batch_latency(void);
59 external_sensor *m_sensor;
60 sensor_notifier *m_notifier;
63 std::unordered_map<sensor_observer *, int> m_interval_map;
64 std::unordered_map<sensor_observer *, int> m_batch_latency_map;
69 #endif /* __EXTERNAL_SENSOR_HANDLER_H__ */