Removed trailing spaces
[libcds.git] / test / unit / set / split_lazy_hp.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 "test_set_hp.h"
32
33 #include <cds/container/lazy_list_hp.h>
34 #include <cds/container/split_list_set.h>
35 #include <cds/intrusive/free_list.h>
36
37 namespace {
38     namespace cc = cds::container;
39     typedef cds::gc::HP gc_type;
40
41     class SplitListLazySet_HP : public cds_test::container_set_hp
42     {
43     protected:
44         typedef cds_test::container_set_hp base_class;
45
46         void SetUp()
47         {
48             struct set_traits: public cc::split_list::traits {
49                 typedef cc::lazy_list_tag ordered_list;
50                 typedef hash_int hash;
51                 struct ordered_list_traits: public cc::lazy_list::traits
52                 {
53                     typedef cmp compare;
54                 };
55             };
56             typedef cc::SplitListSet< gc_type, int_item, set_traits >   set_type;
57
58             // +1 - for guarded_ptr
59             cds::gc::hp::GarbageCollector::Construct( set_type::c_nHazardPtrCount + 1, 1, 16 );
60             cds::threading::Manager::attachThread();
61         }
62
63         void TearDown()
64         {
65             cds::threading::Manager::detachThread();
66             cds::gc::hp::GarbageCollector::Destruct( true );
67         }
68     };
69
70     TEST_F( SplitListLazySet_HP, compare )
71     {
72         typedef cc::SplitListSet< gc_type, int_item,
73             typename cc::split_list::make_traits<
74                 cc::split_list::ordered_list< cc::lazy_list_tag >
75                 , cds::opt::hash< hash_int >
76                 , cc::split_list::ordered_list_traits<
77                     typename cc::lazy_list::make_traits<
78                         cds::opt::compare< cmp >
79                     >::type
80                 >
81             >::type
82         > set_type;
83
84         set_type s( kSize, 2 );
85         test( s );
86     }
87
88     TEST_F( SplitListLazySet_HP, less )
89     {
90         typedef cc::SplitListSet< gc_type, int_item,
91             typename cc::split_list::make_traits<
92                 cc::split_list::ordered_list< cc::lazy_list_tag >
93                 , cds::opt::hash< hash_int >
94                 , cc::split_list::ordered_list_traits<
95                     typename cc::lazy_list::make_traits<
96                         cds::opt::less< less >
97                     >::type
98                 >
99             >::type
100         > set_type;
101
102         set_type s( kSize, 2 );
103         test( s );
104     }
105
106     TEST_F( SplitListLazySet_HP, cmpmix )
107     {
108         typedef cc::SplitListSet< gc_type, int_item,
109             typename cc::split_list::make_traits<
110                 cc::split_list::ordered_list< cc::lazy_list_tag >
111                 , cds::opt::hash< hash_int >
112                 , cc::split_list::ordered_list_traits<
113                     typename cc::lazy_list::make_traits<
114                         cds::opt::less< less >
115                         , cds::opt::compare< cmp >
116                     >::type
117                 >
118             >::type
119         > set_type;
120
121         set_type s( kSize, 3 );
122         test( s );
123     }
124
125     TEST_F( SplitListLazySet_HP, item_counting )
126     {
127         struct set_traits: public cc::split_list::traits
128         {
129             typedef cc::lazy_list_tag ordered_list;
130             typedef hash_int hash;
131             typedef cds::atomicity::item_counter item_counter;
132
133             struct ordered_list_traits: public cc::lazy_list::traits
134             {
135                 typedef cmp compare;
136                 typedef base_class::less less;
137                 typedef cds::backoff::empty back_off;
138             };
139         };
140         typedef cc::SplitListSet< gc_type, int_item, set_traits > set_type;
141
142         set_type s( kSize, 4 );
143         test( s );
144     }
145
146     TEST_F( SplitListLazySet_HP, stat )
147     {
148         struct set_traits: public cc::split_list::traits
149         {
150             typedef cc::lazy_list_tag ordered_list;
151             typedef hash_int hash;
152             typedef cds::atomicity::item_counter item_counter;
153             typedef cc::split_list::stat<> stat;
154
155             struct ordered_list_traits: public cc::lazy_list::traits
156             {
157                 typedef base_class::less less;
158                 typedef cds::opt::v::sequential_consistent memory_model;
159             };
160         };
161         typedef cc::SplitListSet< gc_type, int_item, set_traits > set_type;
162
163         set_type s( kSize, 2 );
164         test( s );
165     }
166
167     TEST_F( SplitListLazySet_HP, back_off )
168     {
169         struct set_traits: public cc::split_list::traits
170         {
171             typedef cc::lazy_list_tag ordered_list;
172             typedef hash_int hash;
173             typedef cds::atomicity::item_counter item_counter;
174             typedef cds::backoff::yield back_off;
175             typedef cds::opt::v::sequential_consistent memory_model;
176
177             struct ordered_list_traits: public cc::lazy_list::traits
178             {
179                 typedef cmp compare;
180                 typedef cds::backoff::empty back_off;
181             };
182         };
183         typedef cc::SplitListSet< gc_type, int_item, set_traits > set_type;
184
185         set_type s( kSize, 4 );
186         test( s );
187     }
188
189     TEST_F( SplitListLazySet_HP, mutex )
190     {
191         struct set_traits: public cc::split_list::traits
192         {
193             typedef cc::lazy_list_tag ordered_list;
194             typedef hash_int hash;
195             typedef cds::atomicity::item_counter item_counter;
196             typedef cds::backoff::yield back_off;
197             typedef cds::opt::v::sequential_consistent memory_model;
198
199             struct ordered_list_traits: public cc::lazy_list::traits
200             {
201                 typedef cmp compare;
202                 typedef cds::backoff::pause back_off;
203                 typedef std::mutex lock_type;
204             };
205         };
206         typedef cc::SplitListSet< gc_type, int_item, set_traits > set_type;
207
208         set_type s( kSize, 2 );
209         test( s );
210     }
211
212     struct set_static_traits: public cc::split_list::traits
213     {
214         static bool const dynamic_bucket_table = false;
215     };
216
217     TEST_F( SplitListLazySet_HP, static_bucket_table )
218     {
219         struct set_traits: public set_static_traits
220         {
221             typedef cc::lazy_list_tag ordered_list;
222             typedef hash_int hash;
223             typedef cds::atomicity::item_counter item_counter;
224
225             struct ordered_list_traits: public cc::lazy_list::traits
226             {
227                 typedef cmp compare;
228                 typedef cds::backoff::pause back_off;
229             };
230         };
231         typedef cc::SplitListSet< gc_type, int_item, set_traits > set_type;
232
233         set_type s( kSize, 4 );
234         test( s );
235     }
236
237     TEST_F( SplitListLazySet_HP, free_list )
238     {
239         struct set_traits: public set_static_traits
240         {
241             typedef cc::lazy_list_tag ordered_list;
242             typedef hash_int hash;
243             typedef cds::atomicity::item_counter item_counter;
244             typedef cds::intrusive::FreeList free_list;
245
246             struct ordered_list_traits: public cc::lazy_list::traits
247             {
248                 typedef cmp compare;
249                 typedef cds::backoff::pause back_off;
250             };
251         };
252         typedef cc::SplitListSet< gc_type, int_item, set_traits > set_type;
253
254         set_type s( kSize, 4 );
255         test( s );
256     }
257
258 } // namespace