提升序列化 - 以自定义方式序列化数据

时间:2010-10-14 08:51:37

标签: c++ serialization boost

如果我使用Boost序列化序列化整数:

#include <boost/archive/text_oarchive.hpp> 
#include <iostream> 

int main() 
{ 
  boost::archive::text_oarchive oa(std::cout); 
  int i = 1; 
  oa << i; 
}

结果将如下:
22 serialization::archive 5 1

现在我很好奇我是否以及如何改变方式,某些数据是序列化的。 数据不需要反序列化,因此如果不再可能,那么不这样做就不是一个令人阻碍的理由。

让我们说上面的代码应该创建以下输出:
integer 11
(添加单词integer,值将增加10.归档标题将不会被集成。)

这是可能的吗?如何实现这一目标? Boost Serialization能否让用户在不修改Serialization的代码库的情况下做到这一点?

PS:
上面的示例代码是从Highscore-Tutorial

复制的

1 个答案:

答案 0 :(得分:4)

您可以编写自己的存档,如下所示:

#include <cstddef> // std::size_t
#include <string>
#include <typeid>

template <typename T>
std::string printName() {
  // Unmangle for your platform or just specialise for types you care about:
  return typeid(T).name();
}

//////////////////////////////////////////////////////////////
// class trivial_oarchive
class trivial_oarchive {
public:
    //////////////////////////////////////////////////////////
    // public interface used by programs that use the
    // serialization library
    typedef boost::mpl::bool_<true> is_saving; 
    typedef boost::mpl::bool_<false> is_loading;
    template<class T> register_type(){}
    template<class T> trivial_oarchive & operator<<(const T & t){
        return *this;
    }
    template<class T> trivial_oarchive & operator&(const T & t){
        // No idea why you'd want to add 10, but this does it:
        return *this << printName<T>() << " " << (t+10);
    }
    void save_binary(void *address, std::size_t count){};
};

(改编自the documentation