hash_exponential_size_policy_imp.hpp

Go to the documentation of this file.
00001 // -*- C++ -*-
00002 
00003 // Copyright (C) 2005 Free Software Foundation, Inc.
00004 //
00005 // This file is part of the GNU ISO C++ Library.  This library is free
00006 // software; you can redistribute it and/or modify it under the
00007 // terms of the GNU General Public License as published by the
00008 // Free Software Foundation; either version 2, or (at your option)
00009 // any later version.
00010 
00011 // This library is distributed in the hope that it will be useful,
00012 // but WITHOUT ANY WARRANTY; without even the implied warranty of
00013 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00014 // GNU General Public License for more details.
00015 
00016 // You should have received a copy of the GNU General Public License along
00017 // with this library; see the file COPYING.  If not, write to the Free
00018 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
00019 // USA.
00020 
00021 // As a special exception, you may use this file as part of a free software
00022 // library without restriction.  Specifically, if other files instantiate
00023 // templates or use macros or inline functions from this file, or you compile
00024 // this file and link it with other files to produce an executable, this
00025 // file does not by itself cause the resulting executable to be covered by
00026 // the GNU General Public License.  This exception does not however
00027 // invalidate any other reasons why the executable file might be covered by
00028 // the GNU General Public License.
00029 
00030 // Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL.
00031 
00032 // Permission to use, copy, modify, sell, and distribute this software
00033 // is hereby granted without fee, provided that the above copyright
00034 // notice appears in all copies, and that both that copyright notice and
00035 // this permission notice appear in supporting documentation. None of
00036 // the above authors, nor IBM Haifa Research Laboratories, make any
00037 // representation about the suitability of this software for any
00038 // purpose. It is provided "as is" without express or implied warranty.
00039 
00040 /*
00041  * @file hash_exponential_size_policy_imp.hpp
00042  * Contains an implementation of hash_exponential_size_policy.
00043  */
00044 
00045 #ifdef PB_ASSOC_HT_EXPONENTIAL_SIZE_POLICY_DEBUG
00046 #define PB_ASSOC_DBG_ASSERT(X) assert(X)
00047 #define PB_ASSOC_DBG_VERIFY(X) assert(X)
00048 #define PB_ASSOC_DBG_ONLY(X) X
00049 #else // #ifdef PB_ASSOC_HT_EXPONENTIAL_SIZE_POLICY_DEBUG
00050 #define PB_ASSOC_DBG_ASSERT(X)
00051 #define PB_ASSOC_DBG_VERIFY(X) {if((X)==0);}
00052 #define PB_ASSOC_DBG_ONLY(X) ;
00053 #endif // #ifdef PB_ASSOC_HT_EXPONENTIAL_SIZE_POLICY_DEBUG
00054 
00055 PB_ASSOC_CLASS_T_DEC
00056 PB_ASSOC_CLASS_C_DEC::
00057 hash_exponential_size_policy(size_type start_size, size_type grow_factor) :
00058   m_start_size(start_size),
00059   m_grow_factor(grow_factor)
00060 { }
00061 
00062 PB_ASSOC_CLASS_T_DEC
00063 void
00064 PB_ASSOC_CLASS_C_DEC::
00065 swap(PB_ASSOC_CLASS_C_DEC& r_other)
00066 {
00067   std::swap(m_start_size, r_other.m_start_size);
00068 
00069   std::swap(m_grow_factor, r_other.m_grow_factor);
00070 }
00071 
00072 PB_ASSOC_CLASS_T_DEC
00073 typename PB_ASSOC_CLASS_C_DEC::size_type
00074 PB_ASSOC_CLASS_C_DEC::
00075 get_init_size(size_type suggested_size) const
00076 {
00077   size_type ret = m_start_size;
00078 
00079   while (ret < suggested_size)
00080     ret *=  m_grow_factor;
00081 
00082   return (ret);
00083 }
00084 
00085 PB_ASSOC_CLASS_T_DEC
00086 typename PB_ASSOC_CLASS_C_DEC::size_type
00087 PB_ASSOC_CLASS_C_DEC::
00088 get_nearest_larger_size(size_type cur_size) const
00089 {
00090   PB_ASSOC_DBG_ONLY(assert_is_one_of_my_sizes(size);)
00091 
00092     const size_type pot_ret = cur_size*  m_grow_factor;
00093 
00094   return ((pot_ret > cur_size)? pot_ret : cur_size);
00095 }
00096 
00097 PB_ASSOC_CLASS_T_DEC
00098 typename PB_ASSOC_CLASS_C_DEC::size_type
00099 PB_ASSOC_CLASS_C_DEC::
00100 get_nearest_smaller_size(size_type cur_size) const
00101 {
00102   PB_ASSOC_DBG_ONLY(assert_is_one_of_my_sizes(size);)
00103 
00104     const size_type pot_ret = cur_size / m_grow_factor;
00105 
00106   return ((pot_ret > 0)? pot_ret : m_start_size);
00107 }
00108 
00109 #ifdef PB_ASSOC_HT_EXPONENTIAL_SIZE_POLICY_DEBUG
00110 PB_ASSOC_CLASS_T_DEC
00111 void
00112 PB_ASSOC_CLASS_C_DEC::
00113 assert_is_one_of_my_sizes(size_type size)
00114 {
00115   PB_ASSOC_DBG_ASSERT(size >= m_start_size);
00116 
00117   while (size >m_start_size)
00118     size /= m_grow_factor;
00119 
00120   PB_ASSOC_DBG_ASSERT(size == m_start_size);
00121 }
00122 #endif // #ifdef PB_ASSOC_HT_EXPONENTIAL_SIZE_POLICY_DEBUG
00123 

Generated on Tue Feb 2 16:55:58 2010 for GNU C++ STL by  doxygen 1.4.7