NamespaceScope.cpp
上传用户:huihehuasu
上传日期:2007-01-10
资源大小:6948k
文件大小:10k
源码类别:

xml/soap/webservice

开发平台:

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