DOM_NamedNodeMap.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_NamedNodeMap.cpp,v $
  58.  * Revision 1.8  2000/06/07 22:49:40  andyh
  59.  * Memory usage reduction:  DOM NamedNodeMaps for attributes are allocated
  60.  * only for elements that actually have attributes.  By Joe Polastre.
  61.  *
  62.  * Revision 1.7  2000/03/11 03:19:12  chchou
  63.  * Fix bug # 19, add const keyword to API
  64.  *
  65.  * Revision 1.6  2000/03/02 19:53:56  roddey
  66.  * This checkin includes many changes done while waiting for the
  67.  * 1.1.0 code to be finished. I can't list them all here, but a list is
  68.  * available elsewhere.
  69.  *
  70.  * Revision 1.5  2000/02/06 07:47:30  rahulj
  71.  * Year 2K copyright swat.
  72.  *
  73.  * Revision 1.4  2000/02/04 01:49:28  aruna1
  74.  * TreeWalker and NodeIterator changes
  75.  *
  76.  * Revision 1.3  2000/01/22 01:38:29  andyh
  77.  * Remove compiler warnings in DOM impl classes
  78.  *
  79.  * Revision 1.2  2000/01/05 01:16:07  andyh
  80.  * DOM Level 2 core, namespace support added.
  81.  *
  82.  * Revision 1.1.1.1  1999/11/09 01:08:59  twl
  83.  * Initial checkin
  84.  *
  85.  * Revision 1.3  1999/11/08 20:44:18  rahul
  86.  * Swat for adding in Product name and CVS comment log variable.
  87.  *
  88.  */
  89. #include "DOM_Node.hpp"
  90. #include "DOM_NamedNodeMap.hpp"
  91. #include "NamedNodeMapImpl.hpp"
  92. #include "ElementImpl.hpp"
  93. const unsigned short DOM_NamedNodeMap::NNM_ELEMENT  = 0;
  94. const unsigned short DOM_NamedNodeMap::NNM_OTHER    = 1;
  95. DOM_NamedNodeMap::DOM_NamedNodeMap()
  96. {
  97.     fImpl = 0;
  98. flagElem = NNM_OTHER;
  99. };
  100. DOM_NamedNodeMap::DOM_NamedNodeMap(const DOM_NamedNodeMap & other)
  101. {
  102.     this->fImpl = other.fImpl;
  103. this->flagElem = other.flagElem;
  104. (other.flagElem == NNM_ELEMENT) ? NodeImpl::addRef((NodeImpl *)fImpl) :
  105.                                   NamedNodeMapImpl::addRef((NamedNodeMapImpl *)fImpl);
  106. };
  107. DOM_NamedNodeMap::DOM_NamedNodeMap(NamedNodeMapImpl *impl)
  108. {
  109. fImpl = impl;
  110. flagElem = NNM_OTHER;
  111. if (impl != null)
  112. NamedNodeMapImpl::addRef((NamedNodeMapImpl *)fImpl);
  113. };
  114. DOM_NamedNodeMap::DOM_NamedNodeMap(NodeImpl *impl)
  115. {
  116. fImpl = impl;
  117. flagElem = NNM_ELEMENT;
  118. NodeImpl::addRef((NodeImpl *)fImpl);
  119. }
  120. DOM_NamedNodeMap::~DOM_NamedNodeMap() 
  121. {
  122. (flagElem == NNM_OTHER) ? NamedNodeMapImpl::removeRef((NamedNodeMapImpl *)fImpl) : 
  123.                           NodeImpl::removeRef((NodeImpl *)fImpl);
  124. };
  125. bool DOM_NamedNodeMap::operator == (const DOM_NamedNodeMap &other) const
  126. {
  127.     return this->fImpl == other.fImpl;
  128. };
  129. bool DOM_NamedNodeMap::operator != (const DOM_NamedNodeMap &other) const
  130. {
  131.     return this->fImpl != other.fImpl;
  132. };
  133. bool DOM_NamedNodeMap::operator == (const DOM_NullPtr *p) const
  134. {
  135.     return this->fImpl == 0;
  136. };
  137. bool DOM_NamedNodeMap::operator != (const DOM_NullPtr *p) const
  138. {
  139.     return this->fImpl != 0;
  140. };
  141. DOM_NamedNodeMap & DOM_NamedNodeMap::operator = (const DOM_NamedNodeMap & other)
  142. {
  143.     if (this->fImpl != other.fImpl) 
  144.     {
  145. // update reference counts and change pointers
  146.         (flagElem == NNM_OTHER) ? NamedNodeMapImpl::removeRef((NamedNodeMapImpl *)fImpl) : NodeImpl::removeRef((NodeImpl *)fImpl);
  147.         this->fImpl = other.fImpl;
  148. this->flagElem = other.flagElem;
  149.         (flagElem == NNM_OTHER) ? NamedNodeMapImpl::addRef((NamedNodeMapImpl *)fImpl) : NodeImpl::addRef((NodeImpl *)fImpl);
  150.     }
  151.     return *this;
  152. };
  153. DOM_NamedNodeMap & DOM_NamedNodeMap::operator = (const DOM_NullPtr *other)
  154. {
  155.     
  156.     (flagElem == NNM_OTHER) ? NamedNodeMapImpl::removeRef((NamedNodeMapImpl *)fImpl) : NodeImpl::removeRef((NodeImpl *)fImpl);
  157.     this->fImpl = 0;
  158. this->flagElem = NNM_OTHER;
  159.     return *this;
  160. };
  161. DOM_Node DOM_NamedNodeMap::getNamedItem(const DOMString &name) const
  162. {
  163. return (flagElem == NNM_OTHER) ? DOM_Node(((NamedNodeMapImpl *)fImpl)->getNamedItem(name)) : 
  164.                                  DOM_Node(((ElementImpl *)fImpl)->NNM_getNamedItem(name));
  165. };
  166. DOM_Node DOM_NamedNodeMap::setNamedItem(DOM_Node arg)
  167. {
  168. return (flagElem == NNM_OTHER) ? DOM_Node(((NamedNodeMapImpl *)fImpl)->setNamedItem(arg.fImpl)) : 
  169.                                  DOM_Node(((ElementImpl *)fImpl)->NNM_setNamedItem(arg.fImpl));
  170. };
  171. DOM_Node DOM_NamedNodeMap::removeNamedItem(const DOMString &name)
  172. {
  173. return (flagElem == NNM_OTHER) ? DOM_Node(((NamedNodeMapImpl *)fImpl)->removeNamedItem(name)) : 
  174.                                  DOM_Node(((ElementImpl *)fImpl)->NNM_removeNamedItem(name));
  175. };
  176. DOM_Node DOM_NamedNodeMap::item(unsigned int index) const
  177. {
  178. return (flagElem == NNM_OTHER) ? DOM_Node(((NamedNodeMapImpl *)fImpl)->item(index)) : 
  179.                                  DOM_Node(((ElementImpl *)fImpl)->NNM_item(index));
  180. };
  181. unsigned int DOM_NamedNodeMap::getLength() const
  182. {
  183. return (flagElem == NNM_OTHER) ? ((NamedNodeMapImpl *)fImpl)->getLength() : 
  184.                                  ((ElementImpl *)fImpl)->NNM_getLength();
  185. };
  186. //Introduced in DOM Level 2
  187. DOM_Node DOM_NamedNodeMap::getNamedItemNS(const DOMString &namespaceURI,
  188. const DOMString &localName)
  189. {
  190. return (flagElem == NNM_OTHER) ? DOM_Node(((NamedNodeMapImpl *)fImpl)->getNamedItemNS(namespaceURI, localName)) :
  191.  DOM_Node(((ElementImpl *)fImpl)->NNM_getNamedItemNS(namespaceURI, localName));
  192. }
  193. DOM_Node DOM_NamedNodeMap::setNamedItemNS(DOM_Node arg)
  194. {
  195.     return (flagElem == NNM_OTHER) ? DOM_Node(((NamedNodeMapImpl *)fImpl)->setNamedItemNS(arg.fImpl)) :
  196.                                  DOM_Node(((ElementImpl *)fImpl)->NNM_setNamedItemNS(arg.fImpl));
  197. }
  198. DOM_Node DOM_NamedNodeMap::removeNamedItemNS(const DOMString &namespaceURI,
  199. const DOMString &localName)
  200. {
  201. return (flagElem == NNM_OTHER) ? DOM_Node(((NamedNodeMapImpl *)fImpl)->removeNamedItemNS(namespaceURI, localName)) :
  202.                                      DOM_Node(((ElementImpl *)fImpl)->NNM_removeNamedItemNS(namespaceURI, localName));
  203. }