Added copyright and license
[libcds.git] / tests / test-hdr / set / hdr_refinable_hashset_boost_list.cpp
1 /*
2     This file is a part of libcds - Concurrent Data Structures library
3
4     (C) Copyright Maxim Khizhinsky (libcds.dev@gmail.com) 2006-2016
5
6     Source code repo: http://github.com/khizmax/libcds/
7     Download: http://sourceforge.net/projects/libcds/files/
8     
9     Redistribution and use in source and binary forms, with or without
10     modification, are permitted provided that the following conditions are met:
11
12     * Redistributions of source code must retain the above copyright notice, this
13       list of conditions and the following disclaimer.
14
15     * Redistributions in binary form must reproduce the above copyright notice,
16       this list of conditions and the following disclaimer in the documentation
17       and/or other materials provided with the distribution.
18
19     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20     AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21     IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22     DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
23     FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24     DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25     SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
26     CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27     OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28     OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.     
29 */
30
31 #include "set/hdr_striped_set.h"
32
33 #include <boost/version.hpp>
34 #include <cds/details/defs.h>
35 #if CDS_COMPILER == CDS_COMPILER_MSVC && CDS_COMPILER_VERSION == CDS_COMPILER_MSVC12 && BOOST_VERSION <= 105500
36 namespace set {
37     void StripedSetHdrTest::Refinable_boost_list()
38     {
39         CPPUNIT_MESSAGE("Skipped; for Microsoft Visual C++ 2013 and boost::container::list you should use boost version 1.56 or above");
40     }
41 }
42
43 #elif BOOST_VERSION >= 104800
44
45 #include <cds/container/striped_set/boost_list.h>
46 #include <cds/container/striped_set.h>
47 #include <cds/sync/spinlock.h>
48
49 namespace set {
50
51     namespace {
52         struct my_copy_policy {
53             typedef boost::container::list<StripedSetHdrTest::item> list_type;
54             typedef list_type::iterator iterator;
55
56             void operator()( list_type& list, iterator itInsert, iterator itWhat )
57             {
58                 list.insert( itInsert, std::make_pair(itWhat->key(), itWhat->val()) );
59             }
60         };
61
62         typedef boost::container::list<StripedSetHdrTest::item> sequence_t;
63     }
64
65     void StripedSetHdrTest::Refinable_boost_list()
66     {
67         CPPUNIT_MESSAGE( "cmp");
68         typedef cc::StripedSet< sequence_t
69             ,co::mutex_policy< cc::striped_set::refinable<> >
70             , co::hash< hash_int >
71             , co::compare< cmp<item> >
72         >   set_cmp;
73         test_striped2< set_cmp >();
74
75         CPPUNIT_MESSAGE( "less");
76         typedef cc::StripedSet< sequence_t
77             ,co::mutex_policy< cc::striped_set::refinable<> >
78             , co::hash< hash_int >
79             , co::less< less<item> >
80         >   set_less;
81         test_striped2< set_less >();
82
83         CPPUNIT_MESSAGE( "cmpmix");
84         typedef cc::StripedSet< sequence_t
85             ,co::mutex_policy< cc::striped_set::refinable<> >
86             , co::hash< hash_int >
87             , co::compare< cmp<item> >
88             , co::less< less<item> >
89         >   set_cmpmix;
90         test_striped2< set_cmpmix >();
91
92         // Spinlock as lock policy
93         CPPUNIT_MESSAGE( "spinlock");
94         typedef cc::StripedSet< sequence_t
95             , co::mutex_policy< cc::striped_set::refinable<cds::sync::reentrant_spin> >
96             , co::hash< hash_int >
97             , co::less< less<item> >
98         >   set_spin;
99         test_striped2< set_spin >();
100
101         // Resizing policy
102         CPPUNIT_MESSAGE( "load_factor_resizing<0>(8)");
103         {
104             typedef cc::StripedSet< sequence_t
105                 ,co::mutex_policy< cc::striped_set::refinable<> >
106                 , co::hash< hash_int >
107                 , co::less< less<item> >
108                 , co::resizing_policy< cc::striped_set::load_factor_resizing<0> >
109             >   set_less_resizing_lf;
110             set_less_resizing_lf s(30, cc::striped_set::load_factor_resizing<0>(8));
111             test_striped_with(s);
112         }
113
114         CPPUNIT_MESSAGE( "load_factor_resizing<4>");
115         typedef cc::StripedSet< sequence_t
116             ,co::mutex_policy< cc::striped_set::refinable<> >
117             , co::hash< hash_int >
118             , co::less< less<item> >
119             , co::resizing_policy< cc::striped_set::load_factor_resizing<4> >
120         >   set_less_resizing_lf16;
121         test_striped2< set_less_resizing_lf16 >();
122
123         CPPUNIT_MESSAGE( "single_bucket_size_threshold<0>(8)");
124         {
125             typedef cc::StripedSet< sequence_t
126                 ,co::mutex_policy< cc::striped_set::refinable<> >
127                 , co::hash< hash_int >
128                 , co::less< less<item> >
129                 , co::resizing_policy< cc::striped_set::single_bucket_size_threshold<0> >
130             >   set_less_resizing_sbt;
131             set_less_resizing_sbt s(30, cc::striped_set::single_bucket_size_threshold<0>(8));
132             test_striped_with(s);
133         }
134
135         CPPUNIT_MESSAGE( "single_bucket_size_threshold<6>");
136         typedef cc::StripedSet< sequence_t
137             ,co::mutex_policy< cc::striped_set::refinable<> >
138             , co::hash< hash_int >
139             , co::less< less<item> >
140             , co::resizing_policy< cc::striped_set::single_bucket_size_threshold<6> >
141         >   set_less_resizing_sbt16;
142         test_striped2< set_less_resizing_sbt16 >();
143
144
145         // Copy policy
146         CPPUNIT_MESSAGE( "copy_item");
147         typedef cc::StripedSet< sequence_t
148             ,co::mutex_policy< cc::striped_set::refinable<> >
149             , co::hash< hash_int >
150             , co::compare< cmp<item> >
151             , co::copy_policy< cc::striped_set::copy_item >
152         >   set_copy_item;
153         test_striped2< set_copy_item >();
154
155         CPPUNIT_MESSAGE( "swap_item");
156         typedef cc::StripedSet< sequence_t
157             ,co::mutex_policy< cc::striped_set::refinable<> >
158             , co::hash< hash_int >
159             , co::compare< cmp<item> >
160             , co::copy_policy< cc::striped_set::swap_item >
161         >   set_swap_item;
162         test_striped2< set_swap_item >();
163
164         CPPUNIT_MESSAGE( "move_item");
165         typedef cc::StripedSet< sequence_t
166             ,co::mutex_policy< cc::striped_set::refinable<> >
167             , co::hash< hash_int >
168             , co::compare< cmp<item> >
169             , co::copy_policy< cc::striped_set::move_item >
170         >   set_move_item;
171         test_striped2< set_move_item >();
172
173         CPPUNIT_MESSAGE( "special copy policy");
174         typedef cc::StripedSet< sequence_t
175             ,co::mutex_policy< cc::striped_set::refinable<> >
176             , co::hash< hash_int >
177             , co::compare< cmp<item> >
178             , co::copy_policy< my_copy_policy >
179         >   set_special_copy_item;
180         test_striped2< set_special_copy_item >();
181     }
182
183 }   // namespace set
184
185 #else // BOOST_VERSION < 104800
186
187 namespace set {
188     void StripedSetHdrTest::Refinable_boost_list()
189     {
190         CPPUNIT_MESSAGE( "Skipped; for boost::container::list you should use boost version 1.48 or above" );
191     }
192 }
193 #endif  // BOOST_VERSION