From f0510d2f90467de8e8f260b47d79a9baaf9bef17 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 17 Sep 2009 07:15:29 +0200 Subject: Start tracking XSD with git --- libxsd/xsd/cxx/tree/type-serializer-map.hxx | 217 ++++++++++++++++++++++++++++ 1 file changed, 217 insertions(+) create mode 100644 libxsd/xsd/cxx/tree/type-serializer-map.hxx (limited to 'libxsd/xsd/cxx/tree/type-serializer-map.hxx') diff --git a/libxsd/xsd/cxx/tree/type-serializer-map.hxx b/libxsd/xsd/cxx/tree/type-serializer-map.hxx new file mode 100644 index 0000000..b1ca479 --- /dev/null +++ b/libxsd/xsd/cxx/tree/type-serializer-map.hxx @@ -0,0 +1,217 @@ +// file : xsd/cxx/tree/type-serializer-map.hxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2005-2009 Code Synthesis Tools CC +// license : GNU GPL v2 + exceptions; see accompanying LICENSE file + +#ifndef XSD_CXX_TREE_TYPE_SERIALIZER_MAP_HXX +#define XSD_CXX_TREE_TYPE_SERIALIZER_MAP_HXX + +#include +#include +#include // std::size_t +#include + +#include + +#include + +#include +#include // namespace_infomap + +namespace xsd +{ + namespace cxx + { + namespace tree + { + template + struct type_serializer_map + { + typedef std::type_info type_id; + typedef xml::qualified_name qualified_name; + typedef void (*serializer) (xercesc::DOMElement&, const type&); + + void + register_type (const type_id&, + const qualified_name& name, + serializer, + bool override = true); + + void + register_element (const qualified_name& root, + const qualified_name& subst, + const type_id&, + serializer); + + public: + void + serialize (const C* name, // element name + const C* ns, // element namespace + bool global, + bool qualified, + xercesc::DOMElement& parent, + const type&) const; + + // Serialize into existing element. + // + void + serialize (const C* static_name, + const C* static_ns, + xercesc::DOMElement&, + const qualified_name&, + const type&) const; + + // Create DOMDocument with root element suitable for serializing + // x into it. + // + xml::dom::auto_ptr + serialize (const C* name, // element name + const C* ns, // element namespace + const xml::dom::namespace_infomap&, + const type& x, + unsigned long flags) const; + + public: + type_serializer_map (); + + public: + struct type_info + { + type_info (const qualified_name& name, + typename type_serializer_map::serializer serializer) + : name_ (name), serializer_ (serializer) + { + } + + const qualified_name& + name () const + { + return name_; + } + + typename type_serializer_map::serializer + serializer () const + { + return serializer_; + } + + // For std::map. + // + type_info () + : name_ (std::basic_string (), std::basic_string ()), + serializer_ (0) + { + } + + private: + qualified_name name_; + typename type_serializer_map::serializer serializer_; + }; + + public: + const type_info* + find (const type_id&) const; + + private: + struct type_id_comparator + { + bool + operator() (const type_id* x, const type_id* y) const + { + // XL C++ on AIX has buggy type_info::before() in that + // it returns true for two different type_info objects + // that happened to be for the same type. + // +#if defined(__xlC__) && defined(_AIX) + return *x != *y && x->before (*y); +#else + return x->before (*y); +#endif + } + }; + + typedef + std::map + type_map; + + // Map of (root-element to map of (type_id to type_info)). + // Note that here type_info::name is element name. + // + typedef + std::map + subst_map; + + typedef + std::map + element_map; + + type_map type_map_; + element_map element_map_; + + private: + const type_info* + find_substitution (const subst_map& start, const type_id&) const; + + // Sets an xsi:type attribute corresponding to the type_info. + // + void + set_xsi_type (xercesc::DOMElement& parent, + xercesc::DOMElement&, + const type_info&) const; + }; + + + // + // + template + struct type_serializer_plate + { + static type_serializer_map* map; + static std::size_t count; + + type_serializer_plate (); + ~type_serializer_plate (); + }; + + template + type_serializer_map* type_serializer_plate::map = 0; + + template + std::size_t type_serializer_plate::count = 0; + + + // + // + template + inline type_serializer_map& + type_serializer_map_instance () + { + return *type_serializer_plate::map; + } + + // + // + template + void + serializer_impl (xercesc::DOMElement&, const type&); + + + template + struct type_serializer_initializer + { + // Register type. + // + type_serializer_initializer (const C* name, const C* ns); + + // Register element. + // + type_serializer_initializer (const C* root_name, const C* root_ns, + const C* subst_name, const C* subst_ns); + }; + } + } +} + +#include + +#endif // XSD_CXX_TREE_TYPE_SERIALIZER_MAP_HXX -- cgit v1.1