Use vector<char> to cache sensor_data_t in sensor_handler
[platform/core/system/sensord.git] / src / server / 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 __SENSOR_HANDLER_H__
21 #define __SENSOR_HANDLER_H__
22
23 #include <sensor_observer.h>
24 #include <sensor_publisher.h>
25 #include <sensor_types.h>
26 #include <sensor_info.h>
27 #include <list>
28 #include <map>
29 #include <vector>
30
31 namespace sensor {
32
33 class sensor_handler : public sensor_publisher {
34 public:
35         sensor_handler(const sensor_info &info);
36         virtual ~sensor_handler() {}
37
38         /* publisher */
39         bool has_observer(sensor_observer *ob);
40         bool add_observer(sensor_observer *ob);
41         void remove_observer(sensor_observer *ob);
42         int notify(const char *type, sensor_data_t *data, int len);
43         uint32_t observer_count(void);
44
45         virtual const sensor_info &get_sensor_info(void) = 0;
46
47         virtual int start(sensor_observer *ob) = 0;
48         virtual int stop(sensor_observer *ob) = 0;
49
50         virtual int set_interval(sensor_observer *ob, int32_t interval) = 0;
51         virtual int set_batch_latency(sensor_observer *ob, int32_t latency) = 0;
52         virtual int delete_batch_latency(sensor_observer *ob);
53         virtual int set_attribute(sensor_observer *ob, int32_t attr, int32_t value) = 0;
54         virtual int get_attribute(int32_t attr, int32_t* value);
55         void update_attribute(int32_t attr, int32_t value);
56         virtual int set_attribute(sensor_observer *ob, int32_t attr, const char *value, int len) = 0;
57         virtual int get_attribute(int32_t attr, char **value, int *len);
58         void update_attribute(int32_t attr, const char *value, int len);
59         virtual int flush(sensor_observer *ob) = 0;
60         virtual int get_data(sensor_data_t **data, int *len) = 0;
61
62         void set_cache(sensor_data_t *data, int size);
63         int get_cache(sensor_data_t **data, int *len);
64         bool notify_attribute_changed(uint32_t id, int attribute, int value);
65         bool notify_attribute_changed(uint32_t id, int attribute, const char *value, int len);
66
67 protected:
68         sensor_info m_info;
69         std::map<int32_t, int32_t> m_attributes_int;
70         std::map<int32_t, std::vector<char>> m_attributes_str;
71
72 private:
73         std::list<sensor_observer *> m_observers;
74
75         std::vector<char> m_sensor_data_cache;
76 };
77
78 }
79
80 #endif /* __SENSOR_HANDLER_H__ */