使用 Cereal 反序列化 JSON 字符串

Using Cereal to deserialize a JSON string

本文关键字:字符串 JSON 反序列化 Cereal 使用      更新时间:2023-10-16

我是谷物的新手,我很难理解如何反序列化JSON字符串。不幸的是,我的工作防火墙限制我访问 Google 网上论坛以在留言板上发帖。

我有一个类,我可以将其转换为 JSON 字符串,但无法在我的生命中获取字符串并重新创建该类。任何帮助将不胜感激,请温柔一点,我刚从学校出来,这是我的第一份工作,我正在走出我的深度。

这是我得到的错误:

在抛出 'cereal::RapidJSONException' 的实例后调用终止 what((: rapidjson 内部断言失败: IsObject((

下面是MyClass.hpp类:

#include <cstdio>
#include <iostream>
#include <string>
#include "../cereal/access.hpp"
class MyClass{
Public: //function declarations 
     template<class Archive> // public serialization (normal)
     void serialize(Archive & ar)
     {
         ar(x, y, z);
     }
private: // member variables 
    string x; 
    int y; 
    bool z;
};

以下是我的主要.cpp:

#include <../cereal/types/unordered_map.hpp>
#include <../cereal/types/memory.hpp>
#include <../cereal/types/concepts/pair_associative_container.hpp>
#include <../cereal/archives/json.hpp>
#include <../cereal/types/vector.hpp>
#include <iostream>
#include <fstream>
#include "MyClass.hpp"
int main(){
    // serialize (this part all works... i think)
    {
        // create a class object and give it some data 
        MyClass data("hello", 6, true);
        // create a string stream object 
        std::stringstream os;
        // assign the string stream object to the Output Archive 
        cereal::JSONOutputArchive archive_out(os);
        //write data to the output archive 
        archive_out(CEREAL_NVP( data ));
        // write the string stream buffer to a variable 
        string json_str = os.str();
    }   
    // deserialize
    {
        // create a string stream object and pass it the string variable holding the JSON archive 
        std::stringstream is( json_str );
        // pass the stream sting object into the input archive **** this is the line of code that generates the error
        cereal::JSONInputArchive archive_in( is );
        // create a new object of MyClass
        MyClass data_new;
        // use input archive to write data to my class
        archive_in( data_new );
    }
}

根据谷物文档

一些谷物档案只有在销毁后才能安全地完成冲洗其内容物。确保(尤其是对于输出序列化(存档在完成存档后自动销毁存档。

因此,在

序列化块之外调用os.str((非常重要,即

MyClass data("hello", 6, true);
std::stringstream os;
{
    cereal::JSONOutputArchive archive_out(os);
    archive_out(CEREAL_NVP(data));
}
string json_str = os.str();
cout << json_str << endl;
// deserialize
std::stringstream is(json_str);
MyClass data_new;
{
    cereal::JSONInputArchive archive_in(is);
    archive_in(data_new);
    cout << data_new.y << endl;
}

这是工作代码。您可能希望根据需要进一步更改它