Merged marshalling/unmarshalling methods into core interface.
[shibboleth/cpp-xmltooling.git] / xmltooling / io / AbstractXMLObjectMarshaller.h
index 7d1928d..e7c6647 100644 (file)
 #if !defined(__xmltooling_xmlmarshaller_h__)\r
 #define __xmltooling_xmlmarshaller_h__\r
 \r
-#include <xmltooling/io/Marshaller.h>\r
+#include <xmltooling/AbstractDOMCachingXMLObject.h>\r
+\r
+#if defined (_MSC_VER)\r
+    #pragma warning( push )\r
+    #pragma warning( disable : 4250 4251 )\r
+#endif\r
 \r
 namespace xmltooling {\r
 \r
     /**\r
      * A thread-safe abstract marshaller.\r
      */\r
-    class XMLTOOL_API AbstractXMLObjectMarshaller : public virtual Marshaller\r
+    class XMLTOOL_API AbstractXMLObjectMarshaller : public virtual AbstractDOMCachingXMLObject\r
     {\r
     public:\r
         virtual ~AbstractXMLObjectMarshaller() {}\r
 \r
         /**\r
-         * @see Marshaller::marshall(XMLObject*,DOMDocument*,const MarshallingContext*)\r
+         * @see XMLObject::marshall(DOMDocument*,const MarshallingContext*)\r
          */\r
-        DOMElement* marshall(XMLObject* xmlObject, DOMDocument* document=NULL, MarshallingContext* ctx=NULL) const;\r
+        DOMElement* marshall(DOMDocument* document=NULL, MarshallingContext* ctx=NULL) const;\r
 \r
         /**\r
-         * @see Marshaller::marshall(XMLObject*,DOMElement*,const MarshallingContext*)\r
+         * @see XMLObject::marshall(DOMElement*,const MarshallingContext*)\r
          */\r
-        DOMElement* marshall(XMLObject* xmlObject, DOMElement* parentElement, MarshallingContext* ctx=NULL) const;\r
+        DOMElement* marshall(DOMElement* parentElement, MarshallingContext* ctx=NULL) const;\r
         \r
     protected:\r
-        AbstractXMLObjectMarshaller();\r
+        AbstractXMLObjectMarshaller() {}\r
 \r
         /**\r
          * Sets the given element as the Document Element of the given Document.\r
@@ -64,70 +69,64 @@ namespace xmltooling {
         }\r
     \r
         /**\r
-         * Marshalls the given XMLObject into the given DOM Element.\r
+         * Marshalls the XMLObject into the given DOM Element.\r
          * The DOM Element must be within a DOM tree rooted in the owning Document.\r
          * \r
-         * @param xmlObject the XMLObject to marshall\r
          * @param targetElement the Element into which the XMLObject is marshalled into\r
          * @param ctx           optional marshalling context\r
          * \r
          * @throws MarshallingException thrown if there is a problem marshalling the object\r
          * @throws SignatureException thrown if a problem occurs during signature creation \r
          */\r
-        void marshallInto(XMLObject& xmlObject, DOMElement* targetElement, MarshallingContext* ctx) const;\r
+        void marshallInto(DOMElement* targetElement, MarshallingContext* ctx) const;\r
     \r
         /**\r
          * Creates an xsi:type attribute, corresponding to the given type of the XMLObject, on the DOM element.\r
          * \r
-         * @param xmlObject the XMLObject\r
          * @param domElement the DOM element\r
          * \r
          * @throws MarshallingException thrown if the type on the XMLObject is doesn't contain\r
          * a local name, prefix, and namespace URI\r
          */\r
-        void marshallElementType(XMLObject& xmlObject, DOMElement* domElement) const;\r
+        void marshallElementType(DOMElement* domElement) const;\r
 \r
         /**\r
-         * Creates the xmlns attributes for any namespaces set on the given XMLObject.\r
+         * Creates the xmlns attributes for any namespaces set on the XMLObject.\r
          * \r
-         * @param xmlObject the XMLObject\r
          * @param domElement the DOM element the namespaces will be added to\r
          */\r
-        void marshallNamespaces(const XMLObject& xmlObject, DOMElement* domElement) const;\r
+        void marshallNamespaces(DOMElement* domElement) const;\r
     \r
         /**\r
-         * Marshalls the child elements of the given XMLObject.\r
+         * Marshalls the child elements of the XMLObject.\r
          * \r
-         * @param xmlObject the XMLObject whose children will be marshalled\r
          * @param domElement the DOM element that will recieved the marshalled children\r
          * \r
          * @throws MarshallingException thrown if there is a problem marshalling a child element\r
          */\r
-        void marshallChildElements(const XMLObject& xmlObject, DOMElement* domElement) const;\r
+        void marshallChildElements(DOMElement* domElement) const;\r
 \r
         /**\r
-         * Marshalls the attributes from the given XMLObject into the given DOM element.\r
-         * The XMLObject passed to this method is guaranteed to be of the target name\r
-         * specified during this marshaller's construction.\r
+         * Marshalls the attributes from the XMLObject into the given DOM element.\r
          * \r
-         * @param xmlObject the XMLObject being marshalled\r
          * @param domElement the DOM Element into which attributes will be marshalled\r
          * \r
-         * @throws UnmarshallingException thrown if there is a problem unmarshalling an attribute\r
+         * @throws MarshallingException thrown if there is a problem marshalling an attribute\r
          */\r
-        virtual void marshallAttributes(const XMLObject& xmlObject, DOMElement* domElement) const=0;\r
+        virtual void marshallAttributes(DOMElement* domElement) const=0;\r
 \r
         /**\r
          * Marshalls data from the XMLObject into content of the DOM Element.\r
          * \r
-         * @param xmlObject the XMLObject\r
          * @param domElement the DOM element recieving the content\r
          */\r
-        virtual void marshallElementContent(const XMLObject& xmlObject, DOMElement* domElement) const=0;\r
-\r
-        void* m_log;\r
+        virtual void marshallElementContent(DOMElement* domElement) const=0;\r
     };\r
     \r
 };\r
 \r
+#if defined (_MSC_VER)\r
+    #pragma warning( pop )\r
+#endif\r
+\r
 #endif /* __xmltooling_xmlmarshaller_h__ */\r