Added copyright and license
[libcds.git] / tests / test-hdr / set / hdr_intrusive_refinable_hashset_treapset.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_intrusive_striped_set.h"
32 #include <cds/intrusive/striped_set/boost_treap_set.h>
33 #include <cds/intrusive/striped_set.h>
34
35 namespace set {
36     namespace bi = boost::intrusive;
37
38     namespace {
39         typedef IntrusiveStripedSetHdrTest::base_item< bi::bs_set_base_hook<> > base_item_type;
40         typedef IntrusiveStripedSetHdrTest::member_item< bi::bs_set_member_hook<> > member_item_type;
41
42         template <typename T>
43         struct priority_cmp: private IntrusiveStripedSetHdrTest::less<T>
44         {
45             typedef IntrusiveStripedSetHdrTest::less<T> base_class;
46
47             template <typename A, typename B>
48             bool operator()( A const& a, B const& b ) const
49             {
50                 return base_class::operator()( b, a );
51             }
52         };
53
54         template <typename T, typename Node>
55         struct get_key
56         {
57             typedef T type;
58
59             type const& operator()( Node const& v ) const
60             {
61                 return v.nKey;
62             }
63         };
64     }
65
66 #if BOOST_VERSION >= 105900
67 #   define CDS_BOOST_INTRUSIVE_KEY_OF_VALUE_OPTION( type ) ,bi::key_of_value< get_key< int, type>>
68 #else
69 #   define CDS_BOOST_INTRUSIVE_KEY_OF_VALUE_OPTION( type )
70 #endif
71
72     void IntrusiveStripedSetHdrTest::Refinable_treap_set_basehook()
73     {
74         typedef ci::StripedSet<
75             bi::treap_set<base_item_type
76                 , bi::compare<IntrusiveStripedSetHdrTest::less<base_item_type>>
77                 , bi::priority<priority_cmp<base_item_type>>
78                 CDS_BOOST_INTRUSIVE_KEY_OF_VALUE_OPTION( base_item_type )
79             >
80             ,co::mutex_policy< ci::striped_set::refinable<> >
81             ,co::hash< IntrusiveStripedSetHdrTest::hash_int >
82         > set_type;
83
84         test<set_type>();
85     }
86
87     void IntrusiveStripedSetHdrTest::Refinable_treap_set_basehook_bucket_threshold()
88     {
89         typedef ci::StripedSet<
90             bi::treap_set<base_item_type
91                 , bi::compare<IntrusiveStripedSetHdrTest::less<base_item_type> >
92                 , bi::priority<priority_cmp<base_item_type>>
93                 CDS_BOOST_INTRUSIVE_KEY_OF_VALUE_OPTION( base_item_type )
94             >
95             ,co::mutex_policy< ci::striped_set::refinable<> >
96             ,co::hash< IntrusiveStripedSetHdrTest::hash_int >
97             ,co::resizing_policy< ci::striped_set::single_bucket_size_threshold<64> >
98         > set_type;
99
100         test<set_type>();
101     }
102
103     void IntrusiveStripedSetHdrTest::Refinable_treap_set_basehook_bucket_threshold_rt()
104     {
105         typedef ci::StripedSet<
106             bi::treap_set<base_item_type
107                 , bi::compare<IntrusiveStripedSetHdrTest::less<base_item_type>>
108                 , bi::priority<priority_cmp<base_item_type>>
109                 CDS_BOOST_INTRUSIVE_KEY_OF_VALUE_OPTION( base_item_type )
110             >
111             ,co::mutex_policy< ci::striped_set::refinable<> >
112             ,co::hash< IntrusiveStripedSetHdrTest::hash_int >
113             ,co::resizing_policy< ci::striped_set::single_bucket_size_threshold<0> >
114         > set_type;
115
116         set_type s( 64, ci::striped_set::single_bucket_size_threshold<0>(256) );
117         test_with( s );
118     }
119
120     void IntrusiveStripedSetHdrTest::Refinable_treap_set_memberhook()
121     {
122         typedef ci::StripedSet<
123             bi::treap_set<
124                 member_item_type
125                 , bi::member_hook< member_item_type, bi::bs_set_member_hook<>, &member_item_type::hMember>
126                 , bi::compare<IntrusiveStripedSetHdrTest::less<member_item_type> >
127                 , bi::priority<priority_cmp<member_item_type> >
128                 CDS_BOOST_INTRUSIVE_KEY_OF_VALUE_OPTION( member_item_type )
129             >
130             ,co::mutex_policy< ci::striped_set::refinable<> >
131             ,co::hash< IntrusiveStripedSetHdrTest::hash_int >
132         > set_type;
133
134         test<set_type>();
135     }
136
137     void IntrusiveStripedSetHdrTest::Refinable_treap_set_memberhook_bucket_threshold()
138     {
139         typedef ci::StripedSet<
140             bi::treap_set<
141                 member_item_type
142                 , bi::member_hook< member_item_type, bi::bs_set_member_hook<>, &member_item_type::hMember>
143                 , bi::compare<IntrusiveStripedSetHdrTest::less<member_item_type> >
144                 , bi::priority<priority_cmp<member_item_type> >
145                 CDS_BOOST_INTRUSIVE_KEY_OF_VALUE_OPTION( member_item_type )
146             >
147             ,co::mutex_policy< ci::striped_set::refinable<> >
148             ,co::hash< IntrusiveStripedSetHdrTest::hash_int >
149             ,co::resizing_policy< ci::striped_set::single_bucket_size_threshold<256> >
150         > set_type;
151
152         test<set_type>();
153     }
154
155     void IntrusiveStripedSetHdrTest::Refinable_treap_set_memberhook_bucket_threshold_rt()
156     {
157         typedef ci::StripedSet<
158             bi::treap_set<
159                 member_item_type
160                 , bi::member_hook< member_item_type, bi::bs_set_member_hook<>, &member_item_type::hMember>
161                 , bi::compare<IntrusiveStripedSetHdrTest::less<member_item_type> >
162                 , bi::priority<priority_cmp<member_item_type> >
163                 CDS_BOOST_INTRUSIVE_KEY_OF_VALUE_OPTION( member_item_type )
164             >
165             ,co::hash< IntrusiveStripedSetHdrTest::hash_int >
166             ,co::resizing_policy< ci::striped_set::single_bucket_size_threshold<0> >
167             ,co::mutex_policy< ci::striped_set::refinable<> >
168         > set_type;
169
170         set_type s( 64, ci::striped_set::single_bucket_size_threshold<0>(256) );
171         test_with( s );
172     }
173
174 } // namespace set
175
176