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

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: IDStringPool.cpp,v $
  58.  * Revision 1.11  2001/10/25 21:47:58  peiyongz
  59.  * Unused XMLDeleterFor removed.
  60.  *
  61.  * Revision 1.10  2001/08/07 15:34:54  tng
  62.  * IDOM: Unaligned Access warnings in IDOM samples.  Fixed by Kari Whitcomb.
  63.  *
  64.  * Revision 1.9  2001/06/07 14:26:36  tng
  65.  * IDOM: some compiler (solaris cc/hp acc)  requires memory to align, otherwise core dump.
  66.  *
  67.  * Revision 1.8  2001/06/04 20:44:15  tng
  68.  * IDOM: Comment should say XMLCh instead of DOMString
  69.  *
  70.  * Revision 1.7  2001/05/31 16:09:35  tng
  71.  * IDOM: Error checking if operator new fails
  72.  *
  73.  * Revision 1.6  2001/05/29 20:06:36  tng
  74.  * IDOM: fix wrong void* p cast
  75.  *
  76.  * Revision 1.5  2001/05/29 18:49:58  tng
  77.  * IDOM: call allocate directly for array allocation to avoid overloading operator new[] which leads to compilation error on SUN CC 4.2
  78.  *
  79.  * Revision 1.4  2001/05/23 13:11:39  tng
  80.  * IDOM: Memory fix.
  81.  *
  82.  * Revision 1.3  2001/05/17 15:58:49  tng
  83.  * IDOM: Add Unix build, and other idom udpates.
  84.  *
  85.  * Revision 1.2  2001/05/11 13:25:58  tng
  86.  * Copyright update.
  87.  *
  88.  * Revision 1.1.1.1  2001/04/03 00:14:34  andyh
  89.  * IDOM
  90.  *
  91.  */
  92. //
  93. // file DStringPool.cpp
  94. //
  95. #include "IDStringPool.hpp"
  96. //#include <util/XMLDeleterFor.hpp>
  97. #include <util/XMLString.hpp>
  98. #include <util/PlatformUtils.hpp>
  99. #include "IDDocumentImpl.hpp"
  100. //
  101. //  DStringPoolEntry - one of these structs is allocated for each
  102. //                      XMLCh String in the pool.  Each slot in the
  103. //                      hash table array itself is a pointer to the head
  104. //                      of a singly-linked list of these structs.
  105. //
  106. //                      Although this struct is delcared with a string length of one,
  107. //                      the factory method allocates enough storage to hold the full
  108. //                      string length.
  109. //
  110. struct IDStringPoolEntry
  111. {
  112.     IDStringPoolEntry    *fNext;
  113.     XMLCh                 fString[1];
  114. };
  115. //
  116. // createSPE - factory method for creating sting pool entry structs.
  117. //             Allocates sufficient storage to hold the entire string
  118. //
  119. static IDStringPoolEntry *createSPE(const XMLCh *str, IDDocumentImpl *doc)
  120. {
  121.     //  Compute size to allocate.  Note that there's 1 char of string declared in the
  122.     //       struct, so we don't need to add one again to account for the trailing null.
  123.     //
  124.     size_t sizeToAllocate = sizeof(IDStringPoolEntry) + XMLString::stringLen(str)*sizeof(XMLCh);
  125.     IDStringPoolEntry *newSPE = (IDStringPoolEntry *)doc->allocate(sizeToAllocate);
  126.     newSPE->fNext = 0;
  127.     XMLCh * nonConstStr = (XMLCh *)newSPE->fString;
  128.     XMLString::copyString(nonConstStr, str);
  129.     return newSPE;
  130. }
  131. IDStringPool::IDStringPool(int hashTableSize, IDDocumentImpl *doc)
  132. {
  133.     fDoc           = doc;          // needed to get access to the doc's storage allocator.
  134.     fHashTableSize = hashTableSize;
  135.     //fHashTable = new (fDoc) IDStringPoolEntry *[hashTableSize];
  136.     void* p = doc->allocate(sizeof(IDStringPoolEntry*) * hashTableSize);
  137.     fHashTable = (IDStringPoolEntry**) p;
  138.     for (int i=0; i<fHashTableSize; i++)
  139.         fHashTable[i] = 0;
  140. };
  141. //  Destructor.    Nothing to do, since storage all belongs to the document.
  142. //
  143. IDStringPool::~IDStringPool()
  144. {
  145. };
  146. const XMLCh *IDStringPool::getPooledString(const XMLCh *in)
  147. {
  148.     IDStringPoolEntry    **pspe;
  149.     IDStringPoolEntry    *spe;
  150.     int    inHash     = XMLString::hash(in, fHashTableSize);
  151.     pspe = &fHashTable[inHash];
  152.     while (*pspe != 0)
  153.     {
  154.         if (XMLString::compareString((*pspe)->fString, in) == 0)
  155.             return (*pspe)->fString;
  156.         pspe = &((*pspe)->fNext);
  157.     }
  158.     // This string hasn't been seen before.  Add it to the pool.
  159.     *pspe = spe = createSPE(in, fDoc);
  160.     return spe->fString;
  161. };