114 lines
3.1 KiB
C++
114 lines
3.1 KiB
C++
#ifndef DATA_DYNAMIC_H_
|
|
#define DATA_DYNAMIC_H_
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <unordered_map>
|
|
#include "../typedefs.h"
|
|
|
|
namespace dynamic {
|
|
class Map;
|
|
class List;
|
|
class Value;
|
|
|
|
enum class valtype {
|
|
map, list, number, integer, string, boolean
|
|
};
|
|
|
|
union valvalue {
|
|
Map* map;
|
|
List* list;
|
|
std::string* str;
|
|
double decimal;
|
|
int64_t integer;
|
|
bool boolean;
|
|
};
|
|
|
|
class Value {
|
|
public:
|
|
valtype type;
|
|
valvalue value;
|
|
Value(valtype type, valvalue value);
|
|
~Value();
|
|
};
|
|
|
|
class List {
|
|
public:
|
|
std::vector<std::unique_ptr<Value>> values;
|
|
~List();
|
|
|
|
std::string str(size_t index) const;
|
|
double num(size_t index) const;
|
|
int64_t integer(size_t num) const;
|
|
Map* map(size_t index) const;
|
|
List* list(size_t index) const;
|
|
bool flag(size_t index) const;
|
|
|
|
inline size_t size() const {
|
|
return values.size();
|
|
}
|
|
|
|
inline Value* get(size_t i) const {
|
|
return values.at(i).get();
|
|
}
|
|
|
|
List& put(uint value);
|
|
List& put(int value);
|
|
List& put(uint64_t value);
|
|
List& put(int64_t value);
|
|
List& put(float value);
|
|
List& put(double value);
|
|
List& put(std::string value);
|
|
List& put(Map* value);
|
|
List& put(List* value);
|
|
List& put(bool value);
|
|
|
|
List& putList();
|
|
Map& putMap();
|
|
|
|
void remove(size_t index);
|
|
};
|
|
|
|
class Map {
|
|
public:
|
|
std::unordered_map<std::string, std::unique_ptr<Value>> values;
|
|
~Map();
|
|
|
|
std::string getStr(std::string key, const std::string& def) const;
|
|
double getNum(std::string key, double def) const;
|
|
int64_t getInt(std::string key, int64_t def) const;
|
|
bool getBool(std::string key, bool def) const;
|
|
|
|
void str(std::string key, std::string& dst) const;
|
|
void num(std::string key, int& dst) const;
|
|
void num(std::string key, float& dst) const;
|
|
void num(std::string key, uint& dst) const;
|
|
void num(std::string key, int64_t& dst) const;
|
|
void num(std::string key, uint64_t& dst) const;
|
|
void num(std::string key, ubyte& dst) const;
|
|
void num(std::string key, double& dst) const;
|
|
Map* map(std::string key) const;
|
|
List* list(std::string key) const;
|
|
void flag(std::string key, bool& dst) const;
|
|
|
|
Map& put(std::string key, uint value);
|
|
Map& put(std::string key, int value);
|
|
Map& put(std::string key, int64_t value);
|
|
Map& put(std::string key, uint64_t value);
|
|
Map& put(std::string key, float value);
|
|
Map& put(std::string key, double value);
|
|
Map& put(std::string key, const char* value);
|
|
Map& put(std::string key, std::string value);
|
|
Map& put(std::string key, Map* value);
|
|
Map& put(std::string key, List* value);
|
|
Map& put(std::string key, bool value);
|
|
|
|
List& putList(std::string key);
|
|
Map& putMap(std::string key);
|
|
|
|
bool has(std::string key);
|
|
};
|
|
}
|
|
|
|
#endif // DATA_DYNAMIC_H_
|