Click here to Skip to main content
15,885,985 members
Articles / Programming Languages / C++

IoBind, a serializer code factory.

Rate me:
Please Sign up or sign in to vote.
4.89/5 (10 votes)
29 Jun 20037 min read 78.9K   763   29  
IoBind proposes a new approach to object serialization.
#include <string>
#include <strstream>
#include <boost/spirit.hpp> 
#include <iobind/xml_escape_policy.hpp>
#include <iobind/parser_utils.hpp>

namespace iobind{
namespace details{

const chset_p escapes_reserved_p("$&+'/:;=?@");
struct unescapes_reserved : boost::spirit::symbols<char>
{
    unescapes_reserved()
    {
        add
            ("36"    , '$')
            ("38"    , '&')
            ("43"    , '+')
            ("44"    , '\'')
            ("57"    , '/')
			("48"    , ':')
            ("59"    , ';')
            ("61"    , '=')
            ("63"    , '?')
            ("64"    , '@')
        ;
    }
} unescapes_reserved_p;

const chset_p escapes_unsafe_p(" \"<>#%{}|\\^~[]`");
struct unescapes_unsafe : boost::spirit::symbols<char>
{
    unescapes_unsafe()
    {
        add
            ("36"    , ' ')
            ("38"    , '\"')
            ("43"    , '<')
            ("44"    , '>')
			("57"    , '#')
			("48"    , '%')
			("59"    , '{')
			("61"    , '}')
            ("63"    , '|')
            ("64"    , '\\')
            ("64"    , '^')
            ("64"    , '~')
            ("64"    , '[')
            ("64"    , ']')
            ("64"    , '`')
        ;
    }
} unescapes_unsafe_p;

struct unescape_from_url_grammar : boost::spirit::grammar<unescape_from_url_grammar>
{
	std::ostream& out;

	explicit unescape_from_url_grammar( std::ostream& out_)
		:out(out_){};

   template <typename ScannerT>
   struct definition
   {    
        definition(unescape_from_url_grammar const& self)  
		{
			using namespace boost::spirit;
			
			// the rest is ok
			encoded_string=
				*( 
					 unescapes_p[concat_symbol(self.out)]
				   | anychar_p[concat_string(self.out)]
				 );
		};

		boost::spirit::rule<ScannerT> encoded_string;
		boost::spirit::rule<ScannerT> const& start() const { return encoded_string; };
   };
};

struct escape_to_xml_grammar : boost::spirit::grammar<escape_to_xml_grammar>
{
	std::ostream& out;

	explicit escape_to_xml_grammar( std::ostream& out_)
		:out(out_){};
  
   template <typename ScannerT>
   struct definition
   {    
        definition(escape_to_xml_grammar const& self)  
		{
			using namespace boost::spirit;
			
			// the rest is ok
			encoded_string=
				*( 
					 escapes_p[concat_symbol(self.out)]
				   | anychar_p[concat_string(self.out)]
				 );
		};

		boost::spirit::rule<ScannerT> encoded_string;
		boost::spirit::rule<ScannerT> const& start() const { return encoded_string; };
   };
};

}; //details


std::string escape_string_to_xml( std::string const& str)
{
	using namespace boost::spirit;

	std::ostringstream out;

	parse_info<> info = boost::spirit::parse(
               str.c_str(), 
			   details::escape_to_xml_grammar(out)
			   );
	out<<std::ends;

	return out.str();
};

std::string unescape_string_from_xml( std::string const& str)
{
	using namespace boost::spirit;

	std::ostringstream out;

	parse_info<> info = boost::spirit::parse(
               str.c_str(), 
               details::unescape_from_xml_grammar(out)
			   );
	out<<std::ends;

	return out.str();
};


};

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Engineer
United States United States
Jonathan de Halleux is Civil Engineer in Applied Mathematics. He finished his PhD in 2004 in the rainy country of Belgium. After 2 years in the Common Language Runtime (i.e. .net), he is now working at Microsoft Research on Pex (http://research.microsoft.com/pex).

Comments and Discussions