95377f40c7d5372b6d8cbfbf92216cd509299a3e
[libcds.git] / test / unit / intrusive-set / intrusive_feldman_hashset_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_feldman_hashset_hp.h"
32
33 #include <cds/intrusive/feldman_hashset_dhp.h>
34
35 namespace {
36     namespace ci = cds::intrusive;
37     typedef cds::gc::DHP gc_type;
38
39     class IntrusiveFeldmanHashSet_DHP : public cds_test::intrusive_feldman_hashset_hp
40     {
41     protected:
42         typedef cds_test::intrusive_feldman_hashset_hp base_class;
43
44     protected:
45
46         void SetUp()
47         {
48             typedef ci::FeldmanHashSet< gc_type, int_item,
49                 typename ci::feldman_hashset::make_traits<
50                     ci::feldman_hashset::hash_accessor< hash_accessor >
51                     ,ci::opt::less< std::less<int>>
52                     ,ci::opt::disposer<mock_disposer>
53                 >::type
54             > set_type;
55
56             cds::gc::dhp::GarbageCollector::Construct( 16, set_type::c_nHazardPtrCount );
57             cds::threading::Manager::attachThread();
58         }
59
60         void TearDown()
61         {
62             cds::threading::Manager::detachThread();
63             cds::gc::dhp::GarbageCollector::Destruct();
64         }
65     };
66
67     TEST_F( IntrusiveFeldmanHashSet_DHP, compare )
68     {
69         struct traits : public ci::feldman_hashset::traits
70         {
71             typedef base_class::hash_accessor hash_accessor;
72             typedef cmp compare;
73             typedef mock_disposer disposer;
74         };
75
76         typedef ci::FeldmanHashSet< gc_type, int_item, traits > set_type;
77
78         set_type s;
79         test( s );
80     }
81
82     TEST_F( IntrusiveFeldmanHashSet_DHP, less )
83     {
84         typedef ci::FeldmanHashSet< gc_type, int_item,
85             typename ci::feldman_hashset::make_traits<
86                 ci::feldman_hashset::hash_accessor< hash_accessor >
87                 , ci::opt::less< std::less<int>>
88                 , ci::opt::disposer<mock_disposer>
89             >::type
90         > set_type;
91
92         set_type s( 5, 2 );
93         test( s );
94     }
95
96     TEST_F( IntrusiveFeldmanHashSet_DHP, cmpmix )
97     {
98         struct traits : public ci::feldman_hashset::traits
99         {
100             typedef base_class::hash_accessor hash_accessor;
101             typedef cmp compare;
102             typedef std::less<int> less;
103             typedef mock_disposer disposer;
104             typedef simple_item_counter item_counter;
105         };
106
107         typedef ci::FeldmanHashSet< gc_type, int_item, traits > set_type;
108
109         set_type s( 3, 4 );
110         test( s );
111     }
112
113     TEST_F( IntrusiveFeldmanHashSet_DHP, backoff )
114     {
115         struct traits : public ci::feldman_hashset::traits
116         {
117             typedef base_class::hash_accessor hash_accessor;
118             typedef cmp compare;
119             typedef mock_disposer disposer;
120             typedef cds::backoff::empty back_off;
121             typedef ci::opt::v::sequential_consistent memory_model;
122         };
123
124         typedef ci::FeldmanHashSet< gc_type, int_item, traits > set_type;
125
126         set_type s( 8, 3 );
127         test( s );
128     }
129
130     TEST_F( IntrusiveFeldmanHashSet_DHP, stat )
131     {
132         struct traits : public ci::feldman_hashset::traits
133         {
134             typedef base_class::hash_accessor hash_accessor;
135             typedef cmp compare;
136             typedef mock_disposer disposer;
137             typedef ci::feldman_hashset::stat<> stat;
138         };
139
140         typedef ci::FeldmanHashSet< gc_type, int_item, traits > set_type;
141
142         set_type s( 8, 3 );
143         test( s );
144     }
145
146 } // namespace