Added copyright and license
[libcds.git] / tests / test-hdr / set / hdr_intrusive_refinable_hashset_avlset.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_avl_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::avl_set_base_hook<> > base_item_type;
40         typedef IntrusiveStripedSetHdrTest::member_item< bi::avl_set_member_hook<> > member_item_type;
41
42         template <typename T, typename Node>
43         struct get_key
44         {
45             typedef T type;
46
47             type const& operator()( Node const& v ) const
48             {
49                 return v.nKey;
50             }
51         };
52     }
53
54 #if BOOST_VERSION >= 105900
55 #   define CDS_BOOST_INTRUSIVE_KEY_OF_VALUE_OPTION( type ) ,bi::key_of_value< get_key< int, type>>
56 #else
57 #   define CDS_BOOST_INTRUSIVE_KEY_OF_VALUE_OPTION( type )
58 #endif
59
60     void IntrusiveStripedSetHdrTest::Refinable_avl_set_basehook()
61     {
62         typedef ci::StripedSet<
63             bi::avl_set<base_item_type
64                 , bi::compare<IntrusiveStripedSetHdrTest::less<base_item_type>>
65                 CDS_BOOST_INTRUSIVE_KEY_OF_VALUE_OPTION( base_item_type )
66             >
67             ,co::mutex_policy< ci::striped_set::refinable<> >
68             ,co::hash< IntrusiveStripedSetHdrTest::hash_int >
69             ,co::back_off< cds::backoff::empty >
70         > set_type;
71
72         test<set_type>();
73     }
74
75     void IntrusiveStripedSetHdrTest::Refinable_avl_set_basehook_bucket_threshold()
76     {
77         typedef ci::StripedSet<
78             bi::avl_set<base_item_type
79                 , bi::compare<IntrusiveStripedSetHdrTest::less<base_item_type>>
80                 CDS_BOOST_INTRUSIVE_KEY_OF_VALUE_OPTION( base_item_type )
81             >
82             ,co::hash< IntrusiveStripedSetHdrTest::hash_int >
83             ,co::resizing_policy< ci::striped_set::single_bucket_size_threshold<64> >
84             ,co::mutex_policy< ci::striped_set::refinable<> >
85         > set_type;
86
87         test<set_type>();
88     }
89
90     void IntrusiveStripedSetHdrTest::Refinable_avl_set_basehook_bucket_threshold_rt()
91     {
92         typedef ci::StripedSet<
93             bi::avl_set<base_item_type
94                 , bi::compare<IntrusiveStripedSetHdrTest::less<base_item_type>>
95                 CDS_BOOST_INTRUSIVE_KEY_OF_VALUE_OPTION( base_item_type )
96             >
97             ,co::hash< IntrusiveStripedSetHdrTest::hash_int >
98             ,co::resizing_policy< ci::striped_set::single_bucket_size_threshold<0> >
99             ,co::mutex_policy< ci::striped_set::refinable<> >
100         > set_type;
101
102         set_type s( 64, ci::striped_set::single_bucket_size_threshold<0>(256) );
103         test_with( s );
104     }
105
106     void IntrusiveStripedSetHdrTest::Refinable_avl_set_memberhook()
107     {
108         typedef ci::StripedSet<
109             bi::avl_set<
110                 member_item_type
111                 , bi::member_hook< member_item_type, bi::avl_set_member_hook<>, &member_item_type::hMember>
112                 , bi::compare<IntrusiveStripedSetHdrTest::less<member_item_type> >
113                 CDS_BOOST_INTRUSIVE_KEY_OF_VALUE_OPTION( member_item_type )
114             >
115             ,co::mutex_policy< ci::striped_set::refinable<> >
116             ,co::hash< IntrusiveStripedSetHdrTest::hash_int >
117         > set_type;
118
119         test<set_type>();
120     }
121
122     void IntrusiveStripedSetHdrTest::Refinable_avl_set_memberhook_bucket_threshold()
123     {
124         typedef ci::StripedSet<
125             bi::avl_set<
126                 member_item_type
127                 , bi::member_hook< member_item_type, bi::avl_set_member_hook<>, &member_item_type::hMember>
128                 , bi::compare<IntrusiveStripedSetHdrTest::less<member_item_type> >
129                 CDS_BOOST_INTRUSIVE_KEY_OF_VALUE_OPTION( member_item_type )
130             >
131             ,co::mutex_policy< ci::striped_set::refinable<> >
132             ,co::hash< IntrusiveStripedSetHdrTest::hash_int >
133             ,co::resizing_policy< ci::striped_set::single_bucket_size_threshold<256> >
134         > set_type;
135
136         test<set_type>();
137     }
138
139     void IntrusiveStripedSetHdrTest::Refinable_avl_set_memberhook_bucket_threshold_rt()
140     {
141         typedef ci::StripedSet<
142             bi::avl_set<
143                 member_item_type
144                 , bi::member_hook< member_item_type, bi::avl_set_member_hook<>, &member_item_type::hMember>
145                 , bi::compare<IntrusiveStripedSetHdrTest::less<member_item_type> >
146                 CDS_BOOST_INTRUSIVE_KEY_OF_VALUE_OPTION( member_item_type )
147             >
148             ,co::hash< IntrusiveStripedSetHdrTest::hash_int >
149             ,co::mutex_policy< ci::striped_set::refinable<> >
150             ,co::resizing_policy< ci::striped_set::single_bucket_size_threshold<0> >
151         > set_type;
152
153         set_type s( 64, ci::striped_set::single_bucket_size_threshold<0>(256) );
154         test_with( s );
155     }
156 } // namespace set
157
158