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