aboutsummaryrefslogtreecommitdiff
path: root/xml/serializer.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2014-05-14 21:29:29 -0700
committerBoris Kolpackov <boris@codesynthesis.com>2014-05-14 21:29:29 -0700
commite897aa91a2a5c68a2f795f6a0a995600f13a85f8 (patch)
tree75a17430ba9cec822651b881003f66da8c89d7f9 /xml/serializer.hxx
parent3bf332a7b77e9ce9e5eb0a1dfd5f64f238f4f17f (diff)
Convert to extension-less headers for API
Diffstat (limited to 'xml/serializer.hxx')
-rw-r--r--xml/serializer.hxx227
1 files changed, 0 insertions, 227 deletions
diff --git a/xml/serializer.hxx b/xml/serializer.hxx
deleted file mode 100644
index 4f57e48..0000000
--- a/xml/serializer.hxx
+++ /dev/null
@@ -1,227 +0,0 @@
-// file : xml/serializer.hxx
-// copyright : Copyright (c) 2013-2014 Code Synthesis Tools CC
-// license : MIT; see accompanying LICENSE file
-
-#ifndef XML_SERIALIZER_HXX
-#define XML_SERIALIZER_HXX
-
-#include <xml/details/pre.hxx>
-
-#include <string>
-#include <ostream>
-#include <cstddef> // std::size_t
-
-#include <xml/details/genx/genx.h>
-
-#include <xml/forward.hxx>
-#include <xml/qname.hxx>
-#include <xml/exception.hxx>
-
-#include <xml/details/export.hxx>
-
-namespace xml
-{
- class serializer;
-
- struct LIBSTUDXML_EXPORT serialization: exception
- {
- virtual
- ~serialization () throw ();
-
- serialization (const std::string& name,
- const std::string& description);
-
- serialization (const serializer&, const std::string& description);
-
- const std::string&
- name () const {return name_;}
-
- const std::string&
- description () const {return description_;}
-
- virtual const char*
- what () const throw ();
-
- private:
- void
- init ();
-
- private:
- std::string name_;
- std::string description_;
- std::string what_;
- };
-
- class LIBSTUDXML_EXPORT serializer
- {
- public:
- typedef xml::qname qname_type;
-
- // Serialize to std::ostream. Output name is used in diagnostics to
- // identify the document being serialized. The indentation argument
- // specifies the number of indentation spaces that should be used for
- // pretty-printing. If 0 is passed, no pretty-printing is performed.
- //
- // If stream exceptions are enabled then std::ios_base::failure
- // exception is used to report io errors (badbit and failbit).
- // Otherwise, those are reported as the serialization exception.
- //
- serializer (std::ostream&,
- const std::string& output_name,
- unsigned short indentation = 2);
-
- const std::string&
- output_name () const {return oname_;}
-
- ~serializer ();
-
- private:
- serializer (const serializer&);
- serializer& operator= (const serializer&);
-
- // Serialization functions.
- //
- public:
-
- // Elements.
- //
- void
- start_element (const qname_type& qname);
-
- void
- start_element (const std::string& name);
-
- void
- start_element (const std::string& ns, const std::string& name);
-
- void
- end_element ();
-
- // Helpers for serializing elements with simple content. The first two
- // functions assume that start_element() has already been called. The
- // other two serialize the complete element, from start to end.
- //
- void
- element (const std::string& value);
-
- template <typename T>
- void
- element (const T& value);
-
- void
- element (const std::string& name, const std::string& value);
-
- template <typename T>
- void
- element (const std::string& name, const T& value);
-
- void
- element (const qname_type& qname, const std::string& value);
-
- template <typename T>
- void
- element (const qname_type& qname, const T& value);
-
- void
- element (const std::string& namespace_,
- const std::string& name,
- const std::string& value);
-
- template <typename T>
- void
- element (const std::string& namespace_,
- const std::string& name,
- const T& value);
-
- // Attributes.
- //
- void
- start_attribute (const qname_type& qname);
-
- void
- start_attribute (const std::string& name);
-
- void
- start_attribute (const std::string& ns, const std::string& name);
-
- void
- end_attribute ();
-
- void
- attribute (const qname_type& qname, const std::string& value);
-
- template <typename T>
- void
- attribute (const qname_type& qname, const T& value);
-
- void
- attribute (const std::string& name, const std::string& value);
-
- template <typename T>
- void
- attribute (const std::string& name, const T& value);
-
- void
- attribute (const std::string& ns,
- const std::string& name,
- const std::string& value);
-
- template <typename T>
- void
- attribute (const std::string& ns,
- const std::string& name,
- const T& value);
-
- // Characters.
- //
- void
- characters (const std::string& value);
-
- template <typename T>
- void
- characters (const T& value);
-
- // Namespaces declaration. If prefix is empty, then the default
- // namespace is declared. If both prefix and namespace are empty,
- // then the default namespace declaration is cleared (xmlns="").
- //
- void
- namespace_decl (const std::string& ns, const std::string& prefix);
-
- // XML declaration. If encoding or standalone are not specified,
- // then these attributes are omitted from the output.
- //
- void
- xml_decl (const std::string& version = "1.0",
- const std::string& encoding = "UTF-8",
- const std::string& standalone = "");
-
- // Utility functions.
- //
- public:
- // Return true if there is a mapping. In this case, prefix contains
- // the mapped prefix.
- //
- bool
- lookup_namespace_prefix (const std::string& ns, std::string& prefix);
-
- private:
- void
- handle_error (genxStatus);
-
- private:
- std::ostream& os_;
- std::ostream::iostate os_state_; // Original exception state.
- const std::string oname_;
-
- genxWriter s_;
- genxSender sender_;
- std::size_t depth_;
- };
-}
-
-#include <xml/serializer.ixx>
-
-#include <xml/details/post.hxx>
-
-#endif // XML_SERIALIZER_HXX