/usr/include/xmltooling/io/AbstractXMLObjectMarshaller.h is in libxmltooling-dev 1.4.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 | /**
* Licensed to the University Corporation for Advanced Internet
* Development, Inc. (UCAID) under one or more contributor license
* agreements. See the NOTICE file distributed with this work for
* additional information regarding copyright ownership.
*
* UCAID licenses this file to you under the Apache License,
* Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the
* License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the License for the specific
* language governing permissions and limitations under the License.
*/
/**
* @file xmltooling/io/AbstractXMLObjectMarshaller.h
*
* A mix-in to implement object marshalling with DOM reuse.
*/
#ifndef __xmltooling_xmlmarshaller_h__
#define __xmltooling_xmlmarshaller_h__
#include <xmltooling/AbstractDOMCachingXMLObject.h>
#if defined (_MSC_VER)
#pragma warning( push )
#pragma warning( disable : 4250 4251 )
#endif
namespace xmltooling {
/**
* A mix-in to implement object marshalling with DOM reuse.
*/
class XMLTOOL_API AbstractXMLObjectMarshaller : public virtual AbstractXMLObject
{
public:
virtual ~AbstractXMLObjectMarshaller();
xercesc::DOMElement* marshall(
xercesc::DOMDocument* document=nullptr
#ifndef XMLTOOLING_NO_XMLSEC
,const std::vector<xmlsignature::Signature*>* sigs=nullptr
,const Credential* credential=nullptr
#endif
) const;
xercesc::DOMElement* marshall(
xercesc::DOMElement* parentElement
#ifndef XMLTOOLING_NO_XMLSEC
,const std::vector<xmlsignature::Signature*>* sigs=nullptr
,const Credential* credential=nullptr
#endif
) const;
protected:
AbstractXMLObjectMarshaller();
/**
* Sets the given element as the Document Element of the given Document.
* If the document already has a Document Element it is replaced by the given element.
*
* @param document the document
* @param element the Element that will serve as the Document Element
*/
void setDocumentElement(xercesc::DOMDocument* document, xercesc::DOMElement* element) const;
#ifndef XMLTOOLING_NO_XMLSEC
/**
* Marshalls the XMLObject into the given DOM Element.
* The DOM Element must be within a DOM tree rooted in the owning Document.
*
* @param targetElement the Element into which the XMLObject is marshalled into
* @param sigs optional array of signatures to create after marshalling
* @param credential optional credential to supply signing key and related info
*
* @throws MarshallingException thrown if there is a problem marshalling the object
* @throws SignatureException thrown if a problem occurs during signature creation
*/
void marshallInto(
xercesc::DOMElement* targetElement, const std::vector<xmlsignature::Signature*>* sigs, const Credential* credential=nullptr
) const;
#else
/**
* Marshalls the XMLObject into the given DOM Element.
* The DOM Element must be within a DOM tree rooted in the owning Document.
*
* @param targetElement the Element into which the XMLObject is marshalled into
*
* @throws MarshallingException thrown if there is a problem marshalling the object
*/
void marshallInto(xercesc::DOMElement* targetElement) const;
#endif
/**
* Creates an xsi:type attribute, corresponding to the given type of the XMLObject, on the DOM element.
*
* @param domElement the DOM element
*
* @throws MarshallingException thrown if the type on the XMLObject is doesn't contain
* a local name, prefix, and namespace URI
*/
void marshallElementType(xercesc::DOMElement* domElement) const;
/**
* Creates the xmlns attributes for any namespaces set on the XMLObject.
*
* @param domElement the DOM element the namespaces will be added to
*/
void marshallNamespaces(xercesc::DOMElement* domElement) const;
#ifndef XMLTOOLING_NO_XMLSEC
/**
* Marshalls the text content and/or child elements of the XMLObject.
*
* @param domElement the DOM element that will recieved the marshalled children
* @param credential optional credential to supply signing key and related info
*
* @throws MarshallingException thrown if there is a problem marshalling a child element
*/
void marshallContent(xercesc::DOMElement* domElement, const Credential* credential) const;
#else
/**
* Marshalls the text content and/or child elements of the XMLObject.
*
* @param domElement the DOM element that will recieved the marshalled children
*
* @throws MarshallingException thrown if there is a problem marshalling a child element
*/
void marshallContent(xercesc::DOMElement* domElement) const;
#endif
/**
* Marshalls the attributes from the XMLObject into the given DOM element.
*
* @param domElement the DOM Element into which attributes will be marshalled
*
* @throws MarshallingException thrown if there is a problem marshalling an attribute
*/
virtual void marshallAttributes(xercesc::DOMElement* domElement) const;
/**
* Called before marshalling in the event that a new DOM is being generated.
* <p>Allows objects to adjust internal state prior to the marshalling step.
*/
virtual void prepareForMarshalling() const;
};
};
#if defined (_MSC_VER)
#pragma warning( pop )
#endif
#endif /* __xmltooling_xmlmarshaller_h__ */
|