Tagged Questions

Boost.Serialization is a cross-platform C++ serialization library.

learn more… | top users | synonyms

27
votes
8answers
6k views

boost serialization vs google protocol buffers?

Does anyone with experience with these libraries have any comment on which one they preferred? Were there any performance differences or difficulties in using?
11
votes
3answers
303 views

portable archive not compiling under GCC

I need to (de)serialize data on both Windows and Linux (and transfer the files in between). I wanted to use the portable binary archives of Boost's serialization library which can be found in the ...
9
votes
2answers
3k views

How to hook up Boost serialization & iostreams to serialize & gzip an object to string?

I've been using the Boost serialization library, which is actually pretty nice, and lets me make simple wrappers to save my serializable objects to strings, like so: namespace bar = boost::archive; ...
8
votes
1answer
897 views

Why doesn't boost::serialization check for tag names in XML archives?

I'm starting to use boost::serialization on XML archives. I can produce and read data, but when I hand-modify the XML and interchange two tags, it "fails to fail" (i.e. it proceeds happily). Here's a ...
7
votes
2answers
248 views

boost serialization and doubles

I am trying to serialize a class to a string using the boost serialization library and included in my class are several double member variables. Below is the code I'm using to serialize: #include ...
6
votes
1answer
242 views

Boost.Asio with google protocol buffers

I've currently investigating ways of improving our current c++ network hand-made serialization mechanism maintaining our existing binary protocol. The first approach taken was to code it using ...
5
votes
2answers
174 views

Linker errors when using boost serialization

I am using boost serialization. I compiled with: -L/opt/local/lib -lboost_serialization -stdlib=libc++, but got several (ungooglable) errors: Undefined symbols for architecture x86_64: ...
5
votes
1answer
219 views

How can boost::serialization be used with std::shared_ptr from C++11?

I know that there is a boost module for serialization of boost::shared_ptr, but I cannot find anything for std::shared_ptr. Also I don't know, how to implement it easily. I'm afraid that the ...
5
votes
3answers
1k views

Binary serialization/de-serialization in C++ and C#

I am working on a distributed application which has two components. One is written in standard C++ (not managed C++ and running on a Linux platform) and the other one is written in C#. Both are ...
5
votes
1answer
367 views

Is it possible to use boost::serialization with managed class?

We have a lot of native c++ classes that are serialized perfectly using boost::serialization. Now we want to change some of their member fields to property, so we could use them in PropertyGrids. ...
5
votes
4answers
1k views

Does Boost.Serialization serialize differently on different platforms?

