Added copyright and license
[libcds.git] / tests / test-hdr / set / hdr_splitlist_set_rcu_gpb.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 "set/hdr_set.h"
32 #include <cds/urcu/general_buffered.h>
33 #include <cds/container/michael_list_rcu.h>
34 #include <cds/container/split_list_set_rcu.h>
35
36 namespace set {
37
38     namespace {
39         typedef cds::urcu::gc< cds::urcu::general_buffered<> > rcu_type;
40
41         struct RCU_GPB_cmp_traits: public cc::split_list::traits
42         {
43             typedef cc::michael_list_tag                ordered_list;
44             typedef HashSetHdrTest::hash_int            hash;
45             typedef HashSetHdrTest::simple_item_counter item_counter;
46             typedef cc::opt::v::relaxed_ordering        memory_model;
47             enum { dynamic_bucket_table = false };
48
49             struct ordered_list_traits: public cc::michael_list::traits
50             {
51                 typedef HashSetHdrTest::cmp<HashSetHdrTest::item>   compare;
52             };
53         };
54
55         struct RCU_GPB_less_traits: public cc::split_list::traits
56         {
57             typedef cc::michael_list_tag                ordered_list;
58             typedef HashSetHdrTest::hash_int            hash;
59             typedef HashSetHdrTest::simple_item_counter item_counter;
60             typedef cc::opt::v::sequential_consistent   memory_model;
61             enum { dynamic_bucket_table = false };
62
63             struct ordered_list_traits: public cc::michael_list::traits
64             {
65                 typedef HashSetHdrTest::less<HashSetHdrTest::item>   less;
66             };
67         };
68
69         struct RCU_cmpmix_traits: public cc::split_list::traits
70         {
71             typedef cc::michael_list_tag                ordered_list;
72             typedef HashSetHdrTest::hash_int            hash;
73             typedef HashSetHdrTest::simple_item_counter item_counter;
74
75             struct ordered_list_traits: public cc::michael_list::traits
76             {
77                 typedef HashSetHdrTest::cmp<HashSetHdrTest::item>   compare;
78                 typedef HashSetHdrTest::less<HashSetHdrTest::item>   less;
79             };
80         };
81
82         struct RCU_cmpmix_stat_traits : public RCU_cmpmix_traits
83         {
84             typedef cc::split_list::stat<> stat;
85         };
86
87     }
88
89     void HashSetHdrTest::Split_RCU_GPB_cmp()
90     {
91         // traits-based version
92         typedef cc::SplitListSet< rcu_type, item, RCU_GPB_cmp_traits > set;
93
94         test_int_rcu_michael_list< set >();
95
96         // option-based version
97         typedef cc::SplitListSet< rcu_type, item,
98             cc::split_list::make_traits<
99                 cc::split_list::ordered_list<cc::michael_list_tag>
100                 ,cc::opt::hash< hash_int >
101                 ,cc::opt::item_counter< simple_item_counter >
102                 ,cc::opt::memory_model< cc::opt::v::relaxed_ordering >
103                 ,cc::split_list::dynamic_bucket_table< true >
104                 ,cc::split_list::ordered_list_traits<
105                     cc::michael_list::make_traits<
106                         cc::opt::compare< cmp<item> >
107                     >::type
108                 >
109             >::type
110         > opt_set;
111         test_int_rcu_michael_list< opt_set >();
112     }
113
114     void HashSetHdrTest::Split_RCU_GPB_less()
115     {
116         // traits-based version
117         typedef cc::SplitListSet< rcu_type, item, RCU_GPB_less_traits > set;
118
119         test_int_rcu_michael_list< set >();
120
121         // option-based version
122         typedef cc::SplitListSet< rcu_type, item,
123             cc::split_list::make_traits<
124                 cc::split_list::ordered_list<cc::michael_list_tag>
125                 ,cc::opt::hash< hash_int >
126                 ,cc::opt::item_counter< simple_item_counter >
127                 ,cc::opt::memory_model< cc::opt::v::sequential_consistent >
128                 ,cc::split_list::dynamic_bucket_table< false >
129                 ,cc::split_list::ordered_list_traits<
130                     cc::michael_list::make_traits<
131                         cc::opt::less< less<item> >
132                     >::type
133                 >
134             >::type
135         > opt_set;
136         test_int_rcu_michael_list< opt_set >();
137     }
138
139     void HashSetHdrTest::Split_RCU_GPB_cmpmix()
140     {
141         // traits-based version
142         typedef cc::SplitListSet< rcu_type, item, RCU_cmpmix_traits > set;
143         test_int_rcu_michael_list< set >();
144
145         // option-based version
146         typedef cc::SplitListSet< rcu_type, item,
147             cc::split_list::make_traits<
148                 cc::split_list::ordered_list<cc::michael_list_tag>
149                 ,cc::opt::hash< hash_int >
150                 ,cc::opt::item_counter< simple_item_counter >
151                 ,cc::split_list::ordered_list_traits<
152                     cc::michael_list::make_traits<
153                         cc::opt::less< less<item> >
154                         ,cc::opt::compare< cmp<item> >
155                     >::type
156                 >
157             >::type
158         > opt_set;
159         test_int_rcu_michael_list< opt_set >();
160     }
161
162     void HashSetHdrTest::Split_RCU_GPB_cmpmix_stat()
163     {
164         // traits-based version
165         typedef cc::SplitListSet< rcu_type, item, RCU_cmpmix_stat_traits > set;
166         test_int_rcu_michael_list< set >();
167
168         // option-based version
169         typedef cc::SplitListSet< rcu_type, item,
170             cc::split_list::make_traits<
171                 cc::split_list::ordered_list<cc::michael_list_tag>
172                 ,cc::opt::hash< hash_int >
173                 ,cc::opt::item_counter< simple_item_counter >
174                 ,cc::split_list::ordered_list_traits<
175                     cc::michael_list::make_traits<
176                         cc::opt::less< less<item> >
177                         ,cc::opt::compare< cmp<item> >
178                     >::type
179                 >
180                 , cc::opt::stat< cc::split_list::stat<>>
181             >::type
182         > opt_set;
183         test_int_rcu_michael_list< opt_set >();
184     }
185
186 } // namespace set
187
188