Merge branch 'dev'
[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-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_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
149     TEST_F( IntrusiveMichaelLazySet_NoGC, member_cmp )
150     {
151         typedef ci::LazyList< gc_type
152             ,member_item_type
153             ,ci::lazy_list::make_traits<
154                 ci::opt::hook< ci::lazy_list::member_hook<
155                     offsetof( member_item_type, hMember ),
156                     ci::opt::gc<gc_type>
157                 > >
158                 ,ci::opt::compare< cmp<member_item_type> >
159                 ,ci::opt::disposer< mock_disposer >
160             >::type
161         >    bucket_type;
162
163         typedef ci::MichaelHashSet< gc_type, bucket_type,
164             ci::michael_set::make_traits<
165                 ci::opt::hash< hash_int >
166             >::type
167         > set_type;
168
169         set_type s( kSize, 2 );
170         test( s );
171     }
172
173     TEST_F( IntrusiveMichaelLazySet_NoGC, member_less )
174     {
175         typedef ci::LazyList< gc_type
176             , member_item_type
177             ,ci::lazy_list::make_traits<
178                 ci::opt::hook< ci::lazy_list::member_hook<
179                     offsetof( member_item_type, hMember ),
180                     ci::opt::gc<gc_type>
181                 > >
182                 ,ci::opt::less< less<member_item_type> >
183                 ,ci::opt::disposer< mock_disposer >
184             >::type
185         > bucket_type;
186
187         typedef ci::MichaelHashSet< gc_type, bucket_type,
188             ci::michael_set::make_traits<
189                 ci::opt::hash< hash_int >
190             >::type
191         > set_type;
192
193         set_type s( kSize, 2 );
194         test( s );
195     }
196
197     TEST_F( IntrusiveMichaelLazySet_NoGC, member_cmpmix )
198     {
199         struct list_traits : public ci::lazy_list::traits
200         {
201             typedef ci::lazy_list::member_hook< offsetof( member_item_type, hMember ), ci::opt::gc<gc_type>> hook;
202             typedef base_class::less<member_item_type> less;
203             typedef cmp<member_item_type> compare;
204             typedef mock_disposer disposer;
205         };
206         typedef ci::LazyList< gc_type, member_item_type, list_traits > bucket_type;
207
208         struct set_traits : public ci::michael_set::traits
209         {
210             typedef hash_int hash;
211             typedef simple_item_counter item_counter;
212         };
213         typedef ci::MichaelHashSet< gc_type, bucket_type, set_traits > set_type;
214
215         set_type s( kSize, 2 );
216         test( s );
217     }
218
219     TEST_F( IntrusiveMichaelLazySet_NoGC, member_mutex )
220     {
221         struct list_traits : public ci::lazy_list::traits
222         {
223             typedef ci::lazy_list::member_hook< offsetof( member_mutex_item_type, hMember ), ci::opt::gc<gc_type>, ci::opt::lock_type<std::mutex>> hook;
224             typedef base_class::less<member_mutex_item_type> less;
225             typedef cmp<member_mutex_item_type> compare;
226             typedef mock_disposer disposer;
227         };
228         typedef ci::LazyList< gc_type, member_mutex_item_type, list_traits > bucket_type;
229
230         struct set_traits : public ci::michael_set::traits
231         {
232             typedef hash_int hash;
233             typedef simple_item_counter item_counter;
234         };
235         typedef ci::MichaelHashSet< gc_type, bucket_type, set_traits > set_type;
236
237         set_type s( kSize, 2 );
238         test( s );
239     }
240
241 } // namespace