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