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

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 2001-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) 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: DOMEntityReferenceImpl.cpp,v 1.11 2003/04/30 15:50:22 gareth Exp $
  58.  */
  59. #include "DOMDocumentImpl.hpp"
  60. #include "DOMDocumentTypeImpl.hpp"
  61. #include "DOMEntityImpl.hpp"
  62. #include "DOMEntityReferenceImpl.hpp"
  63. #include "DOMNamedNodeMapImpl.hpp"
  64. #include <xercesc/dom/DOMException.hpp>
  65. #include <xercesc/dom/DOMNode.hpp>
  66. XERCES_CPP_NAMESPACE_BEGIN
  67. DOMEntityReferenceImpl::DOMEntityReferenceImpl(DOMDocument *ownerDoc,
  68.                                          const XMLCh *entityName)
  69.     : fNode(ownerDoc), fParent(ownerDoc), fBaseURI(0)
  70. {
  71.     fName = ((DOMDocumentImpl *)getOwnerDocument())->getPooledString(entityName);
  72.     // EntityReference behaves as a read-only node, since its contents
  73.     // reflect the Entity it refers to -- but see setNodeName().
  74.     //retrieve the corresponding entity content
  75.     if (ownerDoc) {
  76.         if (ownerDoc->getDoctype()) {
  77.             if (ownerDoc->getDoctype()->getEntities()) {
  78.                 DOMEntityImpl* entity = (DOMEntityImpl*)ownerDoc->getDoctype()->getEntities()->getNamedItem(entityName);
  79.                 if (entity) {
  80.                     fBaseURI = entity->getBaseURI();
  81.                     DOMEntityReference* refEntity = entity->getEntityRef();
  82.                     if (refEntity) {
  83.                         fParent.cloneChildren(refEntity);
  84.                     }
  85.                 }
  86.             }
  87.         }
  88.     }
  89.     fNode.setReadOnly(true, true);
  90. }
  91. DOMEntityReferenceImpl::DOMEntityReferenceImpl(DOMDocument *ownerDoc,
  92.                                          const XMLCh *entityName,
  93.                                          bool cloneChild)
  94.     : fNode(ownerDoc), fParent(ownerDoc), fBaseURI(0)
  95. {
  96.     fName = ((DOMDocumentImpl *)getOwnerDocument())->getPooledString(entityName);
  97.     // EntityReference behaves as a read-only node, since its contents
  98.     // reflect the Entity it refers to -- but see setNodeName().
  99.     //retrieve the corresponding entity content
  100.     if (ownerDoc) {
  101.         if (ownerDoc->getDoctype()) {
  102.             if (ownerDoc->getDoctype()->getEntities()) {
  103.                 DOMEntityImpl* entity = (DOMEntityImpl*)ownerDoc->getDoctype()->getEntities()->getNamedItem(entityName);
  104.                 if (entity) {
  105.                     fBaseURI = entity->getBaseURI();
  106.                     if (cloneChild) {
  107.                         DOMEntityReference* refEntity = entity->getEntityRef();
  108.                         if (refEntity) {
  109.                             fParent.cloneChildren(refEntity);
  110.                         }
  111.                     }
  112.                 }
  113.             }
  114.         }
  115.     }
  116.     fNode.setReadOnly(true, true);
  117. }
  118. DOMEntityReferenceImpl::DOMEntityReferenceImpl(const DOMEntityReferenceImpl &other,
  119.                                          bool deep)
  120.     : fNode(other.fNode), fParent(other.fParent), fChild(other.fChild)
  121. {
  122.     fName = other.fName;
  123.     fBaseURI = other.fBaseURI;
  124.     if (deep)
  125.         fParent.cloneChildren(&other);
  126.     fNode.setReadOnly(true, true);
  127. }
  128. DOMEntityReferenceImpl::~DOMEntityReferenceImpl()
  129. {
  130. }
  131. DOMNode *DOMEntityReferenceImpl::cloneNode(bool deep) const
  132. {
  133.     DOMNode* newNode = new (getOwnerDocument(), DOMDocumentImpl::ENTITY_REFERENCE_OBJECT) DOMEntityReferenceImpl(*this, deep);
  134.     fNode.callUserDataHandlers(DOMUserDataHandler::NODE_CLONED, this, newNode);
  135.     return newNode;
  136. }
  137. const XMLCh * DOMEntityReferenceImpl::getNodeName() const
  138. {
  139.     return fName;
  140. };
  141. short DOMEntityReferenceImpl::getNodeType() const {
  142.     return DOMNode::ENTITY_REFERENCE_NODE;
  143. };
  144. /**
  145. * EntityReferences never have a nodeValue.
  146. * @throws DOMException(NO_MODIFICATION_ALLOWED_ERR)
  147. */
  148. void DOMEntityReferenceImpl::setNodeValue(const XMLCh *x)
  149. {
  150.     fNode.setNodeValue(x);
  151. }
  152. /**
  153. * EntityRef is already, and must be, a read-only node. Attempts to change
  154. * that will throw a NO_MODIFICATION_ALLOWED_ERR DOMException.
  155. * <P>
  156. * If you want to alter its contents, edit the Entity definition.
  157. *
  158. * @param readOnly boolean
  159. */
  160. void DOMEntityReferenceImpl::setReadOnly(bool readOnl,bool deep)
  161. {
  162.     if(((DOMDocumentImpl *)getOwnerDocument())->getErrorChecking() && readOnl==false)
  163.         throw DOMException(DOMException::NO_MODIFICATION_ALLOWED_ERR, 0);
  164.     fNode.setReadOnly(readOnl,deep);
  165. }
  166. void DOMEntityReferenceImpl::release()
  167. {
  168.     if (fNode.isOwned() && !fNode.isToBeReleased())
  169.         throw DOMException(DOMException::INVALID_ACCESS_ERR,0);
  170.     DOMDocumentImpl* doc = (DOMDocumentImpl*) getOwnerDocument();
  171.     if (doc) {
  172.         fNode.callUserDataHandlers(DOMUserDataHandler::NODE_DELETED, 0, 0);
  173.         fParent.release();
  174.         doc->release(this, DOMDocumentImpl::ENTITY_REFERENCE_OBJECT);
  175.     }
  176.     else {
  177.         // shouldn't reach here
  178.         throw DOMException(DOMException::INVALID_ACCESS_ERR,0);
  179.     }
  180. }
  181. const XMLCh* DOMEntityReferenceImpl::getBaseURI() const
  182. {
  183.     return fBaseURI;
  184. }
  185. //
  186. //   Delegate functions from Node to the appropriate implementation.
  187. //
  188.            DOMNode*         DOMEntityReferenceImpl::appendChild(DOMNode *newChild)          {return fParent.appendChild (newChild); };
  189.            DOMNamedNodeMap* DOMEntityReferenceImpl::getAttributes() const                   {return fNode.getAttributes (); };
  190.            DOMNodeList*     DOMEntityReferenceImpl::getChildNodes() const                   {return fParent.getChildNodes (); };
  191.            DOMNode*         DOMEntityReferenceImpl::getFirstChild() const                   {return fParent.getFirstChild (); };
  192.            DOMNode*         DOMEntityReferenceImpl::getLastChild() const                    {return fParent.getLastChild (); };
  193.      const XMLCh*           DOMEntityReferenceImpl::getLocalName() const                    {return fNode.getLocalName (); };
  194.      const XMLCh*           DOMEntityReferenceImpl::getNamespaceURI() const                 {return fNode.getNamespaceURI (); };
  195.            DOMNode*         DOMEntityReferenceImpl::getNextSibling() const                  {return fChild.getNextSibling (); };
  196.      const XMLCh*           DOMEntityReferenceImpl::getNodeValue() const                    {return fNode.getNodeValue (); };
  197.            DOMDocument*     DOMEntityReferenceImpl::getOwnerDocument() const                {return fParent.fOwnerDocument; };
  198.      const XMLCh*           DOMEntityReferenceImpl::getPrefix() const                       {return fNode.getPrefix (); };
  199.            DOMNode*         DOMEntityReferenceImpl::getParentNode() const                   {return fChild.getParentNode (this); };
  200.            DOMNode*         DOMEntityReferenceImpl::getPreviousSibling() const              {return fChild.getPreviousSibling (this); };
  201.            bool             DOMEntityReferenceImpl::hasChildNodes() const                   {return fParent.hasChildNodes (); };
  202.            DOMNode*         DOMEntityReferenceImpl::insertBefore(DOMNode *newChild, DOMNode *refChild)
  203.                                                                                             {return fParent.insertBefore (newChild, refChild); };
  204.            void             DOMEntityReferenceImpl::normalize()                             {fParent.normalize (); };
  205.            DOMNode*         DOMEntityReferenceImpl::removeChild(DOMNode *oldChild)          {return fParent.removeChild (oldChild); };
  206.            DOMNode*         DOMEntityReferenceImpl::replaceChild(DOMNode *newChild, DOMNode *oldChild)
  207.                                                                                             {return fParent.replaceChild (newChild, oldChild); };
  208.            bool             DOMEntityReferenceImpl::isSupported(const XMLCh *feature, const XMLCh *version) const
  209.                                                                                             {return fNode.isSupported (feature, version); };
  210.            void             DOMEntityReferenceImpl::setPrefix(const XMLCh  *prefix)         {fNode.setPrefix(prefix); };
  211.            bool             DOMEntityReferenceImpl::hasAttributes() const                   {return fNode.hasAttributes(); };
  212.            bool             DOMEntityReferenceImpl::isSameNode(const DOMNode* other) const  {return fNode.isSameNode(other); };
  213.            bool             DOMEntityReferenceImpl::isEqualNode(const DOMNode* arg) const   {return fParent.isEqualNode(arg); };
  214.            void*            DOMEntityReferenceImpl::setUserData(const XMLCh* key, void* data, DOMUserDataHandler* handler)
  215.                                                                                             {return fNode.setUserData(key, data, handler); };
  216.            void*            DOMEntityReferenceImpl::getUserData(const XMLCh* key) const     {return fNode.getUserData(key); };
  217.            short            DOMEntityReferenceImpl::compareTreePosition(const DOMNode* other) const {return fNode.compareTreePosition(other); };
  218.            const XMLCh*     DOMEntityReferenceImpl::getTextContent() const                  {return fNode.getTextContent(); };
  219.            void             DOMEntityReferenceImpl::setTextContent(const XMLCh* textContent){fNode.setTextContent(textContent); };
  220.            const XMLCh*     DOMEntityReferenceImpl::lookupNamespacePrefix(const XMLCh* namespaceURI, bool useDefault) const  {return fNode.lookupNamespacePrefix(namespaceURI, useDefault); };
  221.            bool             DOMEntityReferenceImpl::isDefaultNamespace(const XMLCh* namespaceURI) const {return fNode.isDefaultNamespace(namespaceURI); };
  222.            const XMLCh*     DOMEntityReferenceImpl::lookupNamespaceURI(const XMLCh* prefix) const  {return fNode.lookupNamespaceURI(prefix); };
  223.            DOMNode*         DOMEntityReferenceImpl::getInterface(const XMLCh* feature)      {return fNode.getInterface(feature); };
  224. XERCES_CPP_NAMESPACE_END