assoc_cntnr_base.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 
00045 #ifndef ASSOC_CNTNR_BASE_HPP
00046 #define ASSOC_CNTNR_BASE_HPP
00047 
00048 #include <ext/pb_assoc/detail/typelist.hpp>
00049 
00050 #define PB_ASSOC_DATA_TRUE_INDICATOR
00051 #include <ext/pb_assoc/detail/lu_map_/lu_map_.hpp>
00052 #undef PB_ASSOC_DATA_TRUE_INDICATOR
00053 
00054 #define PB_ASSOC_DATA_FALSE_INDICATOR
00055 #include <ext/pb_assoc/detail/lu_map_/lu_map_.hpp>
00056 #undef PB_ASSOC_DATA_FALSE_INDICATOR
00057 
00058 #define PB_ASSOC_DATA_TRUE_INDICATOR
00059 #include <ext/pb_assoc/detail/rb_tree_map_/rb_tree_.hpp>
00060 #undef PB_ASSOC_DATA_TRUE_INDICATOR
00061 
00062 #define PB_ASSOC_DATA_FALSE_INDICATOR
00063 #include <ext/pb_assoc/detail/rb_tree_map_/rb_tree_.hpp>
00064 #undef PB_ASSOC_DATA_FALSE_INDICATOR
00065 
00066 #define PB_ASSOC_DATA_TRUE_INDICATOR
00067 #include <ext/pb_assoc/detail/splay_tree_/splay_tree_.hpp>
00068 #undef PB_ASSOC_DATA_TRUE_INDICATOR
00069 
00070 #define PB_ASSOC_DATA_FALSE_INDICATOR
00071 #include <ext/pb_assoc/detail/splay_tree_/splay_tree_.hpp>
00072 #undef PB_ASSOC_DATA_FALSE_INDICATOR
00073 
00074 #define PB_ASSOC_DATA_TRUE_INDICATOR
00075 #include <ext/pb_assoc/detail/ov_tree_map_/ov_tree_map_.hpp>
00076 #undef PB_ASSOC_DATA_TRUE_INDICATOR
00077 
00078 #define PB_ASSOC_DATA_FALSE_INDICATOR
00079 #include <ext/pb_assoc/detail/ov_tree_map_/ov_tree_map_.hpp>
00080 #undef PB_ASSOC_DATA_FALSE_INDICATOR
00081 
00082 #define PB_ASSOC_DATA_TRUE_INDICATOR
00083 #include <ext/pb_assoc/detail/cc_ht_map_/cc_ht_map_.hpp>
00084 #undef PB_ASSOC_DATA_TRUE_INDICATOR
00085 
00086 #define PB_ASSOC_DATA_FALSE_INDICATOR
00087 #include <ext/pb_assoc/detail/cc_ht_map_/cc_ht_map_.hpp>
00088 #undef PB_ASSOC_DATA_FALSE_INDICATOR
00089 
00090 #define PB_ASSOC_DATA_TRUE_INDICATOR
00091 #include <ext/pb_assoc/detail/gp_ht_map_/gp_ht_map_.hpp>
00092 #undef PB_ASSOC_DATA_TRUE_INDICATOR
00093 
00094 #define PB_ASSOC_DATA_FALSE_INDICATOR
00095 #include <ext/pb_assoc/detail/gp_ht_map_/gp_ht_map_.hpp>
00096 #undef PB_ASSOC_DATA_FALSE_INDICATOR
00097 
00098 namespace pb_assoc
00099 {
00100 
00101   namespace detail
00102   {
00103 
00104     template<typename Key,
00105          typename Data,
00106          class Data_Structure_Taq,
00107          class Policy_Tl,
00108          class Allocator>
00109     struct assoc_cntnr_base;
00110 
00111     template<typename Key, typename Data, class Policy_Tl, class Allocator>
00112     struct assoc_cntnr_base<
00113       Key,
00114       Data,
00115       lu_ds_tag,
00116       Policy_Tl,
00117       Allocator>
00118     {
00119       typedef
00120       lu_map_data_<
00121     Key,
00122     Data,
00123     typename typelist_at_index<Policy_Tl, 0>::type,
00124     Allocator,
00125     typename typelist_at_index<Policy_Tl, 1>::type>
00126       type;
00127     };
00128 
00129     template<typename Key, class Policy_Tl, class Allocator>
00130     struct assoc_cntnr_base<
00131       Key,
00132       null_data_type,
00133       lu_ds_tag,
00134       Policy_Tl,
00135       Allocator>
00136     {
00137       typedef
00138       lu_map_no_data_<
00139     Key,
00140     null_data_type,
00141     typename typelist_at_index<Policy_Tl, 0>::type,
00142     Allocator,
00143     typename typelist_at_index<Policy_Tl, 1>::type>
00144       type;
00145     };
00146 
00147     template<typename Key, typename Data, class Policy_Tl, class Allocator>
00148     struct assoc_cntnr_base<
00149       Key,
00150       Data,
00151       rb_tree_ds_tag,
00152       Policy_Tl,
00153       Allocator>
00154     {
00155       typedef
00156       rb_tree_data_<
00157     Key,
00158     Data,
00159     typename typelist_at_index<Policy_Tl, 0>::type,
00160     Allocator,
00161     typename typelist_at_index<Policy_Tl, 1>::type>
00162       type;
00163     };
00164 
00165     template<typename Key, class Policy_Tl, class Allocator>
00166     struct assoc_cntnr_base<
00167       Key,
00168       null_data_type,
00169       rb_tree_ds_tag,
00170       Policy_Tl,
00171       Allocator>
00172     {
00173       typedef
00174       rb_tree_no_data_<
00175     Key,
00176     null_data_type,
00177     typename typelist_at_index<Policy_Tl, 0>::type,
00178     Allocator,
00179     typename typelist_at_index<Policy_Tl, 1>::type>
00180       type;
00181     };
00182 
00183     template<typename Key, typename Data, class Policy_Tl, class Allocator>
00184     struct assoc_cntnr_base<
00185       Key,
00186       Data,
00187       splay_tree_ds_tag,
00188       Policy_Tl,
00189       Allocator>
00190 
00191     {
00192       typedef
00193       splay_tree_data_<
00194     Key,
00195     Data,
00196     typename typelist_at_index<Policy_Tl, 0>::type,
00197     Allocator,
00198     typename typelist_at_index<Policy_Tl, 1>::type>
00199       type;
00200     };
00201 
00202     template<typename Key, class Policy_Tl, class Allocator>
00203     struct assoc_cntnr_base<
00204       Key,
00205       null_data_type,
00206       splay_tree_ds_tag,
00207       Policy_Tl,
00208       Allocator>
00209     {
00210       typedef
00211       splay_tree_no_data_<
00212     Key,
00213     null_data_type,
00214     typename typelist_at_index<Policy_Tl, 0>::type,
00215     Allocator,
00216     typename typelist_at_index<Policy_Tl, 1>::type>
00217       type;
00218     };
00219 
00220     template<typename Key, typename Data, class Policy_Tl, class Allocator>
00221     struct assoc_cntnr_base<
00222       Key,
00223       Data,
00224       ov_tree_ds_tag,
00225       Policy_Tl,
00226       Allocator>
00227     {
00228       typedef
00229       ov_tree_data_<
00230     Key,
00231     Data,
00232     typename typelist_at_index<Policy_Tl, 0>::type,
00233     Allocator,
00234     typename typelist_at_index<Policy_Tl, 1>::type>
00235       type;
00236     };
00237 
00238     template<typename Key, class Policy_Tl, class Allocator>
00239     struct assoc_cntnr_base<
00240       Key,
00241       null_data_type,
00242       ov_tree_ds_tag,
00243       Policy_Tl,
00244       Allocator>
00245     {
00246       typedef
00247       ov_tree_no_data_<
00248     Key,
00249     null_data_type,
00250     typename typelist_at_index<Policy_Tl, 0>::type,
00251     Allocator,
00252     typename typelist_at_index<Policy_Tl, 1>::type>
00253       type;
00254     };
00255 
00256     template<typename Key, typename Data, class Policy_Tl, class Allocator>
00257     struct assoc_cntnr_base<
00258       Key,
00259       Data,
00260       cc_hash_ds_tag,
00261       Policy_Tl,
00262       Allocator>
00263     {
00264       typedef
00265       cc_ht_map_data_<
00266     Key,
00267     Data,
00268     typename typelist_at_index<Policy_Tl, 0>::type,
00269     typename typelist_at_index<Policy_Tl, 1>::type,
00270     Allocator,
00271     typelist_at_index<Policy_Tl, 3>::type::value,
00272     typename typelist_at_index<Policy_Tl, 4>::type,
00273     typename typelist_at_index<Policy_Tl, 2>::type>
00274       type;
00275     };
00276 
00277     template<typename Key, class Policy_Tl, class Allocator>
00278     struct assoc_cntnr_base<
00279       Key,
00280       null_data_type,
00281       cc_hash_ds_tag,
00282       Policy_Tl,
00283       Allocator>
00284     {
00285       typedef
00286       cc_ht_map_no_data_<
00287     Key,
00288     null_data_type,
00289     typename typelist_at_index<Policy_Tl, 0>::type,
00290     typename typelist_at_index<Policy_Tl, 1>::type,
00291     Allocator,
00292     typelist_at_index<Policy_Tl, 3>::type::value,
00293     typename typelist_at_index<Policy_Tl, 4>::type,
00294     typename typelist_at_index<Policy_Tl, 2>::type>
00295       type;
00296     };
00297 
00298     template<typename Key, typename Data, class Policy_Tl, class Allocator>
00299     struct assoc_cntnr_base<
00300       Key,
00301       Data,
00302       gp_hash_ds_tag,
00303       Policy_Tl,
00304       Allocator>
00305     {
00306       typedef
00307       gp_ht_map_data_<
00308     Key,
00309     Data,
00310     typename typelist_at_index<Policy_Tl, 0>::type,
00311     typename typelist_at_index<Policy_Tl, 1>::type,
00312     Allocator,
00313     typelist_at_index<Policy_Tl, 3>::type::value,
00314     typename typelist_at_index<Policy_Tl, 4>::type,
00315     typename typelist_at_index<Policy_Tl, 5>::type,
00316     typename typelist_at_index<Policy_Tl, 2>::type>
00317       type;
00318     };
00319 
00320     template<typename Key, class Policy_Tl, class Allocator>
00321     struct assoc_cntnr_base<
00322       Key,
00323       null_data_type,
00324       gp_hash_ds_tag,
00325       Policy_Tl,
00326       Allocator>
00327     {
00328       typedef
00329       gp_ht_map_no_data_<
00330     Key,
00331     null_data_type,
00332     typename typelist_at_index<Policy_Tl, 0>::type,
00333     typename typelist_at_index<Policy_Tl, 1>::type,
00334     Allocator,
00335     typelist_at_index<Policy_Tl, 3>::type::value,
00336     typename typelist_at_index<Policy_Tl, 4>::type,
00337     typename typelist_at_index<Policy_Tl, 5>::type,
00338     typename typelist_at_index<Policy_Tl, 2>::type>
00339       type;
00340     };
00341 
00342   } // namespace detail
00343 
00344 } // namespace pb_assoc
00345 
00346 #endif // #ifndef ASSOC_CNTNR_BASE_HPP

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