From 8286ac511144e4f17d34eac9affb97e50646344a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Wed, 23 Jul 2014 15:25:44 +0200 Subject: Imported Upstream version 4.0.0 --- xsd/examples/cxx/tree/streaming/serializer.hxx | 138 +++++++++++++++++++++++-- 1 file changed, 131 insertions(+), 7 deletions(-) (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 index 6ff0114..43fab69 100644 --- a/xsd/examples/cxx/tree/streaming/serializer.hxx +++ b/xsd/examples/cxx/tree/streaming/serializer.hxx @@ -12,12 +12,15 @@ #include #include +#include // namespace_infomap class serializer_impl; class serializer { public: + typedef xsd::cxx::xml::dom::namespace_infomap namespace_infomap; + ~serializer (); serializer (); @@ -33,6 +36,13 @@ public: void next (const std::string& name, const T& x); + // Serialize next object model fragment into an element with the specified + // name and namespace declarations. + // + template + void + next (const std::string& name, const namespace_infomap&, const T& x); + // Serialize next object model fragment into an element with the specified // namespace and qualified name. // @@ -40,6 +50,42 @@ public: void next (const std::string& ns, const std::string& name, const T& x); + // Serialize next object model fragment into an element with the specified + // namespace and qualified name as well as namespace declarations. + // + template + void + next (const std::string& ns, + const std::string& name, + const namespace_infomap&, + const T& x); + + // The next_open/close functions are like next() but split into two steps. + // next_open() serializes the object model fragment into an element leaving + // it open while next_close() closes the element. + // + template + void + next_open (const std::string& name, const T& x); + + template + void + next_open (const std::string& name, const namespace_infomap&, const T& x); + + template + void + next_open (const std::string& ns, const std::string& name, const T& x); + + template + void + next_open (const std::string& ns, + const std::string& name, + const namespace_infomap&, + const T& x); + + void + next_close (const std::string& name); + private: serializer (const serializer&); @@ -48,13 +94,21 @@ private: private: xercesc::DOMElement* - create (const std::string& name); + create (const std::string& name, const namespace_infomap&); xercesc::DOMElement* - create (const std::string& ns, const std::string& name); + create (const std::string& ns, + const std::string& name, + const namespace_infomap&); + + void + serialize (xsd::cxx::xml::dom::auto_ptr); void - serialize (xercesc::DOMElement&); + serialize_open (xsd::cxx::xml::dom::auto_ptr); + + void + serialize_close (const std::string& name); private: std::auto_ptr impl_; @@ -64,18 +118,88 @@ template inline void serializer:: next (const std::string& name, const T& x) { - xsd::cxx::xml::dom::auto_ptr e (create (name)); + xsd::cxx::xml::dom::auto_ptr e ( + create (name, namespace_infomap ())); + *e << x; + serialize (e); +} + +template +inline void serializer:: +next (const std::string& name, const namespace_infomap& map, const T& x) +{ + xsd::cxx::xml::dom::auto_ptr e (create (name, map)); *e << x; - serialize (*e); + 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)); + xsd::cxx::xml::dom::auto_ptr e ( + create (ns, name, namespace_infomap ())); *e << x; - serialize (*e); + serialize (e); +} + +template +inline void serializer:: +next (const std::string& ns, + const std::string& name, + const namespace_infomap& map, + const T& x) +{ + xsd::cxx::xml::dom::auto_ptr e (create (ns, name, map)); + *e << x; + serialize (e); +} + +template +inline void serializer:: +next_open (const std::string& name, const T& x) +{ + xsd::cxx::xml::dom::auto_ptr e ( + create (name, namespace_infomap ())); + *e << x; + serialize_open (e); +} + +template +inline void serializer:: +next_open (const std::string& name, const namespace_infomap& map, const T& x) +{ + xsd::cxx::xml::dom::auto_ptr e (create (name, map)); + *e << x; + serialize_open (e); +} + +template +inline void serializer:: +next_open (const std::string& ns, const std::string& name, const T& x) +{ + xsd::cxx::xml::dom::auto_ptr e ( + create (ns, name, namespace_infomap ())); + *e << x; + serialize_open (e); +} + +template +inline void serializer:: +next_open (const std::string& ns, + const std::string& name, + const namespace_infomap& map, + const T& x) +{ + xsd::cxx::xml::dom::auto_ptr e (create (ns, name, map)); + *e << x; + serialize_open (e); +} + +inline void serializer:: +next_close (const std::string& name) +{ + serialize_close (name); } #endif // SERIALIZER_HXX -- cgit v1.2.3