2016-02-13 09:47:40 +02:00
|
|
|
/*
|
|
|
|
* JsonSerializer.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
|
|
|
|
|
2017-07-20 06:08:49 +02:00
|
|
|
#include "JsonTreeSerializer.h"
|
2016-02-13 09:47:40 +02:00
|
|
|
|
2022-07-26 15:07:42 +02:00
|
|
|
VCMI_LIB_NAMESPACE_BEGIN
|
|
|
|
|
2017-07-20 06:08:49 +02:00
|
|
|
class DLL_LINKAGE JsonSerializer : public JsonTreeSerializer<JsonNode *>
|
2016-02-13 09:47:40 +02:00
|
|
|
{
|
|
|
|
public:
|
2016-11-13 12:38:42 +02:00
|
|
|
JsonSerializer(const IInstanceResolver * instanceResolver_, JsonNode & root_);
|
2016-02-13 09:47:40 +02:00
|
|
|
|
2023-11-05 16:35:51 +02:00
|
|
|
void serializeLIC(const std::string & fieldName, const TDecoder & decoder, const TEncoder & encoder, const std::set<int32_t> & standard, std::set<int32_t> & value) override;
|
2016-11-13 12:38:42 +02:00
|
|
|
void serializeLIC(const std::string & fieldName, LICSet & value) override;
|
2016-02-14 13:22:46 +02:00
|
|
|
void serializeString(const std::string & fieldName, std::string & value) override;
|
2016-02-13 09:47:40 +02:00
|
|
|
|
2023-04-16 19:42:56 +02:00
|
|
|
void serializeRaw(const std::string & fieldName, JsonNode & value, const std::optional<std::reference_wrapper<const JsonNode>> defaultValue) override;
|
2017-07-20 06:08:49 +02:00
|
|
|
|
2016-02-14 13:22:46 +02:00
|
|
|
protected:
|
2016-11-13 12:38:42 +02:00
|
|
|
void serializeInternal(const std::string & fieldName, boost::logic::tribool & value) override;
|
2023-04-16 19:42:56 +02:00
|
|
|
void serializeInternal(const std::string & fieldName, si32 & value, const std::optional<si32> & defaultValue, const TDecoder & decoder, const TEncoder & encoder) override;
|
2016-11-13 12:38:42 +02:00
|
|
|
void serializeInternal(const std::string & fieldName, std::vector<si32> & value, const TDecoder & decoder, const TEncoder & encoder) override;
|
2023-04-16 19:42:56 +02:00
|
|
|
void serializeInternal(const std::string & fieldName, double & value, const std::optional<double> & defaultValue) override;
|
|
|
|
void serializeInternal(const std::string & fieldName, si64 & value, const std::optional<si64> & defaultValue) override;
|
|
|
|
void serializeInternal(const std::string & fieldName, si32 & value, const std::optional<si32> & defaultValue, const std::vector<std::string> & enumMap) override;
|
2023-09-04 21:23:20 +02:00
|
|
|
void serializeInternal(const std::string & fieldName, std::vector<std::string> & value) override;
|
2016-02-23 15:36:21 +02:00
|
|
|
|
2017-07-20 06:08:49 +02:00
|
|
|
void serializeInternal(std::string & value) override;
|
|
|
|
void serializeInternal(int64_t & value) override;
|
|
|
|
|
|
|
|
void pushStruct(const std::string & fieldName) override;
|
|
|
|
void pushArray(const std::string & fieldName) override;
|
|
|
|
void pushArrayElement(const size_t index) override;
|
|
|
|
void resizeCurrent(const size_t newSize, JsonNode::JsonType type) override;
|
2016-02-23 15:36:21 +02:00
|
|
|
private:
|
|
|
|
void writeLICPart(const std::string & fieldName, const std::string & partName, const TEncoder & encoder, const std::vector<bool> & data);
|
2016-11-13 12:38:42 +02:00
|
|
|
void writeLICPart(const std::string & fieldName, const std::string & partName, const TEncoder & encoder, const std::set<si32> & data);
|
|
|
|
void writeLICPartBuffer(const std::string & fieldName, const std::string & partName, std::vector<std::string> & buffer);
|
2017-07-20 06:08:49 +02:00
|
|
|
|
2016-02-13 09:47:40 +02:00
|
|
|
};
|
2022-07-26 15:07:42 +02:00
|
|
|
|
|
|
|
VCMI_LIB_NAMESPACE_END
|