2019-07-01 04:09:31 +02:00
|
|
|
#pragma once
|
2018-04-28 14:22:42 +02:00
|
|
|
|
2019-01-20 05:59:37 +01:00
|
|
|
#include <string>
|
2020-05-07 15:08:30 +02:00
|
|
|
#include <map>
|
2020-03-09 09:50:30 +01:00
|
|
|
#include <logging.hpp>
|
2019-02-16 02:45:05 +01:00
|
|
|
|
2020-03-09 09:50:30 +01:00
|
|
|
#include <system_properties.h>
|
2018-04-28 14:22:42 +02:00
|
|
|
|
2020-05-07 15:08:30 +02:00
|
|
|
#define PERSISTENT_PROPERTY_DIR "/data/property"
|
|
|
|
|
|
|
|
struct prop_cb {
|
|
|
|
virtual void exec(const char *name, const char *value) = 0;
|
2018-04-28 14:22:42 +02:00
|
|
|
};
|
|
|
|
|
2020-05-07 15:08:30 +02:00
|
|
|
template<class T>
|
|
|
|
struct prop_cb_impl : public prop_cb {
|
|
|
|
typedef void (*callback_type)(const char *, const char *, T&);
|
|
|
|
|
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Wdangling-field" // Dangling field is expected
|
|
|
|
prop_cb_impl(T &arg, callback_type fn) : arg(arg), fn(fn) {}
|
|
|
|
#pragma GCC diagnostic pop
|
|
|
|
|
|
|
|
void exec(const char *name, const char *value) override {
|
|
|
|
fn(name, value, arg);
|
2018-11-03 04:56:15 +01:00
|
|
|
}
|
2020-05-07 15:08:30 +02:00
|
|
|
private:
|
|
|
|
T &arg;
|
|
|
|
callback_type fn;
|
2018-04-28 14:22:42 +02:00
|
|
|
};
|
|
|
|
|
2018-11-03 04:56:15 +01:00
|
|
|
extern bool use_pb;
|
|
|
|
|
2020-05-07 15:08:30 +02:00
|
|
|
using prop_list = std::map<std::string_view, std::string>;
|
|
|
|
|
|
|
|
struct prop_collector : prop_cb_impl<prop_list> {
|
|
|
|
prop_collector(prop_list &list) :
|
|
|
|
prop_cb_impl<prop_list>(list, [](auto name, auto val, auto list){ list.emplace(name, val); }) {}
|
|
|
|
};
|
|
|
|
|
|
|
|
template <class T, class Func>
|
|
|
|
prop_cb_impl<T> make_prop_cb(T &arg, Func f) {
|
|
|
|
return prop_cb_impl<T>(arg, f);
|
|
|
|
}
|
|
|
|
|
2019-01-20 05:59:37 +01:00
|
|
|
std::string persist_getprop(const char *name);
|
2020-05-07 15:08:30 +02:00
|
|
|
void persist_getprops(prop_cb *prop_cb);
|
2018-04-28 14:22:42 +02:00
|
|
|
bool persist_deleteprop(const char *name);
|
2020-05-07 15:08:30 +02:00
|
|
|
void persist_cleanup();
|