DOMEntityImpl.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: DOMEntityImpl.cpp,v 1.15 2002/11/04 15:07:34 tng Exp $
  58.  */
  59. #include <xercesc/dom/DOMException.hpp>
  60. #include <xercesc/dom/DOMNode.hpp>
  61. #include <xercesc/dom/DOMEntityReference.hpp>
  62. #include "DOMEntityImpl.hpp"
  63. #include "DOMDocumentImpl.hpp"
  64. XERCES_CPP_NAMESPACE_BEGIN
  65. DOMEntityImpl::DOMEntityImpl(DOMDocument *ownerDoc, const XMLCh *eName)
  66.    : fNode(ownerDoc),
  67.      fParent(ownerDoc),
  68.      fPublicId(0),
  69.      fSystemId(0),
  70.      fActualEncoding(0),
  71.      fEncoding(0),
  72.      fVersion(0),
  73.      fEntityRefNodeCloned(false),
  74.      fBaseURI(0)
  75. {
  76.     fRefEntity  = 0;
  77.     fName        = ((DOMDocumentImpl *)ownerDoc)->getPooledString(eName);
  78.     fNode.setReadOnly(true, true);
  79. };
  80. DOMEntityImpl::DOMEntityImpl(const DOMEntityImpl &other, bool deep)
  81.     : fNode(other.fNode),
  82.       fParent(other.fParent),
  83.       fActualEncoding(other.fActualEncoding),
  84.       fEncoding(other.fEncoding),
  85.       fVersion(other.fVersion),
  86.       fEntityRefNodeCloned(false)
  87. {
  88.     fName            = other.fName;
  89.     if (deep)
  90.         fParent.cloneChildren(&other);
  91.     fPublicId        = other.fPublicId;
  92.     fSystemId        = other.fSystemId;
  93.     fNotationName    = other.fNotationName;
  94.     fBaseURI         = other.fBaseURI;
  95.     fRefEntity       = other.fRefEntity;
  96.     fNode.setReadOnly(true, true);
  97. };
  98. DOMEntityImpl::~DOMEntityImpl() {
  99. };
  100. DOMNode *DOMEntityImpl::cloneNode(bool deep) const
  101. {
  102.     DOMNode* newNode = new (getOwnerDocument(), DOMDocumentImpl::ENTITY_OBJECT) DOMEntityImpl(*this, deep);
  103.     fNode.callUserDataHandlers(DOMUserDataHandler::NODE_CLONED, this, newNode);
  104.     return newNode;
  105. };
  106. const XMLCh * DOMEntityImpl::getNodeName() const {
  107.     return fName;
  108. };
  109. short DOMEntityImpl::getNodeType() const {
  110.     return DOMNode::ENTITY_NODE;
  111. };
  112. const XMLCh * DOMEntityImpl::getNotationName() const
  113. {
  114.     return fNotationName;
  115. };
  116. const XMLCh * DOMEntityImpl::getPublicId() const {
  117.     return fPublicId;
  118. };
  119. const XMLCh * DOMEntityImpl::getSystemId() const
  120. {
  121.     return fSystemId;
  122. };
  123. const XMLCh* DOMEntityImpl::getBaseURI() const
  124. {
  125.     return fBaseURI;
  126. }
  127. void DOMEntityImpl::setNodeValue(const XMLCh *arg)
  128. {
  129.     fNode.setNodeValue(arg);
  130. };
  131. void DOMEntityImpl::setNotationName(const XMLCh *arg)
  132. {
  133.     DOMDocumentImpl *doc = (DOMDocumentImpl *)this->getOwnerDocument();
  134.     fNotationName = doc->cloneString(arg);
  135. }
  136. void DOMEntityImpl::setPublicId(const XMLCh *arg)
  137. {
  138.     DOMDocumentImpl *doc = (DOMDocumentImpl *)this->getOwnerDocument();
  139.     fPublicId = doc->cloneString(arg);
  140. }
  141. void DOMEntityImpl::setSystemId(const XMLCh *arg)
  142. {
  143.     DOMDocumentImpl *doc = (DOMDocumentImpl *)this->getOwnerDocument();
  144.     fSystemId = doc->cloneString(arg);
  145. }
  146. void DOMEntityImpl::setBaseURI(const XMLCh* baseURI) {
  147.     if (baseURI && *baseURI) {
  148.         XMLCh* temp = (XMLCh*) ((DOMDocumentImpl *)getOwnerDocument())->allocate((XMLString::stringLen(baseURI) + 9)*sizeof(XMLCh));
  149.         XMLString::fixURI(baseURI, temp);
  150.         fBaseURI = temp;
  151.     }
  152.     else
  153.         fBaseURI = 0;
  154. }
  155. void   DOMEntityImpl::setEntityRef(DOMEntityReference* other)
  156. {
  157.     fRefEntity = other;
  158. }
  159. DOMEntityReference*  DOMEntityImpl::getEntityRef() const
  160. {
  161.     return fRefEntity;
  162. }
  163. void  DOMEntityImpl::cloneEntityRefTree() const
  164. {
  165.     if (fEntityRefNodeCloned)
  166.         return;
  167.     // cast off const.  This method is const because it is
  168.     //   called from a bunch of logically const methods, like
  169.     //   getFirstChild().
  170.     DOMEntityImpl *ncThis = (DOMEntityImpl *)this;
  171.     //lazily clone the entityRef tree to this entity
  172.     if (fParent.fFirstChild != 0)
  173.         return;
  174.     if (!fRefEntity)
  175.         return;
  176.     ncThis->fEntityRefNodeCloned = true;
  177.     ncThis->fNode.setReadOnly(false, true);
  178.     ncThis->fParent.cloneChildren(fRefEntity);
  179.     ncThis->fNode.setReadOnly(true, true);
  180. }
  181. DOMNode * DOMEntityImpl::getFirstChild() const
  182. {
  183.     cloneEntityRefTree();
  184.     return fParent.fFirstChild;
  185. };
  186. DOMNode *   DOMEntityImpl::getLastChild() const
  187. {
  188.     cloneEntityRefTree();
  189.     return fParent.getLastChild();
  190. }
  191. DOMNodeList* DOMEntityImpl::getChildNodes() const
  192. {
  193.     cloneEntityRefTree();
  194.     return this->fParent.getChildNodes();
  195. }
  196. bool DOMEntityImpl::hasChildNodes() const
  197. {
  198.     cloneEntityRefTree();
  199.     return fParent.fFirstChild!=0;
  200. }
  201. void DOMEntityImpl::release()
  202. {
  203.     if (fNode.isOwned() && !fNode.isToBeReleased())
  204.         throw DOMException(DOMException::INVALID_ACCESS_ERR,0);
  205.     DOMDocumentImpl* doc = (DOMDocumentImpl*) getOwnerDocument();
  206.     if (doc) {
  207.         fNode.callUserDataHandlers(DOMUserDataHandler::NODE_DELETED, 0, 0);
  208.         fParent.release();
  209.         doc->release(this, DOMDocumentImpl::ENTITY_OBJECT);
  210.     }
  211.     else {
  212.         // shouldn't reach here
  213.         throw DOMException(DOMException::INVALID_ACCESS_ERR,0);
  214.     }
  215. }
  216. //
  217. //  Functions inherited from Node
  218. //
  219.            DOMNode*         DOMEntityImpl::appendChild(DOMNode *newChild)          {cloneEntityRefTree(); return fParent.appendChild (newChild); };
  220.            DOMNamedNodeMap* DOMEntityImpl::getAttributes() const                   {return fNode.getAttributes (); };
  221.      const XMLCh*           DOMEntityImpl::getLocalName() const                    {return fNode.getLocalName (); };
  222.      const XMLCh*           DOMEntityImpl::getNamespaceURI() const                 {return fNode.getNamespaceURI (); };
  223.            DOMNode*         DOMEntityImpl::getNextSibling() const                  {return fNode.getNextSibling (); };
  224.      const XMLCh*           DOMEntityImpl::getNodeValue() const                    {return fNode.getNodeValue (); };
  225.            DOMDocument*     DOMEntityImpl::getOwnerDocument() const                {return fParent.fOwnerDocument; };
  226.      const XMLCh*           DOMEntityImpl::getPrefix() const                       {return fNode.getPrefix (); };
  227.            DOMNode*         DOMEntityImpl::getParentNode() const                   {return fNode.getParentNode (); };
  228.            DOMNode*         DOMEntityImpl::getPreviousSibling() const              {return fNode.getPreviousSibling (); };
  229.            DOMNode*         DOMEntityImpl::insertBefore(DOMNode *newChild, DOMNode *refChild)
  230.                                                                                    {cloneEntityRefTree(); return fParent.insertBefore (newChild, refChild); };
  231.            void             DOMEntityImpl::normalize()                             {cloneEntityRefTree(); fParent.normalize (); };
  232.            DOMNode*         DOMEntityImpl::removeChild(DOMNode *oldChild)          {cloneEntityRefTree(); return fParent.removeChild (oldChild); };
  233.            DOMNode*         DOMEntityImpl::replaceChild(DOMNode *newChild, DOMNode *oldChild)
  234.                                                                                    {cloneEntityRefTree(); return fParent.replaceChild (newChild, oldChild); };
  235.            bool             DOMEntityImpl::isSupported(const XMLCh *feature, const XMLCh *version) const
  236.                                                                                    {return fNode.isSupported (feature, version); };
  237.            void             DOMEntityImpl::setPrefix(const XMLCh  *prefix)         {fNode.setPrefix(prefix); };
  238.            bool             DOMEntityImpl::hasAttributes() const                   {return fNode.hasAttributes(); };
  239.            bool             DOMEntityImpl::isSameNode(const DOMNode* other) const  {return fNode.isSameNode(other); };
  240.            bool             DOMEntityImpl::isEqualNode(const DOMNode* arg) const   {cloneEntityRefTree(); return fParent.isEqualNode(arg); };
  241.            void*            DOMEntityImpl::setUserData(const XMLCh* key, void* data, DOMUserDataHandler* handler)
  242.                                                                                    {return fNode.setUserData(key, data, handler); };
  243.            void*            DOMEntityImpl::getUserData(const XMLCh* key) const     {return fNode.getUserData(key); };
  244.            short            DOMEntityImpl::compareTreePosition(const DOMNode* other) const {return fNode.compareTreePosition(other); };
  245.            const XMLCh*     DOMEntityImpl::getTextContent() const                  {return fNode.getTextContent(); };
  246.            void             DOMEntityImpl::setTextContent(const XMLCh* textContent){fNode.setTextContent(textContent); };
  247.            const XMLCh*     DOMEntityImpl::lookupNamespacePrefix(const XMLCh* namespaceURI, bool useDefault) const  {return fNode.lookupNamespacePrefix(namespaceURI, useDefault); };
  248.            bool             DOMEntityImpl::isDefaultNamespace(const XMLCh* namespaceURI) const {return fNode.isDefaultNamespace(namespaceURI); };
  249.            const XMLCh*     DOMEntityImpl::lookupNamespaceURI(const XMLCh* prefix) const  {return fNode.lookupNamespaceURI(prefix); };
  250.            DOMNode*         DOMEntityImpl::getInterface(const XMLCh* feature)      {return fNode.getInterface(feature); };
  251. //Introduced in DOM Level 3
  252. const XMLCh* DOMEntityImpl::getActualEncoding() const {
  253.     return fActualEncoding;
  254. }
  255. void DOMEntityImpl::setActualEncoding(const XMLCh* actualEncoding){
  256.     DOMDocumentImpl *doc = (DOMDocumentImpl *)this->getOwnerDocument();
  257.     fActualEncoding = doc->cloneString(actualEncoding);
  258. }
  259. const XMLCh* DOMEntityImpl::getEncoding() const {
  260.     return fEncoding;
  261. }
  262. void DOMEntityImpl::setEncoding(const XMLCh* encoding){
  263.     DOMDocumentImpl *doc = (DOMDocumentImpl *)this->getOwnerDocument();
  264.     fEncoding = doc->cloneString(encoding);
  265. }
  266. const XMLCh* DOMEntityImpl::getVersion() const {
  267.     return fVersion;
  268. }
  269. void DOMEntityImpl::setVersion(const XMLCh* version){
  270.     DOMDocumentImpl *doc = (DOMDocumentImpl *)this->getOwnerDocument();
  271.     fVersion = doc->cloneString(version);
  272. }
  273. XERCES_CPP_NAMESPACE_END