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

词法分析

开发平台:

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: DOMAttrNSImpl.cpp,v 1.11 2003/05/15 18:25:54 knoaman Exp $
  58.  */
  59. #include <xercesc/util/XMLUniDefs.hpp>
  60. #include "DOMAttrNSImpl.hpp"
  61. #include "DOMDocumentImpl.hpp"
  62. #include <xercesc/dom/DOMDocument.hpp>
  63. #include <xercesc/dom/DOMElement.hpp>
  64. #include <xercesc/dom/DOMException.hpp>
  65. #include "assert.h"
  66. XERCES_CPP_NAMESPACE_BEGIN
  67. DOMAttrNSImpl::DOMAttrNSImpl(DOMDocument *ownerDoc, const XMLCh *nam) :
  68. DOMAttrImpl(ownerDoc, nam)
  69. {
  70.     this->fNamespaceURI=0; //DOM Level 2
  71.     this->fLocalName=0;       //DOM Level 2
  72.     this->fPrefix=0;
  73. }
  74. //Introduced in DOM Level 2
  75. DOMAttrNSImpl::DOMAttrNSImpl(DOMDocument *ownerDoc,
  76.                            const XMLCh *namespaceURI,
  77.                            const XMLCh *qualifiedName) :
  78. DOMAttrImpl(ownerDoc, qualifiedName)
  79. {
  80.     setName(namespaceURI, qualifiedName);
  81. }
  82. DOMAttrNSImpl::DOMAttrNSImpl(const DOMAttrNSImpl &other, bool deep) :
  83. DOMAttrImpl(other, deep)
  84. {
  85.     this->fNamespaceURI = other.fNamespaceURI; //DOM Level 2
  86.     this->fLocalName = other.fLocalName;          //DOM Level 2
  87.     this->fPrefix = other.fPrefix;
  88. };
  89. DOMNode * DOMAttrNSImpl::cloneNode(bool deep) const
  90. {
  91.     DOMNode* newNode = new (getOwnerDocument(), DOMDocumentImpl::ATTR_NS_OBJECT) DOMAttrNSImpl(*this, deep);
  92.     fNode.callUserDataHandlers(DOMUserDataHandler::NODE_CLONED, this, newNode);
  93.     return newNode;
  94. };
  95. const XMLCh * DOMAttrNSImpl::getNamespaceURI() const
  96. {
  97.     return fNamespaceURI;
  98. }
  99. const XMLCh * DOMAttrNSImpl::getPrefix() const
  100. {
  101.     return fPrefix;
  102. }
  103. const XMLCh * DOMAttrNSImpl::getLocalName() const
  104. {
  105.     return fLocalName;
  106. }
  107. void DOMAttrNSImpl::setPrefix(const XMLCh *prefix)
  108. {
  109.     const XMLCh * xml = DOMNodeImpl::getXmlString();
  110.     const XMLCh * xmlURI = DOMNodeImpl::getXmlURIString();
  111.     const XMLCh * xmlns = DOMNodeImpl::getXmlnsString();
  112.     const XMLCh * xmlnsURI = DOMNodeImpl::getXmlnsURIString();
  113.     if (fNode.isReadOnly())
  114.         throw DOMException(DOMException::NO_MODIFICATION_ALLOWED_ERR,
  115.         0);
  116.     if (fNamespaceURI == 0 || fNamespaceURI[0] == chNull || XMLString::equals(fLocalName, xmlns))
  117.         throw DOMException(DOMException::NAMESPACE_ERR, 0);
  118.     if (prefix != 0 && !((DOMDocumentImpl *)this->getOwnerDocument())->isXMLName(prefix))
  119.         throw DOMException(DOMException::INVALID_CHARACTER_ERR,0);
  120.     if (prefix == 0 || prefix[0] == chNull) {
  121.         fName = fLocalName;
  122.         fPrefix = 0;
  123.         return;
  124.     }
  125.     if (XMLString::equals(prefix, xml)&&
  126.         !XMLString::equals(fNamespaceURI, xmlURI)||
  127.         XMLString::equals(prefix, xmlns)&&
  128.         !XMLString::equals(fNamespaceURI, xmlnsURI))
  129.         throw DOMException(DOMException::NAMESPACE_ERR, 0);
  130.     if (XMLString::indexOf(prefix, chColon) != -1) {
  131.         throw DOMException(DOMException::NAMESPACE_ERR, 0);
  132.     }
  133.     this-> fPrefix = ((DOMDocumentImpl *)this->getOwnerDocument())->getPooledString(prefix);
  134.     int prefixLen = XMLString::stringLen(prefix);
  135.     int newQualifiedNameLen = prefixLen+1+XMLString::stringLen(fLocalName);
  136.     XMLCh* newName;
  137.     XMLCh temp[4000];
  138.     if (newQualifiedNameLen >= 3999)
  139.         newName = (XMLCh*) XMLPlatformUtils::fgMemoryManager->allocate
  140.         (
  141.             newQualifiedNameLen * sizeof(XMLCh)
  142.         );//new XMLCh[newQualifiedNameLen];
  143.     else
  144.         newName = temp;
  145.     // newName = prefix + chColon + fLocalName;
  146.     XMLString::copyString(newName, prefix);
  147.     newName[prefixLen] = chColon;
  148.     XMLString::copyString(&newName[prefixLen+1], fLocalName);
  149.     fName = ((DOMDocumentImpl *)this->getOwnerDocument())->
  150.                                            getPooledString(newName);
  151.     if (newQualifiedNameLen >= 3999)
  152.         XMLPlatformUtils::fgMemoryManager->deallocate(newName);//delete[] newName;
  153. }
  154. void DOMAttrNSImpl::release()
  155. {
  156.     if (fNode.isOwned() && !fNode.isToBeReleased())
  157.         throw DOMException(DOMException::INVALID_ACCESS_ERR,0);
  158.     DOMDocumentImpl* doc = (DOMDocumentImpl*) getOwnerDocument();
  159.     if (doc) {
  160.         fNode.callUserDataHandlers(DOMUserDataHandler::NODE_DELETED, 0, 0);
  161.         fParent.release();
  162.         doc->release(this, DOMDocumentImpl::ATTR_NS_OBJECT);
  163.     }
  164.     else {
  165.         // shouldn't reach here
  166.         throw DOMException(DOMException::INVALID_ACCESS_ERR,0);
  167.     }
  168. }
  169. DOMNode* DOMAttrNSImpl::rename(const XMLCh* namespaceURI, const XMLCh* name)
  170. {
  171.     DOMElement* el = getOwnerElement();
  172.     if (el)
  173.         el->removeAttributeNode(this);
  174.     setName(namespaceURI, name);
  175.     if (el)
  176.         el->setAttributeNodeNS(this);
  177.     return this;
  178. }
  179. void DOMAttrNSImpl::setName(const XMLCh* namespaceURI, const XMLCh* qualifiedName)
  180. {
  181.     DOMDocumentImpl* ownerDoc = (DOMDocumentImpl *) getOwnerDocument();
  182.     const XMLCh * xmlns = DOMNodeImpl::getXmlnsString();
  183.     const XMLCh * xmlnsURI = DOMNodeImpl::getXmlnsURIString();
  184.     this->fName = ownerDoc->getPooledString(qualifiedName);
  185.     int index = DOMDocumentImpl::indexofQualifiedName(qualifiedName);
  186.     if (index < 0)
  187.         throw DOMException(DOMException::NAMESPACE_ERR, 0);
  188.     bool xmlnsAlone = false; //true if attribute name is "xmlns"
  189.     if (index == 0) { //qualifiedName contains no ':'
  190.         if (XMLString::equals(this->fName, xmlns)) {
  191.             if (!XMLString::equals(namespaceURI, xmlnsURI))
  192.                 throw DOMException(DOMException::NAMESPACE_ERR, 0);
  193.             xmlnsAlone = true;
  194.         }
  195.         this -> fPrefix = 0;
  196.         this -> fLocalName = this -> fName;
  197.     } else { //0 < index < this->name.length()-1
  198.         XMLCh* newName;
  199.         XMLCh temp[4000];
  200.         if (index >= 3999)
  201.             newName = (XMLCh*) XMLPlatformUtils::fgMemoryManager->allocate
  202.             (
  203.                 (XMLString::stringLen(qualifiedName) + 1) * sizeof(XMLCh)
  204.             );//new XMLCh[XMLString::stringLen(qualifiedName)+1];
  205.         else
  206.             newName = temp;
  207.         XMLString::copyNString(newName, fName, index);
  208.         newName[index] = chNull;
  209.         this-> fPrefix = ownerDoc->getPooledString(newName);
  210.         this -> fLocalName = ownerDoc->getPooledString(fName+index+1);
  211.         if (index >= 3999)
  212.             XMLPlatformUtils::fgMemoryManager->deallocate(newName);//delete[] newName;
  213.         // Before we carry on, we should check if the prefix or localName are valid XMLName
  214.         if (!((DOMDocumentImpl *)this->getOwnerDocument())->isXMLName(fPrefix) || !((DOMDocumentImpl *)this->getOwnerDocument())->isXMLName(fLocalName))
  215.             throw DOMException(DOMException::NAMESPACE_ERR, 0);
  216.     }
  217.     // DOM Level 3: namespace URI is never empty string.
  218.     const XMLCh * URI = xmlnsAlone ? xmlnsURI
  219.         : DOMNodeImpl::mapPrefix
  220.           (
  221.               fPrefix,
  222.               (!namespaceURI || !*namespaceURI) ? 0 : namespaceURI,
  223.               DOMNode::ATTRIBUTE_NODE
  224.           );
  225.     this -> fNamespaceURI = (URI == 0) ? 0 : ownerDoc->getPooledString(URI);
  226. };
  227. XERCES_CPP_NAMESPACE_END