Fixed cmake script
[libcds.git] / test / unit / map / split_iterable_hp.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_michael_iterable_hp.h"
32
33 #include <cds/container/iterable_list_hp.h>
34 #include <cds/container/split_list_map.h>
35 #include <cds/intrusive/free_list.h>
36
37 namespace {
38     namespace cc = cds::container;
39     typedef cds::gc::HP gc_type;
40
41     class SplitListIterableMap_HP : public cds_test::michael_iterable_map
42     {
43     protected:
44         typedef cds_test::michael_iterable_map base_class;
45
46         void SetUp()
47         {
48             struct map_traits: public cc::split_list::traits {
49                 typedef cc::iterable_list_tag ordered_list;
50                 typedef hash1 hash;
51                 struct ordered_list_traits: public cc::iterable_list::traits
52                 {
53                     typedef cmp compare;
54                 };
55             };
56             typedef cc::SplitListMap< gc_type, key_type, value_type, map_traits >   map_type;
57
58             // +3 - for guarded_ptr
59             cds::gc::hp::GarbageCollector::Construct( map_type::c_nHazardPtrCount + 3, 1, 16 );
60             cds::threading::Manager::attachThread();
61         }
62
63         void TearDown()
64         {
65             cds::threading::Manager::detachThread();
66             cds::gc::hp::GarbageCollector::Destruct( true );
67         }
68     };
69
70     TEST_F( SplitListIterableMap_HP, compare )
71     {
72         typedef cc::SplitListMap< gc_type, key_type, value_type,
73             typename cc::split_list::make_traits<
74                 cc::split_list::ordered_list< cc::iterable_list_tag >
75                 , cds::opt::hash< hash1 >
76                 , cc::split_list::ordered_list_traits<
77                     typename cc::iterable_list::make_traits<
78                         cds::opt::compare< cmp >
79                     >::type
80                 >
81             >::type
82         > map_type;
83
84         map_type m( kSize, 2 );
85         test( m );
86     }
87
88     TEST_F( SplitListIterableMap_HP, less )
89     {
90         typedef cc::SplitListMap< gc_type, key_type, value_type,
91             typename cc::split_list::make_traits<
92                 cc::split_list::ordered_list< cc::iterable_list_tag >
93                 , cds::opt::hash< hash1 >
94                 , cc::split_list::ordered_list_traits<
95                     typename cc::iterable_list::make_traits<
96                         cds::opt::less< less >
97                     >::type
98                 >
99             >::type
100         > map_type;
101
102         map_type m( kSize, 2 );
103         test( m );
104     }
105
106     TEST_F( SplitListIterableMap_HP, cmpmix )
107     {
108         typedef cc::SplitListMap< gc_type, key_type, value_type,
109             typename cc::split_list::make_traits<
110                 cc::split_list::ordered_list< cc::iterable_list_tag >
111                 , cds::opt::hash< hash1 >
112                 , cc::split_list::ordered_list_traits<
113                     typename cc::iterable_list::make_traits<
114                         cds::opt::less< less >
115                         , cds::opt::compare< cmp >
116                     >::type
117                 >
118             >::type
119         > map_type;
120
121         map_type m( kSize, 2 );
122         test( m );
123     }
124
125     TEST_F( SplitListIterableMap_HP, item_counting )
126     {
127         struct map_traits: public cc::split_list::traits
128         {
129             typedef cc::iterable_list_tag ordered_list;
130             typedef hash1 hash;
131             typedef cds::atomicity::item_counter item_counter;
132
133             struct ordered_list_traits: public cc::iterable_list::traits
134             {
135                 typedef cmp compare;
136                 typedef base_class::less less;
137                 typedef cds::backoff::empty back_off;
138             };
139         };
140         typedef cc::SplitListMap< gc_type, key_type, value_type, map_traits > map_type;
141
142         map_type m( kSize, 4 );
143         test( m );
144     }
145
146     TEST_F( SplitListIterableMap_HP, stat )
147     {
148         struct map_traits: public cc::split_list::traits
149         {
150             typedef cc::iterable_list_tag ordered_list;
151             typedef hash1 hash;
152             typedef cds::atomicity::item_counter item_counter;
153             typedef cc::split_list::stat<> stat;
154
155             struct ordered_list_traits: public cc::iterable_list::traits
156             {
157                 typedef base_class::less less;
158                 typedef cc::iterable_list::stat<> stat;
159             };
160         };
161         typedef cc::SplitListMap< gc_type, key_type, value_type, map_traits > map_type;
162
163         map_type m( kSize, 2 );
164         test( m );
165         EXPECT_NE( m.statistics().m_nInsertSuccess, 0u );
166         EXPECT_NE( m.list_statistics().m_nInsertSuccess, 0u );
167     }
168
169     TEST_F( SplitListIterableMap_HP, back_off )
170     {
171         struct map_traits: public cc::split_list::traits
172         {
173             typedef cc::iterable_list_tag ordered_list;
174             typedef hash1 hash;
175             typedef cds::atomicity::item_counter item_counter;
176             typedef cds::backoff::yield back_off;
177             typedef cds::opt::v::sequential_consistent memory_model;
178
179             struct ordered_list_traits: public cc::iterable_list::traits
180             {
181                 typedef cmp compare;
182                 typedef cds::backoff::pause back_off;
183             };
184         };
185         typedef cc::SplitListMap< gc_type, key_type, value_type, map_traits > map_type;
186
187         map_type m( kSize, 3 );
188         test( m );
189     }
190
191     TEST_F( SplitListIterableMap_HP, free_list )
192     {
193         struct map_traits: public cc::split_list::traits
194         {
195             typedef cc::iterable_list_tag ordered_list;
196             typedef hash1 hash;
197             typedef cds::atomicity::item_counter item_counter;
198             typedef cds::intrusive::FreeList free_list;
199
200             struct ordered_list_traits: public cc::iterable_list::traits
201             {
202                 typedef cmp compare;
203                 typedef cds::backoff::pause back_off;
204             };
205         };
206         typedef cc::SplitListMap< gc_type, key_type, value_type, map_traits > map_type;
207
208         map_type m( kSize, 3 );
209         test( m );
210     }
211
212     struct set_static_traits: public cc::split_list::traits
213     {
214         static bool const dynamic_bucket_table = false;
215     };
216
217     TEST_F( SplitListIterableMap_HP, static_bucket_table )
218     {
219         struct map_traits: public set_static_traits
220         {
221             typedef cc::iterable_list_tag ordered_list;
222             typedef hash1 hash;
223             typedef cds::atomicity::item_counter item_counter;
224
225             struct ordered_list_traits: public cc::iterable_list::traits
226             {
227                 typedef cmp compare;
228                 typedef cds::backoff::pause back_off;
229             };
230         };
231         typedef cc::SplitListMap< gc_type, key_type, value_type, map_traits > map_type;
232
233         map_type m( kSize, 4 );
234         test( m );
235     }
236
237     TEST_F( SplitListIterableMap_HP, static_bucket_table_free_list )
238     {
239         struct map_traits: public set_static_traits
240         {
241             typedef cc::iterable_list_tag ordered_list;
242             typedef hash1 hash;
243             typedef cds::atomicity::item_counter item_counter;
244             typedef cds::intrusive::FreeList free_list;
245
246             struct ordered_list_traits: public cc::iterable_list::traits
247             {
248                 typedef cmp compare;
249                 typedef cds::backoff::pause back_off;
250             };
251         };
252         typedef cc::SplitListMap< gc_type, key_type, value_type, map_traits > map_type;
253
254         map_type m( kSize, 4 );
255         test( m );
256     }
257
258 } // namespace