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

词法分析

开发平台:

Visual 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.  * $Log: NamespaceScope.cpp,v $
  58.  * Revision 1.5  2003/05/18 14:02:07  knoaman
  59.  * Memory manager implementation: pass per instance manager.
  60.  *
  61.  * Revision 1.4  2003/05/16 21:43:21  knoaman
  62.  * Memory manager implementation: Modify constructors to pass in the memory manager.
  63.  *
  64.  * Revision 1.3  2003/05/15 18:57:27  knoaman
  65.  * Partial implementation of the configurable memory manager.
  66.  *
  67.  * Revision 1.2  2002/11/04 14:49:41  tng
  68.  * C++ Namespace Support.
  69.  *
  70.  * Revision 1.1.1.1  2002/02/01 22:22:45  peiyongz
  71.  * sane_include
  72.  *
  73.  * Revision 1.3  2001/07/31 15:26:54  knoaman
  74.  * Added support for <attributeGroup>.
  75.  *
  76.  * Revision 1.2  2001/05/11 13:27:33  tng
  77.  * Copyright update.
  78.  *
  79.  * Revision 1.1  2001/04/19 17:43:15  knoaman
  80.  * More schema implementation classes.
  81.  *
  82.  */
  83. // ---------------------------------------------------------------------------
  84. //  Includes
  85. // ---------------------------------------------------------------------------
  86. #include <string.h>
  87. #include <xercesc/util/EmptyStackException.hpp>
  88. #include <xercesc/validators/schema/NamespaceScope.hpp>
  89. XERCES_CPP_NAMESPACE_BEGIN
  90. // ---------------------------------------------------------------------------
  91. //  NamespaceScope: Constructors and Destructor
  92. // ---------------------------------------------------------------------------
  93. NamespaceScope::NamespaceScope(MemoryManager* const manager) :
  94.     fEmptyNamespaceId(0)
  95.     , fStackCapacity(8)
  96.     , fStackTop(0)
  97.     , fPrefixPool(109, manager)
  98.     , fStack(0)
  99.     , fMemoryManager(manager)
  100. {
  101.     // Do an initial allocation of the stack and zero it out
  102.     fStack = (StackElem**) fMemoryManager->allocate
  103.     (
  104.         fStackCapacity * sizeof(StackElem*)
  105.     );//new StackElem*[fStackCapacity];
  106.     memset(fStack, 0, fStackCapacity * sizeof(StackElem*));
  107. }
  108. NamespaceScope::~NamespaceScope()
  109. {
  110.     //
  111.     //  Start working from the bottom of the stack and clear it out as we
  112.     //  go up. Once we hit an uninitialized one, we can break out.
  113.     //
  114.     for (unsigned int stackInd = 0; stackInd < fStackCapacity; stackInd++)
  115.     {
  116.         // If this entry has been set, then lets clean it up
  117.         if (!fStack[stackInd])
  118.             break;
  119.         // Delete the row for this entry, then delete the row structure
  120.         fMemoryManager->deallocate(fStack[stackInd]->fMap);//delete [] fStack[stackInd]->fMap;
  121.         delete fStack[stackInd];
  122.     }
  123.     // Delete the stack array itself now
  124.     fMemoryManager->deallocate(fStack);//delete [] fStack;
  125. }
  126. // ---------------------------------------------------------------------------
  127. //  NamespaceScope: Stack access
  128. // ---------------------------------------------------------------------------
  129. unsigned int NamespaceScope::increaseDepth()
  130. {
  131.     // See if we need to expand the stack
  132.     if (fStackTop == fStackCapacity)
  133.         expandStack();
  134.     // If this element has not been initialized yet, then initialize it
  135.     if (!fStack[fStackTop])
  136.     {
  137.         fStack[fStackTop] = new (fMemoryManager) StackElem;
  138.         fStack[fStackTop]->fMapCapacity = 0;
  139.         fStack[fStackTop]->fMap = 0;
  140.     }
  141.     // Set up the new top row
  142.     fStack[fStackTop]->fMapCount = 0;
  143.     // Bump the top of stack
  144.     fStackTop++;
  145.     return fStackTop-1;
  146. }
  147. unsigned int NamespaceScope::decreaseDepth()
  148. {
  149.     if (!fStackTop)
  150.         ThrowXML(EmptyStackException, XMLExcepts::ElemStack_StackUnderflow);
  151.     fStackTop--;
  152.     return fStackTop;
  153. }
  154. // ---------------------------------------------------------------------------
  155. //  NamespaceScope: Prefix map methods
  156. // ---------------------------------------------------------------------------
  157. void NamespaceScope::addPrefix(const XMLCh* const prefixToAdd,
  158.                                const unsigned int uriId) {
  159.     if (!fStackTop)
  160.         ThrowXML(EmptyStackException, XMLExcepts::ElemStack_EmptyStack);
  161.     // Get a convenience pointer to the stack top row
  162.     StackElem* curRow = fStack[fStackTop - 1];
  163.     // Map the prefix to its unique id
  164.     const unsigned int prefId = fPrefixPool.addOrFind(prefixToAdd);
  165.     //
  166.     //  Add a new element to the prefix map for this element. If its full,
  167.     //  then expand it out.
  168.     //
  169.     if (curRow->fMapCount == curRow->fMapCapacity)
  170.         expandMap(curRow);
  171.     //
  172.     //  And now add a new element for this prefix.
  173.     //
  174.     curRow->fMap[curRow->fMapCount].fPrefId = prefId;
  175.     curRow->fMap[curRow->fMapCount].fURIId = uriId;
  176.     // Bump the map count now
  177.     curRow->fMapCount++;
  178. }
  179. unsigned int
  180. NamespaceScope::getNamespaceForPrefix(const XMLCh* const prefixToMap,
  181.                                       const int depthLevel) const {
  182.     //
  183.     //  Map the prefix to its unique id, from the prefix string pool. If its
  184.     //  not a valid prefix, then its a failure.
  185.     //
  186.     unsigned int prefixId = fPrefixPool.getId(prefixToMap);
  187.     if (!prefixId){
  188.         return fEmptyNamespaceId;
  189.     }
  190.     //
  191.     //  Start at the stack top and work backwards until we come to some
  192.     //  element that mapped this prefix.
  193.     //
  194.     int startAt = depthLevel;
  195.     for (int index = startAt; index >= 0; index--)
  196.     {
  197.         // Get a convenience pointer to the current element
  198.         StackElem* curRow = fStack[index];
  199.         // If no prefixes mapped at this level, then go the next one
  200.         if (!curRow->fMapCount)
  201.             continue;
  202.         // Search the map at this level for the passed prefix
  203.         for (unsigned int mapIndex = 0; mapIndex < curRow->fMapCount; mapIndex++)
  204.         {
  205.             if (curRow->fMap[mapIndex].fPrefId == prefixId)
  206.                 return curRow->fMap[mapIndex].fURIId;
  207.         }
  208.     }
  209.     return fEmptyNamespaceId;
  210. }
  211. // ---------------------------------------------------------------------------
  212. //  NamespaceScope: Miscellaneous methods
  213. // ---------------------------------------------------------------------------
  214. void NamespaceScope::reset(const unsigned int emptyId)
  215. {
  216.     // Flush the prefix pool and put back in the standard prefixes
  217.     fPrefixPool.flushAll();
  218.     // Reset the stack top to clear the stack
  219.     fStackTop = 0;
  220.     // And store the new special URI ids
  221.     fEmptyNamespaceId = emptyId;
  222. }
  223. // ---------------------------------------------------------------------------
  224. //  Namespace: Private helpers
  225. // ---------------------------------------------------------------------------
  226. void NamespaceScope::expandMap(StackElem* const toExpand)
  227. {
  228.     // For convenience get the old map size
  229.     const unsigned int oldCap = toExpand->fMapCapacity;
  230.     //
  231.     //  Expand the capacity by 25%, or initialize it to 16 if its currently
  232.     //  empty. Then allocate a new temp buffer.
  233.     //
  234.     const unsigned int newCapacity = oldCap ?
  235.                                      (unsigned int)(oldCap * 1.25) : 16;
  236.     PrefMapElem* newMap = (PrefMapElem*) fMemoryManager->allocate
  237.     (
  238.         newCapacity * sizeof(PrefMapElem)
  239.     );//new PrefMapElem[newCapacity];
  240.     //
  241.     //  Copy over the old stuff. We DON'T have to zero out the new stuff
  242.     //  since this is a by value map and the current map index controls what
  243.     //  is relevant.
  244.     //
  245.     memcpy(newMap, toExpand->fMap, oldCap * sizeof(PrefMapElem));
  246.     // Delete the old map and store the new stuff
  247.     fMemoryManager->deallocate(toExpand->fMap);//delete [] toExpand->fMap;
  248.     toExpand->fMap = newMap;
  249.     toExpand->fMapCapacity = newCapacity;
  250. }
  251. void NamespaceScope::expandStack()
  252. {
  253.     // Expand the capacity by 25% and allocate a new buffer
  254.     const unsigned int newCapacity = (unsigned int)(fStackCapacity * 1.25);
  255.     StackElem** newStack = (StackElem**) fMemoryManager->allocate
  256.     (
  257.         newCapacity * sizeof(StackElem*)
  258.     );//new StackElem*[newCapacity];
  259.     // Copy over the old stuff
  260.     memcpy(newStack, fStack, fStackCapacity * sizeof(StackElem*));
  261.     //
  262.     //  And zero out the new stuff. Though we use a stack top, we reuse old
  263.     //  stack contents so we need to know if elements have been initially
  264.     //  allocated or not as we push new stuff onto the stack.
  265.     //
  266.     memset
  267.     (
  268.         &newStack[fStackCapacity]
  269.         , 0
  270.         , (newCapacity - fStackCapacity) * sizeof(StackElem*)
  271.     );
  272.     // Delete the old array and update our members
  273.     fMemoryManager->deallocate(fStack);//delete [] fStack;
  274.     fStack = newStack;
  275.     fStackCapacity = newCapacity;
  276. }
  277. XERCES_CPP_NAMESPACE_END
  278. /**
  279.   * End of file NamespaceScope.cpp
  280.   */