DOM_NamedNodeMap.cpp
上传用户:zhuqijet
上传日期:2013-06-25
资源大小:10074k
文件大小:7k
源码类别:

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 1999-2002 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.  * $Id: DOM_NamedNodeMap.cpp,v 1.3 2002/11/04 15:04:44 tng Exp $
  58.  */
  59. #include "DOM_Node.hpp"
  60. #include "DOM_NamedNodeMap.hpp"
  61. #include "NamedNodeMapImpl.hpp"
  62. #include "ElementImpl.hpp"
  63. XERCES_CPP_NAMESPACE_BEGIN
  64. const unsigned short DOM_NamedNodeMap::NNM_ELEMENT  = 0;
  65. const unsigned short DOM_NamedNodeMap::NNM_OTHER    = 1;
  66. DOM_NamedNodeMap::DOM_NamedNodeMap()
  67. {
  68.     fImpl = 0;
  69. flagElem = NNM_OTHER;
  70. };
  71. DOM_NamedNodeMap::DOM_NamedNodeMap(const DOM_NamedNodeMap & other)
  72. {
  73.     this->fImpl = other.fImpl;
  74. this->flagElem = other.flagElem;
  75. (other.flagElem == NNM_ELEMENT) ? NodeImpl::addRef((NodeImpl *)fImpl) :
  76.                                   NamedNodeMapImpl::addRef((NamedNodeMapImpl *)fImpl);
  77. };
  78. DOM_NamedNodeMap::DOM_NamedNodeMap(NamedNodeMapImpl *impl)
  79. {
  80. fImpl = impl;
  81. flagElem = NNM_OTHER;
  82. if (impl != null)
  83. NamedNodeMapImpl::addRef((NamedNodeMapImpl *)fImpl);
  84. };
  85. DOM_NamedNodeMap::DOM_NamedNodeMap(NodeImpl *impl)
  86. {
  87. fImpl = impl;
  88. flagElem = NNM_ELEMENT;
  89. NodeImpl::addRef((NodeImpl *)fImpl);
  90. }
  91. DOM_NamedNodeMap::~DOM_NamedNodeMap()
  92. {
  93. (flagElem == NNM_OTHER) ? NamedNodeMapImpl::removeRef((NamedNodeMapImpl *)fImpl) :
  94.                           NodeImpl::removeRef((NodeImpl *)fImpl);
  95. };
  96. bool DOM_NamedNodeMap::operator == (const DOM_NamedNodeMap &other) const
  97. {
  98.     return this->fImpl == other.fImpl;
  99. };
  100. bool DOM_NamedNodeMap::operator != (const DOM_NamedNodeMap &other) const
  101. {
  102.     return this->fImpl != other.fImpl;
  103. };
  104. bool DOM_NamedNodeMap::operator == (const DOM_NullPtr *p) const
  105. {
  106.     return this->fImpl == 0;
  107. };
  108. bool DOM_NamedNodeMap::operator != (const DOM_NullPtr *p) const
  109. {
  110.     return this->fImpl != 0;
  111. };
  112. DOM_NamedNodeMap & DOM_NamedNodeMap::operator = (const DOM_NamedNodeMap & other)
  113. {
  114.     if (this->fImpl != other.fImpl)
  115.     {
  116. // update reference counts and change pointers
  117.         (flagElem == NNM_OTHER) ? NamedNodeMapImpl::removeRef((NamedNodeMapImpl *)fImpl) : NodeImpl::removeRef((NodeImpl *)fImpl);
  118.         this->fImpl = other.fImpl;
  119. this->flagElem = other.flagElem;
  120.         (flagElem == NNM_OTHER) ? NamedNodeMapImpl::addRef((NamedNodeMapImpl *)fImpl) : NodeImpl::addRef((NodeImpl *)fImpl);
  121.     }
  122.     return *this;
  123. };
  124. DOM_NamedNodeMap & DOM_NamedNodeMap::operator = (const DOM_NullPtr *other)
  125. {
  126.     (flagElem == NNM_OTHER) ? NamedNodeMapImpl::removeRef((NamedNodeMapImpl *)fImpl) : NodeImpl::removeRef((NodeImpl *)fImpl);
  127.     this->fImpl = 0;
  128. this->flagElem = NNM_OTHER;
  129.     return *this;
  130. };
  131. DOM_Node DOM_NamedNodeMap::getNamedItem(const DOMString &name) const
  132. {
  133. return (flagElem == NNM_OTHER) ? DOM_Node(((NamedNodeMapImpl *)fImpl)->getNamedItem(name)) :
  134.                                  DOM_Node(((ElementImpl *)fImpl)->NNM_getNamedItem(name));
  135. };
  136. DOM_Node DOM_NamedNodeMap::setNamedItem(DOM_Node arg)
  137. {
  138. return (flagElem == NNM_OTHER) ? DOM_Node(((NamedNodeMapImpl *)fImpl)->setNamedItem(arg.fImpl)) :
  139.                                  DOM_Node(((ElementImpl *)fImpl)->NNM_setNamedItem(arg.fImpl));
  140. };
  141. DOM_Node DOM_NamedNodeMap::removeNamedItem(const DOMString &name)
  142. {
  143. return (flagElem == NNM_OTHER) ? DOM_Node(((NamedNodeMapImpl *)fImpl)->removeNamedItem(name)) :
  144.                                  DOM_Node(((ElementImpl *)fImpl)->NNM_removeNamedItem(name));
  145. };
  146. DOM_Node DOM_NamedNodeMap::item(unsigned int index) const
  147. {
  148. return (flagElem == NNM_OTHER) ? DOM_Node(((NamedNodeMapImpl *)fImpl)->item(index)) :
  149.                                  DOM_Node(((ElementImpl *)fImpl)->NNM_item(index));
  150. };
  151. unsigned int DOM_NamedNodeMap::getLength() const
  152. {
  153. return (flagElem == NNM_OTHER) ? ((NamedNodeMapImpl *)fImpl)->getLength() :
  154.                                  ((ElementImpl *)fImpl)->NNM_getLength();
  155. };
  156. //Introduced in DOM Level 2
  157. DOM_Node DOM_NamedNodeMap::getNamedItemNS(const DOMString &namespaceURI,
  158. const DOMString &localName)
  159. {
  160. return (flagElem == NNM_OTHER) ? DOM_Node(((NamedNodeMapImpl *)fImpl)->getNamedItemNS(namespaceURI, localName)) :
  161.  DOM_Node(((ElementImpl *)fImpl)->NNM_getNamedItemNS(namespaceURI, localName));
  162. }
  163. DOM_Node DOM_NamedNodeMap::setNamedItemNS(DOM_Node arg)
  164. {
  165.     return (flagElem == NNM_OTHER) ? DOM_Node(((NamedNodeMapImpl *)fImpl)->setNamedItemNS(arg.fImpl)) :
  166.                                  DOM_Node(((ElementImpl *)fImpl)->NNM_setNamedItemNS(arg.fImpl));
  167. }
  168. DOM_Node DOM_NamedNodeMap::removeNamedItemNS(const DOMString &namespaceURI,
  169. const DOMString &localName)
  170. {
  171. return (flagElem == NNM_OTHER) ? DOM_Node(((NamedNodeMapImpl *)fImpl)->removeNamedItemNS(namespaceURI, localName)) :
  172.                                      DOM_Node(((ElementImpl *)fImpl)->NNM_removeNamedItemNS(namespaceURI, localName));
  173. }
  174. XERCES_CPP_NAMESPACE_END