2023-10-19 16:19:09 +02:00
|
|
|
/*
|
|
|
|
* JsonNode.h, part of VCMI engine
|
|
|
|
*
|
|
|
|
* Authors: listed in file AUTHORS in main folder
|
|
|
|
*
|
|
|
|
* License: GNU General Public License v2.0 or later
|
|
|
|
* Full text of license available in license.txt file, in main folder
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#pragma once
|
2024-02-11 23:09:01 +02:00
|
|
|
|
|
|
|
#include "../filesystem/ResourcePath.h"
|
2023-10-19 16:19:09 +02:00
|
|
|
|
|
|
|
VCMI_LIB_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
class JsonNode;
|
|
|
|
using JsonMap = std::map<std::string, JsonNode>;
|
|
|
|
using JsonVector = std::vector<JsonNode>;
|
|
|
|
|
|
|
|
struct Bonus;
|
|
|
|
class CSelector;
|
|
|
|
class CAddInfo;
|
|
|
|
class ILimiter;
|
|
|
|
|
|
|
|
class DLL_LINKAGE JsonNode
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum class JsonType
|
|
|
|
{
|
|
|
|
DATA_NULL,
|
|
|
|
DATA_BOOL,
|
|
|
|
DATA_FLOAT,
|
|
|
|
DATA_STRING,
|
|
|
|
DATA_VECTOR,
|
|
|
|
DATA_STRUCT,
|
|
|
|
DATA_INTEGER
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
2023-10-22 17:36:41 +02:00
|
|
|
using JsonData = std::variant<std::monostate, bool, double, std::string, JsonVector, JsonMap, si64>;
|
2023-10-19 16:19:09 +02:00
|
|
|
|
|
|
|
JsonData data;
|
|
|
|
|
|
|
|
public:
|
|
|
|
/// free to use metadata fields
|
|
|
|
std::string meta;
|
|
|
|
// meta-flags like override
|
|
|
|
std::vector<std::string> flags;
|
|
|
|
|
|
|
|
//Create empty node
|
|
|
|
JsonNode(JsonType Type = JsonType::DATA_NULL);
|
|
|
|
//Create tree from Json-formatted input
|
|
|
|
explicit JsonNode(const char * data, size_t datasize);
|
2024-02-02 01:27:19 +02:00
|
|
|
explicit JsonNode(const std::byte * data, size_t datasize);
|
2023-10-19 16:19:09 +02:00
|
|
|
//Create tree from JSON file
|
|
|
|
explicit JsonNode(const JsonPath & fileURI);
|
|
|
|
explicit JsonNode(const std::string & modName, const JsonPath & fileURI);
|
|
|
|
explicit JsonNode(const JsonPath & fileURI, bool & isValidSyntax);
|
|
|
|
|
|
|
|
bool operator == (const JsonNode &other) const;
|
|
|
|
bool operator != (const JsonNode &other) const;
|
|
|
|
|
|
|
|
void setMeta(const std::string & metadata, bool recursive = true);
|
|
|
|
|
|
|
|
/// Convert node to another type. Converting to nullptr will clear all data
|
|
|
|
void setType(JsonType Type);
|
|
|
|
JsonType getType() const;
|
|
|
|
|
|
|
|
bool isNull() const;
|
|
|
|
bool isNumber() const;
|
|
|
|
bool isString() const;
|
|
|
|
bool isVector() const;
|
|
|
|
bool isStruct() const;
|
|
|
|
/// true if node contains not-null data that cannot be extended via merging
|
|
|
|
/// used for generating common base node from multiple nodes (e.g. bonuses)
|
|
|
|
bool containsBaseData() const;
|
|
|
|
bool isCompact() const;
|
|
|
|
/// removes all data from node and sets type to null
|
|
|
|
void clear();
|
|
|
|
|
|
|
|
/// returns bool or bool equivalent of string value if 'success' is true, or false otherwise
|
|
|
|
bool TryBoolFromString(bool & success) const;
|
|
|
|
|
|
|
|
/// non-const accessors, node will change type on type mismatch
|
|
|
|
bool & Bool();
|
|
|
|
double & Float();
|
|
|
|
si64 & Integer();
|
|
|
|
std::string & String();
|
|
|
|
JsonVector & Vector();
|
|
|
|
JsonMap & Struct();
|
|
|
|
|
|
|
|
/// const accessors, will cause assertion failure on type mismatch
|
|
|
|
bool Bool() const;
|
|
|
|
///float and integer allowed
|
|
|
|
double Float() const;
|
|
|
|
///only integer allowed
|
|
|
|
si64 Integer() const;
|
|
|
|
const std::string & String() const;
|
|
|
|
const JsonVector & Vector() const;
|
|
|
|
const JsonMap & Struct() const;
|
|
|
|
|
|
|
|
/// returns resolved "json pointer" (string in format "/path/to/node")
|
|
|
|
const JsonNode & resolvePointer(const std::string & jsonPointer) const;
|
|
|
|
JsonNode & resolvePointer(const std::string & jsonPointer);
|
|
|
|
|
|
|
|
/// convert json tree into specified type. Json tree must have same type as Type
|
|
|
|
/// Valid types: bool, string, any numeric, map and vector
|
|
|
|
/// example: convertTo< std::map< std::vector<int> > >();
|
|
|
|
template<typename Type>
|
|
|
|
Type convertTo() const;
|
|
|
|
|
|
|
|
//operator [], for structs only - get child node by name
|
|
|
|
JsonNode & operator[](const std::string & child);
|
|
|
|
const JsonNode & operator[](const std::string & child) const;
|
|
|
|
|
|
|
|
JsonNode & operator[](size_t child);
|
|
|
|
const JsonNode & operator[](size_t child) const;
|
|
|
|
|
2024-02-12 01:22:16 +02:00
|
|
|
std::string toCompactString() const;
|
|
|
|
std::string toString() const;
|
|
|
|
std::vector<std::byte> toBytes() const;
|
2023-10-19 16:19:09 +02:00
|
|
|
|
2024-01-20 20:34:51 +02:00
|
|
|
template <typename Handler> void serialize(Handler &h)
|
2023-10-19 16:19:09 +02:00
|
|
|
{
|
|
|
|
h & meta;
|
|
|
|
h & flags;
|
2023-10-22 17:36:41 +02:00
|
|
|
h & data;
|
2023-10-19 16:19:09 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
namespace JsonDetail
|
|
|
|
{
|
|
|
|
// conversion helpers for JsonNode::convertTo (partial template function instantiation is illegal in c++)
|
|
|
|
|
|
|
|
template <typename T, int arithm>
|
|
|
|
struct JsonConvImpl;
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
struct JsonConvImpl<T, 1>
|
|
|
|
{
|
|
|
|
static T convertImpl(const JsonNode & node)
|
|
|
|
{
|
|
|
|
return T((int)node.Float());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
struct JsonConvImpl<T, 0>
|
|
|
|
{
|
|
|
|
static T convertImpl(const JsonNode & node)
|
|
|
|
{
|
|
|
|
return T(node.Float());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename Type>
|
|
|
|
struct JsonConverter
|
|
|
|
{
|
|
|
|
static Type convert(const JsonNode & node)
|
|
|
|
{
|
|
|
|
///this should be triggered only for numeric types and enums
|
2023-11-04 16:21:54 +02:00
|
|
|
static_assert(std::is_arithmetic_v<Type> || std::is_enum_v<Type> || std::is_class_v<Type>, "Unsupported type for JsonNode::convertTo()!");
|
|
|
|
return JsonConvImpl<Type, std::is_enum_v<Type> || std::is_class_v<Type> >::convertImpl(node);
|
2023-10-19 16:19:09 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename Type>
|
|
|
|
struct JsonConverter<std::map<std::string, Type> >
|
|
|
|
{
|
|
|
|
static std::map<std::string, Type> convert(const JsonNode & node)
|
|
|
|
{
|
|
|
|
std::map<std::string, Type> ret;
|
|
|
|
for (const JsonMap::value_type & entry : node.Struct())
|
|
|
|
{
|
|
|
|
ret.insert(entry.first, entry.second.convertTo<Type>());
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename Type>
|
|
|
|
struct JsonConverter<std::set<Type> >
|
|
|
|
{
|
|
|
|
static std::set<Type> convert(const JsonNode & node)
|
|
|
|
{
|
|
|
|
std::set<Type> ret;
|
|
|
|
for(const JsonVector::value_type & entry : node.Vector())
|
|
|
|
{
|
|
|
|
ret.insert(entry.convertTo<Type>());
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename Type>
|
|
|
|
struct JsonConverter<std::vector<Type> >
|
|
|
|
{
|
|
|
|
static std::vector<Type> convert(const JsonNode & node)
|
|
|
|
{
|
|
|
|
std::vector<Type> ret;
|
|
|
|
for (const JsonVector::value_type & entry: node.Vector())
|
|
|
|
{
|
|
|
|
ret.push_back(entry.convertTo<Type>());
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<>
|
|
|
|
struct JsonConverter<std::string>
|
|
|
|
{
|
|
|
|
static std::string convert(const JsonNode & node)
|
|
|
|
{
|
|
|
|
return node.String();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<>
|
|
|
|
struct JsonConverter<bool>
|
|
|
|
{
|
|
|
|
static bool convert(const JsonNode & node)
|
|
|
|
{
|
|
|
|
return node.Bool();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename Type>
|
|
|
|
Type JsonNode::convertTo() const
|
|
|
|
{
|
|
|
|
return JsonDetail::JsonConverter<Type>::convert(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
VCMI_LIB_NAMESPACE_END
|