Updated copyright
[libcds.git] / test / unit / map / skiplist_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_skiplist_hp.h"
32
33 #include <cds/container/skip_list_map_dhp.h>
34
35 namespace {
36     namespace cc = cds::container;
37     typedef cds::gc::DHP gc_type;
38
39     class SkipListMap_DHP : public cds_test::skiplist_map_hp
40     {
41     protected:
42         typedef cds_test::skiplist_map_hp base_class;
43
44         void SetUp()
45         {
46             typedef cc::SkipListMap< gc_type, key_type, value_type > map_type;
47
48             cds::gc::dhp::GarbageCollector::Construct( 16, map_type::c_nHazardPtrCount );
49             cds::threading::Manager::attachThread();
50         }
51
52         void TearDown()
53         {
54             cds::threading::Manager::detachThread();
55             cds::gc::dhp::GarbageCollector::Destruct();
56         }
57     };
58
59     TEST_F( SkipListMap_DHP, compare )
60     {
61         typedef cc::SkipListMap< gc_type, key_type, value_type,
62             typename cc::skip_list::make_traits<
63                 cds::opt::compare< cmp >
64             >::type
65         > map_type;
66
67         map_type m;
68         test( m );
69     }
70
71     TEST_F( SkipListMap_DHP, less )
72     {
73         typedef cc::SkipListMap< gc_type, key_type, value_type,
74             typename cc::skip_list::make_traits<
75                 cds::opt::less< base_class::less >
76             >::type
77         > map_type;
78
79         map_type m;
80         test( m );
81     }
82
83     TEST_F( SkipListMap_DHP, cmpmix )
84     {
85         typedef cc::SkipListMap< gc_type, key_type, value_type,
86             typename cc::skip_list::make_traits<
87                 cds::opt::less< base_class::less >
88                 ,cds::opt::compare< cmp >
89             >::type
90         > map_type;
91
92         map_type m;
93         test( m );
94     }
95
96     TEST_F( SkipListMap_DHP, item_counting )
97     {
98         struct map_traits: public cc::skip_list::traits
99         {
100             typedef cmp compare;
101             typedef base_class::less less;
102             typedef cds::atomicity::item_counter item_counter;
103         };
104         typedef cc::SkipListMap< gc_type, key_type, value_type, map_traits > map_type;
105
106         map_type m;
107         test( m );
108     }
109
110     TEST_F( SkipListMap_DHP, backoff )
111     {
112         struct map_traits: public cc::skip_list::traits
113         {
114             typedef cmp compare;
115             typedef base_class::less less;
116             typedef cds::atomicity::item_counter item_counter;
117             typedef cds::backoff::yield back_off;
118         };
119         typedef cc::SkipListMap< gc_type, key_type, value_type, map_traits > map_type;
120
121         map_type m;
122         test( m );
123     }
124
125     TEST_F( SkipListMap_DHP, stat )
126     {
127         struct map_traits: public cc::skip_list::traits
128         {
129             typedef cmp compare;
130             typedef base_class::less less;
131             typedef cds::atomicity::item_counter item_counter;
132             typedef cds::backoff::yield back_off;
133             typedef cc::skip_list::stat<> stat;
134         };
135         typedef cc::SkipListMap< gc_type, key_type, value_type, map_traits > map_type;
136
137         map_type m;
138         test( m );
139     }
140
141     TEST_F( SkipListMap_DHP, random_level_generator )
142     {
143         struct map_traits: public cc::skip_list::traits
144         {
145             typedef cmp compare;
146             typedef base_class::less less;
147             typedef cds::atomicity::item_counter item_counter;
148             typedef cc::skip_list::stat<> stat;
149             typedef cc::skip_list::xorshift random_level_generator;
150         };
151         typedef cc::SkipListMap< gc_type, key_type, value_type, map_traits > map_type;
152
153         map_type m;
154         test( m );
155     }
156
157 } // namespace