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