Click here to Skip to main content
15,881,559 members
Articles / Programming Languages / C++

STL Serialization Library (STL-SL)

Rate me:
Please Sign up or sign in to vote.
3.44/5 (15 votes)
9 Oct 2006CPOL4 min read 73.4K   1.1K   24   23
The STL Serialization Library can serialize and load STL objects from a file. The serialization file format can be customised to suit your needs. It's fast, easy, and free!

A Quick User Guide

Using the STL Serialization Library (STL-SL) is a three-step process. In the first step, you declare the STL type you want to serialize using STL-SL.

C++
value_trait < int > int_filer;
value_trait < std::list< bool > > bool_list_filer;
value_trait < std::map<std::string, std::multimap< float, bool > > > complex_stl_filer;

In the code snippet, three different types are declared. Each type has a varying degree of complexity. int_filer is the simplest of all, where an int is parameterized in the value_trait template class. int_filer can therefore be used to serialize and load an int from a serialization file.

Similarly, the declaration of bool_list_filer prepares it for serializing a list of bool types. And complex_stl_filer prepares a map of string and multimap data types where the multimap holds float, bool pairs as shown above.

In the next step, a file_interface is created that requires a serialization file name where the serialization data will be written-to or read-from.

C++
stl_trait_writer file_interface (serialization_filename);

Note that file_interface does not require the type during declaration, meaning STL objects of different types may be serialized in the same serialization file.

Also, since the serialization file-interface declaration is not related to the data-file declaration, the above two steps may take each other's place.

In the third and the last stage, data is serialized into the file or loaded from it.

C++
filer.serialize ( stl_object, file_interface );

filer.load ( stl_object, file_interface );

The following snippet illustrates the use of all the three steps described above:

C++
//declare serialization-file interfaces
stl_trait_writer file_interface ( ".\\serialization-file.txt");

//declare the STL object 
std::vector < int > stl_object;


//declare the data filer 
value_trait < std::vector < int > > data_filer;


//...populate data in stl_object...// 
//serialize data in stl_object in the file pointed by file_interface
data_filer.serialize ( stl_object, file_interface );

//-- or --//

//load data in the file pointed by file_interface in stl_object STL object
data_filer.load ( stl_object, file_interface );
//...use data in stl_object...//

STL Serialization Library

This article presents a set of template classes capable of serializing STL objects in the user defined file format (by default, a text file).

The STL Serialization Library is composed of two major parts: Serialization Filer and Serialization Template Classes.

Serialization Filer

This consists of the following three classes:

C++
//Serialization-file writer class.
//This guy writes the data to the file specified by 'file_path'.
//NOTE: This class does not recognize the data objects containing spaces, tabs, 
// new-line characters in them. This may be fixed by overloading '<<' operator and 
// adding escape-sequencing logic in it.
class stl_trait_writer: public std::ofstream
{
public:
      stl_trait_writer(const std::string& file_path):std::ofstream(file_path.c_str())
      {}
};

//Serialization-file reader class.
//This guy reads the data from the file specified by 'file_path'.
//NOTE: This class does not recognize the data objects containing spaces, tabs, 
// new-line characters in them. This may be fixed by overloading '>>' operator and 
// adding escape-sequencing logic in it.
class file_trait_reader: public std::ifstream
{
public:
      file_trait_reader(const std::string& file_path):std::ifstream(file_path.c_str())
      {}
};

//Serialization filer class.
//This guy presents the set of reader, writer objects responsible for reading and 
// writing to the serialization file.
template <class writer_trait , class reader_trait>
class filer_trait
{
public:
      typedef typename writer_trait writer_type;
      typedef typename reader_trait reader_type;
};

The stl_trait_writer and file_trait_reader classes provide the basic file I/O mechanism. The filer_trait class is a filer that only pairs the above two class types. An alternate approach may be where the filer_trait class implements the file I/O mechanism for simplicity at the cost of scalability.

The file writer class (stl_trait_writer) may be replaced with a user-class to change the serialization file format to, say for example, XML. A file reader class provided for loading the serialization data from a file (file_trait_writer) will have to be altered to a class capable of understanding the user file format.

