HP and DHP SMR totally refactored
[libcds.git] / test / unit / intrusive-set / intrusive_michael_lazy_nogc.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-2017
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_intrusive_set_nogc.h"
32
33 #include <cds/intrusive/lazy_list_nogc.h>
34 #include <cds/intrusive/michael_set_nogc.h>
35
36 #include <mutex>
37
38 namespace {
39     namespace ci = cds::intrusive;
40     typedef cds::gc::nogc gc_type;
41
42     class IntrusiveMichaelLazySet_NoGC : public cds_test::intrusive_set_nogc
43     {
44     protected:
45         typedef cds_test::intrusive_set_nogc base_class;
46
47     protected:
48         typedef typename base_class::base_int_item< ci::lazy_list::node<gc_type>>   base_item_type;
49         typedef typename base_class::base_int_item< ci::lazy_list::node<gc_type, std::mutex>>   base_mutex_item_type;
50         typedef typename base_class::member_int_item< ci::lazy_list::node<gc_type>> member_item_type;
51         typedef typename base_class::member_int_item< ci::lazy_list::node<gc_type, std::mutex>> member_mutex_item_type;
52
53         //void SetUp()
54         //{}
55
56         //void TearDown()
57         //{}
58     };
59
60
61     TEST_F( IntrusiveMichaelLazySet_NoGC, base_cmp )
62     {
63         typedef ci::LazyList< gc_type
64             , base_item_type
65             ,ci::lazy_list::make_traits<
66                 ci::opt::hook< ci::lazy_list::base_hook< ci::opt::gc< gc_type > > >
67                 ,ci::opt::compare< cmp<base_item_type> >
68                 ,ci::opt::disposer< mock_disposer >
69                 ,ci::opt::back_off< cds::backoff::pause >
70             >::type
71         > bucket_type;
72
73         typedef ci::MichaelHashSet< gc_type, bucket_type,
74             ci::michael_set::make_traits<
75                 ci::opt::hash< hash_int >
76             >::type
77         > set_type;
78
79         set_type s( kSize, 2 );
80         test( s );
81     }
82
83     TEST_F( IntrusiveMichaelLazySet_NoGC, base_less )
84     {
85         typedef ci::LazyList< gc_type
86             , base_item_type
87             ,ci::lazy_list::make_traits<
88                 ci::opt::hook< ci::lazy_list::base_hook< ci::opt::gc< gc_type >>>
89                 ,ci::opt::less< less<base_item_type> >
90                 ,ci::opt::disposer< mock_disposer >
91             >::type
92         > bucket_type;
93
94         typedef ci::MichaelHashSet< gc_type, bucket_type,
95             ci::michael_set::make_traits<
96                 ci::opt::hash< hash_int >
97             >::type
98         > set_type;
99
100         set_type s( kSize, 2 );
101         test( s );
102     }
103
104     TEST_F( IntrusiveMichaelLazySet_NoGC, base_cmpmix )
105     {
106         struct list_traits : public ci::lazy_list::traits
107         {
108             typedef ci::lazy_list::base_hook< ci::opt::gc<gc_type>> hook;
109             typedef base_class::less<base_item_type> less;
110             typedef cmp<base_item_type> compare;
111             typedef mock_disposer disposer;
112         };
113         typedef ci::LazyList< gc_type, base_item_type, list_traits > bucket_type;
114
115         struct set_traits : public ci::michael_set::traits
116         {
117             typedef hash_int hash;
118             typedef simple_item_counter item_counter;
119         };
120         typedef ci::MichaelHashSet< gc_type, bucket_type, set_traits > set_type;
121
122         set_type s( kSize, 2 );
123         test( s );
124     }
125
126     TEST_F( IntrusiveMichaelLazySet_NoGC, base_mutex )
127     {
128         struct list_traits : public ci::lazy_list::traits
129         {
130             typedef ci::lazy_list::base_hook< ci::opt::gc<gc_type>, ci::opt::lock_type<std::mutex>> hook;
131             typedef base_class::less<base_mutex_item_type> less;
132             typedef cmp<base_mutex_item_type> compare;
133             typedef mock_disposer disposer;
134         };
135         typedef ci::LazyList< gc_type, base_mutex_item_type, list_traits > bucket_type;
136
137         struct set_traits : public ci::michael_set::traits
138         {
139             typedef hash_int hash;
140             typedef simple_item_counter item_counter;
141         };
142         typedef ci::MichaelHashSet< gc_type, bucket_type, set_traits > set_type;
143
144         set_type s( kSize, 2 );
145         test( s );
146     }
147
148     TEST_F( IntrusiveMichaelLazySet_NoGC, base_stat )
149     {
150         struct list_traits: public ci::lazy_list::traits
151         {
152             typedef ci::lazy_list::base_hook< ci::opt::gc<gc_type>> hook;
153             typedef base_class::less<base_item_type> less;
154             typedef mock_disposer disposer;
155             typedef ci::lazy_list::stat<> stat;
156         };
157         typedef ci::LazyList< gc_type, base_item_type, list_traits > bucket_type;
158
159         struct set_traits: public ci::michael_set::traits
160         {
161             typedef hash_int hash;
162             typedef simple_item_counter item_counter;
163         };
164         typedef ci::MichaelHashSet< gc_type, bucket_type, set_traits > set_type;
165
166         set_type s( kSize, 2 );
167         test( s );
168         EXPECT_GE( s.statistics().m_nInsertSuccess, 0u );
169     }
170
171     TEST_F( IntrusiveMichaelLazySet_NoGC, base_wrapped_stat )
172     {
173         struct list_traits: public ci::lazy_list::traits
174         {
175             typedef ci::lazy_list::base_hook< ci::opt::gc<gc_type>> hook;
176             typedef base_class::less<base_item_type> less;
177             typedef mock_disposer disposer;
178             typedef ci::lazy_list::wrapped_stat<> stat;
179         };
180         typedef ci::LazyList< gc_type, base_item_type, list_traits > bucket_type;
181
182         struct set_traits: public ci::michael_set::traits
183         {
184             typedef hash_int hash;
185             typedef simple_item_counter item_counter;
186         };
187         typedef ci::MichaelHashSet< gc_type, bucket_type, set_traits > set_type;
188
189         set_type s( kSize, 2 );
190         test( s );
191         EXPECT_GE( s.statistics().m_nInsertSuccess, 0u );
192     }
193
194     TEST_F( IntrusiveMichaelLazySet_NoGC, member_cmp )
195     {
196         typedef ci::LazyList< gc_type
197             ,member_item_type
198             ,ci::lazy_list::make_traits<
199                 ci::opt::hook< ci::lazy_list::member_hook<
200                     offsetof( member_item_type, hMember ),
201                     ci::opt::gc<gc_type>
202                 > >
203                 ,ci::opt::compare< cmp<member_item_type> >
204                 ,ci::opt::disposer< mock_disposer >
205             >::type
206         >    bucket_type;
207
208         typedef ci::MichaelHashSet< gc_type, bucket_type,
209             ci::michael_set::make_traits<
210                 ci::opt::hash< hash_int >
211             >::type
212         > set_type;
213
214         set_type s( kSize, 2 );
215         test( s );
216     }
217
218     TEST_F( IntrusiveMichaelLazySet_NoGC, member_less )
219     {
220         typedef ci::LazyList< gc_type
221             , member_item_type
222             ,ci::lazy_list::make_traits<
223                 ci::opt::hook< ci::lazy_list::member_hook<
224                     offsetof( member_item_type, hMember ),
225                     ci::opt::gc<gc_type>
226                 > >
227                 ,ci::opt::less< less<member_item_type> >
228                 ,ci::opt::disposer< mock_disposer >
229             >::type
230         > bucket_type;
231
232         typedef ci::MichaelHashSet< gc_type, bucket_type,
233             ci::michael_set::make_traits<
234                 ci::opt::hash< hash_int >
235             >::type
236         > set_type;
237
238         set_type s( kSize, 2 );
239         test( s );
240     }
241
242     TEST_F( IntrusiveMichaelLazySet_NoGC, member_cmpmix )
243     {
244         struct list_traits : public ci::lazy_list::traits
245         {
246             typedef ci::lazy_list::member_hook< offsetof( member_item_type, hMember ), ci::opt::gc<gc_type>> hook;
247             typedef base_class::less<member_item_type> less;
248             typedef cmp<member_item_type> compare;
249             typedef mock_disposer disposer;
250         };
251         typedef ci::LazyList< gc_type, member_item_type, list_traits > bucket_type;
252
253         struct set_traits : public ci::michael_set::traits
254         {
255             typedef hash_int hash;
256             typedef simple_item_counter item_counter;
257         };
258         typedef ci::MichaelHashSet< gc_type, bucket_type, set_traits > set_type;
259
260         set_type s( kSize, 2 );
261         test( s );
262     }
263
264     TEST_F( IntrusiveMichaelLazySet_NoGC, member_mutex )
265     {
266         struct list_traits : public ci::lazy_list::traits
267         {
268             typedef ci::lazy_list::member_hook< offsetof( member_mutex_item_type, hMember ), ci::opt::gc<gc_type>, ci::opt::lock_type<std::mutex>> hook;
269             typedef base_class::less<member_mutex_item_type> less;
270             typedef cmp<member_mutex_item_type> compare;
271             typedef mock_disposer disposer;
272         };
273         typedef ci::LazyList< gc_type, member_mutex_item_type, list_traits > bucket_type;
274
275         struct set_traits : public ci::michael_set::traits
276         {
277             typedef hash_int hash;
278             typedef simple_item_counter item_counter;
279         };
280         typedef ci::MichaelHashSet< gc_type, bucket_type, set_traits > set_type;
281
282         set_type s( kSize, 2 );
283         test( s );
284     }
285
286     TEST_F( IntrusiveMichaelLazySet_NoGC, member_stat )
287     {
288         struct list_traits: public ci::lazy_list::traits
289         {
290             typedef ci::lazy_list::member_hook< offsetof( member_item_type, hMember ), ci::opt::gc<gc_type>> hook;
291             typedef cmp<member_item_type> compare;
292             typedef mock_disposer disposer;
293             typedef ci::lazy_list::stat<> stat;
294         };
295         typedef ci::LazyList< gc_type, member_item_type, list_traits > bucket_type;
296
297         struct set_traits: public ci::michael_set::traits
298         {
299             typedef hash_int hash;
300             typedef simple_item_counter item_counter;
301         };
302         typedef ci::MichaelHashSet< gc_type, bucket_type, set_traits > set_type;
303
304         set_type s( kSize, 2 );
305         test( s );
306         EXPECT_GE( s.statistics().m_nInsertSuccess, 0u );
307     }
308
309     TEST_F( IntrusiveMichaelLazySet_NoGC, member_wrapped_stat )
310     {
311         struct list_traits: public ci::lazy_list::traits
312         {
313             typedef ci::lazy_list::member_hook< offsetof( member_item_type, hMember ), ci::opt::gc<gc_type>> hook;
314             typedef cmp<member_item_type> compare;
315             typedef mock_disposer disposer;
316             typedef ci::lazy_list::wrapped_stat<> stat;
317         };
318         typedef ci::LazyList< gc_type, member_item_type, list_traits > bucket_type;
319
320         struct set_traits: public ci::michael_set::traits
321         {
322             typedef hash_int hash;
323             typedef simple_item_counter item_counter;
324         };
325         typedef ci::MichaelHashSet< gc_type, bucket_type, set_traits > set_type;
326
327         set_type s( kSize, 2 );
328         test( s );
329         EXPECT_GE( s.statistics().m_nInsertSuccess, 0u );
330     }
331
332 } // namespace