1*7f654276SAndrew Rist /************************************************************** 2*7f654276SAndrew Rist * 3*7f654276SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*7f654276SAndrew Rist * or more contributor license agreements. See the NOTICE file 5*7f654276SAndrew Rist * distributed with this work for additional information 6*7f654276SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*7f654276SAndrew Rist * to you under the Apache License, Version 2.0 (the 8*7f654276SAndrew Rist * "License"); you may not use this file except in compliance 9*7f654276SAndrew Rist * with the License. You may obtain a copy of the License at 10*7f654276SAndrew Rist * 11*7f654276SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12*7f654276SAndrew Rist * 13*7f654276SAndrew Rist * Unless required by applicable law or agreed to in writing, 14*7f654276SAndrew Rist * software distributed under the License is distributed on an 15*7f654276SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*7f654276SAndrew Rist * KIND, either express or implied. See the License for the 17*7f654276SAndrew Rist * specific language governing permissions and limitations 18*7f654276SAndrew Rist * under the License. 19*7f654276SAndrew Rist * 20*7f654276SAndrew Rist *************************************************************/ 21*7f654276SAndrew Rist 22*7f654276SAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir #ifndef DOM_ATTR_HXX 25cdf0e10cSrcweir #define DOM_ATTR_HXX 26cdf0e10cSrcweir 27cdf0e10cSrcweir #include <memory> 28cdf0e10cSrcweir 29cdf0e10cSrcweir #include <libxml/tree.h> 30cdf0e10cSrcweir 31cdf0e10cSrcweir #include <cppuhelper/implbase1.hxx> 32cdf0e10cSrcweir 33cdf0e10cSrcweir #include <com/sun/star/uno/Reference.h> 34cdf0e10cSrcweir #include <com/sun/star/xml/dom/XNode.hpp> 35cdf0e10cSrcweir #include <com/sun/star/xml/dom/XAttr.hpp> 36cdf0e10cSrcweir 37cdf0e10cSrcweir #include <node.hxx> 38cdf0e10cSrcweir 39cdf0e10cSrcweir using ::rtl::OUString; 40cdf0e10cSrcweir using namespace com::sun::star::uno; 41cdf0e10cSrcweir using namespace com::sun::star::xml::dom; 42cdf0e10cSrcweir 43cdf0e10cSrcweir namespace DOM 44cdf0e10cSrcweir { 45cdf0e10cSrcweir typedef ::std::pair< ::rtl::OString, ::rtl::OString > stringpair_t; 46cdf0e10cSrcweir 47cdf0e10cSrcweir typedef ::cppu::ImplInheritanceHelper1< CNode, XAttr > CAttr_Base; 48cdf0e10cSrcweir 49cdf0e10cSrcweir class CAttr 50cdf0e10cSrcweir : public CAttr_Base 51cdf0e10cSrcweir { 52cdf0e10cSrcweir private: 53cdf0e10cSrcweir friend class CDocument; 54cdf0e10cSrcweir 55cdf0e10cSrcweir private: 56cdf0e10cSrcweir xmlAttrPtr m_aAttrPtr; 57cdf0e10cSrcweir ::std::auto_ptr< stringpair_t > m_pNamespace; 58cdf0e10cSrcweir 59cdf0e10cSrcweir protected: 60cdf0e10cSrcweir CAttr(CDocument const& rDocument, ::osl::Mutex const& rMutex, 61cdf0e10cSrcweir xmlAttrPtr const pAttr); 62cdf0e10cSrcweir 63cdf0e10cSrcweir public: 64cdf0e10cSrcweir /// return the libxml namespace corresponding to m_pNamespace on pNode 65cdf0e10cSrcweir xmlNsPtr GetNamespace(xmlNodePtr const pNode); 66cdf0e10cSrcweir 67cdf0e10cSrcweir virtual bool IsChildTypeAllowed(NodeType const nodeType); 68cdf0e10cSrcweir 69cdf0e10cSrcweir /** 70cdf0e10cSrcweir Returns the name of this attribute. 71cdf0e10cSrcweir */ 72cdf0e10cSrcweir virtual OUString SAL_CALL getName() throw (RuntimeException); 73cdf0e10cSrcweir 74cdf0e10cSrcweir /** 75cdf0e10cSrcweir The Element node this attribute is attached to or null if this 76cdf0e10cSrcweir attribute is not in use. 77cdf0e10cSrcweir */ 78cdf0e10cSrcweir virtual Reference< XElement > SAL_CALL getOwnerElement() throw (RuntimeException); 79cdf0e10cSrcweir 80cdf0e10cSrcweir /** 81cdf0e10cSrcweir If this attribute was explicitly given a value in the original 82cdf0e10cSrcweir document, this is true; otherwise, it is false. 83cdf0e10cSrcweir */ 84cdf0e10cSrcweir virtual sal_Bool SAL_CALL getSpecified()throw (RuntimeException); 85cdf0e10cSrcweir 86cdf0e10cSrcweir /** 87cdf0e10cSrcweir On retrieval, the value of the attribute is returned as a string. 88cdf0e10cSrcweir */ 89cdf0e10cSrcweir virtual OUString SAL_CALL getValue() throw (RuntimeException); 90cdf0e10cSrcweir 91cdf0e10cSrcweir /** 92cdf0e10cSrcweir Sets the value of the attribute from a string. 93cdf0e10cSrcweir */ 94cdf0e10cSrcweir 95cdf0e10cSrcweir virtual void SAL_CALL setValue(const OUString& value) throw (RuntimeException, DOMException); 96cdf0e10cSrcweir 97cdf0e10cSrcweir // resolve uno inheritance problems... 98cdf0e10cSrcweir // overrides for XNode base 99cdf0e10cSrcweir virtual OUString SAL_CALL getNodeName() 100cdf0e10cSrcweir throw (RuntimeException); 101cdf0e10cSrcweir virtual OUString SAL_CALL getNodeValue() 102cdf0e10cSrcweir throw (RuntimeException); 103cdf0e10cSrcweir virtual OUString SAL_CALL getLocalName() 104cdf0e10cSrcweir throw (RuntimeException); 105cdf0e10cSrcweir 106cdf0e10cSrcweir // --- delegation for XNde base. appendChild(const Reference<XNode> & newChild)107cdf0e10cSrcweir virtual Reference< XNode > SAL_CALL appendChild(const Reference< XNode >& newChild) 108cdf0e10cSrcweir throw (RuntimeException, DOMException) 109cdf0e10cSrcweir { 110cdf0e10cSrcweir return CNode::appendChild(newChild); 111cdf0e10cSrcweir } cloneNode(sal_Bool deep)112cdf0e10cSrcweir virtual Reference< XNode > SAL_CALL cloneNode(sal_Bool deep) 113cdf0e10cSrcweir throw (RuntimeException) 114cdf0e10cSrcweir { 115cdf0e10cSrcweir return CNode::cloneNode(deep); 116cdf0e10cSrcweir } getAttributes()117cdf0e10cSrcweir virtual Reference< XNamedNodeMap > SAL_CALL getAttributes() 118cdf0e10cSrcweir throw (RuntimeException) 119cdf0e10cSrcweir { 120cdf0e10cSrcweir return CNode::getAttributes(); 121cdf0e10cSrcweir } getChildNodes()122cdf0e10cSrcweir virtual Reference< XNodeList > SAL_CALL getChildNodes() 123cdf0e10cSrcweir throw (RuntimeException) 124cdf0e10cSrcweir { 125cdf0e10cSrcweir return CNode::getChildNodes(); 126cdf0e10cSrcweir } getFirstChild()127cdf0e10cSrcweir virtual Reference< XNode > SAL_CALL getFirstChild() 128cdf0e10cSrcweir throw (RuntimeException) 129cdf0e10cSrcweir { 130cdf0e10cSrcweir return CNode::getFirstChild(); 131cdf0e10cSrcweir } getLastChild()132cdf0e10cSrcweir virtual Reference< XNode > SAL_CALL getLastChild() 133cdf0e10cSrcweir throw (RuntimeException) 134cdf0e10cSrcweir { 135cdf0e10cSrcweir return CNode::getLastChild(); 136cdf0e10cSrcweir } 137cdf0e10cSrcweir virtual OUString SAL_CALL getNamespaceURI() 138cdf0e10cSrcweir throw (RuntimeException); getNextSibling()139cdf0e10cSrcweir virtual Reference< XNode > SAL_CALL getNextSibling() 140cdf0e10cSrcweir throw (RuntimeException) 141cdf0e10cSrcweir { 142cdf0e10cSrcweir return CNode::getNextSibling(); 143cdf0e10cSrcweir } getNodeType()144cdf0e10cSrcweir virtual NodeType SAL_CALL getNodeType() 145cdf0e10cSrcweir throw (RuntimeException) 146cdf0e10cSrcweir { 147cdf0e10cSrcweir return CNode::getNodeType(); 148cdf0e10cSrcweir } getOwnerDocument()149cdf0e10cSrcweir virtual Reference< XDocument > SAL_CALL getOwnerDocument() 150cdf0e10cSrcweir throw (RuntimeException) 151cdf0e10cSrcweir { 152cdf0e10cSrcweir return CNode::getOwnerDocument(); 153cdf0e10cSrcweir } getParentNode()154cdf0e10cSrcweir virtual Reference< XNode > SAL_CALL getParentNode() 155cdf0e10cSrcweir throw (RuntimeException) 156cdf0e10cSrcweir { 157cdf0e10cSrcweir return CNode::getParentNode(); 158cdf0e10cSrcweir } 159cdf0e10cSrcweir virtual OUString SAL_CALL getPrefix() 160cdf0e10cSrcweir throw (RuntimeException); getPreviousSibling()161cdf0e10cSrcweir virtual Reference< XNode > SAL_CALL getPreviousSibling() 162cdf0e10cSrcweir throw (RuntimeException) 163cdf0e10cSrcweir { 164cdf0e10cSrcweir return CNode::getPreviousSibling(); 165cdf0e10cSrcweir } hasAttributes()166cdf0e10cSrcweir virtual sal_Bool SAL_CALL hasAttributes() 167cdf0e10cSrcweir throw (RuntimeException) 168cdf0e10cSrcweir { 169cdf0e10cSrcweir return CNode::hasAttributes(); 170cdf0e10cSrcweir } hasChildNodes()171cdf0e10cSrcweir virtual sal_Bool SAL_CALL hasChildNodes() 172cdf0e10cSrcweir throw (RuntimeException) 173cdf0e10cSrcweir { 174cdf0e10cSrcweir return CNode::hasChildNodes(); 175cdf0e10cSrcweir } insertBefore(const Reference<XNode> & newChild,const Reference<XNode> & refChild)176cdf0e10cSrcweir virtual Reference< XNode > SAL_CALL insertBefore( 177cdf0e10cSrcweir const Reference< XNode >& newChild, const Reference< XNode >& refChild) 178cdf0e10cSrcweir throw (RuntimeException, DOMException) 179cdf0e10cSrcweir { 180cdf0e10cSrcweir return CNode::insertBefore(newChild, refChild); 181cdf0e10cSrcweir } isSupported(const OUString & feature,const OUString & ver)182cdf0e10cSrcweir virtual sal_Bool SAL_CALL isSupported(const OUString& feature, const OUString& ver) 183cdf0e10cSrcweir throw (RuntimeException) 184cdf0e10cSrcweir { 185cdf0e10cSrcweir return CNode::isSupported(feature, ver); 186cdf0e10cSrcweir } normalize()187cdf0e10cSrcweir virtual void SAL_CALL normalize() 188cdf0e10cSrcweir throw (RuntimeException) 189cdf0e10cSrcweir { 190cdf0e10cSrcweir CNode::normalize(); 191cdf0e10cSrcweir } removeChild(const Reference<XNode> & oldChild)192cdf0e10cSrcweir virtual Reference< XNode > SAL_CALL removeChild(const Reference< XNode >& oldChild) 193cdf0e10cSrcweir throw (RuntimeException, DOMException) 194cdf0e10cSrcweir { 195cdf0e10cSrcweir return CNode::removeChild(oldChild); 196cdf0e10cSrcweir } replaceChild(const Reference<XNode> & newChild,const Reference<XNode> & oldChild)197cdf0e10cSrcweir virtual Reference< XNode > SAL_CALL replaceChild( 198cdf0e10cSrcweir const Reference< XNode >& newChild, const Reference< XNode >& oldChild) 199cdf0e10cSrcweir throw (RuntimeException, DOMException) 200cdf0e10cSrcweir { 201cdf0e10cSrcweir return CNode::replaceChild(newChild, oldChild); 202cdf0e10cSrcweir } setNodeValue(const OUString & nodeValue)203cdf0e10cSrcweir virtual void SAL_CALL setNodeValue(const OUString& nodeValue) 204cdf0e10cSrcweir throw (RuntimeException, DOMException) 205cdf0e10cSrcweir { 206cdf0e10cSrcweir return setValue(nodeValue); 207cdf0e10cSrcweir } 208cdf0e10cSrcweir virtual void SAL_CALL setPrefix(const OUString& prefix) 209cdf0e10cSrcweir throw (RuntimeException, DOMException); 210cdf0e10cSrcweir 211cdf0e10cSrcweir }; 212cdf0e10cSrcweir } 213cdf0e10cSrcweir 214cdf0e10cSrcweir #endif 215