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

词法分析

开发平台:

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: DOMCharacterDataImpl.cpp,v 1.6 2003/05/15 18:25:54 knoaman Exp $
  58.  */
  59. #include "DOMCharacterDataImpl.hpp"
  60. #include <xercesc/dom/DOMException.hpp>
  61. #include <xercesc/dom/DOMNode.hpp>
  62. #include "DOMRangeImpl.hpp"
  63. #include "DOMDocumentImpl.hpp"
  64. #include "DOMCasts.hpp"
  65. #include "DOMStringPool.hpp"
  66. #include <xercesc/util/XMLUniDefs.hpp>
  67. XERCES_CPP_NAMESPACE_BEGIN
  68. DOMCharacterDataImpl::DOMCharacterDataImpl(DOMDocument *doc, const XMLCh *dat)
  69.  : fDoc(0)
  70.  , fDataBuf(0)
  71. {
  72.     fDoc = (DOMDocumentImpl*)doc;
  73.     fDataBuf = fDoc->popBuffer();
  74.     if (!fDataBuf)
  75.         fDataBuf = new (fDoc) DOMBuffer(fDoc, dat);
  76.     else
  77.         fDataBuf->set(dat);
  78. };
  79. DOMCharacterDataImpl::DOMCharacterDataImpl(const DOMCharacterDataImpl &other)
  80.  : fDoc(0)
  81.  , fDataBuf(0)
  82. {
  83.     fDoc = (DOMDocumentImpl*)other.fDoc;
  84.     fDataBuf = fDoc->popBuffer();
  85.     if (!fDataBuf)
  86.         fDataBuf = new (fDoc) DOMBuffer(fDoc, other.fDataBuf->getRawBuffer());
  87.     else
  88.         fDataBuf->set(other.fDataBuf->getRawBuffer());
  89. };
  90. DOMCharacterDataImpl::~DOMCharacterDataImpl() {
  91. };
  92. const XMLCh * DOMCharacterDataImpl::getNodeValue() const
  93. {
  94.     return fDataBuf->getRawBuffer();
  95. };
  96. void DOMCharacterDataImpl::setNodeValue(const DOMNode *node, const XMLCh *value)
  97. {
  98.     if (castToNodeImpl(node)->isReadOnly())
  99.         throw DOMException(DOMException::NO_MODIFICATION_ALLOWED_ERR,
  100.                                0);
  101.     fDataBuf->set(value);
  102.     if (node->getOwnerDocument() != 0) {
  103.         Ranges* ranges = ((DOMDocumentImpl *)node->getOwnerDocument())->getRanges();
  104.         if (ranges != 0) {
  105.             XMLSize_t sz = ranges->size();
  106.             if (sz != 0) {
  107.                 for (XMLSize_t i =0; i<sz; i++) {
  108.                     ranges->elementAt(i)->receiveReplacedText((DOMNode*)node);
  109.                 }
  110.             }
  111.         }
  112.     }
  113. };
  114. void DOMCharacterDataImpl::appendData(const DOMNode *node, const XMLCh *dat)
  115. {
  116.     if(castToNodeImpl(node)->isReadOnly())
  117.         throw DOMException(
  118.         DOMException::NO_MODIFICATION_ALLOWED_ERR, 0);
  119.     fDataBuf->append(dat);
  120. };
  121. void DOMCharacterDataImpl::deleteData(const DOMNode *node, XMLSize_t offset, XMLSize_t count)
  122. {
  123.     if (castToNodeImpl(node)->isReadOnly())
  124.         throw DOMException(DOMException::NO_MODIFICATION_ALLOWED_ERR, 0);
  125.     // Note: the C++ XMLCh * operation throws the correct DOMExceptions
  126.     //       when parameter values are bad.
  127.     //
  128.     XMLSize_t len = this->fDataBuf->getLen();
  129.     if (offset > len || offset < 0 || count < 0)
  130.         throw DOMException(DOMException::INDEX_SIZE_ERR, 0);
  131.     // Cap the value of delLength to avoid trouble with overflows
  132.     //  in the following length computations.
  133.     if (count > len)
  134.         count = len;
  135.     // If the length of data to be deleted would extend off the end
  136.     //   of the string, cut it back to stop at the end of string.
  137.     if (offset + count >= len)
  138.         count = len - offset;
  139.     XMLSize_t newLen = len - count;
  140.     XMLCh* newString;
  141.     XMLCh temp[4000];
  142.     if (newLen >= 3999)
  143.         newString = (XMLCh*) XMLPlatformUtils::fgMemoryManager->allocate
  144.         (
  145.             (newLen+1) * sizeof(XMLCh)
  146.         );//new XMLCh[newLen+1];
  147.     else
  148.         newString = temp;
  149.     XMLString::copyNString(newString, fDataBuf->getRawBuffer(), offset);
  150.     XMLString::copyString(newString+offset, fDataBuf->getRawBuffer()+offset+count);
  151.     fDataBuf->set(newString);
  152.     if (newLen >= 3999)
  153.         XMLPlatformUtils::fgMemoryManager->deallocate(newString);//delete[] newString;
  154.     // We don't delete the old string (doesn't work), or alter
  155.     //   the old string (may be shared)
  156.     //   It just hangs around, possibly orphaned.
  157.     if (node->getOwnerDocument() != 0) {
  158.         Ranges* ranges = ((DOMDocumentImpl *)node->getOwnerDocument())->getRanges();
  159.         if (ranges != 0) {
  160.             XMLSize_t sz = ranges->size();
  161.             if (sz != 0) {
  162.                 for (XMLSize_t i =0; i<sz; i++) {
  163.                     ranges->elementAt(i)->updateRangeForDeletedText( (DOMNode*)node, offset, count);
  164.                 }
  165.             }
  166.         }
  167.     }
  168. };
  169. const XMLCh *DOMCharacterDataImpl::getData() const
  170. {
  171.     return fDataBuf->getRawBuffer();
  172. };
  173. //
  174. //  getCharDataLength - return the length of the character data string.
  175. //
  176. XMLSize_t DOMCharacterDataImpl::getLength() const
  177. {
  178.     return fDataBuf->getLen();
  179. };
  180. void DOMCharacterDataImpl::insertData(const DOMNode *node, XMLSize_t offset, const XMLCh *dat)
  181. {
  182.     if (castToNodeImpl(node)->isReadOnly())
  183.         throw DOMException(
  184.         DOMException::NO_MODIFICATION_ALLOWED_ERR, 0);
  185.     // Note: the C++ XMLCh * operation throws the correct DOMExceptions
  186.     //       when parameter values are bad.
  187.     //
  188.     XMLSize_t len = fDataBuf->getLen();
  189.     if (offset > len || offset < 0)
  190.         throw DOMException(DOMException::INDEX_SIZE_ERR, 0);
  191.     XMLSize_t datLen = XMLString::stringLen(dat);
  192.     XMLSize_t newLen = len + datLen;
  193.     XMLCh* newString;
  194.     XMLCh temp[4000];
  195.     if (newLen >= 3999)
  196.         newString = (XMLCh*) XMLPlatformUtils::fgMemoryManager->allocate
  197.         (
  198.             (newLen + 1) * sizeof(XMLCh)
  199.         );//new XMLCh[newLen+1];
  200.     else
  201.         newString = temp;
  202.     XMLString::copyNString(newString, fDataBuf->getRawBuffer(), offset);
  203.     XMLString::copyNString(newString+offset, dat, datLen);
  204.     XMLString::copyString(newString+offset+datLen, fDataBuf->getRawBuffer()+offset);
  205.     fDataBuf->set(newString);
  206.     if (newLen >= 3999)
  207.         XMLPlatformUtils::fgMemoryManager->deallocate(newString);//delete[] newString;
  208.     if (node->getOwnerDocument() != 0) {
  209.         Ranges* ranges = ((DOMDocumentImpl *)node->getOwnerDocument())->getRanges();
  210.         if (ranges != 0) {
  211.             XMLSize_t sz = ranges->size();
  212.             if (sz != 0) {
  213.                 for (XMLSize_t i =0; i<sz; i++) {
  214.                     ranges->elementAt(i)->updateRangeForInsertedText( (DOMNode*)node, offset, datLen);
  215.                 }
  216.             }
  217.         }
  218.     }
  219. }
  220. void DOMCharacterDataImpl::replaceData(const DOMNode *node, XMLSize_t offset, XMLSize_t count,
  221.                                     const XMLCh *dat)
  222. {
  223.     if (castToNodeImpl(node)->isReadOnly())
  224.         throw DOMException(
  225.         DOMException::NO_MODIFICATION_ALLOWED_ERR, 0);
  226.     deleteData(node, offset, count);
  227.     insertData(node, offset, dat);
  228. };
  229. void DOMCharacterDataImpl::setData(const DOMNode *node, const XMLCh *arg)
  230. {
  231.     setNodeValue(node, arg);
  232. };
  233. const XMLCh * DOMCharacterDataImpl::substringData(const DOMNode *node, XMLSize_t offset,
  234.                                            XMLSize_t count) const
  235. {
  236.     // Note: the C++ XMLCh * operation throws the correct DOMExceptions
  237.     //       when parameter values are bad.
  238.     //
  239.     XMLSize_t len = fDataBuf->getLen();
  240.     if (offset > len || offset < 0 || count < 0)
  241.         throw DOMException(DOMException::INDEX_SIZE_ERR, 0);
  242.     XMLCh* newString;
  243.     XMLCh temp[4000];
  244.     if (len >= 3999)
  245.         newString = (XMLCh*) XMLPlatformUtils::fgMemoryManager->allocate
  246.         (
  247.             (len + 1) * sizeof(XMLCh)
  248.         );//new XMLCh[len+1];
  249.     else
  250.         newString = temp;
  251.     XMLString::copyNString(newString, fDataBuf->getRawBuffer()+offset, count);
  252.     newString[count] = chNull;
  253.     const XMLCh* retString = ((DOMDocumentImpl *)node->getOwnerDocument())->getPooledString(newString);
  254.     if (len >= 3999)
  255.         XMLPlatformUtils::fgMemoryManager->deallocate(newString);//delete[] newString;
  256.     return retString;
  257. };
  258. void DOMCharacterDataImpl::releaseBuffer() {
  259.     fDoc->releaseBuffer(fDataBuf);
  260. }
  261. XERCES_CPP_NAMESPACE_END