IDCharacterDataImpl.cpp
上传用户:huihehuasu
上传日期:2007-01-10
资源大小:6948k
文件大小:9k
源码类别:

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: IDCharacterDataImpl.cpp,v 1.3 2001/06/04 14:55:32 tng Exp $
  58.  */
  59. #include "IDCharacterDataImpl.hpp"
  60. #include "IDOM_DOMException.hpp"
  61. #include "IDOM_Node.hpp"
  62. #include "IDRangeImpl.hpp"
  63. #include "IDDocumentImpl.hpp"
  64. #include "IDCasts.hpp"
  65. #include <framework/XMLBuffer.hpp>
  66. #include <util/XMLUniDefs.hpp>
  67. IDCharacterDataImpl::IDCharacterDataImpl(IDOM_Document *doc, const XMLCh *dat)
  68. {
  69.     this->fData = ((IDDocumentImpl *)doc)->getPooledString(dat);
  70. };
  71. IDCharacterDataImpl::IDCharacterDataImpl(const IDCharacterDataImpl &other)
  72. {
  73.     fData = other.fData;
  74. };
  75. IDCharacterDataImpl::~IDCharacterDataImpl() {
  76. };
  77. const XMLCh * IDCharacterDataImpl::getNodeValue() const
  78. {
  79.     return fData;
  80. };
  81. void IDCharacterDataImpl::setNodeValue(const IDOM_Node *node, const XMLCh *value)
  82. {
  83.     if (castToNodeImpl(node)->isReadOnly())
  84.         throw IDOM_DOMException(IDOM_DOMException::NO_MODIFICATION_ALLOWED_ERR,
  85.                                0);
  86.     fData = ((IDDocumentImpl *)node->getOwnerDocument())->getPooledString(value);
  87.     if (node->getOwnerDocument() != 0) {
  88.         Ranges* ranges = ((IDDocumentImpl *)node->getOwnerDocument())->getRanges();
  89.         if (ranges != 0) {
  90.             unsigned int sz = ranges->size();
  91.             if (sz != 0) {
  92.                 for (unsigned int i =0; i<sz; i++) {
  93.                     ranges->elementAt(i)->receiveReplacedText((IDOM_Node*)node);
  94.                 }
  95.             }
  96.         }
  97.     }
  98. };
  99. void IDCharacterDataImpl::appendData(const IDOM_Node *node, const XMLCh *dat)
  100. {
  101.     if(castToNodeImpl(node)->isReadOnly())
  102.         throw IDOM_DOMException(
  103.         IDOM_DOMException::NO_MODIFICATION_ALLOWED_ERR, 0);
  104.     XMLBuffer temp;
  105.     temp.set(fData);
  106.     temp.append(dat);
  107.     fData = ((IDDocumentImpl *)node->getOwnerDocument())->getPooledString(temp.getRawBuffer());
  108. };
  109. void IDCharacterDataImpl::deleteData(const IDOM_Node *node, unsigned int offset, unsigned int count)
  110. {
  111.     if (castToNodeImpl(node)->isReadOnly())
  112.         throw IDOM_DOMException(IDOM_DOMException::NO_MODIFICATION_ALLOWED_ERR, 0);
  113.     // Note: the C++ XMLCh * operation throws the correct DOMExceptions
  114.     //       when parameter values are bad.
  115.     //
  116.     unsigned int len = XMLString::stringLen(this->fData);
  117.     if (offset >= len)
  118.         throw IDOM_DOMException(IDOM_DOMException::INDEX_SIZE_ERR, 0);
  119.     // Cap the value of delLength to avoid trouble with overflows
  120.     //  in the following length computations.
  121.     if (count > len)
  122.         count = len;
  123.     // If the length of data to be deleted would extend off the end
  124.     //   of the string, cut it back to stop at the end of string.
  125.     if (offset + count >= len)
  126.         count = len - offset;
  127.     unsigned int newLen = len - count;
  128.     XMLCh* newString;
  129.     XMLCh temp[4000];
  130.     if (newLen >= 3999)
  131.         newString = new XMLCh[newLen+1];
  132.     else
  133.         newString = temp;
  134.     XMLString::copyNString(newString, fData, offset);
  135.     XMLString::copyString(newString+offset, fData+offset+len);
  136.     fData = ((IDDocumentImpl *)node->getOwnerDocument())->getPooledString(newString);
  137.     if (newLen >= 3999)
  138.         delete[] newString;
  139.     // We don't delete the old string (doesn't work), or alter
  140.     //   the old string (may be shared)
  141.     //   It just hangs around, possibly orphaned.
  142.     if (node->getOwnerDocument() != 0) {
  143.         Ranges* ranges = ((IDDocumentImpl *)node->getOwnerDocument())->getRanges();
  144.         if (ranges != 0) {
  145.             unsigned int sz = ranges->size();
  146.             if (sz != 0) {
  147.                 for (unsigned int i =0; i<sz; i++) {
  148.                     ranges->elementAt(i)->updateRangeForDeletedText( (IDOM_Node*)node, offset, count);
  149.                 }
  150.             }
  151.         }
  152.     }
  153. };
  154. const XMLCh *IDCharacterDataImpl::getData() const
  155. {
  156.     return fData;
  157. };
  158. //
  159. //  getCharDataLength - return the length of the character data string.
  160. //
  161. unsigned int IDCharacterDataImpl::getLength() const
  162. {
  163.     return XMLString::stringLen(fData);
  164. };
  165. void IDCharacterDataImpl::insertData(const IDOM_Node *node, unsigned int offset, const XMLCh *dat)
  166. {
  167.     if (castToNodeImpl(node)->isReadOnly())
  168.         throw IDOM_DOMException(
  169.         IDOM_DOMException::NO_MODIFICATION_ALLOWED_ERR, 0);
  170.     // Note: the C++ XMLCh * operation throws the correct DOMExceptions
  171.     //       when parameter values are bad.
  172.     //
  173.     unsigned int len = XMLString::stringLen(this->fData);
  174.     if (offset >= len)
  175.         throw IDOM_DOMException(IDOM_DOMException::INDEX_SIZE_ERR, 0);
  176.     unsigned int datLen = XMLString::stringLen(dat);
  177.     unsigned int newLen = len + datLen;
  178.     XMLCh* newString;
  179.     XMLCh temp[4000];
  180.     if (newLen >= 3999)
  181.         newString = new XMLCh[newLen+1];
  182.     else
  183.         newString = temp;
  184.     XMLString::copyNString(newString, fData, offset);
  185.     XMLString::copyNString(newString+offset, dat, datLen);
  186.     XMLString::copyString(newString+offset+datLen, fData+offset);
  187.     fData = ((IDDocumentImpl *)node->getOwnerDocument())->getPooledString(newString);
  188.     if (newLen >= 3999)
  189.         delete[] newString;
  190. }
  191. void IDCharacterDataImpl::replaceData(const IDOM_Node *node, unsigned int offset, unsigned int count,
  192.                                     const XMLCh *dat)
  193. {
  194.     if (castToNodeImpl(node)->isReadOnly())
  195.         throw IDOM_DOMException(
  196.         IDOM_DOMException::NO_MODIFICATION_ALLOWED_ERR, 0);
  197.     deleteData(node, offset, count);
  198.     insertData(node, offset, dat);
  199. };
  200. void IDCharacterDataImpl::setData(const IDOM_Node *node, const XMLCh *arg)
  201. {
  202.     if (castToNodeImpl(node)->isReadOnly())
  203.         throw IDOM_DOMException(IDOM_DOMException::NO_MODIFICATION_ALLOWED_ERR, 0);
  204.     fData = ((IDDocumentImpl *)node->getOwnerDocument())->getPooledString(arg);
  205. };
  206. const XMLCh * IDCharacterDataImpl::substringData(const IDOM_Node *node, unsigned int offset,
  207.                                            unsigned int count) const
  208. {
  209.     // Note: the C++ XMLCh * operation throws the correct DOMExceptions
  210.     //       when parameter values are bad.
  211.     //
  212.     unsigned int len = XMLString::stringLen(fData);
  213.     XMLCh* newString;
  214.     XMLCh temp[4000];
  215.     if (len >= 3999)
  216.         newString = new XMLCh[len+1];
  217.     else
  218.         newString = temp;
  219.     XMLString::copyNString(newString, fData+offset, count);
  220.     newString[count] = chNull;
  221.     const XMLCh* retString = ((IDDocumentImpl *)node->getOwnerDocument())->getPooledString(newString);
  222.     if (len >= 3999)
  223.         delete[] newString;
  224.     return retString;
  225. };