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

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 2001-2003 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. #include <xercesc/dom/DOMAttr.hpp>
  57. #include <xercesc/dom/DOMNode.hpp>
  58. #include <xercesc/dom/DOMErrorHandler.hpp>
  59. #include <xercesc/dom/DOMError.hpp>
  60. #include <xercesc/dom/DOMText.hpp>
  61. #include <xercesc/framework/XMLBuffer.hpp>
  62. #include <xercesc/util/Mutexes.hpp>
  63. #include <xercesc/util/PlatformUtils.hpp>
  64. #include <xercesc/util/XMLMsgLoader.hpp>
  65. #include <xercesc/util/XMLRegisterCleanup.hpp>
  66. #include <xercesc/util/XMLString.hpp>
  67. #include <xercesc/util/XMLUni.hpp>
  68. #include <xercesc/util/XMLUniDefs.hpp>
  69. #include "DOMConfigurationImpl.hpp"
  70. #include "DOMDocumentImpl.hpp"
  71. #include "DOMElementImpl.hpp"
  72. #include "DOMErrorImpl.hpp"
  73. #include "DOMEntityReferenceImpl.hpp"
  74. #include "DOMLocatorImpl.hpp"
  75. #include "DOMNormalizer.hpp"
  76. #include "DOMTextImpl.hpp"
  77. XERCES_CPP_NAMESPACE_BEGIN
  78. // ---------------------------------------------------------------------------
  79. //  Local static data
  80. // ---------------------------------------------------------------------------
  81. static bool            sRegistered = false;
  82. static XMLMutex*       sNormalizerMutex = 0;
  83. static XMLRegisterCleanup normalizerMutexCleanup;
  84. static XMLMsgLoader*   gMsgLoader = 0;
  85. static XMLRegisterCleanup cleanupMsgLoader;
  86. // ---------------------------------------------------------------------------
  87. //  Local, static functions
  88. // ---------------------------------------------------------------------------
  89. //  Cleanup for the message loader
  90. void DOMNormalizer::reinitMsgLoader()
  91. {
  92. delete gMsgLoader;
  93. gMsgLoader = 0;
  94. }
  95. //  Cleanup for the normalizer mutex
  96. void DOMNormalizer::reinitNormalizerMutex()
  97. {
  98.     delete sNormalizerMutex;
  99.     sNormalizerMutex = 0;
  100.     sRegistered = false;
  101. }
  102. //
  103. //  We need to fault in this mutex. But, since its used for synchronization
  104. //  itself, we have to do this the low level way using a compare and swap.
  105. //
  106. static XMLMutex& gNormalizerMutex()
  107. {
  108.     if (!sNormalizerMutex)
  109.     {
  110.         XMLMutex* tmpMutex = new XMLMutex;
  111.         if (XMLPlatformUtils::compareAndSwap((void**)&sNormalizerMutex, tmpMutex, 0))
  112.         {
  113.             // Someone beat us to it, so let's clean up ours
  114.             delete tmpMutex;
  115.         }
  116.         // Now lock it and try to register it
  117.         XMLMutexLock lock(sNormalizerMutex);
  118.         // If we got here first, then register it and set the registered flag
  119.         if (!sRegistered)
  120.         {
  121. normalizerMutexCleanup.registerCleanup(DOMNormalizer::reinitNormalizerMutex);
  122.             sRegistered = true;
  123.         }
  124.     }
  125.     return *sNormalizerMutex;
  126. }
  127. static XMLMsgLoader& gNormalizerMsgLoader()
  128. {
  129.     XMLMutexLock lockInit(&gNormalizerMutex());
  130.     // If we haven't loaded our message yet, then do that
  131.     if (!gMsgLoader)
  132.     {
  133.         gMsgLoader = XMLPlatformUtils::loadMsgSet(XMLUni::fgXMLErrDomain);
  134.         if (!gMsgLoader)
  135.             XMLPlatformUtils::panic(PanicHandler::Panic_CantLoadMsgDomain);
  136.         // Register this object to be cleaned up at termination
  137.         cleanupMsgLoader.registerCleanup(DOMNormalizer::reinitMsgLoader);
  138.     }
  139.     return *gMsgLoader;
  140. }
  141. DOMNormalizer::DOMNormalizer(MemoryManager* const manager) 
  142.     : fDocument(0)
  143.     , fConfiguration(0)
  144.     , fErrorHandler(0)
  145.     , fNSScope(0)
  146.     , fNewNamespaceCount(1)
  147.     , fMemoryManager(manager)
  148. {
  149.     fNSScope = new (fMemoryManager) InScopeNamespaces(fMemoryManager);
  150. };
  151. DOMNormalizer::~DOMNormalizer() {
  152.     delete fNSScope;
  153. }
  154. void DOMNormalizer::normalizeDocument(DOMDocumentImpl *doc) {
  155.  
  156.     fDocument = doc;
  157.     fConfiguration = (DOMConfigurationImpl*)doc->getDOMConfiguration();
  158.     DOMConfigurationImpl *dci = (DOMConfigurationImpl*)fDocument->getDOMConfiguration();
  159.     if(dci)
  160.         fErrorHandler = dci->getErrorHandler();            
  161.     else 
  162.         fErrorHandler = 0;
  163.     DOMNode *child = 0;
  164.     DOMNode *next = 0;
  165.     ((DOMNormalizer *)this)->fNewNamespaceCount = 1;
  166.     for(child = doc->getFirstChild();child != 0; child = next) {
  167.         next = child->getNextSibling();
  168.         child = normalizeNode(child);
  169.         if(child != 0) {
  170.             next = child;
  171.         }
  172.     }
  173. }
  174. DOMNode * DOMNormalizer::normalizeNode(DOMNode *node) const {
  175.     switch(node->getNodeType()) {
  176.     case DOMNode::ELEMENT_NODE: {
  177.         fNSScope->addScope(fMemoryManager);
  178.         DOMNamedNodeMap *attrMap = node->getAttributes();
  179.         if(fConfiguration->featureValues & DOMConfigurationImpl::FEATURE_NAMESPACES) {
  180.             namespaceFixUp((DOMElementImpl*)node);
  181.         }
  182.         else {
  183.             //this is done in namespace fixup so no need to do it if namespace is on 
  184.             if(attrMap) {
  185.                 for(XMLSize_t i = 0; i < attrMap->getLength(); i++) {
  186.                     attrMap->item(i)->normalize();
  187.                 }
  188.             }
  189.         }
  190.         DOMNode *child = node->getFirstChild();
  191.         DOMNode *next = 0;
  192.         for (; child != 0; child = next) {
  193.             next = child->getNextSibling();
  194.             child = normalizeNode(child);
  195.             if(child != 0) {
  196.                 next = child;
  197.             }
  198.         }
  199.         fNSScope->removeScope();
  200.         break;
  201.     }
  202.     case DOMNode::COMMENT_NODE: {  
  203.         if (!(fConfiguration->featureValues & DOMConfigurationImpl::FEATURE_COMMENTS)) {
  204.             DOMNode *prevSibling = node->getPreviousSibling();
  205.             DOMNode *parent = node->getParentNode();
  206.             // remove the comment node
  207.             parent->removeChild(node);
  208.             if (prevSibling != 0 && prevSibling->getNodeType() == DOMNode::TEXT_NODE) {
  209.                 DOMNode *nextSibling = prevSibling->getNextSibling();
  210.                 if (nextSibling != 0 && nextSibling->getNodeType() == DOMNode::TEXT_NODE) {
  211.                     ((DOMTextImpl*)nextSibling)->insertData(0, prevSibling->getNodeValue());
  212.                     parent->removeChild(prevSibling);
  213.                     return nextSibling;
  214.                 }
  215.             }
  216.         }
  217.         break;
  218.     }
  219.     case DOMNode::CDATA_SECTION_NODE: {
  220.         if (!(fConfiguration->featureValues & DOMConfigurationImpl::FEATURE_CDATA_SECTIONS)) {
  221.             // convert CDATA to TEXT nodes
  222.             DOMText *text = fDocument->createTextNode(node->getNodeValue());
  223.             DOMNode *parent = node->getParentNode();
  224.             DOMNode *prevSibling = node->getPreviousSibling();
  225.             node = parent->replaceChild(text, node);
  226.             if (prevSibling != 0 && prevSibling->getNodeType() == DOMNode::TEXT_NODE) {
  227.                 text->insertData(0, prevSibling->getNodeValue());
  228.                 parent->removeChild(prevSibling);
  229.             }
  230.             return text; // Don't advance; 
  231.         }
  232.         break;
  233.     }
  234.     case DOMNode::TEXT_NODE: {
  235.         DOMNode *next = node->getNextSibling();
  236.         
  237.         if(next != 0 && next->getNodeType() == DOMNode::TEXT_NODE) {
  238.             ((DOMText*)node)->appendData(next->getNodeValue());
  239.             node->getParentNode()->removeChild(next);
  240.             return node;
  241.         } else if (XMLString::stringLen(node->getNodeValue()) == 0) {
  242.             node->getParentNode()->removeChild(node);
  243.         }
  244.     }
  245.     }
  246.     return 0;
  247. }
  248. void DOMNormalizer::namespaceFixUp(DOMElementImpl *ele) const {
  249.     DOMAttrMapImpl *attrMap = ele->fAttributes;
  250.     int len = attrMap->getLength();
  251.     //get the ns info from the attrs
  252.     for(int i = 0; i < len; i++) {
  253.         DOMAttr *at = (DOMAttr*)attrMap->item(i);
  254.         //normalize the attr whatever happens
  255.         at->normalize();
  256.         const XMLCh *uri = at->getNamespaceURI();
  257.         const XMLCh *value = at->getNodeValue();
  258.             
  259.         if(XMLString::equals(XMLUni::fgXMLNSURIName, uri)) {
  260.             if(XMLString::equals(XMLUni::fgXMLNSURIName, value)) {
  261.                 error(XMLErrs::NSDeclInvalid, ele);
  262.             }
  263.             else {
  264.                 const XMLCh *prefix = at->getPrefix();
  265.                 
  266.                 if(XMLString::equals(prefix, XMLUni::fgXMLNSString)) {
  267.                     fNSScope->addOrChangeBinding(at->getLocalName(), value, fMemoryManager);
  268.                 }
  269.                 else {
  270.                     fNSScope->addOrChangeBinding(XMLUni::fgZeroLenString, value, fMemoryManager);
  271.                 }
  272.             }
  273.         }
  274.     }
  275.     const XMLCh* prefix = ele->getPrefix();
  276.     prefix ? prefix : prefix = XMLUni::fgZeroLenString;
  277.     const XMLCh* uri = ele->getNamespaceURI();
  278.     uri ? uri : uri = XMLUni::fgZeroLenString;
  279.     if(!XMLString::equals(uri, XMLUni::fgZeroLenString)) {
  280.         if(!fNSScope->isValidBinding(prefix, uri)) {
  281.             addOrChangeNamespaceDecl(prefix, uri, ele);
  282.             fNSScope->addOrChangeBinding(prefix, uri, fMemoryManager);
  283.         }
  284.     }
  285.     else {
  286.         if(ele->getLocalName() == 0) {
  287.             error(XMLErrs::DOMLevel1Node, ele);
  288.         }
  289.         else if(!fNSScope->isValidBinding(XMLUni::fgZeroLenString, XMLUni::fgZeroLenString)) {
  290.             addOrChangeNamespaceDecl(XMLUni::fgZeroLenString, XMLUni::fgZeroLenString, ele);
  291.             fNSScope->addOrChangeBinding(XMLUni::fgZeroLenString, XMLUni::fgZeroLenString, fMemoryManager);
  292.         }
  293.     }
  294.     //fix up non ns attrs
  295.     len = attrMap->getLength();
  296.     // hp aCC complains this i is a redefinition of the i on line 283
  297.     for(int j = 0; j < len; j++) {
  298.         DOMAttr *at = (DOMAttr*)attrMap->item(j);
  299.         const XMLCh *uri = at->getNamespaceURI();
  300.         const XMLCh *value = at->getNodeValue();
  301.         const XMLCh* prefix = at->getPrefix();
  302.         if(!XMLString::equals(XMLUni::fgXMLNSURIName, uri)) {
  303.             if(uri != 0) {
  304.                 if(prefix == 0 || !fNSScope->isValidBinding(prefix, uri)) {
  305.                     
  306.                     const XMLCh* newPrefix =  fNSScope->getPrefix(uri);
  307.                     if(newPrefix != 0) {
  308.                         at->setPrefix(newPrefix);                                                
  309.                     }
  310.                     else {
  311.                         if(prefix != 0 && !fNSScope->getUri(prefix)) {
  312.                             fNSScope->addOrChangeBinding(prefix, uri, fMemoryManager);
  313.                             addOrChangeNamespaceDecl(prefix, uri, ele);
  314.                         }
  315.                         else {
  316.                             newPrefix = addCustomNamespaceDecl(uri, ele);
  317.                             fNSScope->addOrChangeBinding(newPrefix, uri, fMemoryManager);
  318.                             at->setPrefix(newPrefix);
  319.                         }
  320.                     }
  321.                 }
  322.             }
  323.             else if(at->getLocalName() == 0) {
  324.                 error(XMLErrs::DOMLevel1Node, at);
  325.             }
  326.         }
  327.     }
  328. }
  329. const XMLCh * DOMNormalizer::integerToXMLCh(unsigned int i) const {
  330.     XMLCh *buf = (XMLCh*) fMemoryManager->allocate(15 * sizeof(XMLCh));//new XMLCh[15];
  331. XMLCh *pos = buf + sizeof(buf) - sizeof(XMLCh);
  332. *pos = chNull;
  333. do {
  334.         switch(i % 10) {
  335.         case 0 : *--pos = chDigit_0;break;
  336.         case 1 : *--pos = chDigit_1;break;
  337.         case 2 : *--pos = chDigit_2;break;
  338.         case 3 : *--pos = chDigit_3;break;
  339.         case 4 : *--pos = chDigit_4;break;
  340.         case 5 : *--pos = chDigit_5;break;
  341.         case 6 : *--pos = chDigit_6;break;
  342.         case 7 : *--pos = chDigit_7;break;
  343.         case 8 : *--pos = chDigit_8;break;
  344.         case 9 : *--pos = chDigit_9;break;
  345.         default:;
  346.         }
  347. i /= 10;
  348. } while (i);
  349.     const XMLCh *copy = fDocument->getPooledString(pos);
  350.     fMemoryManager->deallocate(buf);//delete[] buf;
  351. return copy;
  352. }
  353. void DOMNormalizer::addOrChangeNamespaceDecl(const XMLCh* prefix, const XMLCh* uri, DOMElementImpl* element) const {
  354.     if (XMLString::equals(prefix, XMLUni::fgZeroLenString)) {
  355.         element->setAttributeNS(XMLUni::fgXMLNSURIName, XMLUni::fgXMLNSString, uri);
  356.     } else {
  357.         XMLBuffer buf(1023, fMemoryManager);
  358.         buf.set(XMLUni::fgXMLNSString);
  359.         buf.append(chColon);
  360.         buf.append(prefix);
  361.         element->setAttributeNS(XMLUni::fgXMLNSURIName, buf.getRawBuffer(), uri); 
  362.     }
  363. }
  364. const XMLCh* DOMNormalizer::addCustomNamespaceDecl(const XMLCh* uri, DOMElementImpl *element) const {
  365.     XMLBuffer preBuf(1023, fMemoryManager);
  366.     preBuf.append(chLatin_N);
  367.     preBuf.append(chLatin_S);
  368.     preBuf.append(integerToXMLCh(fNewNamespaceCount));
  369.     ((DOMNormalizer *)this)->fNewNamespaceCount++;
  370.     while(fNSScope->getUri(preBuf.getRawBuffer())) {
  371.         preBuf.reset();
  372.         preBuf.append(chLatin_N);
  373.         preBuf.append(chLatin_S);
  374.         preBuf.append(integerToXMLCh(fNewNamespaceCount));
  375.         ((DOMNormalizer *)this)->fNewNamespaceCount++;
  376.     }
  377.     
  378.     XMLBuffer buf(1023, fMemoryManager);
  379.     buf.set(XMLUni::fgXMLNSString);
  380.     buf.append(chColon);
  381.     buf.append(preBuf.getRawBuffer());
  382.     element->setAttributeNS(XMLUni::fgXMLNSURIName, buf.getRawBuffer(), uri);
  383.     return element->getAttributeNodeNS(XMLUni::fgXMLNSURIName, preBuf.getRawBuffer())->getLocalName();
  384. }
  385. int DOMNormalizer::InScopeNamespaces::size() {
  386.     return fScopes->size();
  387. }
  388. DOMNormalizer::InScopeNamespaces::InScopeNamespaces(MemoryManager* const manager)
  389. : lastScopeWithBindings(0)
  390. {
  391.     fScopes = new (manager) RefVectorOf<Scope>(10, true, manager);
  392. }
  393. DOMNormalizer::InScopeNamespaces::~InScopeNamespaces() {
  394.     delete fScopes;
  395. }
  396. void DOMNormalizer::InScopeNamespaces::addOrChangeBinding(const XMLCh *prefix, const XMLCh *uri,
  397.                                                           MemoryManager* const manager) {
  398.     unsigned int s = fScopes->size();
  399.     if(!s)
  400.         addScope(manager);
  401.     
  402.     Scope *curScope = fScopes->elementAt(s - 1);
  403.     curScope->addOrChangeBinding(prefix, uri, manager);
  404.     lastScopeWithBindings = curScope;
  405. }
  406. void DOMNormalizer::InScopeNamespaces::addScope(MemoryManager* const manager) {
  407.     Scope *s = new (manager) Scope(lastScopeWithBindings);
  408.     fScopes->addElement(s);
  409. }
  410. void DOMNormalizer::InScopeNamespaces::removeScope() {
  411.     lastScopeWithBindings = fScopes->elementAt(fScopes->size() - 1)->fBaseScopeWithBindings;
  412.     Scope *s = fScopes->orphanElementAt(fScopes->size() - 1);
  413.     delete s;
  414. }
  415. bool DOMNormalizer::InScopeNamespaces::isValidBinding(const XMLCh* prefix, const XMLCh* uri) const {
  416.     const XMLCh* actual = fScopes->elementAt(fScopes->size() - 1)->getUri(prefix);
  417.     if(actual == 0 || !XMLString::equals(actual, uri))
  418.         return false;
  419.     return true;
  420. }
  421. const XMLCh* DOMNormalizer::InScopeNamespaces::getPrefix(const XMLCh* uri) const {
  422.     return fScopes->elementAt(fScopes->size() - 1)->getPrefix(uri);
  423. }
  424. const XMLCh* DOMNormalizer::InScopeNamespaces::getUri(const XMLCh* prefix) const {
  425.     return fScopes->elementAt(fScopes->size() - 1)->getUri(prefix);
  426. }
  427. DOMNormalizer::InScopeNamespaces::Scope::Scope(Scope *baseScopeWithBindings) : fBaseScopeWithBindings(baseScopeWithBindings), fPrefixHash(0), fUriHash(0)
  428. {
  429. }
  430. DOMNormalizer::InScopeNamespaces::Scope::~Scope() {
  431.     delete fPrefixHash;
  432.     delete fUriHash;
  433. }
  434. void DOMNormalizer::InScopeNamespaces::Scope::addOrChangeBinding(const XMLCh *prefix, const XMLCh *uri,
  435.                                                                  MemoryManager* const manager) {
  436.     //initialize and copy forward now we need to
  437.     if(!fUriHash) {
  438.         fPrefixHash = new (manager) RefHashTableOf<XMLCh>(10, (bool) false, manager);
  439.         fUriHash = new (manager) RefHashTableOf<XMLCh>(10, (bool) false, manager);
  440.         
  441.         if(fBaseScopeWithBindings) {
  442.             RefHashTableOfEnumerator<XMLCh> preEnumer(fBaseScopeWithBindings->fPrefixHash);
  443.             while(preEnumer.hasMoreElements()) {
  444.                 const XMLCh* prefix = (XMLCh*) preEnumer.nextElementKey();
  445.                 const XMLCh* uri  = fBaseScopeWithBindings->fPrefixHash->get((void*)prefix);
  446.                 
  447.                 //have to cast here because otherwise we have delete problems under windows :(
  448.                 fPrefixHash->put((void *)prefix, (XMLCh*)uri);
  449.             }
  450.             
  451.             RefHashTableOfEnumerator<XMLCh> uriEnumer(fBaseScopeWithBindings->fUriHash);
  452.             while(uriEnumer.hasMoreElements()) {
  453.                 const XMLCh* uri = (XMLCh*) uriEnumer.nextElementKey();
  454.                 const XMLCh* prefix  = fBaseScopeWithBindings->fUriHash->get((void*)uri);
  455.                 //have to cast here because otherwise we have delete problems under windows :(
  456.                 fUriHash->put((void *)uri, (XMLCh*)prefix);
  457.             }
  458.         }
  459.     }
  460.     const XMLCh *oldUri = fPrefixHash->get(prefix);
  461.     if(oldUri) {
  462.         fUriHash->removeKey(oldUri);
  463.     }
  464.     fPrefixHash->put((void *)prefix, (XMLCh*)uri);
  465.     fUriHash->put((void *)uri, (XMLCh*)prefix);
  466. }
  467. const XMLCh* DOMNormalizer::InScopeNamespaces::Scope::getUri(const XMLCh *prefix) const {
  468.     const XMLCh* uri = 0;
  469.     if(fPrefixHash) {
  470.         uri = fPrefixHash->get(prefix);
  471.     }
  472.     else if(fBaseScopeWithBindings) {
  473.         uri = fBaseScopeWithBindings->getUri(prefix);
  474.     }
  475.     
  476.     return uri ? uri : 0;
  477. }
  478. const XMLCh* DOMNormalizer::InScopeNamespaces::Scope::getPrefix(const XMLCh* uri) const {
  479.     const XMLCh* prefix = 0;
  480.     if(fUriHash) {
  481.         prefix = fUriHash->get(uri);
  482.     }
  483.     else if(fBaseScopeWithBindings) {
  484.         prefix = fBaseScopeWithBindings->getPrefix(uri);
  485.     }
  486.     return prefix ? prefix : 0;
  487. }
  488. void DOMNormalizer::error(const XMLErrs::Codes code, const DOMNode *node) const
  489. {
  490.     if (fErrorHandler) {
  491.         //  Load the message into alocal and replace any tokens found in
  492.         //  the text.
  493.         const unsigned int maxChars = 2047;
  494.         XMLCh errText[maxChars + 1];
  495.         if (!gNormalizerMsgLoader().loadMsg(code, errText, maxChars))
  496.         {
  497.                 // <TBD> Should probably load a default message here
  498.         }
  499.         DOMErrorImpl domError(code, 0, errText, (void*)node);
  500.         if (!fErrorHandler->handleError(domError))
  501.             throw (XMLErrs::Codes) code;
  502.     }
  503. }
  504. XERCES_CPP_NAMESPACE_END