Removed signal_threaded uRCU
[libcds.git] / test / unit / list / lazy_dhp.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_list_hp.h"
32 #include <cds/container/lazy_list_dhp.h>
33
34 namespace {
35     namespace cc = cds::container;
36     typedef cds::gc::DHP gc_type;
37
38     class LazyList_DHP : public cds_test::list_hp
39     {
40     protected:
41         void SetUp()
42         {
43             typedef cc::LazyList< gc_type, item > list_type;
44
45             cds::gc::dhp::smr::Construct( list_type::c_nHazardPtrCount );
46             cds::threading::Manager::attachThread();
47         }
48
49         void TearDown()
50         {
51             cds::threading::Manager::detachThread();
52             cds::gc::dhp::smr::Destruct();
53         }
54     };
55
56     TEST_F( LazyList_DHP, less_ordered )
57     {
58         typedef cc::LazyList< gc_type, item,
59             typename cc::lazy_list::make_traits<
60                 cds::opt::less< lt<item> >
61             >::type
62         > list_type;
63
64         list_type l;
65         test_common( l );
66         test_ordered_iterator( l );
67         test_hp( l );
68     }
69
70     TEST_F( LazyList_DHP, compare_ordered )
71     {
72         typedef cc::LazyList< gc_type, item,
73             typename cc::lazy_list::make_traits<
74                 cds::opt::compare< cmp<item> >
75             >::type
76         > list_type;
77
78         list_type l;
79         test_common( l );
80         test_ordered_iterator( l );
81         test_hp( l );
82     }
83
84     TEST_F( LazyList_DHP, mix_ordered )
85     {
86         typedef cc::LazyList< gc_type, item,
87             typename cc::lazy_list::make_traits<
88                 cds::opt::compare< cmp<item> >
89                 ,cds::opt::less< lt<item> >
90             >::type
91         > list_type;
92
93         list_type l;
94         test_common( l );
95         test_ordered_iterator( l );
96         test_hp( l );
97     }
98
99     TEST_F( LazyList_DHP, item_counting )
100     {
101         struct traits : public cc::lazy_list::traits
102         {
103             typedef lt<item> less;
104             typedef cds::atomicity::item_counter item_counter;
105         };
106         typedef cc::LazyList<gc_type, item, traits > list_type;
107
108         list_type l;
109         test_common( l );
110         test_ordered_iterator( l );
111         test_hp( l );
112     }
113
114     TEST_F( LazyList_DHP, backoff )
115     {
116         struct traits : public cc::lazy_list::traits
117         {
118             typedef lt<item> less;
119             typedef cds::atomicity::item_counter item_counter;
120             typedef cds::backoff::empty back_off;
121         };
122         typedef cc::LazyList<gc_type, item, traits > list_type;
123
124         list_type l;
125         test_common( l );
126         test_ordered_iterator( l );
127         test_hp( l );
128     }
129
130     TEST_F( LazyList_DHP, seq_cst )
131     {
132         struct traits : public cc::lazy_list::traits
133         {
134             typedef lt<item> less;
135             typedef cds::atomicity::item_counter item_counter;
136             typedef cds::opt::v::sequential_consistent memory_model;
137         };
138         typedef cc::LazyList<gc_type, item, traits > list_type;
139
140         list_type l;
141         test_common( l );
142         test_ordered_iterator( l );
143         test_hp( l );
144     }
145
146     TEST_F( LazyList_DHP, mutex )
147     {
148         struct traits : public cc::lazy_list::traits
149         {
150             typedef lt<item> less;
151             typedef cds::atomicity::item_counter item_counter;
152             typedef std::mutex lock_type;
153         };
154         typedef cc::LazyList<gc_type, item, traits > list_type;
155
156         list_type l;
157         test_common( l );
158         test_ordered_iterator( l );
159         test_hp( l );
160     }
161
162     TEST_F( LazyList_DHP, stat )
163     {
164         struct traits: public cc::lazy_list::traits
165         {
166             typedef lt<item> less;
167             typedef cds::atomicity::item_counter item_counter;
168             typedef cds::container::lazy_list::stat<> stat;
169         };
170         typedef cc::LazyList<gc_type, item, traits > list_type;
171
172         list_type l;
173         test_common( l );
174         test_ordered_iterator( l );
175         test_hp( l );
176     }
177
178     TEST_F( LazyList_DHP, wrapped_stat )
179     {
180         struct traits: public cc::lazy_list::traits
181         {
182             typedef lt<item> less;
183             typedef cds::atomicity::item_counter item_counter;
184             typedef cds::container::lazy_list::wrapped_stat<> stat;
185         };
186         typedef cc::LazyList<gc_type, item, traits > list_type;
187
188         cds::container::lazy_list::stat<> st;
189         list_type l( st );
190         test_common( l );
191         test_ordered_iterator( l );
192         test_hp( l );
193     }
194
195
196 } // namespace