Serialization Template Classes

The set of classes in this module comprises of the language mechanism for breaking down complex STL types into basic types and serializing/de-serializing the basic data types.

C++
//Basic datatype serializer class.
//Triggers the read or write to the serialization file for the basic datatypes.
//NOTE: This class has been tweaked to work with the 'stl_trait_writer' class.
template <class val_trait, class val_filer_trait = 
              filer_trait<stl_trait_writer, file_trait_reader> >
class value_trait
{
public:
      typedef typename val_filer_trait::writer_type writer_trait;
      typedef typename val_filer_trait::reader_type reader_trait;

      void serialize(const val_trait& val, writer_trait &pen)
      {
            pen << val << "\n"; //a tweak for 'stl_trait_writer' class defined above.
            //pen << val; //correct code, this should replace above line of code should
                          //you choose to implement your own 'stl_trait_writer' class.

            pen.flush();
      }

      void load(val_trait& val, reader_trait &pen)
      {
            pen >> val;
      }
};

The value_trait class is responsible for serializing and loading basic data types. The code shown above is tweaked to be used with the Serialization Filer Classes described in the previous section.

The following excerpt illustrates the code that breaks down complex STL types into their primitive components.

C++
//Sequence-list datatype serializer class.
//Triggers the read or write to the serialization file for the Sequence-list datatypes.
//This class takes care of STL types -- list, vector, stack, queue, deque
// and priority_queue
//NOTE: 'basic_string' type is not treated as sequence-list, but as basic type.
template <class sequence_list_type, class val_filer_trait >
class sequence_list_value_trait
{
public:
      typedef typename val_filer_trait::writer_type writer_trait;
      typedef typename val_filer_trait::reader_type reader_trait;

      typedef typename sequence_list_type::size_type size_type;   
      typedef typename sequence_list_type::value_type value_type;

      void serialize (sequence_list_type& val, writer_trait &pen )
      {
            value_trait<size_type, val_filer_trait> size_filer;
            size_filer.serialize (val.size(), pen);

            for(sequence_list_type::iterator i=val.begin(); i != val.end(); i++)
            {
                  value_trait<value_type, val_filer_trait> val_trait_key_filer;

                  val_trait_key_filer.serialize(*i,pen);
            }
      }

      void load (sequence_list_type& val, reader_trait &pen )
      {
            value_trait<size_type, val_filer_trait> size_reader;
            size_type val_size=0;
            size_reader.load(val_size, pen);

            for(; val_size > 0; val_size--)
            {
                  value_type element;

                  value_trait<value_type, val_filer_trait> val_trait_key_reader;

                  val_trait_key_reader.load(element, pen);

                  val.push_back(element);
            }
      }
};

The sequence_list_value_trait class breaks down the list, vector, stack, queue, deque, and priority_queue STL types to their finer component types. Thus, a vector of int type will be broken down into a list of int types in the sequence iterated by the default vector::iterator type. And the int type values are serialized by the value_trait class.

C++
//Triggers the read or write to the serialization file for the Associative-list
// datatypes.
//This class takes care of STL types -- map, multimap, set, multiset
template <class associative_list_type, class val_filer_trait >
class associative_list_value_trait
{
public:

      typedef typename val_filer_trait::writer_type writer_trait;
      typedef typename val_filer_trait::reader_type reader_trait;

      typedef typename associative_list_type::size_type size_type;
      typedef typename associative_list_type::key_type key_type;
      typedef typename associative_list_type::mapped_type data_type;

      void serialize (associative_list_type& val, writer_trait &pen )
      {
            value_trait<size_type, val_filer_trait> size_filer;
            size_filer.serialize (val.size(), pen);

            for(associative_list_type::iterator i=val.begin(); i != val.end(); i++)
            {
                  value_trait<key_type, val_filer_trait> val_trait_key_filer;
                  value_trait<data_type, val_filer_trait> val_trait_data_filer;


                  val_trait_key_filer.serialize(i->first,pen);
                  val_trait_data_filer.serialize(i->second,pen);
            }
      }

