IDEntityImpl.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) 2001 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) 2001, 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: IDEntityImpl.cpp,v 1.3 2001/12/07 01:37:24 tng Exp $
  58.  */
  59. #include "IDOM_DOMException.hpp"
  60. #include "IDOM_Node.hpp"
  61. #include "IDEntityImpl.hpp"
  62. #include "IDDocumentImpl.hpp"
  63. #include "IDOM_EntityReference.hpp"
  64. IDEntityImpl::IDEntityImpl(IDOM_Document *ownerDoc, const XMLCh *eName)
  65.    :  fNode(ownerDoc), fParent(ownerDoc)
  66. {
  67.     fRefEntity  = 0;
  68.     fName        = ((IDDocumentImpl *)ownerDoc)->getPooledString(eName);
  69.     fNode.isReadOnly(true);
  70. };
  71. IDEntityImpl::IDEntityImpl(const IDEntityImpl &other, bool deep)
  72.     : fNode(other.fNode), fParent(other.fParent)
  73. {
  74.     fName            = other.fName;
  75.     if (deep)
  76.         fParent.cloneChildren(&other);
  77.     fPublicId        = other.fPublicId;
  78.     fSystemId        = other.fSystemId;
  79.     fNotationName    = other.fNotationName;
  80.     fRefEntity       = other.fRefEntity;
  81.     fNode.isReadOnly(true);
  82. };
  83. IDEntityImpl::~IDEntityImpl() {
  84. };
  85. IDOM_Node *IDEntityImpl::cloneNode(bool deep) const
  86. {
  87.     return new (getOwnerDocument()) IDEntityImpl(*this, deep);
  88. };
  89. const XMLCh * IDEntityImpl::getNodeName() const {
  90.     return fName;
  91. };
  92. short IDEntityImpl::getNodeType() const {
  93.     return IDOM_Node::ENTITY_NODE;
  94. };
  95. const XMLCh * IDEntityImpl::getNotationName() const
  96. {
  97.     return fNotationName;
  98. };
  99. const XMLCh * IDEntityImpl::getPublicId() const {
  100.     return fPublicId;
  101. };
  102. const XMLCh * IDEntityImpl::getSystemId() const
  103. {
  104.     return fSystemId;
  105. };
  106. void IDEntityImpl::setNodeValue(const XMLCh *arg)
  107. {
  108.     fNode.setNodeValue(arg);
  109. };
  110. void IDEntityImpl::setNotationName(const XMLCh *arg)
  111. {
  112.     IDDocumentImpl *doc = (IDDocumentImpl *)this->getOwnerDocument();
  113.     fNotationName = doc->cloneString(arg);
  114. }
  115. void IDEntityImpl::setPublicId(const XMLCh *arg)
  116. {
  117.     IDDocumentImpl *doc = (IDDocumentImpl *)this->getOwnerDocument();
  118.     fPublicId = doc->cloneString(arg);
  119. }
  120. void IDEntityImpl::setSystemId(const XMLCh *arg)
  121. {
  122.     IDDocumentImpl *doc = (IDDocumentImpl *)this->getOwnerDocument();
  123.     fSystemId = doc->cloneString(arg);
  124. }
  125. void   IDEntityImpl::setEntityRef(IDOM_EntityReference* other)
  126. {
  127. fRefEntity = other;
  128. }
  129. IDOM_EntityReference* IDEntityImpl::getEntityRef() const
  130. {
  131. return fRefEntity;
  132. }
  133. void IDEntityImpl::cloneEntityRefTree() const
  134. {
  135.     // cast off const.  This method is const because it is
  136.     //   called from a bunch of logically const methods, like
  137.     //   getFirstChild().
  138.     IDEntityImpl *ncThis = (IDEntityImpl *)this;
  139.     //lazily clone the entityRef tree to this entity
  140.     if (fParent.fFirstChild != 0)
  141.         return;
  142.     if (!fRefEntity)
  143.         return;
  144.     ncThis->fNode.isReadOnly(false);
  145.     ncThis->fParent.cloneChildren(fRefEntity);
  146.     ncThis->fNode.isReadOnly(true);
  147. }
  148. IDOM_Node * IDEntityImpl::getFirstChild() const
  149. {
  150.     cloneEntityRefTree();
  151. return fParent.fFirstChild;
  152. };
  153. IDOM_Node *   IDEntityImpl::getLastChild() const
  154. {
  155. cloneEntityRefTree();
  156. return fParent.getLastChild();
  157. }
  158. IDOM_NodeList* IDEntityImpl::getChildNodes() const
  159. {
  160. cloneEntityRefTree();
  161. return this->fParent.getChildNodes();
  162. }
  163. bool IDEntityImpl::hasChildNodes() const
  164. {
  165. cloneEntityRefTree();
  166. return fParent.fFirstChild!=0;
  167. }
  168. //
  169. //  Functions inherited from Node
  170. //
  171.            IDOM_Node          *IDEntityImpl::appendChild(IDOM_Node *newChild)        {return fParent.appendChild (newChild); };
  172.            IDOM_NamedNodeMap  *IDEntityImpl::getAttributes() const          {return fNode.getAttributes (); };
  173.      const XMLCh              *IDEntityImpl::getLocalName() const                    {return fNode.getLocalName (); };
  174.      const XMLCh              *IDEntityImpl::getNamespaceURI() const                 {return fNode.getNamespaceURI (); };
  175.            IDOM_Node          *IDEntityImpl::getNextSibling() const                  {return fNode.getNextSibling (); };
  176.      const XMLCh              *IDEntityImpl::getNodeValue() const                    {return fNode.getNodeValue (); };
  177.            IDOM_Document      *IDEntityImpl::getOwnerDocument() const                {return fNode.getOwnerDocument (); };
  178.      const XMLCh              *IDEntityImpl::getPrefix() const                       {return fNode.getPrefix (); };
  179.            IDOM_Node          *IDEntityImpl::getParentNode() const                   {return fNode.getParentNode (); };
  180.            IDOM_Node          *IDEntityImpl::getPreviousSibling() const              {return fNode.getPreviousSibling (); };
  181.            IDOM_Node          *IDEntityImpl::insertBefore(IDOM_Node *newChild, IDOM_Node *refChild)
  182.                                                                             {return fParent.insertBefore (newChild, refChild); };
  183.            void                IDEntityImpl::normalize()                             {fNode.normalize (); };
  184.            IDOM_Node          *IDEntityImpl::removeChild(IDOM_Node *oldChild)        {return fParent.removeChild (oldChild); };
  185.            IDOM_Node          *IDEntityImpl::replaceChild(IDOM_Node *newChild, IDOM_Node *oldChild)
  186.                                                                             {return fParent.replaceChild (newChild, oldChild); };
  187.            bool                IDEntityImpl::supports(const XMLCh *feature, const XMLCh *version) const
  188.                                                                             {return fNode.supports (feature, version); };
  189.            void                IDEntityImpl::setPrefix(const XMLCh  *prefix)         {fNode.setPrefix(prefix); };