Tagged Questions
3
votes
1answer
33 views
Serialization of derived class trips Boost assertion
When trying to serialize a derived class with boost::serialization, an assertion in boost/archive/detail/oserializer.hpp (line 436 in Boost 1.53.0) is tripped:
const basic_pointer_oserializer * bpos
...
0
votes
1answer
45 views
C++ Boost deserialization what(): input stream error
I'm trying to make a serialization of an object and then to deserialize it. Even though it seems that everything I wrote is ok I'm still getting an error during the deserialization.
int main(){
...
0
votes
0answers
17 views
boost bidirectional serialization
I have a problem with boost. I have example: http://www.boost.org/doc/libs/1_38_0/doc/html/boost_asio/examples.html#boost_asio.examples.serialization that perform serialization over tcp. And I want ...
0
votes
0answers
40 views
Sending and receiving data on the network using boost serialization
The project I am working on is in C++. In order to send and receive data on the network, I use boost library to serialize and deserialize and it works perfectly fine. The problem is that since I use ...
0
votes
0answers
42 views
type_info error in boost serialization
It becomes a link error to serialize the "map" in boost serialization.
#include <boost/serialization/map.hpp>
#include <boost/archive/binary_oarchive.hpp>
map<int, int> map;
...
0
votes
0answers
44 views
boost serialization linking error in Eclipse
I'm using Boost 1.53, I want to serialize the class.
The serialize.h file specifies:
class serialize
{
private:
map<int, Test*> testMap;
}
The serialize.cpp file specifies:
void ...
0
votes
1answer
74 views
boost serialization warning C4308: negative integral constant converted to unsigned type
my struct :
struct member{
std::string ip_address;
std::string port;
protected:
friend class boost::serialization::access;
template<class Archive>
...
1
vote
2answers
33 views
Can an existing object be passed into a Boost.Serialization load?
I'm using Boost's Serialization library to save and load the state of an app. The objects rely on a TCP connection. Right now I'm distributing a pointer to the TCP connection into the objects after ...
1
vote
2answers
54 views
Boost serialization and vector of lots of objects
I am using boost serialization to serialize/deserialize 3d model meshes, like this:
struct PackageMesh
{
std::vector<Vec3> mVertexData;
std::vector<Vec3> mNormalData;
...
0
votes
2answers
86 views
Preferred way to serialize an object with Boost/C++ in binary format
I would like to serialize instances of a class and send them over TCP connection using C++ / Boost libraries. There are too many working examples out there... Some using text streams for buffers and ...
0
votes
1answer
63 views
can't build example boost serialization
i have tried to build the first example i found here: Boost serialization tutorial
but i get this error:
Undefined symbols:
"boost::archive::archive_exception::~archive_exception()", referenced from:
...
0
votes
0answers
37 views
Add boost serialization library to xcode project
How can I add the boost serialization library as source code to my XCode 4.6.2 project?
1
vote
1answer
124 views
How to implement a C++ serializer the idiomatic way?
As an exercise, I'm implementing an UBJson serializer in several languages. My question is: is there an idiomatic way to imlpement a custom format reader and writer in C++ ? For example, I thought of ...
0
votes
1answer
22 views
friend class boost mongo_iarchive does not a name a type
So I had to override some functionality for the boost mongo archive types, and as a result I need these archive types to be a friend of the class I am serializing. However I am running into issues ...
2
votes
0answers
78 views
Boost serialization tutorial program, error after running
I just installed boost-serialization with default options and get this result
ashot@ashot-desktop:~/boost_1_53_0$ sudo ./b2 install
Component configuration:
- atomic : not ...
1
vote
0answers
42 views
Compile eror on serializing boost::unordered_set
First of all, Does boost::serialization support unordered_set now? I didn't find the header boost/serialization/unordered_set.hpp.
Here is the code I tried to implement:
namespace boost {
namespace ...
0
votes
1answer
51 views
C++ boost serialization - how to replace type of field in archive
Let's say I am serializing a map into an XML archive using boost. The map is of type std::map< long, CMyObject >. I realize that I need to use this type instead: std::map< std::string, CMyObject ...
0
votes
1answer
38 views
What's the format of boost.serialization's output
I tried to serialize a vector and a map container and output their value by cout. However, it is hard for me to get the meaning of boost's output. My code looks like this:
#include <iostream>
...
2
votes
2answers
153 views
'struct std::pair<int, int>' has no member named 'serialize'
I'm trying to integrate serialization into my code. However, I get the a 'has no member named' error. The book I'm reading says that std::pair doesn't need a header file to include and there does not ...
0
votes
0answers
40 views
How to serialize OpenCV Mat with boost XML archive
I am trying to serialize an object which has a cv::Mat as a member, I've found this SO page but when I try it I get the following error:
usr/include/boost/archive/basic_xml_iarchive.hpp:70:9: ...
1
vote
2answers
100 views
Able to serialize with boost but unable to deserialize std::shared_ptr
boost serialization
namespace boost {
namespace serialization {
template <class Archive, class T>
inline void save
(Archive &archive,
const ...
1
vote
1answer
44 views
boost serialization: update member when deserialized
I have an object that I am serializing with boost archive. The object has a member of type boost::math::normal_distribution<double> distribution, however boost do not supply a serialize method ...
0
votes
0answers
90 views
Serialize list of objects derived from abstract class
I'm trying to serialize list of pointers to objects, which derive from same abstract class. To be more specific: i've implemented composite pattern, and now i'm trying to serialize composite in single ...
12
votes
3answers
511 views
Derived class serialization without class tracking in Boost (C++)
I have some problems with boost serialization when serializing derived class through base class pointer. I need a system which serialize some objects as they are being received in the system, so i ...
0
votes
1answer
26 views
boost multi_index_container serialization
I am trying to use the boost::multi_index_container with the boost::serialization. However when I use Pointer to objects as elements and a non_unique order, I get a memory access violation loading the ...
0
votes
1answer
70 views
boost serialize Eigen MatrixXd to XML
I am trying to serialize an Eigen matrix using boost serialization. I have seen this question and tried to use the solution, however I have strange compiler errrors.
I have a shared_ptr to a MatrixXd ...
0
votes
1answer
85 views
load_construct_data in boost: problems with placement new
I try to serialize derived pointer class with non-default constructor with the help of boost.
During the compilation I get an error:
Derived.h: In function ‘void ...
1
vote
1answer
131 views
Boost serialization of vectors, crash in release build
I am trying basic Boost serialization examples. While trying to pass vectors I am facing an issue with this code :
#include <iostream>
#include <vector>
#include <fstream>
#include ...
2
votes
1answer
117 views
Serialization as an IPC mechanism?
I wrote an implementation and an auto code generator for allowing different process to do Inter process Communication using Message queues.
My Implementation works fine with the primitive data ...
2
votes
0answers
74 views
Serialization of boost::shared_ptr through a custom archive
I'm trying to serialize a boost::shared_ptr to a custom archive. The main problem I'm facing is that the boost::serialization code for shared_ptr requires the archive to have both a 'reset' and an ...
1
vote
1answer
128 views
correct type-cast for boost de-serializations of different derived classes
In my application, there are agents of different types. I am planning to use boost serialization for sending/receiving data between agents.(by sending/receiving, I actually mean writing/reading ...
1
vote
0answers
84 views
Must I include dependent libraries in boost?
I'm entering month 3 of trying to build an Android project that uses boost for serialization.
So, I am compiling Boost 1.49 with Serialization, along with about 8 other libraries such as date_time, ...
0
votes
1answer
55 views
Boost serialization - Serialize noncopyable but movable objects?
Is it possible somehow?
It doesnt work out of the box since it tries to copy objects when the object gets unserialized
Update 1: These objects are noncopyable just because they allocate memory, once ...
1
vote
2answers
53 views
How can I remove this duplicate code when using Boost serialization?
In my application I have a number of classes that I want to be able to serialize. So each class whose instances need to be serializeable has the following:
friend class ...
0
votes
0answers
93 views
boost serialization throws exception for large objects
I'm trying to serialize objects that are over 50mb in size --- in particular, these objects contain very large arrays of floats (50+ million). The serialization function seems to fail, and throw an ...
0
votes
1answer
81 views
using union as serializer for boost::asio
i wonder if nobody is using an union to serialize structs for boost::asio sender/receiver. i have searched for something but all i found (yet) were been examples like this or this.
so i have it done ...
0
votes
1answer
37 views
boost::serialize segfaults
For boost::serialize I am trying to define a custom class with its own serialize function, similar to http://www.boost.org/doc/libs/1_53_0/libs/serialization/doc/tutorial.html#simplecase However, the ...
1
vote
1answer
92 views
c++ Boost serialize, error when compiling derived class
i'm getting a very strange error when compiling this piece of code:
#ifndef packetint_h
#define packetint_h
#include "../packet.h"
class packetInt: public packet{
public:
packetInt(int ...
2
votes
1answer
75 views
Boost serialization cope of different versions
I'm doing serialization with boost:
bool saveParams(std::string filename)
{
using boost::serialization::make_nvp;
std::ofstream ofs(filename.c_str());
if(ofs.is_open() == false) return ...
5
votes
1answer
164 views
Does boost support serialization of c++11's std::tuple?
Does boost support serialization of c++11's std::tuple?
I couldn't find a tuple.hpp header file at /boost/serialization/
I'm using boost 1.52.0 (happy to upgrade if need be, but it seems like the ...
0
votes
3answers
54 views
Inheriting an std::container including its boost serialization
I have a class defined this way:
template <typename T>
class MyMap
:public std::map<MyKey, T>
{
// ...
};
This class doesn't add any members, it just wraps the std::map and ...
1
vote
0answers
87 views
How to serialize boost::interprocess::containers::vector
I'd like to use boost serilaization with an boost::interprocess::containers::vector
The serialization of a std::vector works fine by including
#include ...
0
votes
1answer
47 views
Boost Serialization IO error
In the code below I try to write two objects to a file with no extension. The problem occurs initially at the writing stage because nothing actually gets written to the file. Then the second part; the ...
1
vote
1answer
67 views
Using Boost Serialize With A Qt Plugin
All, I am attempting to serialize a Qt Plugin infrastructure using boost. A quick description of my plugin infrastructure -- All plugins are factories, let's call them ObjectFactories. Each plugin ...
2
votes
1answer
113 views
How does boost serialization actually save const object
Considering the following example of serialization, how does boost cope with saving data when this data is const and the serialization function is not a const function ?
Is there a const cast ...
1
vote
1answer
322 views
Boost::serialize - deserializing a vector of objects?
I recently wanted to serialize a class containing vector of objects. I've read in the documentation that if I include #include <boost/serialization/vector.hpp>, I'll be able to do it with a ...
1
vote
1answer
252 views
Serialization of STL unordered_map
I have a program which uses an unordered map with this definition:
unordered_map<const char*, vector<pair<int, int> >, function<unsigned int (const char *str)> > myMap(30000, ...
1
vote
1answer
154 views
Boost shared_ptr serialization
I've implemented serialization for OpenCVs Mat format as described here: Serializing OpenCV Mat_<Vec3f>
I now got the problem to serialize a shared pointer to a cv::Mat.
It gives the following ...
0
votes
1answer
146 views
Serializing vertex_descriptor of a boost::graph separately?
Is there any way to make vertex_descriptor of a boost::graph serializable? Boost does define <boost/graph/adj_list_serialize.hpp> for serializing the whole graph structure, but not separately.
...
0
votes
0answers
130 views
boost::serialize an array-like type exactly like std::vector without copying
I have an array-like type. How can I, without copying, serialize/deserialize compatible with std::vector (boost 1.52), for text and binary archives with some flags (e.g. ...