      void load (associative_list_type& val, reader_trait &pen )
      {
            value_trait<size_type, val_filer_trait> size_reader;
            size_type val_size=0;
            size_reader.load(val_size, pen);

            for(; val_size > 0; val_size--)
            {
                  key_type key_element;
                  value_trait<key_type, val_filer_trait> val_trait_key_reader;
                  val_trait_key_reader.load(key_element, pen);

                  data_type data_element;
                  value_trait<data_type, val_filer_trait> val_trait_data_reader;
                  val_trait_data_reader.load(data_element, pen);

                  val.insert (std::pair<key_type, data_type> (key_element, data_element));
            }
      }
};

The associative_list_value_trait class is a complicated version of the sequence_list_value_trait class where in the map, multimap, set and multiset STL types are broken down into their key and data-element types and broken down further as required, or serialized.

The following extract depicts the mechanism by which a complex STL type initiates the breakdown process using the associative_list_value_trait and sequence_list_value_trait classes covered above.

C++
//STL vector datatype serializer class.
//Triggers the read or write to the serialization file for the STL vector datatype.
template <class val_trait_key, class val_trait_data, class val_filer_trait  > 
class value_trait< std::vector<val_trait_key, val_trait_data> , val_filer_trait  >
{
public:

      typedef typename val_filer_trait::writer_type writer_trait;
      typedef typename val_filer_trait::reader_type reader_trait;

      typedef std::vector<val_trait_key, val_trait_data> vector_value_trait;

      void serialize (vector_value_trait& val, writer_trait &pen )
      {
            sequence_list_value_trait<vector_value_trait, 
                     val_filer_trait> sequence_list_value_filer;
            
            sequence_list_value_filer.serialize (val, pen);
      }

      void load (vector_value_trait& val, reader_trait &pen )
      {

            sequence_list_value_trait<vector_value_trait, 
                     val_filer_trait> sequence_list_value_reader;

            sequence_list_value_reader.load (val, pen);
      }
};

The above section of code initiates the dissolution of the vector STL type into granular components for further serialization. Similar logic is implemented for the list, stack, queue, deque, and priority_queue STL types.

C++
//STL multimap datatype serializer class.
//Triggers the read or write to the serialization file for the STL multimap datatype .
template <class val_trait_key, class val_trait_data, class val_filer_trait  > 
class value_trait< std::multimap<val_trait_key, val_trait_data> , val_filer_trait  > 
{
public:

      typedef typename val_filer_trait::writer_type writer_trait;
      typedef typename val_filer_trait::reader_type reader_trait;

      typedef std::multimap<val_trait_key, val_trait_data> multimap_value_trait;

      void serialize (multimap_value_trait& val, writer_trait &pen )
      {

            associative_list_value_trait<multimap_value_trait, 
                        val_filer_trait> associative_list_value_filer;

            associative_list_value_filer.serialize (val, pen);
      }

      void load (multimap_value_trait& val, reader_trait &pen )
      {

            associative_list_value_trait<multimap_value_trait, 
                        val_filer_trait> associative_list_value_reader;

            associative_list_value_reader.load (val, pen);
      }
};

Like the above excerpt that dealt with fragmenting the vector type to finer components, this piece of code dissolves a multimap into its key type and data-type component for further serialization. Similar logic may be implemented for other associative containers such as map, set, and multiset.

Comments

It should be noted that the above library creates a class for every sub-type in the STL filer declaration. Although this dose not account to any extra runtime over-head, it doubles the number of classes that are serialized in a namespace. If the class count exceeds that supported by your compiler, you might want to re-factor the class hierarchy.

The above fact may be seen as a disadvantage, but it should be noted that the class count does not exert any overhead at run-time. The advantage is that STL-SL code is type safe.

STL-SL as presented here is the first revision; you may want to include the type information about the STL type that is being serialized in the serialization file, thus aiding run-time type checking in STL-SL.

