IDTextImpl.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: IDTextImpl.cpp,v 1.3 2001/06/04 14:55:36 tng Exp $
  58.  */
  59. #include <util/XMLUniDefs.hpp>
  60. #include "IDDocumentImpl.hpp"
  61. #include "IDOM_DOMException.hpp"
  62. #include "IDOM_Node.hpp"
  63. #include "IDTextImpl.hpp"
  64. #include "IDCharacterDataImpl.hpp"
  65. #include "IDChildNode.hpp"
  66. #include <assert.h>
  67. #include "IDRangeImpl.hpp"
  68. class IDOM_Document;
  69. IDTextImpl::IDTextImpl(IDOM_Document *ownerDoc, const XMLCh *dat)
  70.     : fNode(ownerDoc), fCharacterData(ownerDoc, dat)
  71. {
  72.     fNode.setIsLeafNode(true);
  73. };
  74. IDTextImpl::IDTextImpl(const IDTextImpl &other, bool deep)
  75.     : fNode(other.fNode), fCharacterData(other.fCharacterData)
  76. {
  77.     fNode.setIsLeafNode(true);
  78. };
  79. IDTextImpl::~IDTextImpl()
  80. {
  81. };
  82. IDOM_Node *IDTextImpl::cloneNode(bool deep) const
  83. {
  84.     return new (getOwnerDocument()) IDTextImpl(*this, deep);
  85. };
  86. const XMLCh * IDTextImpl::getNodeName() const {
  87.     static const XMLCh gtext[] = {chPound, chLatin_t, chLatin_e, chLatin_x, chLatin_t, chNull};
  88.     return gtext;
  89. }
  90. short IDTextImpl::getNodeType() const {
  91.     return IDOM_Node::TEXT_NODE;
  92. };
  93. IDOM_Text *IDTextImpl::splitText(unsigned int offset)
  94. {
  95.     if (fNode.isReadOnly())
  96.     {
  97.         throw IDOM_DOMException(
  98.             IDOM_DOMException::NO_MODIFICATION_ALLOWED_ERR, 0);
  99.     }
  100.     unsigned int len = XMLString::stringLen(fCharacterData.fData);
  101.     if (offset > len)
  102.         throw IDOM_DOMException(IDOM_DOMException::INDEX_SIZE_ERR, 0);
  103.     IDOM_Text *newText =
  104.                 getOwnerDocument()->createTextNode(
  105.                         this->substringData(offset, len - offset));
  106.     IDOM_Node *parent = getParentNode();
  107.     if (parent != 0)
  108.         parent->insertBefore(newText, getNextSibling());
  109.     XMLCh *wData = (XMLCh *)(fCharacterData.fData);  // Cast off const.
  110.     wData[offset] = 0;                               //  idom_revisit - could change a string that
  111.                                                      //     application code has.  Do we want to do this?
  112.     if (this->getOwnerDocument() != 0) {
  113.         Ranges* ranges = ((IDDocumentImpl *)this->getOwnerDocument())->getRanges();
  114.         if (ranges != 0) {
  115.             unsigned int sz = ranges->size();
  116.             if (sz != 0) {
  117.                 for (unsigned int i =0; i<sz; i++) {
  118.                     ranges->elementAt(i)->updateSplitInfo( this, newText, offset);
  119.                 }
  120.             }
  121.         }
  122.     }
  123.     return newText;
  124. };
  125. bool IDTextImpl::isIgnorableWhitespace() const
  126. {
  127.     return fNode.ignorableWhitespace();
  128. }
  129. void IDTextImpl::setIgnorableWhitespace(bool ignorable)
  130. {
  131.     fNode.ignorableWhitespace(ignorable);
  132. }
  133. //
  134. //  Delegation functions
  135. //
  136.            IDOM_Node          *IDTextImpl::appendChild(IDOM_Node *newChild)        {return fNode.appendChild (newChild); };
  137.            IDOM_NamedNodeMap  *IDTextImpl::getAttributes() const          {return fNode.getAttributes (); };
  138.            IDOM_NodeList      *IDTextImpl::getChildNodes() const          {return fNode.getChildNodes (); };
  139.            IDOM_Node          *IDTextImpl::getFirstChild() const          {return fNode.getFirstChild (); };
  140.            IDOM_Node          *IDTextImpl::getLastChild() const              {return fNode.getLastChild (); };
  141.      const XMLCh              *IDTextImpl::getLocalName() const                    {return fNode.getLocalName (); };
  142.      const XMLCh              *IDTextImpl::getNamespaceURI() const                 {return fNode.getNamespaceURI (); };
  143.            IDOM_Node          *IDTextImpl::getNextSibling() const                  {return fChild.getNextSibling (); };
  144.      const XMLCh              *IDTextImpl::getNodeValue() const                    {return fCharacterData.getNodeValue (); };
  145.            IDOM_Document      *IDTextImpl::getOwnerDocument() const                {return fNode.getOwnerDocument (); };
  146.      const XMLCh              *IDTextImpl::getPrefix() const                       {return fNode.getPrefix (); };
  147.            IDOM_Node          *IDTextImpl::getParentNode() const                   {return fChild.getParentNode (this); };
  148.            IDOM_Node          *IDTextImpl::getPreviousSibling() const              {return fChild.getPreviousSibling (this); };
  149.            bool                IDTextImpl::hasChildNodes() const                   {return fNode.hasChildNodes (); };
  150.            IDOM_Node          *IDTextImpl::insertBefore(IDOM_Node *newChild, IDOM_Node *refChild)
  151.                                                                                     {return fNode.insertBefore (newChild, refChild); };
  152.            void                IDTextImpl::normalize()                             {fNode.normalize (); };
  153.            IDOM_Node          *IDTextImpl::removeChild(IDOM_Node *oldChild)        {return fNode.removeChild (oldChild); };
  154.            IDOM_Node          *IDTextImpl::replaceChild(IDOM_Node *newChild, IDOM_Node *oldChild)
  155.                                                                                     {return fNode.replaceChild (newChild, oldChild); };
  156.            bool                IDTextImpl::supports(const XMLCh *feature, const XMLCh *version) const
  157.                                                                                     {return fNode.supports (feature, version); };
  158.            void                IDTextImpl::setPrefix(const XMLCh  *prefix)         {fNode.setPrefix(prefix); };
  159. //
  160. //   Delegation of CharacerData functions.
  161. //
  162.      const XMLCh * IDTextImpl::getData() const                  {return fCharacterData.getData();};
  163.      unsigned int  IDTextImpl::getLength() const                {return fCharacterData.getLength();};
  164.      const XMLCh * IDTextImpl::substringData(unsigned int offset, unsigned int count) const
  165.                                                                 {return fCharacterData.substringData(this, offset, count);};
  166.      void          IDTextImpl::appendData(const XMLCh *arg)     {fCharacterData.appendData(this, arg);};
  167.      void          IDTextImpl::insertData(unsigned int offset, const  XMLCh *arg)
  168.                                                                 {fCharacterData.insertData(this, offset, arg);};
  169.      void          IDTextImpl::deleteData(unsigned int offset, unsigned int count)
  170.                                                                 {fCharacterData.deleteData(this, offset, count);};
  171.      void          IDTextImpl::replaceData(unsigned int offset, unsigned int count, const XMLCh *arg)
  172.                                                                 {fCharacterData.replaceData(this, offset, count, arg);};
  173.      void          IDTextImpl::setData(const XMLCh *data)       {fCharacterData.setData(this, data);};
  174.      void          IDTextImpl::setNodeValue(const XMLCh  *nodeValue)   {fCharacterData.setNodeValue (this, nodeValue); };