Stop defaulting in xercesc namespace.
[shibboleth/cpp-xmltooling.git] / xmltooling / util / XMLHelper.h
1 /*
2  *  Copyright 2001-2007 Internet2
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 /**
18  * @file XMLHelper.h
19  * 
20  * A helper class for working with W3C DOM objects. 
21  */
22
23 #ifndef __xmltooling_xmlhelper_h__
24 #define __xmltooling_xmlhelper_h__
25
26 #include <xmltooling/XMLObject.h>
27 #include <xercesc/dom/DOM.hpp>
28
29 #include <iostream>
30
31 namespace xmltooling {
32     
33     /**
34      * RAII wrapper for Xerces resources.
35      */
36     template<class T> class XercesJanitor
37     {
38         MAKE_NONCOPYABLE(XercesJanitor);
39         T* m_held;
40     public:
41         /**
42          * Constructor
43          * 
44          * @param resource  object to release when leaving scope
45          */
46         XercesJanitor(T* resource) : m_held(resource) {}
47         
48         ~XercesJanitor() {
49             if (m_held)
50                 m_held->release();
51         }
52         
53         /**
54          * Returns resource held by this object.
55          * 
56          * @return  the resource held or NULL
57          */
58         T* get() {
59             return m_held;
60         }
61
62         /**
63          * Returns resource held by this object.
64          * 
65          * @return  the resource held or NULL
66          */
67         T* operator->() {
68             return m_held;
69         }
70
71         /**
72          * Returns resource held by this object and releases it to the caller.
73          * 
74          * @return  the resource held or NULL
75          */
76         T* release() {
77             T* ret=m_held;
78             m_held=NULL;
79             return ret;
80         }
81     };
82     
83     /**
84      * A helper class for working with W3C DOM objects. 
85      */
86     class XMLTOOL_API XMLHelper
87     {
88     public:
89         /**
90          * Checks if the given element has an xsi:type defined for it
91          * 
92          * @param e the DOM element
93          * @return true if there is a type, false if not
94          */
95         static bool hasXSIType(const xercesc::DOMElement* e);
96
97         /**
98          * Gets the XSI type for a given element if it has one.
99          * 
100          * @param e the element
101          * @return the type or null
102          */
103         static QName* getXSIType(const xercesc::DOMElement* e);
104
105         /**
106          * Gets the ID attribute of a DOM element.
107          * 
108          * @param domElement the DOM element
109          * @return the ID attribute or null if there isn't one
110          */
111         static xercesc::DOMAttr* getIdAttribute(const xercesc::DOMElement* domElement);
112
113         /**
114          * Attempts to locate an XMLObject from this point downward in the tree whose
115          * XML ID matches the supplied value.
116          * 
117          * @param tree  root of tree to search
118          * @param id    ID value to locate
119          * @return XMLObject in the tree with a matching ID value, or NULL
120          */
121         static const XMLObject* getXMLObjectById(const XMLObject& tree, const XMLCh* id);
122         
123
124         /**
125          * Gets the QName for the given DOM node.
126          * 
127          * @param domNode the DOM node
128          * @return the QName for the element or null if the element was null
129          */
130         static QName* getNodeQName(const xercesc::DOMNode* domNode);
131
132         /**
133          * Constructs a QName from an attribute's value.
134          * 
135          * @param attribute the attribute with a QName value
136          * @return a QName from an attribute's value, or null if the given attribute is null
137          */
138         static QName* getAttributeValueAsQName(const xercesc::DOMAttr* attribute);
139
140         /**
141          * Appends the child Element to the parent Element,
142          * importing the child Element into the parent's Document if needed.
143          * 
144          * @param parentElement the parent Element
145          * @param childElement the child Element
146          * @return the child Element that was added (may be an imported copy)
147          */
148         static xercesc::DOMElement* appendChildElement(xercesc::DOMElement* parentElement, xercesc::DOMElement* childElement);
149         
150         /**
151          * Checks the qualified name of a node.
152          * 
153          * @param n     node to check
154          * @param ns    namespace to compare with
155          * @param local local name to compare with
156          * @return  true iff the node's qualified name matches the other parameters
157          */
158         static bool isNodeNamed(const xercesc::DOMNode* n, const XMLCh* ns, const XMLCh* local) {
159             return (n && xercesc::XMLString::equals(local,n->getLocalName()) && xercesc::XMLString::equals(ns,n->getNamespaceURI()));
160         }
161
162         /**
163          * Returns the first matching child element of the node if any.
164          * 
165          * @param n         node to check
166          * @param localName local name to compare with or NULL for any match
167          * @return  the first matching child node of type Element, or NULL
168          */
169         static xercesc::DOMElement* getFirstChildElement(const xercesc::DOMNode* n, const XMLCh* localName=NULL);
170         
171         /**
172          * Returns the last matching child element of the node if any.
173          * 
174          * @param n     node to check
175          * @param localName local name to compare with or NULL for any match
176          * @return  the last matching child node of type Element, or NULL
177          */
178         static xercesc::DOMElement* getLastChildElement(const xercesc::DOMNode* n, const XMLCh* localName=NULL);
179         
180         /**
181          * Returns the next matching sibling element of the node if any.
182          * 
183          * @param n     node to check
184          * @param localName local name to compare with or NULL for any match
185          * @return  the next matching sibling node of type Element, or NULL
186          */
187         static xercesc::DOMElement* getNextSiblingElement(const xercesc::DOMNode* n, const XMLCh* localName=NULL);
188         
189         /**
190          * Returns the previous matching sibling element of the node if any.
191          * 
192          * @param n     node to check
193          * @param localName local name to compare with or NULL for any match
194          * @return  the previous matching sibling node of type Element, or NULL
195          */
196         static xercesc::DOMElement* getPreviousSiblingElement(const xercesc::DOMNode* n, const XMLCh* localName=NULL);
197         
198         /**
199          * Returns the first matching child element of the node if any.
200          * 
201          * @param n         node to check
202          * @param ns        namespace to compare with
203          * @param localName local name to compare with
204          * @return  the first matching child node of type Element, or NULL
205          */
206         static xercesc::DOMElement* getFirstChildElement(const xercesc::DOMNode* n, const XMLCh* ns, const XMLCh* localName);
207         
208         /**
209          * Returns the last matching child element of the node if any.
210          * 
211          * @param n         node to check
212          * @param ns        namespace to compare with
213          * @param localName local name to compare with
214          * @return  the last matching child node of type Element, or NULL
215          */
216         static xercesc::DOMElement* getLastChildElement(const xercesc::DOMNode* n, const XMLCh* ns, const XMLCh* localName);
217         
218         /**
219          * Returns the next matching sibling element of the node if any.
220          * 
221          * @param n         node to check
222          * @param ns        namespace to compare with
223          * @param localName local name to compare with
224          * @return  the next matching sibling node of type Element, or NULL
225          */
226         static xercesc::DOMElement* getNextSiblingElement(const xercesc::DOMNode* n, const XMLCh* ns, const XMLCh* localName);
227         
228         /**
229          * Returns the previous matching sibling element of the node if any.
230          * 
231          * @param n         node to check
232          * @param ns        namespace to compare with
233          * @param localName local name to compare with
234          * @return  the previous matching sibling node of type Element, or NULL
235          */
236         static xercesc::DOMElement* getPreviousSiblingElement(const xercesc::DOMNode* n, const XMLCh* ns, const XMLCh* localName);
237
238         /**
239          * Returns the content of the first Text node found in the element, if any.
240          * This is roughly similar to the DOM getTextContent function, but only
241          * examples the immediate children of the element.
242          *
243          * @param e     element to examine
244          * @return the content of the first Text node found, or NULL
245          */
246         static const XMLCh* getTextContent(const xercesc::DOMElement* e);
247
248         /**
249          * Serializes the DOM node provided into a buffer using UTF-8 encoding and
250          * the default XML serializer available. No manipulation or formatting is applied.
251          * 
252          * @param n     node to serialize
253          * @param buf   buffer to serialize element into
254          */
255         static void serialize(const xercesc::DOMNode* n, std::string& buf);
256
257         /**
258          * Serializes the DOM node provided to a stream using UTF-8 encoding and
259          * the default XML serializer available. No manipulation or formatting is applied.
260          * 
261          * @param n     node to serialize
262          * @param out   stream to serialize element into
263          * @return reference to output stream
264          */
265         static std::ostream& serialize(const xercesc::DOMNode* n, std::ostream& out);
266     };
267
268     /**
269      * Serializes the DOM node provided to a stream using UTF-8 encoding and
270      * the default XML serializer available. No manipulation or formatting is applied.
271      * 
272      * @param n      node to serialize
273      * @param ostr   stream to serialize element into
274      * @return reference to output stream
275      */
276     extern XMLTOOL_API std::ostream& operator<<(std::ostream& ostr, const xercesc::DOMNode& n);
277
278     /**
279      * Marshalls and serializes the XMLObject provided to a stream using UTF-8 encoding and
280      * the default XML serializer available. No manipulation or formatting is applied.
281      * 
282      * <p>The marshaller operation takes no parameters.
283      * 
284      * @param obj    object to serialize
285      * @param ostr   stream to serialize object into
286      * @return reference to output stream
287      */
288     extern XMLTOOL_API std::ostream& operator<<(std::ostream& ostr, const XMLObject& obj);
289 };
290
291 #endif /* __xmltooling_xmlhelper_h__ */