Magisk/native/jni/resetprop/_resetprop.hpp

38 lines
935 B
C++
Raw Normal View History

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>
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) {
exec(std::string(name), value);
}
virtual void exec(std::string &&name, const char *value) {
exec(name.data(), value);
}
2018-04-28 14:22:42 +02:00
};
2020-11-04 10:56:49 +01:00
extern bool use_pb;
2020-05-07 15:08:30 +02:00
2020-11-04 10:56:49 +01:00
using prop_list = std::map<std::string, std::string>;
2020-05-07 15:08:30 +02:00
2020-11-04 10:56:49 +01:00
struct prop_collector : prop_cb {
explicit prop_collector(prop_list &list) : list(list) {}
void exec(const char *name, const char *value) override {
list.insert_or_assign(name, value);
}
void exec(std::string &&name, const char *value) override {
list.insert_or_assign(std::move(name), value);
}
2020-05-07 15:08:30 +02:00
private:
prop_list &list;
2020-05-07 15:08:30 +02:00
};
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);