IDAttrImpl.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: IDAttrImpl.cpp,v 1.6 2001/06/08 13:10:28 tng Exp $
  58.  */
  59. #include "IDAttrImpl.hpp"
  60. #include "IDOM_DOMException.hpp"
  61. #include "IDOM_Document.hpp"
  62. #include "IDStringPool.hpp"
  63. #include "IDNodeIDMap.hpp"
  64. #include "IDDocumentImpl.hpp"
  65. #include "IDCasts.hpp"
  66. IDAttrImpl::IDAttrImpl(IDOM_Document *ownerDoc, const XMLCh *aName)
  67.     : fNode(ownerDoc), fParent (ownerDoc)
  68. {
  69.     IDDocumentImpl *docImpl = (IDDocumentImpl *)ownerDoc;
  70.     fName = docImpl->getPooledString(aName);
  71.     fNode.isSpecified(true);
  72. };
  73. IDAttrImpl::IDAttrImpl(const IDAttrImpl &other, bool deep)
  74.     : fNode(other.fNode), fParent (other.fParent)
  75. {
  76.     fName = other.fName;
  77. if (other.fNode.isSpecified())
  78. fNode.isSpecified(true);
  79. else
  80. fNode.isSpecified(false);
  81.     if (other.fNode.isIdAttr())
  82.     {
  83.         fNode.isIdAttr(true);
  84.         IDDocumentImpl *doc = (IDDocumentImpl *)this->getOwnerDocument();
  85.         doc->getNodeIDMap()->add(this);
  86.     }
  87. fParent.cloneChildren(&other);
  88. };
  89. IDAttrImpl::~IDAttrImpl() {
  90. };
  91. IDOM_Node * IDAttrImpl::cloneNode(bool deep) const
  92. {
  93.     return new (this->getOwnerDocument()) IDAttrImpl(*this, deep);
  94. };
  95. const XMLCh * IDAttrImpl::getNodeName()  const{
  96.     return fName;
  97. };
  98. short IDAttrImpl::getNodeType() const {
  99.     return IDOM_Node::ATTRIBUTE_NODE;
  100. };
  101. const XMLCh * IDAttrImpl::getName() const {
  102.     return fName;
  103. };
  104. const XMLCh * IDAttrImpl::getNodeValue() const
  105. {
  106.     return getValue();
  107. };
  108. bool IDAttrImpl::getSpecified() const
  109. {
  110.     return fNode.isSpecified();
  111. };
  112. const XMLCh * IDAttrImpl::getValue() const
  113. {
  114.     if (fParent.fFirstChild == 0) {
  115.         return XMLUni::fgZeroLenString; // return "";
  116.     }
  117.     IDOM_Node *node = castToChildImpl(fParent.fFirstChild)->nextSibling;
  118.     if (node == 0) {
  119.         return fParent.fFirstChild->getNodeValue();
  120.     }
  121.     int             length = 0;
  122.     for (node = fParent.fFirstChild; node != 0; node = castToChildImpl(node)->nextSibling)
  123.         length += XMLString::stringLen(node->getNodeValue());
  124.     // idom_revisit - Come up with some way of not allocating a new string each
  125.     //                time we do this.  But it's not an immediate pressing problem,
  126.     //                becuase we only allocate a new string when we have attribute
  127.     //                values that contain entity reference nodes.  And the parser
  128.     //                does not ever produce such a thing.
  129.     //XMLCh * retString = new (this->getOwnerDocument()) XMLCh[length+1];
  130.     length = sizeof(XMLCh) * (length+1);
  131.     length = (length % 4) + length;
  132.     XMLCh * retString = (XMLCh*) ((IDDocumentImpl *)this->getOwnerDocument())->allocate(length);
  133.     retString[0] = 0;
  134.     for (node = fParent.fFirstChild; node != 0; node = castToChildImpl(node)->nextSibling)
  135.     {
  136.         XMLString::catString(retString, node->getNodeValue());
  137.     };
  138.     return retString;
  139. };
  140. void IDAttrImpl::setNodeValue(const XMLCh *val)
  141. {
  142.     setValue(val);
  143. };
  144. void IDAttrImpl::setSpecified(bool arg)
  145. {
  146.     fNode.isSpecified(arg);
  147. };
  148. void IDAttrImpl::setValue(const XMLCh *val)
  149. {
  150.     if (fNode.isReadOnly())
  151.     {
  152.         throw IDOM_DOMException (
  153.             IDOM_DOMException::NO_MODIFICATION_ALLOWED_ERR, 0);
  154.     }
  155.     //  If this attribute was of type ID and in the map, take it out,
  156.     //    then put it back in with the new name.  For now, we don't worry
  157.     //    about what happens if the new name conflicts
  158.     //
  159.     IDDocumentImpl *doc = (IDDocumentImpl *)getOwnerDocument();
  160.     if (fNode.isIdAttr())
  161.         doc->getNodeIDMap()->remove(this);
  162.     IDOM_Node *kid;
  163.     while ((kid = fParent.fFirstChild) != 0)         // Remove existing kids
  164.     {
  165.         removeChild(kid);
  166.     }
  167.     if (val != 0)              // Create and add the new one
  168.         appendChild(doc->createTextNode(val));
  169.     fNode.isSpecified(true);
  170.     fParent.changed();
  171.     if (fNode.isIdAttr())
  172.         doc->getNodeIDMap()->add(this);
  173. };
  174. //Introduced in DOM Level 2
  175. IDOM_Element *IDAttrImpl::getOwnerElement() const
  176. {
  177.     // if we have an owner, ownerNode is our ownerElement, otherwise it's
  178.     // our ownerDocument and we don't have an ownerElement
  179.     return (IDOM_Element *) (fNode.isOwned() ? fNode.fOwnerNode : 0);
  180. }
  181. //internal use by parser only
  182. void IDAttrImpl::setOwnerElement(IDOM_Element *ownerElem)
  183. {
  184.     fNode.fOwnerNode = ownerElem;
  185.     // idom_revisit.  Is this backwards?  isOwned(true)?
  186.     fNode.isOwned(false);
  187. }
  188.            IDOM_Node          *IDAttrImpl::appendChild(IDOM_Node *newChild)        {return fParent.appendChild (newChild); };
  189.            IDOM_NamedNodeMap  *IDAttrImpl::getAttributes() const         {return fNode.getAttributes (); };
  190.            IDOM_NodeList      *IDAttrImpl::getChildNodes() const         {return fParent.getChildNodes (); };
  191.            IDOM_Node          *IDAttrImpl::getFirstChild() const         {return fParent.getFirstChild (); };
  192.            IDOM_Node          *IDAttrImpl::getLastChild() const             {return fParent.getLastChild (); };
  193.      const XMLCh              *IDAttrImpl::getLocalName() const                    {return fNode.getLocalName (); };
  194.      const XMLCh              *IDAttrImpl::getNamespaceURI() const                 {return fNode.getNamespaceURI (); };
  195.            IDOM_Node          *IDAttrImpl::getNextSibling() const                  {return fNode.getNextSibling (); };
  196.            IDOM_Document      *IDAttrImpl::getOwnerDocument() const                {return fNode.getOwnerDocument (); };
  197.      const XMLCh              *IDAttrImpl::getPrefix() const                       {return fNode.getPrefix (); };
  198.            IDOM_Node          *IDAttrImpl::getParentNode() const                   {return fNode.getParentNode (); };
  199.            IDOM_Node          *IDAttrImpl::getPreviousSibling() const              {return fNode.getPreviousSibling (); };
  200.            bool                IDAttrImpl::hasChildNodes() const                   {return fParent.hasChildNodes (); };
  201.            IDOM_Node          *IDAttrImpl::insertBefore(IDOM_Node *newChild, IDOM_Node *refChild)
  202.                                                                                    {return fParent.insertBefore (newChild, refChild); };
  203.            void                IDAttrImpl::normalize()                             {fNode.normalize (); };
  204.            IDOM_Node          *IDAttrImpl::removeChild(IDOM_Node *oldChild)        {return fParent.removeChild (oldChild); };
  205.            IDOM_Node          *IDAttrImpl::replaceChild(IDOM_Node *newChild, IDOM_Node *oldChild)
  206.                                                                                    {return fParent.replaceChild (newChild, oldChild); };
  207.            bool                IDAttrImpl::supports(const XMLCh *feature, const XMLCh *version) const
  208.                                                                                    {return fNode.supports (feature, version); };
  209.            void                IDAttrImpl::setPrefix(const XMLCh  *prefix)         {fNode.setPrefix(prefix); };