DOM_Node.cpp
上传用户:huihehuasu
上传日期:2007-01-10
资源大小:6948k
文件大小:8k
源码类别:

xml/soap/webservice

开发平台:

C/C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  * 
  4.  * Copyright (c) 1999-2000 The Apache Software Foundation.  All rights
  5.  * reserved.
  6.  * 
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions
  9.  * are met:
  10.  * 
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions and the following disclaimer. 
  13.  * 
  14.  * 2. Redistributions in binary form must reproduce the above copyright
  15.  *    notice, this list of conditions and the following disclaimer in
  16.  *    the documentation and/or other materials provided with the
  17.  *    distribution.
  18.  * 
  19.  * 3. The end-user documentation included with the redistribution,
  20.  *    if any, must include the following acknowledgment:  
  21.  *       "This product includes software developed by the
  22.  *        Apache Software Foundation (http://www.apache.org/)."
  23.  *    Alternately, this acknowledgment may appear in the software itself,
  24.  *    if and wherever such third-party acknowledgments normally appear.
  25.  * 
  26.  * 4. The names "Xerces" and "Apache Software Foundation" must
  27.  *    not be used to endorse or promote products derived from this
  28.  *    software without prior written permission. For written 
  29.  *    permission, please contact apache@apache.org.
  30.  * 
  31.  * 5. Products derived from this software may not be called "Apache",
  32.  *    nor may "Apache" appear in their name, without prior written
  33.  *    permission of the Apache Software Foundation.
  34.  * 
  35.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  36.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  37.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  38.  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  39.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  40.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  41.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  42.  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  43.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  44.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  45.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  46.  * SUCH DAMAGE.
  47.  * ====================================================================
  48.  * 
  49.  * This software consists of voluntary contributions made by many
  50.  * individuals on behalf of the Apache Software Foundation, and was
  51.  * originally based on software copyright (c) 1999, International
  52.  * Business Machines, Inc., http://www.ibm.com .  For more information
  53.  * on the Apache Software Foundation, please see
  54.  * <http://www.apache.org/>.
  55.  */
  56. /*
  57.  * $Log: DOM_Node.cpp,v $
  58.  * Revision 1.7  2000/06/14 21:08:07  andyh
  59.  * DOM attribute/named nodemaps: Fix a couple of null ptr problems.
  60.  * Joe Polastre.
  61.  *
  62.  * Revision 1.6  2000/06/07 22:49:40  andyh
  63.  * Memory usage reduction:  DOM NamedNodeMaps for attributes are allocated
  64.  * only for elements that actually have attributes.  By Joe Polastre.
  65.  *
  66.  * Revision 1.5  2000/03/02 19:53:56  roddey
  67.  * This checkin includes many changes done while waiting for the
  68.  * 1.1.0 code to be finished. I can't list them all here, but a list is
  69.  * available elsewhere.
  70.  *
  71.  * Revision 1.4  2000/02/06 07:47:30  rahulj
  72.  * Year 2K copyright swat.
  73.  *
  74.  * Revision 1.3  2000/01/05 01:16:07  andyh
  75.  * DOM Level 2 core, namespace support added.
  76.  *
  77.  * Revision 1.2  1999/12/03 00:11:23  andyh
  78.  * Added DOMString.clone() to node parameters in and out of the DOM,
  79.  * where they had been missed.
  80.  *
  81.  * DOMString::rawBuffer, removed incorrect assumptions about it
  82.  * being null terminated.
  83.  *
  84.  * Revision 1.1.1.1  1999/11/09 01:08:59  twl
  85.  * Initial checkin
  86.  *
  87.  * Revision 1.3  1999/11/08 20:44:19  rahul
  88.  * Swat for adding in Product name and CVS comment log variable.
  89.  *
  90.  */
  91. #include "DOM_Node.hpp"
  92. #include "DOM_NodeList.hpp"
  93. #include "DOM_NamedNodeMap.hpp"
  94. #include "DOM_Document.hpp"
  95. #include "NodeImpl.hpp"
  96. #include <assert.h>
  97. DOM_Node::DOM_Node() 
  98. {
  99.     fImpl = null;
  100. };
  101. DOM_Node::DOM_Node(NodeImpl *impl) 
  102. {
  103.     fImpl = impl;
  104.     RefCountedImpl::addRef(fImpl);
  105. };
  106. DOM_Node::DOM_Node(const DOM_Node &other)
  107. {
  108. this->fImpl = other.fImpl;
  109.     RefCountedImpl::addRef(fImpl);
  110. };
  111. DOM_Node & DOM_Node::operator = (const DOM_Node &other)
  112. {
  113.     if (this->fImpl != other.fImpl)
  114.     {
  115.         RefCountedImpl::removeRef(this->fImpl);
  116.         this->fImpl = other.fImpl;
  117.         RefCountedImpl::addRef(this->fImpl);
  118.     }
  119.     return *this;
  120. };
  121. DOM_Node & DOM_Node::operator = (const DOM_NullPtr *other)
  122. {
  123.     RefCountedImpl::removeRef(this->fImpl);
  124.     this->fImpl = 0;
  125.     return *this;
  126. };
  127. DOM_Node::~DOM_Node() 
  128. {
  129.     RefCountedImpl::removeRef (this->fImpl);
  130.     fImpl = 0;
  131. };
  132. //
  133. //      Comparison operators.  Equivalent of Java object reference ==
  134. //                                         Null references compare ==.
  135. //
  136. bool       DOM_Node::operator != (const DOM_Node & other) const
  137. {
  138.     return this->fImpl != other.fImpl;
  139. };
  140. bool       DOM_Node::operator == (const DOM_Node & other) const
  141. {
  142.     return this->fImpl == other.fImpl;
  143. };
  144. bool       DOM_Node::operator != (const DOM_NullPtr * other) const
  145. {
  146.     return this->fImpl != 0;
  147. };
  148. bool       DOM_Node::operator == (const DOM_NullPtr * other) const
  149. {
  150.     return this->fImpl == 0;
  151. };
  152. DOM_Node   DOM_Node::appendChild(const DOM_Node &newChild)
  153. {
  154.     return DOM_Node(fImpl->appendChild(newChild.fImpl));
  155. };
  156.  
  157.   
  158. DOM_Node      DOM_Node::cloneNode(bool deep) const 
  159. {
  160.     return DOM_Node(fImpl->cloneNode(deep));
  161. };
  162. DOMString  DOM_Node::getNodeName()  const 
  163. {
  164.     return fImpl->getNodeName().clone();
  165. };
  166.   
  167. DOMString  DOM_Node::getNodeValue() const
  168. {
  169.     return fImpl->getNodeValue().clone();
  170. };
  171.   
  172. short   DOM_Node::getNodeType() const
  173. {
  174.     return fImpl->getNodeType();
  175. };
  176.   
  177. DOM_Node      DOM_Node::getParentNode() const
  178. {
  179.     return DOM_Node(fImpl->getParentNode());
  180. };
  181.   
  182. DOM_NodeList      DOM_Node::getChildNodes() const
  183. {
  184.     return DOM_NodeList(fImpl);
  185. };
  186.  
  187.   
  188. DOM_Node      DOM_Node::getFirstChild() const
  189. {
  190.     return DOM_Node(fImpl->getFirstChild());
  191. };
  192.   
  193. DOM_Node      DOM_Node::getLastChild() const
  194. {
  195.     return DOM_Node(fImpl->getLastChild());
  196. };
  197.  
  198.   
  199. DOM_Node      DOM_Node::getPreviousSibling() const
  200. {
  201.     return DOM_Node(fImpl->getPreviousSibling());
  202. };
  203.  
  204.   
  205. DOM_Node       DOM_Node::getNextSibling() const
  206. {
  207.     return DOM_Node(fImpl->getNextSibling());
  208. };
  209.   
  210. void          *DOM_Node::getUserData() const
  211. {
  212.     return fImpl->getUserData ();
  213. }
  214.   
  215. DOM_NamedNodeMap DOM_Node::getAttributes() const
  216. {
  217. if (getNodeType() == ELEMENT_NODE)
  218. return (fImpl->getAttributes() == null) ? DOM_NamedNodeMap(fImpl) : DOM_NamedNodeMap(fImpl->getAttributes());
  219. else
  220. return DOM_NamedNodeMap();
  221. };
  222.   
  223. DOM_Document   DOM_Node::getOwnerDocument() const
  224. {
  225.     return fImpl->getOwnerDocument();
  226. };
  227.   
  228. bool           DOM_Node::hasChildNodes() const
  229. {
  230.     return fImpl->hasChildNodes();
  231. };
  232.   
  233. DOM_Node       DOM_Node::insertBefore(const DOM_Node &newChild, const DOM_Node &refChild){
  234.     return DOM_Node(fImpl->insertBefore(newChild.fImpl, refChild.fImpl));
  235. };
  236. bool               DOM_Node::isNull() const
  237. {
  238.     return fImpl == null;
  239. };
  240. DOM_Node       DOM_Node::replaceChild(const DOM_Node &newChild, const DOM_Node &oldChild){
  241.     return DOM_Node(fImpl->replaceChild(newChild.fImpl, oldChild.fImpl));
  242. };
  243.   
  244. DOM_Node       DOM_Node::removeChild(const DOM_Node &oldChild){
  245.     return DOM_Node(fImpl->removeChild(oldChild.fImpl));
  246. };
  247.   
  248. void           DOM_Node::setNodeValue(const DOMString &nodeValue)
  249. {
  250.     fImpl->setNodeValue(nodeValue);
  251. };
  252. void            DOM_Node::setUserData(void *p)
  253. {
  254.     fImpl->setUserData(p);
  255. }
  256. //Introduced in DOM Level 2
  257. void              DOM_Node::normalize()
  258. {
  259.     fImpl->normalize();
  260. };
  261. bool              DOM_Node::supports(const DOMString &feature,
  262.                        const DOMString &version) const
  263. {
  264.     return fImpl->supports(feature, version);
  265. }
  266. DOMString         DOM_Node::getNamespaceURI() const
  267. {
  268.     return fImpl->getNamespaceURI().clone();
  269. }
  270. DOMString         DOM_Node::getPrefix() const
  271. {
  272.     return fImpl->getPrefix().clone();
  273. }
  274. DOMString         DOM_Node::getLocalName() const
  275. {
  276.     return fImpl->getLocalName().clone();
  277. }
  278. void              DOM_Node::setPrefix(const DOMString &prefix)
  279. {
  280.     fImpl->setPrefix(prefix);
  281. }