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