gpt4 book ai didi

c++ - Msgpack 中是否有版本控制功能

转载 作者:行者123 更新时间:2023-11-28 01:44:17 31 4
gpt4 key购买 nike

我正在评估 Msgpack(C++) 作为我当前项目中的序列化库。它似乎满足了我的大部分需求,除了一个,我没有在网上找到太多关于它的信息。 Msgpack 是否支持读取我将序列化的不同版本的数据结构?

例如,我序列化以下结构:

struct foo {
int a;
float b;
};

后来上面的结构演变成:

struct foo {
int a;
float b;
std::string c;
};

是否可以使用 Msgpack 将先前序列化的结构读入新结构? Boost 库通过添加 VERSION 元数据和结构来处理它。

最佳答案

是的,你可以做到。如果打包foo_v1,然后解包,再转换为foo_v2ab填充为packed值(value)观。

#include <msgpack.hpp>
#include <cassert>
#include <iostream>
#include <sstream>

struct foo_v1 {
int a;
float b;
MSGPACK_DEFINE(a, b); // pack as ARRAY, order is important
};

struct foo_v2 {
int a;
float b;
std::string c;
MSGPACK_DEFINE(a, b, c); // pack as ARRAY, order is important
};

int main() {
foo_v1 v1 { 123, 45.67 };
std::stringstream ss;
msgpack::pack(ss, v1);

auto oh = msgpack::unpack(ss.str().data(), ss.str().size());
auto v2 = oh.get().as<foo_v2>();
std::cout << "a: " << v2.a << std::endl;
std::cout << "b: " << v2.b << std::endl;
std::cout << "c: " << v2.c << std::endl;
}

运行演示:https://wandbox.org/permlink/91wRtVdJJCC5IEDx

同理,如果打包foo_v2,然后解包,则转换为foo_v1ab 填充了压缩值,c 被切片(忽略)。

#include <msgpack.hpp>
#include <cassert>
#include <iostream>
#include <sstream>

struct foo_v1 {
int a;
float b;
MSGPACK_DEFINE(a, b); // pack as ARRAY, order is important
};

struct foo_v2 {
int a;
float b;
std::string c;
MSGPACK_DEFINE(a, b, c); // pack as ARRAY, order is important
};

int main() {
foo_v2 v2 { 123, 45.67, "hello" };
std::stringstream ss;
msgpack::pack(ss, v2);

auto oh = msgpack::unpack(ss.str().data(), ss.str().size());
auto v1 = oh.get().as<foo_v1>();
std::cout << "a: " << v1.a << std::endl;
std::cout << "b: " << v1.b << std::endl;
}

运行演示:https://wandbox.org/permlink/mxmSkVHebZFiOM1q

这些示例使用了 MSGPACK_DEFINE 宏。参见 https://github.com/msgpack/msgpack-c/wiki/v2_0_cpp_adaptor#defining-custom-adaptors .默认情况下,它用于打包/转换为 ARRAY。所以顺序很重要。如果您使用 MSGPACK_DEFINE_MAP,用户类将打包/转换为 MAP。 MAP的key默认是变量名。您可以使用 MSGPACK_NVP 更改它,请参阅 https://github.com/msgpack/msgpack-c/wiki/v2_0_cpp_adaptor#since-210 . MAP 的值是成员变量的值。MAPARRAY 更灵活,但效率低下。

如果您使用 MSGPACK_DEFINE_MAP,则无需关心顺序。

#include <msgpack.hpp>
#include <cassert>
#include <iostream>
#include <sstream>

struct foo_v1 {
int a;
float b;
MSGPACK_DEFINE_MAP(a, b); // pack as MAP
};

struct foo_v2 {
int a;
std::string c;
float b;
MSGPACK_DEFINE_MAP(a, c, b); // pack as MAP, c is at the middle position
};

int main() {
foo_v2 v2 { 123, "hello", 45.67, };
std::stringstream ss;
msgpack::pack(ss, v2);

auto oh = msgpack::unpack(ss.str().data(), ss.str().size());
auto v1 = oh.get().as<foo_v1>();
std::cout << "a: " << v1.a << std::endl;
std::cout << "b: " << v1.b << std::endl;
}

运行演示:https://wandbox.org/permlink/ozihpwXMJRpOhzT4

这是一个更复杂的例子: https://github.com/msgpack/msgpack-c/blob/master/example/cpp03/map_based_versionup.cpp

运行演示:https://wandbox.org/permlink/IUp94Tc4MiT4kU07

关于c++ - Msgpack 中是否有版本控制功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45846203/

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