Added copyright and license
[libcds.git] / tests / test-hdr / set / hdr_michael_set_rcu_gpt.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_threaded.h>
33 #include <cds/container/michael_list_rcu.h>
34 #include <cds/container/michael_set_rcu.h>
35
36 namespace set {
37
38     namespace {
39         typedef cds::urcu::gc< cds::urcu::general_threaded<> > rcu_type;
40
41         struct set_traits: public cc::michael_set::traits
42         {
43             typedef HashSetHdrTest::hash_int            hash;
44             typedef HashSetHdrTest::simple_item_counter item_counter;
45         };
46
47         struct RCU_GPT_cmp_traits: public cc::michael_list::traits
48         {
49             typedef HashSetHdrTest::cmp<HashSetHdrTest::item>   compare;
50         };
51
52         struct RCU_GPT_less_traits: public cc::michael_list::traits
53         {
54             typedef HashSetHdrTest::less<HashSetHdrTest::item>   less;
55         };
56
57         struct RCU_GPT_cmpmix_traits: public cc::michael_list::traits
58         {
59             typedef HashSetHdrTest::cmp<HashSetHdrTest::item>   compare;
60             typedef HashSetHdrTest::less<HashSetHdrTest::item>   less;
61         };
62     }
63
64     void HashSetHdrTest::Michael_RCU_GPT_cmp()
65     {
66         typedef cc::MichaelList< rcu_type, item, RCU_GPT_cmp_traits > list;
67
68         // traits-based version
69         typedef cc::MichaelHashSet< rcu_type, list, set_traits > set;
70         test_int_rcu_michael_list< set >();
71
72         // option-based version
73         typedef cc::MichaelHashSet< rcu_type, list,
74             cc::michael_set::make_traits<
75                 cc::opt::hash< hash_int >
76                 ,cc::opt::item_counter< simple_item_counter >
77             >::type
78         > opt_set;
79         test_int_rcu_michael_list< opt_set >();
80     }
81
82     void HashSetHdrTest::Michael_RCU_GPT_less()
83     {
84         typedef cc::MichaelList< rcu_type, item, RCU_GPT_less_traits > list;
85
86         // traits-based version
87         typedef cc::MichaelHashSet< rcu_type, list, set_traits > set;
88         test_int_rcu_michael_list< set >();
89
90         // option-based version
91         typedef cc::MichaelHashSet< rcu_type, list,
92             cc::michael_set::make_traits<
93                 cc::opt::hash< hash_int >
94                 ,cc::opt::item_counter< simple_item_counter >
95             >::type
96         > opt_set;
97         test_int_rcu_michael_list< opt_set >();
98     }
99
100     void HashSetHdrTest::Michael_RCU_GPT_cmpmix()
101     {
102         typedef cc::MichaelList< rcu_type, item, RCU_GPT_cmpmix_traits > list;
103
104         // traits-based version
105         typedef cc::MichaelHashSet< rcu_type, list, set_traits > set;
106         test_int_rcu_michael_list< set >();
107
108         // option-based version
109         typedef cc::MichaelHashSet< rcu_type, list,
110             cc::michael_set::make_traits<
111                 cc::opt::hash< hash_int >
112                 ,cc::opt::item_counter< simple_item_counter >
113             >::type
114         > opt_set;
115         test_int_rcu_michael_list< opt_set >();
116     }
117
118
119 } // namespace set