From a15cf65c44d5c224169c32ef5495b68c758134b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Sun, 18 May 2014 16:08:14 +0200 Subject: Imported Upstream version 3.3.0.2 --- xsd/examples/cxx/tree/streaming/serializer.hxx | 81 ++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 xsd/examples/cxx/tree/streaming/serializer.hxx (limited to 'xsd/examples/cxx/tree/streaming/serializer.hxx') diff --git a/xsd/examples/cxx/tree/streaming/serializer.hxx b/xsd/examples/cxx/tree/streaming/serializer.hxx new file mode 100644 index 0000000..6ff0114 --- /dev/null +++ b/xsd/examples/cxx/tree/streaming/serializer.hxx @@ -0,0 +1,81 @@ +// file : examples/cxx/tree/streaming/serializer.hxx +// author : Boris Kolpackov +// copyright : not copyrighted - public domain + +#ifndef SERIALIZER_HXX +#define SERIALIZER_HXX + +#include +#include +#include // std::auto_ptr + +#include + +#include + +class serializer_impl; + +class serializer +{ +public: + ~serializer (); + serializer (); + + // Start the serialization process. + // + void + start (std::ostream& is, const std::string& encoding = "UTF-8"); + + // Serialize next object model fragment into an element with the specified + // name. + // + template + void + next (const std::string& name, const T& x); + + // Serialize next object model fragment into an element with the specified + // namespace and qualified name. + // + template + void + next (const std::string& ns, const std::string& name, const T& x); + +private: + serializer (const serializer&); + + serializer& + operator= (const serializer&); + +private: + xercesc::DOMElement* + create (const std::string& name); + + xercesc::DOMElement* + create (const std::string& ns, const std::string& name); + + void + serialize (xercesc::DOMElement&); + +private: + std::auto_ptr impl_; +}; + +template +inline void serializer:: +next (const std::string& name, const T& x) +{ + xsd::cxx::xml::dom::auto_ptr e (create (name)); + *e << x; + serialize (*e); +} + +template +inline void serializer:: +next (const std::string& ns, const std::string& name, const T& x) +{ + xsd::cxx::xml::dom::auto_ptr e (create (ns, name)); + *e << x; + serialize (*e); +} + +#endif // SERIALIZER_HXX -- cgit v1.2.3