efa335a62954993788b42975a3855bb139f1b5e7
[libcds.git] / test / unit / 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-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_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             // +1 - for guarded_ptr
46             // +3 - for iterator test
47             cds::gc::dhp::GarbageCollector::Construct( 16, list_type::c_nHazardPtrCount );
48             cds::threading::Manager::attachThread();
49         }
50
51         void TearDown()
52         {
53             cds::threading::Manager::detachThread();
54             cds::gc::dhp::GarbageCollector::Destruct();
55         }
56     };
57
58     TEST_F( IntrusiveIterableList_DHP, less )
59     {
60         typedef ci::IterableList< gc_type, item_type,
61             typename ci::iterable_list::make_traits< 
62                 ci::opt::disposer< mock_disposer >
63                 ,cds::opt::less< less< item_type >>
64                 , cds::opt::item_counter< cds::atomicity::item_counter >
65             >::type 
66        > list_type;
67
68        list_type l;
69        test_common( l );
70        test_ordered_iterator( l );
71        test_hp( l );
72     }
73
74     TEST_F( IntrusiveIterableList_DHP, compare )
75     {
76         typedef ci::IterableList< gc_type, item_type,
77             typename ci::iterable_list::make_traits<
78                 ci::opt::disposer< mock_disposer >
79                 , cds::opt::compare< cmp< item_type >>
80                 , cds::opt::item_counter< cds::atomicity::item_counter >
81             >::type
82         > list_type;
83
84         list_type l;
85         test_common( l );
86         test_ordered_iterator( l );
87         test_hp( l );
88     }
89
90     TEST_F( IntrusiveIterableList_DHP, item_counting )
91     {
92         struct traits : public ci::iterable_list::traits {
93             typedef mock_disposer disposer;
94             typedef cmp< item_type > compare;
95             typedef intrusive_iterable_list::less< item_type > less;
96             typedef cds::atomicity::item_counter item_counter;
97         };
98         typedef ci::IterableList< gc_type, item_type, traits > list_type;
99
100         list_type l;
101         test_common( l );
102         test_ordered_iterator( l );
103         test_hp( l );
104     }
105
106     TEST_F( IntrusiveIterableList_DHP, backoff )
107     {
108         struct traits : public ci::iterable_list::traits {
109             typedef mock_disposer disposer;
110             typedef cmp< item_type > compare;
111             typedef intrusive_iterable_list::less< item_type > less;
112             typedef cds::atomicity::item_counter item_counter;
113             typedef cds::backoff::pause back_off;
114         };
115         typedef ci::IterableList< gc_type, item_type, traits > list_type;
116
117         list_type l;
118         test_common( l );
119         test_ordered_iterator( l );
120         test_hp( l );
121     }
122
123     TEST_F( IntrusiveIterableList_DHP, seqcst )
124     {
125         struct traits : public ci::iterable_list::traits {
126             typedef mock_disposer disposer;
127             typedef intrusive_iterable_list::less< item_type > less;
128             typedef cds::atomicity::item_counter item_counter;
129             typedef cds::opt::v::sequential_consistent memory_model;
130         };
131         typedef ci::IterableList< gc_type, item_type, traits > list_type;
132
133         list_type l;
134         test_common( l );
135         test_ordered_iterator( l );
136         test_hp( l );
137     }
138
139 } // namespace