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

词法分析

开发平台:

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: DOMAttrImpl.cpp,v 1.16 2003/05/16 21:36:55 knoaman Exp $
  58.  */
  59. #include <xercesc/dom/DOMDocument.hpp>
  60. #include <xercesc/dom/DOMException.hpp>
  61. #include "DOMAttrImpl.hpp"
  62. #include "DOMStringPool.hpp"
  63. #include "DOMDocumentImpl.hpp"
  64. #include "DOMCasts.hpp"
  65. #include "DOMTypeInfoImpl.hpp"
  66. XERCES_CPP_NAMESPACE_BEGIN
  67. DOMAttrImpl::DOMAttrImpl(DOMDocument *ownerDoc, const XMLCh *aName)
  68.     : fNode(ownerDoc), fParent (ownerDoc), fSchemaType(0)
  69. {
  70.     DOMDocumentImpl *docImpl = (DOMDocumentImpl *)ownerDoc;
  71.     fName = docImpl->getPooledString(aName);
  72.     fNode.isSpecified(true);
  73. };
  74. DOMAttrImpl::DOMAttrImpl(const DOMAttrImpl &other, bool deep)
  75.     : fNode(other.fNode), fParent (other.fParent), fSchemaType(other.fSchemaType)
  76. {
  77.     fName = other.fName;
  78.     if (other.fNode.isSpecified())
  79.         fNode.isSpecified(true);
  80.     else
  81.         fNode.isSpecified(false);
  82.     if (other.fNode.isIdAttr())
  83.     {
  84.         fNode.isIdAttr(true);
  85.         DOMDocumentImpl *doc = (DOMDocumentImpl *)this->getOwnerDocument();
  86.         doc->getNodeIDMap()->add(this);
  87.     }
  88.     fParent.cloneChildren(&other);
  89. };
  90. DOMAttrImpl::~DOMAttrImpl() {
  91. };
  92. DOMNode * DOMAttrImpl::cloneNode(bool deep) const
  93. {
  94.     DOMNode* newNode = new (this->getOwnerDocument(), DOMDocumentImpl::ATTR_OBJECT) DOMAttrImpl(*this, deep);
  95.     fNode.callUserDataHandlers(DOMUserDataHandler::NODE_CLONED, this, newNode);
  96.     return newNode;
  97. };
  98. const XMLCh * DOMAttrImpl::getNodeName()  const{
  99.     return fName;
  100. };
  101. short DOMAttrImpl::getNodeType() const {
  102.     return DOMNode::ATTRIBUTE_NODE;
  103. };
  104. const XMLCh * DOMAttrImpl::getName() const {
  105.     return fName;
  106. };
  107. const XMLCh * DOMAttrImpl::getNodeValue() const
  108. {
  109.     return getValue();
  110. };
  111. bool DOMAttrImpl::getSpecified() const
  112. {
  113.     return fNode.isSpecified();
  114. };
  115. const XMLCh * DOMAttrImpl::getValue() const
  116. {
  117.     if (fParent.fFirstChild == 0) {
  118.         return XMLUni::fgZeroLenString; // return "";
  119.     }
  120.     // Simple case where attribute value is just a single text node
  121.     DOMNode *node = castToChildImpl(fParent.fFirstChild)->nextSibling;
  122.     if (node == 0 && fParent.fFirstChild->getNodeType() == DOMNode::TEXT_NODE) {
  123.         return fParent.fFirstChild->getNodeValue();
  124.     }
  125.     //
  126.     // Complicated case whre attribute value is a DOM tree
  127.     //
  128.     // According to the spec, the child nodes of the Attr node may be either
  129.     // Text or EntityReference nodes.
  130.     //
  131.     // The parser will not create such thing, this is for those created by users.
  132.     //
  133.     // In such case, we have to visit each child to retrieve the text
  134.     //
  135.     XMLBuffer buf(1023, ((DOMDocumentImpl *)this->getOwnerDocument())->getMemoryManager());
  136.     getTextValue(fParent.fFirstChild, buf);
  137.     return (XMLCh*) ((DOMDocumentImpl *)this->getOwnerDocument())->getPooledString(buf.getRawBuffer());
  138. };
  139. void DOMAttrImpl::getTextValue(DOMNode* node, XMLBuffer& buf) const
  140. {
  141.     if (node->getNodeType() == DOMNode::TEXT_NODE)
  142.         buf.append(node->getNodeValue());
  143.     else if (node->getNodeType() == DOMNode::ENTITY_REFERENCE_NODE)
  144.     {
  145.         for (node = node->getFirstChild(); node != 0; node = castToChildImpl(node)->nextSibling)
  146.         {
  147.             getTextValue(node, buf);
  148.         }
  149.     }
  150.     return;
  151. }
  152. void DOMAttrImpl::setNodeValue(const XMLCh *val)
  153. {
  154.     setValue(val);
  155. };
  156. void DOMAttrImpl::setSpecified(bool arg)
  157. {
  158.     fNode.isSpecified(arg);
  159. };
  160. void DOMAttrImpl::setValue(const XMLCh *val)
  161. {
  162.     if (fNode.isReadOnly())
  163.     {
  164.         throw DOMException (
  165.             DOMException::NO_MODIFICATION_ALLOWED_ERR, 0);
  166.     }
  167.     //  If this attribute was of type ID and in the map, take it out,
  168.     //    then put it back in with the new name.  For now, we don't worry
  169.     //    about what happens if the new name conflicts
  170.     //
  171.     DOMDocumentImpl *doc = (DOMDocumentImpl *)getOwnerDocument();
  172.     if (fNode.isIdAttr())
  173.         doc->getNodeIDMap()->remove(this);
  174.     DOMNode *kid;
  175.     while ((kid = fParent.fFirstChild) != 0)         // Remove existing kids
  176.     {
  177.         DOMNode* node = removeChild(kid);
  178.         if (node)
  179.             node->release();
  180.     }
  181.     if (val != 0)              // Create and add the new one
  182.         appendChild(doc->createTextNode(val));
  183.     fNode.isSpecified(true);
  184.     fParent.changed();
  185.     if (fNode.isIdAttr())
  186.         doc->getNodeIDMap()->add(this);
  187. };
  188. //Introduced in DOM Level 2
  189. DOMElement *DOMAttrImpl::getOwnerElement() const
  190. {
  191.     // if we have an owner, ownerNode is our ownerElement, otherwise it's
  192.     // our ownerDocument and we don't have an ownerElement
  193.     return (DOMElement *) (fNode.isOwned() ? fNode.fOwnerNode : 0);
  194. }
  195. //internal use by parser only
  196. void DOMAttrImpl::setOwnerElement(DOMElement *ownerElem)
  197. {
  198.     fNode.fOwnerNode = ownerElem;
  199.     // revisit.  Is this backwards?  isOwned(true)?
  200.     fNode.isOwned(false);
  201. }
  202. //For DOM Level 3
  203. void DOMAttrImpl::release()
  204. {
  205.     if (fNode.isOwned() && !fNode.isToBeReleased())
  206.         throw DOMException(DOMException::INVALID_ACCESS_ERR,0);
  207.     DOMDocumentImpl* doc = (DOMDocumentImpl*) getOwnerDocument();
  208.     if (doc) {
  209.         fNode.callUserDataHandlers(DOMUserDataHandler::NODE_DELETED, 0, 0);
  210.         fParent.release();
  211.         doc->release(this, DOMDocumentImpl::ATTR_OBJECT);
  212.     }
  213.     else {
  214.         // shouldn't reach here
  215.         throw DOMException(DOMException::INVALID_ACCESS_ERR,0);
  216.     }
  217. }
  218. bool DOMAttrImpl::isId() const {
  219.     return fNode.isIdAttr();
  220. }
  221. DOMNode* DOMAttrImpl::rename(const XMLCh* namespaceURI, const XMLCh* name)
  222. {
  223.     DOMElement* el = getOwnerElement();
  224.     DOMDocumentImpl* doc = (DOMDocumentImpl*) getOwnerDocument();
  225.     if (el)
  226.         el->removeAttributeNode(this);
  227.     if (!namespaceURI || !*namespaceURI) {
  228.         fName = doc->getPooledString(name);
  229.         if (el)
  230.             el->setAttributeNode(this);
  231.         return this;
  232.     }
  233.     else {
  234.         // create a new AttrNS
  235.         DOMAttr* newAttr = doc->createAttributeNS(namespaceURI, name);
  236.         // transfer the userData
  237.         doc->transferUserData(castToNodeImpl(this), castToNodeImpl(newAttr));
  238.         // move children to new node
  239.         DOMNode* child = getFirstChild();
  240.         while (child) {
  241.             removeChild(child);
  242.             newAttr->appendChild(child);
  243.             child = getFirstChild();
  244.         }
  245.         // and fire user data NODE_RENAMED event
  246.         castToNodeImpl(newAttr)->callUserDataHandlers(DOMUserDataHandler::NODE_RENAMED, this, newAttr);
  247.         // reattach attr to element
  248.         if (el)
  249.             el->setAttributeNodeNS(newAttr);
  250.         return newAttr;
  251.     }
  252. }
  253. const DOMTypeInfo *DOMAttrImpl::getTypeInfo() const
  254. {
  255.     if(!fSchemaType)
  256.         ((DOMAttrImpl *)(this))->fSchemaType = new (getOwnerDocument()) DOMTypeInfoImpl(0, 0, (DOMDocumentImpl *)getOwnerDocument());
  257.     return fSchemaType;
  258. }
  259. void DOMAttrImpl::setTypeInfo(const XMLCh* typeName, const XMLCh* typeURI) 
  260. {
  261.     fSchemaType = new (getOwnerDocument()) DOMTypeInfoImpl(typeName, typeURI, (DOMDocumentImpl *)getOwnerDocument());
  262. }
  263.            DOMNode*         DOMAttrImpl::appendChild(DOMNode *newChild)          {return fParent.appendChild (newChild); };
  264.            DOMNamedNodeMap* DOMAttrImpl::getAttributes() const                   {return fNode.getAttributes (); };
  265.            DOMNodeList*     DOMAttrImpl::getChildNodes() const                   {return fParent.getChildNodes (); };
  266.            DOMNode*         DOMAttrImpl::getFirstChild() const                   {return fParent.getFirstChild (); };
  267.            DOMNode*         DOMAttrImpl::getLastChild() const                    {return fParent.getLastChild (); };
  268.      const XMLCh*           DOMAttrImpl::getLocalName() const                    {return fNode.getLocalName (); };
  269.      const XMLCh*           DOMAttrImpl::getNamespaceURI() const                 {return fNode.getNamespaceURI (); };
  270.            DOMNode*         DOMAttrImpl::getNextSibling() const                  {return fNode.getNextSibling (); };
  271.            DOMDocument*     DOMAttrImpl::getOwnerDocument() const                {return fParent.fOwnerDocument; };
  272.      const XMLCh*           DOMAttrImpl::getPrefix() const                       {return fNode.getPrefix (); };
  273.            DOMNode*         DOMAttrImpl::getParentNode() const                   {return fNode.getParentNode (); };
  274.            DOMNode*         DOMAttrImpl::getPreviousSibling() const              {return fNode.getPreviousSibling (); };
  275.            bool             DOMAttrImpl::hasChildNodes() const                   {return fParent.hasChildNodes (); };
  276.            DOMNode*         DOMAttrImpl::insertBefore(DOMNode *newChild, DOMNode *refChild)
  277.                                                                                  {return fParent.insertBefore (newChild, refChild); };
  278.            void             DOMAttrImpl::normalize()                             {fParent.normalize (); };
  279.            DOMNode*         DOMAttrImpl::removeChild(DOMNode *oldChild)          {return fParent.removeChild (oldChild); };
  280.            DOMNode*         DOMAttrImpl::replaceChild(DOMNode *newChild, DOMNode *oldChild)
  281.                                                                                  {return fParent.replaceChild (newChild, oldChild); };
  282.            bool             DOMAttrImpl::isSupported(const XMLCh *feature, const XMLCh *version) const
  283.                                                                                  {return fNode.isSupported (feature, version); };
  284.            void             DOMAttrImpl::setPrefix(const XMLCh  *prefix)         {fNode.setPrefix(prefix); };
  285.            bool             DOMAttrImpl::hasAttributes() const                   {return fNode.hasAttributes(); };
  286.            bool             DOMAttrImpl::isSameNode(const DOMNode* other) const  {return fNode.isSameNode(other); };
  287.            bool             DOMAttrImpl::isEqualNode(const DOMNode* arg) const   {return fParent.isEqualNode(arg); };
  288.            void*            DOMAttrImpl::setUserData(const XMLCh* key, void* data, DOMUserDataHandler* handler)
  289.                                                                                  {return fNode.setUserData(key, data, handler); };
  290.            void*            DOMAttrImpl::getUserData(const XMLCh* key) const     {return fNode.getUserData(key); };
  291.            const XMLCh*     DOMAttrImpl::getBaseURI() const                      {return fNode.getBaseURI(); };
  292.            short            DOMAttrImpl::compareTreePosition(const DOMNode* other) const {return fNode.compareTreePosition(other); };
  293.            const XMLCh*     DOMAttrImpl::getTextContent() const                  {return fNode.getTextContent(); };
  294.            void             DOMAttrImpl::setTextContent(const XMLCh* textContent){fNode.setTextContent(textContent); };
  295.            const XMLCh*     DOMAttrImpl::lookupNamespacePrefix(const XMLCh* namespaceURI, bool useDefault) const  {return fNode.lookupNamespacePrefix(namespaceURI, useDefault); };
  296.            bool             DOMAttrImpl::isDefaultNamespace(const XMLCh* namespaceURI) const {return fNode.isDefaultNamespace(namespaceURI); };
  297.            const XMLCh*     DOMAttrImpl::lookupNamespaceURI(const XMLCh* prefix) const  {return fNode.lookupNamespaceURI(prefix); };
  298.            DOMNode*         DOMAttrImpl::getInterface(const XMLCh* feature)      {return fNode.getInterface(feature); };
  299. XERCES_CPP_NAMESPACE_END