Added copyright and license
[libcds.git] / tests / test-hdr / list / hdr_lazy_rcu_shb.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 "list/hdr_lazy.h"
32 #include <cds/urcu/signal_buffered.h>
33 #include <cds/container/lazy_list_rcu.h>
34
35 namespace ordlist {
36 #ifdef CDS_URCU_SIGNAL_HANDLING_ENABLED
37     namespace {
38         typedef cds::urcu::gc< cds::urcu::signal_buffered<> >    rcu_type;
39
40         struct RCU_SHB_cmp_traits : public cc::lazy_list::traits
41         {
42             typedef LazyListTestHeader::cmp<LazyListTestHeader::item>   compare;
43         };
44     }
45 #endif
46     void LazyListTestHeader::RCU_SHB_cmp()
47     {
48 #ifdef CDS_URCU_SIGNAL_HANDLING_ENABLED
49         // traits-based version
50         typedef cc::LazyList< rcu_type, item, RCU_SHB_cmp_traits > list;
51         test_rcu< list >();
52
53         // option-based version
54
55         typedef cc::LazyList< rcu_type, item,
56             cc::lazy_list::make_traits<
57                 cc::opt::compare< cmp<item> >
58             >::type
59         > opt_list;
60         test_rcu< opt_list >();
61 #endif
62     }
63
64 #ifdef CDS_URCU_SIGNAL_HANDLING_ENABLED
65     namespace {
66         struct RCU_SHB_less_traits : public cc::lazy_list::traits
67         {
68             typedef LazyListTestHeader::lt<LazyListTestHeader::item>   less;
69         };
70     }
71 #endif
72     void LazyListTestHeader::RCU_SHB_less()
73     {
74 #ifdef CDS_URCU_SIGNAL_HANDLING_ENABLED
75         // traits-based version
76         typedef cc::LazyList< rcu_type, item, RCU_SHB_less_traits > list;
77         test_rcu< list >();
78
79         // option-based version
80
81         typedef cc::LazyList< rcu_type, item,
82             cc::lazy_list::make_traits<
83                 cc::opt::less< lt<item> >
84             >::type
85         > opt_list;
86         test_rcu< opt_list >();
87 #endif
88     }
89
90 #ifdef CDS_URCU_SIGNAL_HANDLING_ENABLED
91     namespace {
92         struct RCU_SHB_cmpmix_traits: public cc::lazy_list::traits
93         {
94             typedef LazyListTestHeader::cmp<LazyListTestHeader::item>   compare;
95             typedef LazyListTestHeader::lt<LazyListTestHeader::item>  less;
96         };
97     }
98 #endif
99     void LazyListTestHeader::RCU_SHB_cmpmix()
100     {
101 #ifdef CDS_URCU_SIGNAL_HANDLING_ENABLED
102         // traits-based version
103         typedef cc::LazyList< rcu_type, item, RCU_SHB_cmpmix_traits > list;
104         test_rcu< list >();
105
106         // option-based version
107
108         typedef cc::LazyList< rcu_type, item,
109             cc::lazy_list::make_traits<
110                 cc::opt::compare< cmp<item> >
111                 ,cc::opt::less< lt<item> >
112             >::type
113         > opt_list;
114         test_rcu< opt_list >();
115 #endif
116     }
117
118 #ifdef CDS_URCU_SIGNAL_HANDLING_ENABLED
119     namespace {
120         struct RCU_SHB_ic_traits: public cc::lazy_list::traits
121         {
122             typedef LazyListTestHeader::lt<LazyListTestHeader::item>   less;
123             typedef cds::atomicity::item_counter item_counter;
124         };
125     }
126 #endif
127     void LazyListTestHeader::RCU_SHB_ic()
128     {
129 #ifdef CDS_URCU_SIGNAL_HANDLING_ENABLED
130         // traits-based version
131         typedef cc::LazyList< rcu_type, item, RCU_SHB_ic_traits > list;
132         test_rcu< list >();
133
134         // option-based version
135
136         typedef cc::LazyList< rcu_type, item,
137             cc::lazy_list::make_traits<
138                 cc::opt::less< lt<item> >
139                 ,cc::opt::item_counter< cds::atomicity::item_counter >
140             >::type
141         > opt_list;
142         test_rcu< opt_list >();
143 #endif
144     }
145
146 }   // namespace ordlist
147