I use Boost.Serialization to serialize a std::map. The code looks like this void Dictionary::serialize(std::string & buffer) { try { std::stringstream ss; ...
5
votes
2answers
1k views

Boost serialization performance: text vs. binary format

Should I prefer binary serialization over text serialization if performance is an issue ? Does anybody tested it on a large amount of data ?
4
votes
3answers
270 views

calling a template function of a derived class

I'm having a problem in C++ with calling a function of a derived class while having a pointer to the base class. EDIT: Some answers refereed my to CRTP but my point is that i need to have a pointer ...
4
votes
4answers
2k views

Where to put BOOST_CLASS_EXPORT for boost::serialization?

I'm trying to serialize a pointer to a polymorphic class Shape. So I need to use the BOOST_CLASS_EXPORT macro to define a GUID for each subclass. The problem: where to put it? Let me show a minimal ...
4
votes
2answers
247 views

Boost Serialization Library upgrade

How do I know that I can safely upgrade Boost Serialization Library on a production system without breaking compatibility with the existing data ? Is there any test that I should perform in order to ...
4
votes
1answer
2k views

Boost serialization: specifying a template class version

I have a template class that I serialize (call it C), for which I want to specify a version for boost serialization. As BOOST_CLASS_VERSION does not work for template classes. I tried this: namespace ...
3
votes
1answer
157 views

boost::serialization - is there a portable way to binary-serialize std::wstrings?

I want to serialize some data-structures between a 32bit process and a 64bit process on the same windows machine with boost::serialization. This answer suggests using eos::portable_iarchive, but when ...
3
votes
1answer
104 views

Boost serialization end of file

I serialize multiple objects into a binary archive with Boost. When reading back those objects from a binary_iarchive, is there a way to know how many objects are in the archive or simply a way to ...
3
votes
1answer
220 views

Using boost::serialization greatly increases binary size

I use rather complex data structures (mostly using STL containers) in my app, and serialize them using Boost (v1.34). Whenever I compile with debug symbols (gcc -g), the resulting executable gets ...
3
votes
1answer
854 views

How to serialize shared/weak pointers?

I have a complex network of objects connected with QSharedPointers and QWeakPointers. Is there a simple way to save/load them with Boost.Serialization? So far I have this: namespace boost { ...
2
votes
1answer
28 views

boost serialization omit version for a wrapper

How can I tell boost that for a particular structure it should not write/read a class "version" identifier? I am writing some wrapper classes for serializing some types in a smaller fashion (like a ...
2
votes
1answer
71 views

Error serializing an abstract class with boost

Hello everyone i'm having some trouble trying to serialize my data structures in order to write them to a tcp socket. So far I found that my problem is the serialization. I've searched all over the ...
2
votes
1answer
126 views

Boost serializing loading fails with exception thrown

I have been trying to make this work for a long time now. In my project there are 6 classes that are being serialized using the exact tutorial from boost, by implementing the template function ...
2
votes
1answer
235 views

C++ portable array serialization

On a project I work on, I have to send arrays of float / double back and forth over a network, I'm using Boost.Asio for the network stuff, as I need the communication to be async, and that just seemed ...
2
votes
2answers
346 views

Looking for simple example of Boost message_queue and serialization usage

Anyone can share small working example of using together boost message_queue and serialization? I want use classes to exchange data between processes but stuck in my research.
2
votes
1answer
115 views

Can I tell Boost.MPI which class version to use with Boost.Serialization?

I'm using Boost.MPI to exchange messages between processes. Each message carries one of my classes, serialized using Boost.Serialization. I also use the same serialization code to save that class to a ...
2
votes
5answers
591 views

c++ network serialization

I'm looking for a solution for serializing of c++ packets to a network stream. I have seen many posts here refering people to: ACE Google Protocol Buffers Boost::Serialization Qt ::QDataStream ...
2
votes
1answer
332 views

Non-intrusive serialize method for template class

I am using boost serialization, mostly the intrusive version. For a template Matrix class I would like to have the non-intrusive version which works on Visual Studio with the following code: ...
2
votes
1answer
119 views

How do I make archive that is parse pointer?

I've plan to make custom archive like boost::archive::xml_oachive and I was found good examples in boost/libs/serialization/example folder. See next code(there is in above directory): // ...
2
votes
2answers
229 views

Trouble overriding save_construct_data when serializing a pointer to a class without a default constructor

I'm trying to follow this example http://www.boost.org/doc/libs/1_42_0/libs/serialization/doc/serialization.html#constructors but I keep getting errors. Following the example, I get an error trying ...
2
votes
1answer
360 views

Boost Serialization - Serialize std::tr1::shared_ptr?

Boost::Serialization has builtin support for boost::shared_ptr<>. Is there a way to use this support for std::tr1::shared_ptr<> too? Is it possible to cast from ...
2
votes
2answers
480 views

Serialization tree structure using boost::serialization

I have to serialize libkdtree++ in my program, the tree structures are briefly described as following: struct _Node_base { _Node_base * _M_parent, *_M_left, * _M_right; template<Archive> ...
2
votes
1answer
251 views

boost::serialization with mutable members

Using boost::serialization, what's the "best" way to serialize an object that contains cached, derived values in mutable members, such that cached members aren't serialized, but on deserialization, ...
2
votes
1answer
139 views

Serialization over Pipes

I wrote several simulation programs in C++ and want to connect their outputs/inputs with pipes (best solution would probably be to use the C++ streams). For this I would like to serialize some ...
2
votes
2answers
472 views

How to use array optimization in boost serialization

I have to serialize an object that contains a std::vector that can contain thousand of members, with that vector sizes the serialization doesn't scale well. According with the documentation, Boost ...
2
votes
2answers
817 views

Should I be leery of using boost::archive?

I want to use boost::archive::iterators::base64_from_binary. But I can't seem to figure out why it is under "archive." What does this imply? Should I be leery of using this code for any reason? ...
2
votes
2answers
470 views

Exceptions not passed correctly thru RCF (using Boost.Serialization)

I use RCF with boost.serialization (why use RCF's copy when we already use the original?) It works OK, but when an exception is thrown in the server, it's not passed correctly to the client. Instead, ...
1
vote
2answers
49 views

Error when trying to use the Boost Serialization library

I have a made a simple program that reproduces the problem: #include <boost/archive/text_oarchive.hpp> #include <boost/archive/text_iarchive.hpp> #include ...
1
vote
0answers
31 views

Boost Serialization with derived and parent classes

Im trying to use boost::serialization to create a networking protocol. I have a base packet that contains for common types. I then have a few derived class that add a few members to the packet. Base ...
1
vote
2answers
192 views

serialization with QT network and deserialization with Boost

In a first time i want to thanks HostileFork to help me to explain my problem. Thanks you ! i'm trying to build a client and a server who send their data through a binary protocol. my problem is i ...
1
vote
0answers
159 views

BOOST_CLASS_EXPORT causes segmentation fault at the end of main()?

I use boost::serialization for my classes. Since I have some inheritance, I have to use BOOST_CLASS_EXPORT to "register" my class. Hope I did not misunderstand anything. I use this macro: ...
1
vote
1answer
62 views

boost serialization: see whether a stream is “good”

I currently develop a server application which has to receive serialized data from clients, deserialize it and finally process it. The serialized data is sent in form of an array of chars. My problem ...
1
vote
1answer
38 views

Progress indicator for boost serialization

I have a document structure implemented with boost serialization, however when I save/load a document it can take a long time. I would need to have a progress indication of how far the save/load has ...
1
vote
1answer
52 views

Boost.Serialization: Error on Calling Class Method during serialization process

I have the following problem when I try to call method in "TestSerialize" class during serialization process. Here is my code: class TestSerialize { public: std::string GetVal() { return Val + ...
1
vote
1answer
89 views

boost::serialization: overloading load_construct_data: no accessible constructor at all

so I'm using the boost::serialization library, and I'm trying to overide how a class is constructed, since it has no default constructor. This is demonstrated here. To me it appears the function takes ...
1
vote
3answers
163 views

How do I serialize a Boost scoped_array using Boost serialization?

I am trying to serialize a Boost scoped_array using Boost serialization but the compiler (VS2008) is giving me the following error message: error C2039: 'serialize' : is not a member of ...
1
vote
1answer
225 views

boost:serialization reconstruction (loading)

I'm using boost:serialization to save data structures into a file. The actual data is a pointer vector of classes and subclasses. However the constructor of the class which is serialized takes as ...
1
vote
1answer
273 views

Boost::Serialization and MFC Doc/View architecture

I'm porting an existing MFC C++ application to use Boost::Serialization for XML files. My CDocument object contains all the data for the app. I've implemented the serialize function as: ...
1
vote
2answers
145 views

Is it possible to reuse a binary_oarchive instance?

My question is the same as discussed in this thread from five years ago (which has no good answer). I'm serializing my objects into a byte buffer, like so: std::string serial_str; for (i = 1; i < ...
1
vote
1answer
164 views

boost serialization problem when loading file

I'm trying to save and load a tree structure that looks like this: class Tree { ... Node root; int max_children; } and class Node { ... int id; Node *parent; ...

1 2 3