Using java for 3 years and serialization / deserialization is something trivial. I would like to know whether C++ is also well?

Is it possible to serialize / deserialize a class in C++?

If someone can leave me an example would be a great help to me.

EDIT :

Are there some native library that allows this?

link|improve this question

not sure what you mean by "native", do you mean native C++ (like Boost.Serialization)? Do you mean using only the C++ Standard Library? Do you mean something else? – jwfearn Oct 24 '08 at 18:54
i mean "not a external software-library". And sorry my english is not very well :S. I'm from Argentina – Agusti-N Oct 24 '08 at 19:04
There is not native way to serialize an object (you can still dump the binary data from a POD, but you won't get what you want). Still, Boost, while not an "internal library", is the first external library you should consider to add to your compiler. Boost is of STL quality (i.e. Top Gun C++) – paercebal Oct 24 '08 at 21:28
feedback

6 Answers

up vote 22 down vote accepted

The Boost::serialization library handles this rather elegantly. I've used it in several projects.

EDIT 1: There's an example program, showing how to use it, here.

EDIT 2: The only native way to do it is to use streams. That's essentially all the Boost::serialization library does, it extends the stream method by setting up a framework to write objects to a text-like format and read them from the same format. For built-in types, or your own types with operator<< and operator>> properly defined, that's fairly simple; see the C++ FAQ Lite for more information.

link|improve this answer
feedback

Boost is a good suggestion. But if you would like to roll your own, it's not so hard.

Basically you just need a way to build up a graph of objects and then output them to some structured storage format (JSON, XML, YAML, whatever). Building up the graph is as simple as utilizing a marking recursive decent object algorithm and then outputting all the marked objects.

I wrote an article describing a rudimentary (but still powerful) serialization system. You may find it interesting: Using SQLite as an On-disk File Format, Part 2.

link|improve this answer
Link is broken. – topright gamedev Oct 18 '10 at 22:53
@topright gamedev: Replaced with link to Internet Archive – EFraim Apr 2 '11 at 18:17
feedback

I recommend Google protocol buffers. I had the chance to test drive the library on a new project and it's remarkably easy to use. The library is heavily optimized for performance.

Protobuf is different than other serialization solutions mentioned here in the sense that it does not serialize your objects, but rather generates code for objects that are serialization according to your specification.

link|improve this answer
feedback

As far as "built-in" libraries go, the << and >> have been reserved specifically for serialization.

You should override << to output your object to some serialization context (usually an iostream) and >> to read data back from that context. Each object is responsible for outputting its aggregated child objects.

This method works fine so long as your object graph contains no cycles.

If it does, then you will have to use a library to deal with those cycles.

link|improve this answer
feedback

You can check the amef protocol, an example of C++ encoding in amef would be like,

    //Create a new AMEF object
    AMEFObject *object = new AMEFObject();

    //Add a child string object
    object->addPacket("This is the Automated Message Exchange Format Object property!!","adasd");   

    //Add a child integer object
    object->addPacket(21213);

    //Add a child boolean object
    object->addPacket(true);

    AMEFObject *object2 = new AMEFObject();
    string j = "This is the property of a nested Automated Message Exchange Format Object";
    object2->addPacket(j);
    object2->addPacket(134123);
    object2->addPacket(false);

    //Add a child character object
    object2->addPacket('d');

    //Add a child AMEF Object
    object->addPacket(object2);

    //Encode the AMEF obejct
    string str = new AMEFEncoder()->encode(object,false);

Decoding in java would be like,

    string arr = amef encoded byte array value;
    AMEFDecoder decoder = new AMEFDecoder()
    AMEFObject object1 = AMEFDecoder.decode(arr,true);

The Protocol implementation has codecs for both C++ and Java, the interesting part is it can retain object class representation in the form of name value pairs, I required a similar protocol in my last project, when i incidentally stumbled upon this protocol, i had actually modified the base library according to my requirements. Hope this helps you.

link|improve this answer
feedback

I suggest looking into Abstract factories which is often used as a basis for serialization

I have answered in another SO question about C++ factories. Please see there if a flexible factory is of interest. I try to describe an old way from ET++ to use macros which has worked great for me.

ET++ was a project to port old MacApp to C++ and X11. In the effort of it Eric Gamma etc started to think about Design Patterns. ET++ contained automatic ways for serialization and introspection at runtime.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.