Added copyright and license
[libcds.git] / tests / test-hdr / list / hdr_michael_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 "list/hdr_michael.h"
32 #include <cds/urcu/general_threaded.h>
33 #include <cds/container/michael_list_rcu.h>
34
35 namespace ordlist {
36     namespace {
37         typedef cds::urcu::gc< cds::urcu::general_threaded<> >    rcu_type;
38
39         struct RCU_GPT_cmp_traits : public cc::michael_list::traits
40         {
41             typedef MichaelListTestHeader::cmp<MichaelListTestHeader::item>   compare;
42         };
43     }
44
45     void MichaelListTestHeader::RCU_GPT_cmp()
46     {
47         // traits-based version
48         typedef cc::MichaelList< rcu_type, item, RCU_GPT_cmp_traits > list;
49         test_rcu< list >();
50
51         // option-based version
52
53         typedef cc::MichaelList< rcu_type, item,
54             cc::michael_list::make_traits<
55                 cc::opt::compare< cmp<item> >
56             >::type
57         > opt_list;
58         test_rcu< opt_list >();
59     }
60
61     namespace {
62         struct RCU_GPT_less_traits : public cc::michael_list::traits
63         {
64             typedef MichaelListTestHeader::lt<MichaelListTestHeader::item>   less;
65         };
66     }
67     void MichaelListTestHeader::RCU_GPT_less()
68     {
69         // traits-based version
70         typedef cc::MichaelList< rcu_type, item, RCU_GPT_less_traits > list;
71         test_rcu< list >();
72
73         // option-based version
74
75         typedef cc::MichaelList< rcu_type, item,
76             cc::michael_list::make_traits<
77                 cc::opt::less< lt<item> >
78             >::type
79         > opt_list;
80         test_rcu< opt_list >();
81     }
82
83     namespace {
84         struct RCU_GPT_cmpmix_traits : public cc::michael_list::traits
85         {
86             typedef MichaelListTestHeader::cmp<MichaelListTestHeader::item>   compare;
87             typedef MichaelListTestHeader::lt<MichaelListTestHeader::item>  less;
88         };
89     }
90     void MichaelListTestHeader::RCU_GPT_cmpmix()
91     {
92         // traits-based version
93         typedef cc::MichaelList< rcu_type, item, RCU_GPT_cmpmix_traits > list;
94         test_rcu< list >();
95
96         // option-based version
97
98         typedef cc::MichaelList< rcu_type, item,
99             cc::michael_list::make_traits<
100                 cc::opt::compare< cmp<item> >
101                 ,cc::opt::less< lt<item> >
102             >::type
103         > opt_list;
104         test_rcu< opt_list >();
105     }
106
107     namespace {
108         struct RCU_GPT_ic_traits : public cc::michael_list::traits
109         {
110             typedef MichaelListTestHeader::lt<MichaelListTestHeader::item>   less;
111             typedef cds::atomicity::item_counter item_counter;
112         };
113     }
114     void MichaelListTestHeader::RCU_GPT_ic()
115     {
116         // traits-based version
117         typedef cc::MichaelList< rcu_type, item, RCU_GPT_ic_traits > list;
118         test_rcu< list >();
119
120         // option-based version
121
122         typedef cc::MichaelList< rcu_type, item,
123             cc::michael_list::make_traits<
124                 cc::opt::less< lt<item> >
125                 ,cc::opt::item_counter< cds::atomicity::item_counter >
126             >::type
127         > opt_list;
128         test_rcu< opt_list >();
129     }
130
131 }   // namespace ordlist
132