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

xml/soap/webservice

开发平台:

C/C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  * 
  4.  * Copyright (c) 1999-2000 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) 1999, 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: BitSet.cpp,v $
  58.  * Revision 1.4  2000/03/02 19:54:38  roddey
  59.  * This checkin includes many changes done while waiting for the
  60.  * 1.1.0 code to be finished. I can't list them all here, but a list is
  61.  * available elsewhere.
  62.  *
  63.  * Revision 1.3  2000/02/06 07:48:01  rahulj
  64.  * Year 2K copyright swat.
  65.  *
  66.  * Revision 1.2  1999/12/15 19:38:22  roddey
  67.  * Simple fix to bit ops comments
  68.  *
  69.  * Revision 1.1.1.1  1999/11/09 01:04:09  twl
  70.  * Initial checkin
  71.  *
  72.  * Revision 1.2  1999/11/08 20:45:05  rahul
  73.  * Swat for adding in Product name and CVS comment log variable.
  74.  *
  75.  */
  76. // ---------------------------------------------------------------------------
  77. //  Includes
  78. // ---------------------------------------------------------------------------
  79. #include <util/IllegalArgumentException.hpp>
  80. #include <util/ArrayIndexOutOfBoundsException.hpp>
  81. #include <util/BitSet.hpp>
  82. // ---------------------------------------------------------------------------
  83. //  Local const data
  84. //
  85. //  kBitsPerUnit
  86. //      The number of bits in each of our allocation units, which is a 32
  87. //      bit value in this case.
  88. //
  89. //  kGrowBy
  90. //      The minimum allocation units to grow the buffer by.
  91. // ---------------------------------------------------------------------------
  92. const unsigned int  kBitsPerUnit    = 32;
  93. const unsigned int  kGrowBy         = 1;
  94. // ---------------------------------------------------------------------------
  95. //  BitSet: Constructors and Destructor
  96. // ---------------------------------------------------------------------------
  97. BitSet::BitSet(const unsigned int size) :
  98.     fBits(0)
  99.     , fUnitLen(0)
  100. {
  101.     ensureCapacity(size);
  102. }
  103. BitSet::BitSet(const BitSet& toCopy) :
  104.     fBits(0)
  105.     , fUnitLen(toCopy.fUnitLen)
  106. {
  107.     fBits = new unsigned long[fUnitLen];
  108.     for (unsigned int i = 0; i < fUnitLen; i++)
  109.         fBits[i] = toCopy.fBits[i];
  110. }
  111. BitSet::~BitSet()
  112. {
  113.     delete [] fBits;
  114. }
  115. // ---------------------------------------------------------------------------
  116. //  BitSet: Equality methods
  117. // ---------------------------------------------------------------------------
  118. bool BitSet::equals(const BitSet& other) const
  119. {
  120.     if (this == &other)
  121.         return true;
  122.     if (fUnitLen != other.fUnitLen)
  123.         return false;
  124.     for (unsigned int i = 0; i < fUnitLen; i++)
  125.     {
  126.         if (fBits[i] != other.fBits[i])
  127.             return false;
  128.     }
  129.     return true;
  130. }
  131. // ---------------------------------------------------------------------------
  132. //  BitSet: Getter methods
  133. // ---------------------------------------------------------------------------
  134. bool BitSet::get(const unsigned int index) const
  135. {
  136.     const unsigned int unitOfBit = (index / kBitsPerUnit);
  137.     const unsigned int bitWithinUnit = index % kBitsPerUnit;
  138.     //
  139.     //  If the index is beyond our size, don't actually expand. Just return
  140.     //  false, which is what the state would be if we did expand it.
  141.     //
  142.     bool retVal = false;
  143.     if (unitOfBit <= fUnitLen)
  144.     {
  145.         if (fBits[unitOfBit] & (1 << bitWithinUnit))
  146.             retVal = true;
  147.     }
  148.     return retVal;
  149. }
  150. unsigned int BitSet::size() const
  151. {
  152.     return fUnitLen * kBitsPerUnit;
  153. }
  154. // ---------------------------------------------------------------------------
  155. //  BitSet: Setter methods
  156. // ---------------------------------------------------------------------------
  157. bool BitSet::allAreCleared() const
  158. {
  159.     for (unsigned int index = 0; index < fUnitLen; index++)
  160.     {
  161.         if (fBits[index])
  162.             return false;
  163.     }
  164.     return true;
  165. }
  166. bool BitSet::allAreSet() const
  167. {
  168.     for (unsigned int index = 0; index < fUnitLen; index++)
  169.     {
  170.         if (fBits[index] != 0xFFFFFFFF)
  171.             return false;
  172.     }
  173.     return true;
  174. }
  175. void BitSet::clearAll()
  176. {
  177.     // Just zero out all the units
  178.     for (unsigned int index = 0; index < fUnitLen; index++)
  179.         fBits[index] = 0;
  180. }
  181. void BitSet::clear(const unsigned int index)
  182. {
  183.     ensureCapacity(index+1);
  184.     const int unitOfBit = (index / kBitsPerUnit);
  185.     const int bitWithinUnit = index % kBitsPerUnit;
  186.     fBits[unitOfBit] &= ~(1UL << bitWithinUnit);
  187. }
  188. void BitSet::set(const unsigned int index)
  189. {
  190.     ensureCapacity(index+1);
  191.     const int unitOfBit = (index / kBitsPerUnit);
  192.     const int bitWithinUnit = index % kBitsPerUnit;
  193.     fBits[unitOfBit] |= (1UL << bitWithinUnit);
  194. }
  195. // ---------------------------------------------------------------------------
  196. //  BitSet: Bitwise logical methods
  197. // ---------------------------------------------------------------------------
  198. void BitSet::andWith(const BitSet& other)
  199. {
  200.     if (fUnitLen < other.fUnitLen)
  201.         ensureCapacity(other.fUnitLen * kBitsPerUnit);
  202.     for (unsigned int index = 0; index < other.fUnitLen; index++)
  203.         fBits[index] &= other.fBits[index];
  204. }
  205. void BitSet::orWith(const BitSet& other)
  206. {
  207.     if (fUnitLen < other.fUnitLen)
  208.         ensureCapacity(other.fUnitLen * kBitsPerUnit);
  209.     for (unsigned int index = 0; index < other.fUnitLen; index++)
  210.         fBits[index] |= other.fBits[index];
  211. }
  212. void BitSet::xorWith(const BitSet& other)
  213. {
  214.     if (fUnitLen < other.fUnitLen)
  215.         ensureCapacity(other.fUnitLen * kBitsPerUnit);
  216.     for (unsigned int index = 0; index < other.fUnitLen; index++)
  217.         fBits[index] ^= other.fBits[index];
  218. }
  219. // ---------------------------------------------------------------------------
  220. //  BitSet: Miscellaneous methods
  221. // ---------------------------------------------------------------------------
  222. unsigned int BitSet::hash(const unsigned int hashModulus) const
  223. {
  224.     const unsigned char* pBytes = (const unsigned char*)fBits;
  225.     const int unsigned len = fUnitLen * sizeof(unsigned long);
  226.     unsigned int  hashVal = 0;
  227.     for (unsigned int index = 0; index < len; index++)
  228.     {
  229.         hashVal <<= 1;
  230.         hashVal ^= *pBytes;
  231.     }
  232.     return hashVal % hashModulus;
  233. }
  234. // ---------------------------------------------------------------------------
  235. //  BitSet: Private methods
  236. // ---------------------------------------------------------------------------
  237. void BitSet::ensureCapacity(const unsigned int size)
  238. {
  239.     // Calculate the units required to hold the passed bit count.
  240.     unsigned int unitsNeeded = size / kBitsPerUnit;
  241.     if (size % kBitsPerUnit)
  242.         unitsNeeded++;
  243.     // If its more than we have, then reallocate
  244.     if (unitsNeeded > fUnitLen)
  245.     {
  246.         // Regrow the unit length by at least the expansion unit
  247.         if (unitsNeeded < (fUnitLen + kGrowBy))
  248.             unitsNeeded = fUnitLen + kGrowBy;
  249.         // Allocate the array, copy the old stuff, and zero the new stuff
  250.         unsigned long* newBits = new unsigned long[unitsNeeded];
  251.         unsigned int index;
  252.         for (index = 0; index < fUnitLen; index++)
  253.             newBits[index] = fBits[index];
  254.         for (; index < unitsNeeded; index++)
  255.             newBits[index] = 0;
  256.         delete [] fBits;
  257.         fBits = newBits;
  258.         fUnitLen = unitsNeeded;
  259.     }
  260. }