Updated copyright
[libcds.git] / test / unit / set / 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-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_feldman_hashset_hp.h"
32
33 #include <cds/container/feldman_hashset_dhp.h>
34
35 namespace {
36     namespace cc = cds::container;
37     typedef cds::gc::DHP gc_type;
38
39     class FeldmanHashSet_DHP : public cds_test::feldman_hashset_hp
40     {
41     protected:
42         typedef cds_test::feldman_hashset_hp base_class;
43
44         void SetUp()
45         {
46             struct set_traits: public cc::feldman_hashset::traits
47             {
48                 typedef get_hash hash_accessor;
49             };
50             typedef cc::FeldmanHashSet< gc_type, int_item, set_traits > set_type;
51
52             cds::gc::dhp::GarbageCollector::Construct( 16, set_type::c_nHazardPtrCount );
53             cds::threading::Manager::attachThread();
54         }
55
56         void TearDown()
57         {
58             cds::threading::Manager::detachThread();
59             cds::gc::dhp::GarbageCollector::Destruct();
60         }
61     };
62
63     TEST_F( FeldmanHashSet_DHP, defaulted )
64     {
65         typedef cc::FeldmanHashSet< gc_type, int_item,
66             typename cc::feldman_hashset::make_traits<
67                 cc::feldman_hashset::hash_accessor< get_hash >
68             >::type
69         > set_type;
70
71         set_type s;
72         test( s );
73     }
74
75     TEST_F( FeldmanHashSet_DHP, compare )
76     {
77         typedef cc::FeldmanHashSet< gc_type, int_item,
78             typename cc::feldman_hashset::make_traits<
79                 cc::feldman_hashset::hash_accessor< get_hash >
80                 ,cds::opt::compare< cmp >
81             >::type
82         > set_type;
83
84         set_type s( 4, 5 );
85         test( s );
86     }
87
88     TEST_F( FeldmanHashSet_DHP, less )
89     {
90         typedef cc::FeldmanHashSet< gc_type, int_item,
91             typename cc::feldman_hashset::make_traits<
92                 cc::feldman_hashset::hash_accessor< get_hash >
93                 ,cds::opt::less< std::less<int> >
94             >::type
95         > set_type;
96
97         set_type s( 3, 2 );
98         test( s );
99     }
100
101     TEST_F( FeldmanHashSet_DHP, cmpmix )
102     {
103         typedef cc::FeldmanHashSet< gc_type, int_item,
104             typename cc::feldman_hashset::make_traits<
105                 cc::feldman_hashset::hash_accessor< get_hash >
106                 , cds::opt::less< std::less<int> >
107                 ,cds::opt::compare< cmp >
108             >::type
109         > set_type;
110
111         set_type s( 4, 4 );
112         test( s );
113     }
114
115     TEST_F( FeldmanHashSet_DHP, item_counting )
116     {
117         struct set_traits: public cc::feldman_hashset::traits
118         {
119             typedef get_hash hash_accessor;
120             typedef cmp compare;
121             typedef std::less<int> less;
122             typedef simple_item_counter item_counter;
123         };
124         typedef cc::FeldmanHashSet< gc_type, int_item, set_traits > set_type;
125
126         set_type s( 3, 3 );
127         test( s );
128     }
129
130     TEST_F( FeldmanHashSet_DHP, backoff )
131     {
132         struct set_traits: public cc::feldman_hashset::traits
133         {
134             typedef get_hash hash_accessor;
135             typedef cmp compare;
136             typedef cds::atomicity::item_counter item_counter;
137             typedef cds::backoff::yield back_off;
138         };
139         typedef cc::FeldmanHashSet< gc_type, int_item, set_traits > set_type;
140
141         set_type s( 8, 2 );
142         test( s );
143     }
144
145     TEST_F( FeldmanHashSet_DHP, stat )
146     {
147         struct set_traits: public cc::feldman_hashset::traits
148         {
149             typedef get_hash hash_accessor;
150             typedef cds::backoff::yield back_off;
151             typedef cc::feldman_hashset::stat<> stat;
152         };
153         typedef cc::FeldmanHashSet< gc_type, int_item, set_traits > set_type;
154
155         set_type s( 1, 1 );
156         test( s );
157     }
158
159     TEST_F( FeldmanHashSet_DHP, explicit_hash_size )
160     {
161         struct set_traits: public cc::feldman_hashset::traits
162         {
163             typedef get_hash2 hash_accessor;
164             enum: size_t {
165                 hash_size = sizeof( std::declval<key_val>().nKey )
166             };
167             typedef cmp2 compare;
168             typedef cc::feldman_hashset::stat<> stat;
169         };
170         typedef cc::FeldmanHashSet< gc_type, int_item2, set_traits > set_type;
171
172         set_type s( 1, 1 );
173         test( s );
174     }
175
176 } // namespace