Other libraries such as BOOST are available that are much more powerful but arguably not necessarily intuitive. These libraries address a multitude of other problems such as class versioning, pointer restoration, and data portability. The purpose of this article is not to replace them; this article should be seen as a light-weight, easy to use alternative. Moreover, code presented here may be viewed as an STL serialization engine for an even-fuller implementation of a serialization library.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionI want to add number of structure in a list. But library shows error? Pin
Maruthuj19-Oct-08 19:21
Maruthuj19-Oct-08 19:21 
GeneralCompiling error when the data is a class type Pin
Bing1688886-Mar-08 5:38
Bing1688886-Mar-08 5:38 
GeneralDoes not compile with sets under VS2005 Pin
sharkwatch29-Aug-07 19:04
sharkwatch29-Aug-07 19:04 
GeneralRe: Does not compile with sets under VS2005 Pin
Aniruddha Jahagirdar2-Sep-07 17:52
Aniruddha Jahagirdar2-Sep-07 17:52 
GeneralRe: Does not compile with sets under VS2005 Pin
Kikoa20-Nov-07 0:34
Kikoa20-Nov-07 0:34 
Generaldon't compile Pin
henryleesd17-Nov-06 5:43
henryleesd17-Nov-06 5:43 
GeneralRe: don't compile Pin
Aniruddha Jahagirdar2-Sep-07 17:56
Aniruddha Jahagirdar2-Sep-07 17:56 
QuestionVC++ 6.0? Pin
GHop26-Oct-06 6:46
GHop26-Oct-06 6:46 
AnswerRe: VC++ 6.0? Pin
Aniruddha Jahagirdar2-Sep-07 18:00
Aniruddha Jahagirdar2-Sep-07 18:00 
GeneralTo boost or not to boost? why this question: Pin
Emilio Garavaglia10-Oct-06 3:41
Emilio Garavaglia10-Oct-06 3:41 
GeneralRe: To boost or not to boost? why this question: Pin
Anonymuos10-Oct-06 8:35
Anonymuos10-Oct-06 8:35 
GeneralRe: To boost or not to boost? why this question: Pin
Emilio Garavaglia11-Oct-06 5:01
Emilio Garavaglia11-Oct-06 5:01 
GeneralRe: To boost or not to boost? why this question: Pin
Stephen Hewitt15-Oct-06 19:55
Stephen Hewitt15-Oct-06 19:55 
GeneralRe: To boost or not to boost? why this question: Pin
Emilio Garavaglia16-Oct-06 23:19
Emilio Garavaglia16-Oct-06 23:19 
GeneralAlready been done - Boost Serialize lib! Pin
yafan9-Oct-06 5:15
yafan9-Oct-06 5:15 
GeneralRe: Already been done - Boost Serialize lib! Pin
Anonymuos9-Oct-06 5:59
Anonymuos9-Oct-06 5:59 
GeneralRe: Already been done - Boost Serialize lib! [modified] Pin
John M. Drescher9-Oct-06 7:58
John M. Drescher9-Oct-06 7:58 
GeneralRe: Already been done - Boost Serialize lib! Pin
Aniruddha Jahagirdar9-Oct-06 20:20
Aniruddha Jahagirdar9-Oct-06 20:20 
GeneralRe: Already been done - Boost Serialize lib! Pin
Stephen Hewitt9-Oct-06 22:13
Stephen Hewitt9-Oct-06 22:13 
GeneralRe: Already been done - Boost Serialize lib! Pin
Aniruddha Jahagirdar9-Oct-06 22:59
Aniruddha Jahagirdar9-Oct-06 22:59 
GeneralRe: Already been done - Boost Serialize lib! Pin
Stephen Hewitt10-Oct-06 1:22
Stephen Hewitt10-Oct-06 1:22 
GeneralRe: Already been done - Boost Serialize lib! Pin
Johann Gerell10-Oct-06 1:36
Johann Gerell10-Oct-06 1:36 
GeneralRe: Already been done - Boost Serialize lib! Pin
Aniruddha Jahagirdar10-Oct-06 19:48
Aniruddha Jahagirdar10-Oct-06 19:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.