HP and DHP SMR totally refactored
[libcds.git] / test / unit / intrusive-list / intrusive_iterable_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_intrusive_iterable_list_hp.h"
32 #include <cds/intrusive/iterable_list_dhp.h>
33
34 namespace {
35     namespace ci = cds::intrusive;
36     typedef cds::gc::DHP gc_type;
37
38     class IntrusiveIterableList_DHP : public cds_test::intrusive_iterable_list_hp
39     {
40     protected:
41         void SetUp()
42         {
43             typedef ci::IterableList< gc_type, item_type > 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( IntrusiveIterableList_DHP, less )
57     {
58         typedef ci::IterableList< gc_type, item_type,
59             typename ci::iterable_list::make_traits<
60                 ci::opt::disposer< mock_disposer >
61                 ,cds::opt::less< less< item_type >>
62                 , cds::opt::item_counter< cds::atomicity::item_counter >
63             >::type
64        > list_type;
65
66        list_type l;
67        test_common( l );
68        test_ordered_iterator( l );
69        test_hp( l );
70     }
71
72     TEST_F( IntrusiveIterableList_DHP, compare )
73     {
74         typedef ci::IterableList< gc_type, item_type,
75             typename ci::iterable_list::make_traits<
76                 ci::opt::disposer< mock_disposer >
77                 , cds::opt::compare< cmp< item_type >>
78                 , cds::opt::item_counter< cds::atomicity::item_counter >
79             >::type
80         > list_type;
81
82         list_type l;
83         test_common( l );
84         test_ordered_iterator( l );
85         test_hp( l );
86     }
87
88     TEST_F( IntrusiveIterableList_DHP, item_counting )
89     {
90         struct traits : public ci::iterable_list::traits {
91             typedef mock_disposer disposer;
92             typedef cmp< item_type > compare;
93             typedef intrusive_iterable_list::less< item_type > less;
94             typedef cds::atomicity::item_counter item_counter;
95         };
96         typedef ci::IterableList< gc_type, item_type, traits > list_type;
97
98         list_type l;
99         test_common( l );
100         test_ordered_iterator( l );
101         test_hp( l );
102     }
103
104     TEST_F( IntrusiveIterableList_DHP, backoff )
105     {
106         struct traits : public ci::iterable_list::traits {
107             typedef mock_disposer disposer;
108             typedef cmp< item_type > compare;
109             typedef intrusive_iterable_list::less< item_type > less;
110             typedef cds::atomicity::item_counter item_counter;
111             typedef cds::backoff::pause back_off;
112         };
113         typedef ci::IterableList< gc_type, item_type, traits > list_type;
114
115         list_type l;
116         test_common( l );
117         test_ordered_iterator( l );
118         test_hp( l );
119     }
120
121     TEST_F( IntrusiveIterableList_DHP, seqcst )
122     {
123         struct traits : public ci::iterable_list::traits {
124             typedef mock_disposer disposer;
125             typedef intrusive_iterable_list::less< item_type > less;
126             typedef cds::atomicity::item_counter item_counter;
127             typedef cds::opt::v::sequential_consistent memory_model;
128         };
129         typedef ci::IterableList< gc_type, item_type, traits > list_type;
130
131         list_type l;
132         test_common( l );
133         test_ordered_iterator( l );
134         test_hp( l );
135     }
136
137     TEST_F( IntrusiveIterableList_DHP, stat )
138     {
139         struct traits: public ci::iterable_list::traits {
140             typedef mock_disposer disposer;
141             typedef intrusive_iterable_list::less< item_type > less;
142             typedef cds::atomicity::item_counter item_counter;
143             typedef cds::intrusive::iterable_list::stat<> stat;
144         };
145         typedef ci::IterableList< gc_type, item_type, traits > list_type;
146
147         list_type l;
148         test_common( l );
149         test_ordered_iterator( l );
150         test_hp( l );
151     }
152
153     TEST_F( IntrusiveIterableList_DHP, wrapped_stat )
154     {
155         struct traits: public ci::iterable_list::traits {
156             typedef mock_disposer disposer;
157             typedef intrusive_iterable_list::less< item_type > less;
158             typedef cds::atomicity::item_counter item_counter;
159             typedef cds::intrusive::iterable_list::wrapped_stat<> stat;
160         };
161         typedef ci::IterableList< gc_type, item_type, traits > list_type;
162
163         traits::stat::stat_type st;
164         list_type l( st );
165         test_common( l );
166         test_ordered_iterator( l );
167         test_hp( l );
168     }
169
170 } // namespace