2
0

JsonNode.h 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. /*
  2. * JsonNode.h, part of VCMI engine
  3. *
  4. * Authors: listed in file AUTHORS in main folder
  5. *
  6. * License: GNU General Public License v2.0 or later
  7. * Full text of license available in license.txt file, in main folder
  8. *
  9. */
  10. #pragma once
  11. #include "../filesystem/ResourcePath.h"
  12. VCMI_LIB_NAMESPACE_BEGIN
  13. class JsonNode;
  14. using JsonMap = std::map<std::string, JsonNode>;
  15. using JsonVector = std::vector<JsonNode>;
  16. struct DLL_LINKAGE JsonParsingSettings
  17. {
  18. enum class JsonFormatMode
  19. {
  20. JSON, // strict implementation of json format
  21. JSONC, // json format that also allows comments that start from '//'
  22. JSON5 // Partial support of 'json5' format
  23. };
  24. JsonFormatMode mode = JsonFormatMode::JSON5;
  25. /// Maximum depth of elements
  26. uint32_t maxDepth = 30;
  27. /// If set to true, parser will throw on any encountered error
  28. bool strict = false;
  29. };
  30. class DLL_LINKAGE JsonNode
  31. {
  32. public:
  33. enum class JsonType
  34. {
  35. DATA_NULL,
  36. DATA_BOOL,
  37. DATA_FLOAT,
  38. DATA_STRING,
  39. DATA_VECTOR,
  40. DATA_STRUCT,
  41. DATA_INTEGER
  42. };
  43. private:
  44. using JsonData = std::variant<std::monostate, bool, double, std::string, JsonVector, JsonMap, int64_t>;
  45. JsonData data;
  46. /// Mod-origin of this particular field
  47. std::string modScope;
  48. bool overrideFlag = false;
  49. public:
  50. JsonNode() = default;
  51. /// Create single node with specified value
  52. explicit JsonNode(bool boolean);
  53. explicit JsonNode(int32_t number);
  54. explicit JsonNode(uint32_t number);
  55. explicit JsonNode(int64_t number);
  56. explicit JsonNode(double number);
  57. explicit JsonNode(const char * string);
  58. explicit JsonNode(const std::string & string);
  59. /// Create tree from map
  60. explicit JsonNode(const JsonMap & map);
  61. /// Create tree from Json-formatted input
  62. explicit JsonNode(const std::byte * data, size_t datasize, const std::string & fileName);
  63. explicit JsonNode(const std::byte * data, size_t datasize, const JsonParsingSettings & parserSettings, const std::string & fileName);
  64. /// Create tree from JSON file
  65. explicit JsonNode(const JsonPath & fileURI);
  66. explicit JsonNode(const JsonPath & fileURI, const JsonParsingSettings & parserSettings);
  67. explicit JsonNode(const JsonPath & fileURI, const std::string & modName);
  68. explicit JsonNode(const JsonPath & fileURI, const std::string & modName, bool & isValidSyntax);
  69. bool operator==(const JsonNode & other) const;
  70. bool operator!=(const JsonNode & other) const;
  71. const std::string & getModScope() const;
  72. void setModScope(const std::string & metadata, bool recursive = true);
  73. void setOverrideFlag(bool value);
  74. bool getOverrideFlag() const;
  75. /// Convert node to another type. Converting to nullptr will clear all data
  76. void setType(JsonType Type);
  77. JsonType getType() const;
  78. bool isNull() const;
  79. bool isNumber() const;
  80. bool isString() const;
  81. bool isVector() const;
  82. bool isStruct() const;
  83. /// true if node contains not-null data that cannot be extended via merging
  84. /// used for generating common base node from multiple nodes (e.g. bonuses)
  85. bool containsBaseData() const;
  86. bool isCompact() const;
  87. /// removes all data from node and sets type to null
  88. void clear();
  89. /// returns bool or bool equivalent of string value if 'success' is true, or false otherwise
  90. bool TryBoolFromString(bool & success) const;
  91. /// non-const accessors, node will change type on type mismatch
  92. bool & Bool();
  93. double & Float();
  94. si64 & Integer();
  95. std::string & String();
  96. JsonVector & Vector();
  97. JsonMap & Struct();
  98. /// const accessors, will cause assertion failure on type mismatch
  99. bool Bool() const;
  100. ///float and integer allowed
  101. double Float() const;
  102. ///only integer allowed
  103. si64 Integer() const;
  104. const std::string & String() const;
  105. const JsonVector & Vector() const;
  106. const JsonMap & Struct() const;
  107. /// returns resolved "json pointer" (string in format "/path/to/node")
  108. const JsonNode & resolvePointer(const std::string & jsonPointer) const;
  109. JsonNode & resolvePointer(const std::string & jsonPointer);
  110. /// convert json tree into specified type. Json tree must have same type as Type
  111. /// Valid types: bool, string, any numeric, map and vector
  112. /// example: convertTo< std::map< std::vector<int> > >();
  113. template<typename Type>
  114. Type convertTo() const;
  115. //operator [], for structs only - get child node by name
  116. JsonNode & operator[](const std::string & child);
  117. const JsonNode & operator[](const std::string & child) const;
  118. JsonNode & operator[](size_t child);
  119. const JsonNode & operator[](size_t child) const;
  120. std::string toCompactString() const;
  121. std::string toString() const;
  122. std::vector<std::byte> toBytes() const;
  123. template<typename Handler>
  124. void serialize(Handler & h)
  125. {
  126. h & modScope;
  127. h & overrideFlag;
  128. h & data;
  129. }
  130. };
  131. namespace JsonDetail
  132. {
  133. inline void convert(bool & value, const JsonNode & node)
  134. {
  135. value = node.Bool();
  136. }
  137. template<typename T>
  138. auto convert(T & value, const JsonNode & node) -> std::enable_if_t<std::is_integral_v<T>>
  139. {
  140. value = node.Integer();
  141. }
  142. template<typename T>
  143. auto convert(T & value, const JsonNode & node) -> std::enable_if_t<std::is_floating_point_v<T>>
  144. {
  145. value = node.Float();
  146. }
  147. inline void convert(std::string & value, const JsonNode & node)
  148. {
  149. value = node.String();
  150. }
  151. template<typename Type>
  152. void convert(std::map<std::string, Type> & value, const JsonNode & node)
  153. {
  154. value.clear();
  155. for(const JsonMap::value_type & entry : node.Struct())
  156. value.emplace(entry.first, entry.second.convertTo<Type>());
  157. }
  158. template<typename Type>
  159. void convert(std::set<Type> & value, const JsonNode & node)
  160. {
  161. value.clear();
  162. for(const JsonVector::value_type & entry : node.Vector())
  163. {
  164. value.insert(entry.convertTo<Type>());
  165. }
  166. }
  167. template<typename Type>
  168. void convert(std::vector<Type> & value, const JsonNode & node)
  169. {
  170. value.clear();
  171. for(const JsonVector::value_type & entry : node.Vector())
  172. {
  173. value.push_back(entry.convertTo<Type>());
  174. }
  175. }
  176. }
  177. template<typename Type>
  178. Type JsonNode::convertTo() const
  179. {
  180. Type result;
  181. JsonDetail::convert(result, *this);
  182. return result;
  183. }
  184. VCMI_LIB_NAMESPACE_END