gpt4 book ai didi

c++ - 处理从 boost 序列化中删除的变量

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:52:35 25 4
gpt4 key购买 nike

我查看了网络上关于通过递增版本号并在该变量的序列化周围添加“if”来向序列化函数添加成员变量的示例。

但是如果我删除了一个成员变量,我该怎么办呢?我是否应该将它从序列化函数中删除,然后 boost 会处理它?<​​/p>

如果我删除了一些在序列化函数中“序列化”的类,情况可能会变得更糟,我是否需要只为该序列化代码保留它们,还是有其他方法?

最佳答案

后台/存档格式兼容性

Boost Serialization 在很多情况下都非常轻量级。

具体来说,如果您不使用对象跟踪/动态多态性,那么在使您的序列化流兼容时会有惊人的回旋余地。

在通过(智能)指针(指向基址)进行序列化时,跟踪和多态性都会成为一个因素。

标准库和现代 C++ 中的大多数东西都支持值语义(例如所有标准容器),并且直接暗示在这里发挥良好。

As a specific example, I've had lots of success serializing

std::map<std::string, boost::uuids::uuid>

into a binary archive, and de-serializing this archive as

boost::unordered_map<std::string, boost::uuids::uuid>
// or
boost::flat_map<std::string, boost::uuids::uuid>
// or
std::vector<std::pair<std::string, boost::uuids::uuid> >

这些类型都(不需要)存储类型信息,因此二进制流是兼容可交换的。

也许如果您想依赖这种“偶然”的兼容性,您可能需要编写广泛的测试

I have a feeling you should be able to devise a trivial archive implementation that, instead of serializing actual data, creates a "layout map" or "compatibility signature" of the data-structures involved.

This could go a long way to gaining the confidence to verify archive-compatibility between distinct types

案例研究 1:更改布局

这与原始问题非常吻合:“删除字段后如何反序列化旧版本”。

这里,关键是: serialize只是一个函数。你可以做任何你需要的。以一个经历了两个版本的简单演示类为例:

struct MyType {
MyType();
MyType(std::string const& v);

private:
friend class boost::serialization::access;
template <typename Ar> void serialize(Ar&, unsigned);

#if DEMO_VERSION == 0

bool hasValue;
std::string value;

#elif DEMO_VERSION == 1

boost::optional<std::string> value;

#endif
};

显然,这些版本会有不同的实现。

诀窍是反序列化为临时变量,然后根据您的业务规则将旧语义映射到新语义上:

#if DEMO_VERSION == 0
MyType::MyType() : hasValue(false) {}
MyType::MyType(std::string const &v) : hasValue(true), value(v) {}

template <typename Ar> void MyType::serialize(Ar& ar, unsigned /*file_version*/) {
ar & hasValue & value; // life was simple in v0
}

#elif DEMO_VERSION == 1
MyType::MyType() : value(boost::none) {}
MyType::MyType(std::string const &v) : value(v) {}

template <typename Ar> void MyType::serialize(Ar& ar, unsigned file_version) {
switch (file_version) {
case 0: {
assert(Ar::is_loading::value); // should not be writing old formats
//
bool old_hasValue; // these fields no longer exist
std::string oldValue;

ar & old_hasValue & oldValue;

// translate to new object semantics/layout
value.reset();
if (old_hasValue) value.reset(oldValue);

break;
}
default: // v1+
ar & value;
}
}
#endif

您可以在 Coliru 上实时查看此过程,其中程序 v0将对象写入 v0.dat , 哪个程序 v1成功读取(并以新格式序列化):

Live On Coliru

BOOST_CLASS_VERSION(MyType, DEMO_VERSION)
#include <fstream>

namespace demo {
template <typename T> void serialize(std::ostream& os, T const& obj) {
{
boost::archive::text_oarchive oa(os);
oa << obj;
}
os.flush();
}

template <typename T> void save(std::string const& fname, T const& payload) {
std::ofstream ofs(fname, std::ios::binary);
serialize(ofs, payload);
}

MyType load(std::string const& fname) {
std::ifstream ifs(fname, std::ios::binary);

MyType obj;

boost::archive::text_iarchive ia(ifs);
ia >> obj;

return obj;
}
}

int main(int, char** cmd) {
std::cout << "Running " << *cmd << " with DEMO_VERSION=" << DEMO_VERSION << "\n";
using namespace demo;

#if DEMO_VERSION == 0

MyType payload("Forty two");
save ("v0.dat", payload); // uses v0 format
serialize(std::cout, payload); // uses v0 format

#elif DEMO_VERSION == 1

auto loaded = load("v0.dat"); // still reads the v0 format
serialize(std::cout, loaded); // uses v1 format now

#endif
}

打印:

for v in 0 1
do
g++ -std=c++11 -Os -Wall -DDEMO_VERSION=$v main.cpp -o v$v -lboost_system -lboost_serialization
./v$v
done
Running ./v0 with DEMO_VERSION=0
22 serialization::archive 11 0 0 1 9 Forty two
Running ./v1 with DEMO_VERSION=1
22 serialization::archive 11 0 1 0 0 1 0 9 Forty two

案例研究 2:更改/删除的类型

正如您所说,最简单的做法可能是保留旧类型以进行间接反序列化。

引用上面的“后台/存档格式兼容性”部分,当然还有另一种选择,只要您知道自己在做什么。

让我们假设上面的示例(“案例研究 1”)略有不同,并使用了 PoorMansOptional<std::string>boost::optional<std::string> 取代.您可以计算出要反序列化的等效字段。

Take note of the extra item version fields that might be interspersed. Such fields are conveniently absent between items in the container examples mentioned above.

关于c++ - 处理从 boost 序列化中删除的变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30379116/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com