Added internal statistics to MichaelList, IterableList
[libcds.git] / test / unit / list / michael_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-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_list_hp.h"
32 #include <cds/container/michael_list_dhp.h>
33
34 namespace {
35     namespace cc = cds::container;
36     typedef cds::gc::DHP gc_type;
37
38     class MichaelList_DHP : public cds_test::list_hp
39     {
40     protected:
41         void SetUp()
42         {
43             typedef cc::MichaelList< gc_type, item > list_type;
44
45             cds::gc::dhp::GarbageCollector::Construct( 16, list_type::c_nHazardPtrCount );
46             cds::threading::Manager::attachThread();
47         }
48
49         void TearDown()
50         {
51             cds::threading::Manager::detachThread();
52             cds::gc::hp::GarbageCollector::Destruct();
53         }
54     };
55
56     TEST_F( MichaelList_DHP, less_ordered )
57     {
58         typedef cc::MichaelList< gc_type, item,
59             typename cc::michael_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( MichaelList_DHP, compare_ordered )
71     {
72         typedef cc::MichaelList< gc_type, item,
73             typename cc::michael_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( MichaelList_DHP, mix_ordered )
85     {
86         typedef cc::MichaelList< gc_type, item,
87             typename cc::michael_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( MichaelList_DHP, item_counting )
100     {
101         struct traits : public cc::michael_list::traits
102         {
103             typedef lt<item> less;
104             typedef cds::atomicity::item_counter item_counter;
105         };
106         typedef cc::MichaelList<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( MichaelList_DHP, backoff )
115     {
116         struct traits : public cc::michael_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::MichaelList<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( MichaelList_DHP, seq_cst )
131     {
132         struct traits : public cc::michael_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::MichaelList<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( MichaelList_DHP, stat )
147     {
148         struct traits: public cc::michael_list::traits
149         {
150             typedef lt<item> less;
151             typedef cds::atomicity::item_counter item_counter;
152             typedef cds::container::michael_list::stat<> stat;
153
154         };
155         typedef cc::MichaelList<gc_type, item, traits > list_type;
156
157         list_type l;
158         test_common( l );
159         test_ordered_iterator( l );
160         test_hp( l );
161     }
162
163     TEST_F( MichaelList_DHP, wrapped_stat )
164     {
165         struct traits: public cc::michael_list::traits
166         {
167             typedef lt<item> less;
168             typedef cds::atomicity::item_counter item_counter;
169             typedef cds::container::michael_list::wrapped_stat<> stat;
170
171         };
172         typedef cc::MichaelList<gc_type, item, traits > list_type;
173
174         cds::container::michael_list::stat<> st;
175         list_type l( st );
176         test_common( l );
177         test_ordered_iterator( l );
178         test_hp( l );
179     }
180
181 } // namespace