DOMTextImpl.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: DOMTextImpl.cpp,v 1.11 2002/11/04 15:07:34 tng Exp $
  58.  */
  59. #include <xercesc/util/XMLUniDefs.hpp>
  60. #include <xercesc/dom/DOMException.hpp>
  61. #include <xercesc/dom/DOMNode.hpp>
  62. #include "DOMDocumentImpl.hpp"
  63. #include "DOMStringPool.hpp"
  64. #include "DOMTextImpl.hpp"
  65. #include "DOMCharacterDataImpl.hpp"
  66. #include "DOMChildNode.hpp"
  67. #include "DOMRangeImpl.hpp"
  68. #include <assert.h>
  69. XERCES_CPP_NAMESPACE_BEGIN
  70. class DOMDocument;
  71. DOMTextImpl::DOMTextImpl(DOMDocument *ownerDoc, const XMLCh *dat)
  72.     : fNode(ownerDoc), fCharacterData(ownerDoc, dat)
  73. {
  74.     fNode.setIsLeafNode(true);
  75. };
  76. DOMTextImpl::DOMTextImpl(const DOMTextImpl &other, bool deep)
  77.     : fNode(other.fNode), fCharacterData(other.fCharacterData)
  78. {
  79.     fNode.setIsLeafNode(true);
  80. };
  81. DOMTextImpl::~DOMTextImpl()
  82. {
  83. };
  84. DOMNode *DOMTextImpl::cloneNode(bool deep) const
  85. {
  86.     DOMNode* newNode = new (getOwnerDocument(), DOMDocumentImpl::TEXT_OBJECT) DOMTextImpl(*this, deep);
  87.     fNode.callUserDataHandlers(DOMUserDataHandler::NODE_CLONED, this, newNode);
  88.     return newNode;
  89. };
  90. const XMLCh * DOMTextImpl::getNodeName() const {
  91.     static const XMLCh gtext[] = {chPound, chLatin_t, chLatin_e, chLatin_x, chLatin_t, chNull};
  92.     return gtext;
  93. }
  94. short DOMTextImpl::getNodeType() const {
  95.     return DOMNode::TEXT_NODE;
  96. };
  97. DOMText *DOMTextImpl::splitText(XMLSize_t offset)
  98. {
  99.     if (fNode.isReadOnly())
  100.     {
  101.         throw DOMException(
  102.             DOMException::NO_MODIFICATION_ALLOWED_ERR, 0);
  103.     }
  104.     XMLSize_t len = fCharacterData.fDataBuf->getLen();
  105.     if (offset > len || offset < 0)
  106.         throw DOMException(DOMException::INDEX_SIZE_ERR, 0);
  107.     DOMText *newText =
  108.                 getOwnerDocument()->createTextNode(
  109.                         this->substringData(offset, len - offset));
  110.     DOMNode *parent = getParentNode();
  111.     if (parent != 0)
  112.         parent->insertBefore(newText, getNextSibling());
  113.     fCharacterData.fDataBuf->chop(offset);
  114.     if (this->getOwnerDocument() != 0) {
  115.         Ranges* ranges = ((DOMDocumentImpl *)this->getOwnerDocument())->getRanges();
  116.         if (ranges != 0) {
  117.             XMLSize_t sz = ranges->size();
  118.             if (sz != 0) {
  119.                 for (XMLSize_t i =0; i<sz; i++) {
  120.                     ranges->elementAt(i)->updateSplitInfo( this, newText, offset);
  121.                 }
  122.             }
  123.         }
  124.     }
  125.     return newText;
  126. };
  127. bool DOMTextImpl::isIgnorableWhitespace() const
  128. {
  129.     return fNode.ignorableWhitespace();
  130. }
  131. void DOMTextImpl::setIgnorableWhitespace(bool ignorable)
  132. {
  133.     fNode.ignorableWhitespace(ignorable);
  134. }
  135. bool DOMTextImpl::getIsWhitespaceInElementContent() const
  136. {
  137.     return isIgnorableWhitespace();
  138. }
  139. const XMLCh* DOMTextImpl::getWholeText() {
  140.     throw DOMException(DOMException::NOT_SUPPORTED_ERR, 0);
  141.     return 0;
  142. }
  143. DOMText* DOMTextImpl::replaceWholeText(const XMLCh* content){
  144.     throw DOMException(DOMException::NOT_SUPPORTED_ERR, 0);
  145.     return 0;
  146. }
  147. void DOMTextImpl::release()
  148. {
  149.     if (fNode.isOwned() && !fNode.isToBeReleased())
  150.         throw DOMException(DOMException::INVALID_ACCESS_ERR,0);
  151.     DOMDocumentImpl* doc = (DOMDocumentImpl*) getOwnerDocument();
  152.     if (doc) {
  153.         fNode.callUserDataHandlers(DOMUserDataHandler::NODE_DELETED, 0, 0);
  154.         fCharacterData.releaseBuffer();
  155.         doc->release(this, DOMDocumentImpl::TEXT_OBJECT);
  156.     }
  157.     else {
  158.         // shouldn't reach here
  159.         throw DOMException(DOMException::INVALID_ACCESS_ERR,0);
  160.     }
  161. }
  162. //
  163. //  Delegation functions
  164. //
  165.            DOMNode*         DOMTextImpl::appendChild(DOMNode *newChild)          {return fNode.appendChild (newChild); };
  166.            DOMNamedNodeMap* DOMTextImpl::getAttributes() const                   {return fNode.getAttributes (); };
  167.            DOMNodeList*     DOMTextImpl::getChildNodes() const                   {return fNode.getChildNodes (); };
  168.            DOMNode*         DOMTextImpl::getFirstChild() const                   {return fNode.getFirstChild (); };
  169.            DOMNode*         DOMTextImpl::getLastChild() const                    {return fNode.getLastChild (); };
  170.      const XMLCh*           DOMTextImpl::getLocalName() const                    {return fNode.getLocalName (); };
  171.      const XMLCh*           DOMTextImpl::getNamespaceURI() const                 {return fNode.getNamespaceURI (); };
  172.            DOMNode*         DOMTextImpl::getNextSibling() const                  {return fChild.getNextSibling (); };
  173.      const XMLCh*           DOMTextImpl::getNodeValue() const                    {return fCharacterData.getNodeValue (); };
  174.            DOMDocument*     DOMTextImpl::getOwnerDocument() const                {return fNode.getOwnerDocument (); };
  175.      const XMLCh*           DOMTextImpl::getPrefix() const                       {return fNode.getPrefix (); };
  176.            DOMNode*         DOMTextImpl::getParentNode() const                   {return fChild.getParentNode (this); };
  177.            DOMNode*         DOMTextImpl::getPreviousSibling() const              {return fChild.getPreviousSibling (this); };
  178.            bool             DOMTextImpl::hasChildNodes() const                   {return fNode.hasChildNodes (); };
  179.            DOMNode*         DOMTextImpl::insertBefore(DOMNode *newChild, DOMNode *refChild)
  180.                                                                                  {return fNode.insertBefore (newChild, refChild); };
  181.            void             DOMTextImpl::normalize()                             {fNode.normalize (); };
  182.            DOMNode*         DOMTextImpl::removeChild(DOMNode *oldChild)          {return fNode.removeChild (oldChild); };
  183.            DOMNode*         DOMTextImpl::replaceChild(DOMNode *newChild, DOMNode *oldChild)
  184.                                                                                  {return fNode.replaceChild (newChild, oldChild); };
  185.            bool             DOMTextImpl::isSupported(const XMLCh *feature, const XMLCh *version) const
  186.                                                                                  {return fNode.isSupported (feature, version); };
  187.            void             DOMTextImpl::setPrefix(const XMLCh  *prefix)         {fNode.setPrefix(prefix); };
  188.            bool             DOMTextImpl::hasAttributes() const                   {return fNode.hasAttributes(); };
  189.            bool             DOMTextImpl::isSameNode(const DOMNode* other) const  {return fNode.isSameNode(other); };
  190.            bool             DOMTextImpl::isEqualNode(const DOMNode* arg) const   {return fNode.isEqualNode(arg); };
  191.            void*            DOMTextImpl::setUserData(const XMLCh* key, void* data, DOMUserDataHandler* handler)
  192.                                                                                  {return fNode.setUserData(key, data, handler); };
  193.            void*            DOMTextImpl::getUserData(const XMLCh* key) const     {return fNode.getUserData(key); };
  194.            const XMLCh*     DOMTextImpl::getBaseURI() const                      {return fNode.getBaseURI(); };
  195.            short            DOMTextImpl::compareTreePosition(const DOMNode* other) const {return fNode.compareTreePosition(other); };
  196.            const XMLCh*     DOMTextImpl::getTextContent() const                  {return fNode.getTextContent(); };
  197.            void             DOMTextImpl::setTextContent(const XMLCh* textContent){fNode.setTextContent(textContent); };
  198.            const XMLCh*     DOMTextImpl::lookupNamespacePrefix(const XMLCh* namespaceURI, bool useDefault) const  {return fNode.lookupNamespacePrefix(namespaceURI, useDefault); };
  199.            bool             DOMTextImpl::isDefaultNamespace(const XMLCh* namespaceURI) const {return fNode.isDefaultNamespace(namespaceURI); };
  200.            const XMLCh*     DOMTextImpl::lookupNamespaceURI(const XMLCh* prefix) const  {return fNode.lookupNamespaceURI(prefix); };
  201.            DOMNode*         DOMTextImpl::getInterface(const XMLCh* feature)      {return fNode.getInterface(feature); };
  202. //
  203. //   Delegation of CharacerData functions.
  204. //
  205.           const XMLCh*      DOMTextImpl::getData() const                         {return fCharacterData.getData();};
  206.           XMLSize_t         DOMTextImpl::getLength() const                       {return fCharacterData.getLength();};
  207.           const XMLCh*      DOMTextImpl::substringData(XMLSize_t offset, XMLSize_t count) const
  208.                                                                                  {return fCharacterData.substringData(this, offset, count);};
  209.           void              DOMTextImpl::appendData(const XMLCh *arg)            {fCharacterData.appendData(this, arg);};
  210.           void              DOMTextImpl::insertData(XMLSize_t offset, const  XMLCh *arg)
  211.                                                                                  {fCharacterData.insertData(this, offset, arg);};
  212.           void              DOMTextImpl::deleteData(XMLSize_t offset, XMLSize_t count)
  213.                                                                                  {fCharacterData.deleteData(this, offset, count);};
  214.           void              DOMTextImpl::replaceData(XMLSize_t offset, XMLSize_t count, const XMLCh *arg)
  215.                                                                                  {fCharacterData.replaceData(this, offset, count, arg);};
  216.           void              DOMTextImpl::setData(const XMLCh *data)              {fCharacterData.setData(this, data);};
  217.           void              DOMTextImpl::setNodeValue(const XMLCh  *nodeValue)   {fCharacterData.setNodeValue (this, nodeValue); };
  218. XERCES_CPP_NAMESPACE_END