JsonNode.h 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  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 std::string & string);
  58. /// Create tree from Json-formatted input
  59. explicit JsonNode(const std::byte * data, size_t datasize);
  60. explicit JsonNode(const std::byte * data, size_t datasize, const JsonParsingSettings & parserSettings);
  61. /// Create tree from JSON file
  62. explicit JsonNode(const JsonPath & fileURI);
  63. explicit JsonNode(const JsonPath & fileURI, const JsonParsingSettings & parserSettings);
  64. explicit JsonNode(const JsonPath & fileURI, const std::string & modName);
  65. explicit JsonNode(const JsonPath & fileURI, bool & isValidSyntax);
  66. bool operator==(const JsonNode & other) const;
  67. bool operator!=(const JsonNode & other) const;
  68. const std::string & getModScope() const;
  69. void setModScope(const std::string & metadata, bool recursive = true);
  70. void setOverrideFlag(bool value);
  71. bool getOverrideFlag() const;
  72. /// Convert node to another type. Converting to nullptr will clear all data
  73. void setType(JsonType Type);
  74. JsonType getType() const;
  75. bool isNull() const;
  76. bool isNumber() const;
  77. bool isString() const;
  78. bool isVector() const;
  79. bool isStruct() const;
  80. /// true if node contains not-null data that cannot be extended via merging
  81. /// used for generating common base node from multiple nodes (e.g. bonuses)
  82. bool containsBaseData() const;
  83. bool isCompact() const;
  84. /// removes all data from node and sets type to null
  85. void clear();
  86. /// returns bool or bool equivalent of string value if 'success' is true, or false otherwise
  87. bool TryBoolFromString(bool & success) const;
  88. /// non-const accessors, node will change type on type mismatch
  89. bool & Bool();
  90. double & Float();
  91. si64 & Integer();
  92. std::string & String();
  93. JsonVector & Vector();
  94. JsonMap & Struct();
  95. /// const accessors, will cause assertion failure on type mismatch
  96. bool Bool() const;
  97. ///float and integer allowed
  98. double Float() const;
  99. ///only integer allowed
  100. si64 Integer() const;
  101. const std::string & String() const;
  102. const JsonVector & Vector() const;
  103. const JsonMap & Struct() const;
  104. /// returns resolved "json pointer" (string in format "/path/to/node")
  105. const JsonNode & resolvePointer(const std::string & jsonPointer) const;
  106. JsonNode & resolvePointer(const std::string & jsonPointer);
  107. /// convert json tree into specified type. Json tree must have same type as Type
  108. /// Valid types: bool, string, any numeric, map and vector
  109. /// example: convertTo< std::map< std::vector<int> > >();
  110. template<typename Type>
  111. Type convertTo() const;
  112. //operator [], for structs only - get child node by name
  113. JsonNode & operator[](const std::string & child);
  114. const JsonNode & operator[](const std::string & child) const;
  115. JsonNode & operator[](size_t child);
  116. const JsonNode & operator[](size_t child) const;
  117. std::string toCompactString() const;
  118. std::string toString() const;
  119. std::vector<std::byte> toBytes() const;
  120. template<typename Handler>
  121. void serialize(Handler & h)
  122. {
  123. h & modScope;
  124. if(h.version >= Handler::Version::JSON_FLAGS)
  125. {
  126. h & overrideFlag;
  127. }
  128. else
  129. {
  130. std::vector<std::string> oldFlags;
  131. h & oldFlags;
  132. }
  133. h & data;
  134. }
  135. };
  136. namespace JsonDetail
  137. {
  138. inline void convert(bool & value, const JsonNode & node)
  139. {
  140. value = node.Bool();
  141. }
  142. template<typename T>
  143. auto convert(T & value, const JsonNode & node) -> std::enable_if_t<std::is_integral_v<T>>
  144. {
  145. value = node.Integer();
  146. }
  147. template<typename T>
  148. auto convert(T & value, const JsonNode & node) -> std::enable_if_t<std::is_floating_point_v<T>>
  149. {
  150. value = node.Float();
  151. }
  152. inline void convert(std::string & value, const JsonNode & node)
  153. {
  154. value = node.String();
  155. }
  156. template<typename Type>
  157. void convert(std::map<std::string, Type> & value, const JsonNode & node)
  158. {
  159. value.clear();
  160. for(const JsonMap::value_type & entry : node.Struct())
  161. value.insert(entry.first, entry.second.convertTo<Type>());
  162. }
  163. template<typename Type>
  164. void convert(std::set<Type> & value, const JsonNode & node)
  165. {
  166. value.clear();
  167. for(const JsonVector::value_type & entry : node.Vector())
  168. {
  169. value.insert(entry.convertTo<Type>());
  170. }
  171. }
  172. template<typename Type>
  173. void convert(std::vector<Type> & value, const JsonNode & node)
  174. {
  175. value.clear();
  176. for(const JsonVector::value_type & entry : node.Vector())
  177. {
  178. value.push_back(entry.convertTo<Type>());
  179. }
  180. }
  181. }
  182. template<typename Type>
  183. Type JsonNode::convertTo() const
  184. {
  185. Type result;
  186. JsonDetail::convert(result, *this);
  187. return result;
  188. }
  189. VCMI_LIB_NAMESPACE_END