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

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: IDProcessingInstructionImpl.cpp,v 1.2 2001/05/11 13:25:57 tng Exp $
  58.  */
  59. #include "IDProcessingInstructionImpl.hpp"
  60. #include "IDDocumentImpl.hpp"
  61. #include "IDNodeImpl.hpp"
  62. #include "IDOM_DOMException.hpp"
  63. #include "IDOM_Node.hpp"
  64. IDProcessingInstructionImpl::IDProcessingInstructionImpl(IDOM_Document *ownerDoc,
  65.                                                      const XMLCh *targt,
  66.                                                      const XMLCh *dat)
  67.     : fNode(ownerDoc)
  68. {
  69.     fNode.setIsLeafNode(true);
  70.     this->fTarget = ((IDDocumentImpl *)ownerDoc)->cloneString(targt);
  71.     this->fData =   ((IDDocumentImpl *)ownerDoc)->cloneString(dat);
  72. };
  73. IDProcessingInstructionImpl::IDProcessingInstructionImpl(
  74.                                         const IDProcessingInstructionImpl &other,
  75.                                         bool deep)
  76.     : fNode(other.fNode), fChild(other.fChild)
  77. {
  78.     fNode.setIsLeafNode(true);
  79.     fTarget = other.fTarget;
  80.     fData = other.fData;
  81. };
  82. IDProcessingInstructionImpl::~IDProcessingInstructionImpl()
  83. {
  84. };
  85. IDOM_Node *IDProcessingInstructionImpl::cloneNode(bool deep) const
  86. {
  87.     return new (getOwnerDocument()) IDProcessingInstructionImpl(*this, deep);
  88. };
  89. const XMLCh * IDProcessingInstructionImpl::getNodeName() const
  90. {
  91.     return fTarget;
  92. };
  93. short IDProcessingInstructionImpl::getNodeType() const {
  94.     return IDOM_Node::PROCESSING_INSTRUCTION_NODE;
  95. };
  96. const XMLCh * IDProcessingInstructionImpl::getNodeValue() const
  97. {
  98.     return fData;
  99. };
  100. void IDProcessingInstructionImpl::setNodeValue(const XMLCh *value)
  101. {
  102.     if (fNode.isReadOnly())
  103.         throw IDOM_DOMException(IDOM_DOMException::NO_MODIFICATION_ALLOWED_ERR, 0);
  104.     fData = ((IDDocumentImpl *)getOwnerDocument())->cloneString(value);
  105. };
  106. const XMLCh * IDProcessingInstructionImpl::getData() const
  107. {
  108.     return fData;
  109. };
  110. /** A PI's "target" states what processor channel the PI's data
  111. should be directed to. It is defined differently in HTML and XML.
  112.   In XML, a PI's "target" is the first (whitespace-delimited) token
  113.   following the "<?" token that begins the PI.
  114.     In HTML, target is always 0.
  115.       Note that getNodeName is aliased to getTarget.
  116. */
  117. const XMLCh * IDProcessingInstructionImpl::getTarget() const
  118. {
  119.     return fTarget;
  120. };
  121. /**
  122. * Change the data content of this PI.
  123. * Note that setNodeValue is aliased to setData
  124. * @see getData().
  125. * @throws DOMException(NO_MODIFICATION_ALLOWED_ERR) if node is read-only.
  126. */
  127. void IDProcessingInstructionImpl::setData(const XMLCh *arg)
  128. {
  129.     if (fNode.isReadOnly())
  130.         throw IDOM_DOMException(IDOM_DOMException::NO_MODIFICATION_ALLOWED_ERR,
  131.                                0);
  132.     fData = ((IDDocumentImpl *)getOwnerDocument())->cloneString(arg);
  133. };
  134. //
  135. //    Delegation stubs for inherited functions
  136. //
  137.            IDOM_Node          *IDProcessingInstructionImpl::appendChild(IDOM_Node *newChild)        {return fNode.appendChild (newChild); };
  138.            IDOM_NamedNodeMap  *IDProcessingInstructionImpl::getAttributes() const          {return fNode.getAttributes (); };
  139.            IDOM_NodeList      *IDProcessingInstructionImpl::getChildNodes() const          {return fNode.getChildNodes (); };
  140.            IDOM_Node          *IDProcessingInstructionImpl::getFirstChild() const          {return fNode.getFirstChild (); };
  141.            IDOM_Node          *IDProcessingInstructionImpl::getLastChild() const              {return fNode.getLastChild (); };
  142.      const XMLCh              *IDProcessingInstructionImpl::getLocalName() const                    {return fNode.getLocalName (); };
  143.      const XMLCh              *IDProcessingInstructionImpl::getNamespaceURI() const                 {return fNode.getNamespaceURI (); };
  144.            IDOM_Node          *IDProcessingInstructionImpl::getNextSibling() const                  {return fChild.getNextSibling (); };
  145.            IDOM_Document      *IDProcessingInstructionImpl::getOwnerDocument() const                {return fNode.getOwnerDocument (); };
  146.      const XMLCh              *IDProcessingInstructionImpl::getPrefix() const                       {return fNode.getPrefix (); };
  147.            IDOM_Node          *IDProcessingInstructionImpl::getParentNode() const                   {return fChild.getParentNode (this); };
  148.            IDOM_Node          *IDProcessingInstructionImpl::getPreviousSibling() const              {return fChild.getPreviousSibling (this); };
  149.            bool                IDProcessingInstructionImpl::hasChildNodes() const                   {return fNode.hasChildNodes (); };
  150.            IDOM_Node          *IDProcessingInstructionImpl::insertBefore(IDOM_Node *newChild, IDOM_Node *refChild)
  151.                                                                                                     {return fNode.insertBefore (newChild, refChild); };
  152.            void                IDProcessingInstructionImpl::normalize()                             {fNode.normalize (); };
  153.            IDOM_Node          *IDProcessingInstructionImpl::removeChild(IDOM_Node *oldChild)        {return fNode.removeChild (oldChild); };
  154.            IDOM_Node          *IDProcessingInstructionImpl::replaceChild(IDOM_Node *newChild, IDOM_Node *oldChild)
  155.                                                                                                     {return fNode.replaceChild (newChild, oldChild); };
  156.            bool                IDProcessingInstructionImpl::supports(const XMLCh *feature, const XMLCh *version) const
  157.                                                                                                     {return fNode.supports (feature, version); };
  158.            void                IDProcessingInstructionImpl::setPrefix(const XMLCh  *prefix)         {fNode.setPrefix(prefix); };