81872c9ec586598ccf4f095069c85d65c3eace05
[libcds.git] / test / unit / set / test_intrusive_feldman_hashset_hp.h
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 #ifndef CDSUNIT_SET_TEST_INTRUSIVE_FELDMAN_HASHSET_HP_H
32 #define CDSUNIT_SET_TEST_INTRUSIVE_FELDMAN_HASHSET_HP_H
33
34 #include "test_intrusive_feldman_hashset.h"
35
36 // forward declaration
37 namespace cds { namespace intrusive {}}
38
39 namespace cds_test {
40
41     namespace ci = cds::intrusive;
42     namespace co = cds::opt;
43
44     class intrusive_feldman_hashset_hp: public intrusive_feldman_hashset
45     {
46         typedef intrusive_feldman_hashset base_class;
47
48     protected:
49
50         template <class Set>
51         void test( Set& s )
52         {
53             // Precondition: set is empty
54             // Postcondition: set is empty
55
56             base_class::test( s );
57
58             ASSERT_TRUE( s.empty() );
59             ASSERT_CONTAINER_SIZE( s, 0 );
60
61             typedef typename Set::value_type value_type;
62             size_t const nSetSize = std::max( s.head_size() * 2, static_cast<size_t>( 100 ));
63
64             std::vector< value_type > data;
65             std::vector< size_t> indices;
66             data.reserve( nSetSize );
67             indices.reserve( nSetSize );
68             for ( size_t key = 0; key < nSetSize; ++key ) {
69                 data.push_back( value_type( static_cast<int>(key) ) );
70                 indices.push_back( key );
71             }
72             shuffle( indices.begin(), indices.end() );
73
74             typename Set::guarded_ptr gp;
75
76             // get/extract from empty set
77             for ( auto idx : indices ) {
78                 auto& i = data[idx];
79
80                 gp = s.get( i.key() );
81                 ASSERT_TRUE( !gp );
82
83                 gp = s.extract( i.key());
84                 ASSERT_TRUE( !gp );
85             }
86
87             // fill set
88             for ( auto& i : data ) {
89                 i.nDisposeCount = 0;
90                 ASSERT_TRUE( s.insert( i ) );
91             }
92
93             // get_level_statistics
94             {
95                 std::vector< ci::feldman_hashset::level_statistics > level_stat;
96                 s.get_level_statistics( level_stat );
97                 EXPECT_GT( level_stat.size(), 0 );
98             }
99
100             // get/extract
101             for ( auto idx : indices ) {
102                 auto& i = data[idx];
103
104                 EXPECT_EQ( i.nFindCount, 0 );
105                 gp = s.get( i.key() );
106                 ASSERT_FALSE( !gp );
107                 ++gp->nFindCount;
108                 EXPECT_EQ( i.nFindCount, 1 );
109
110                 gp = s.extract( i.key());
111                 ASSERT_FALSE( !gp );
112                 ++gp->nEraseCount;
113                 EXPECT_EQ( i.nEraseCount, 1 );
114
115                 gp = s.extract( i.key() );
116                 ASSERT_TRUE( !gp );
117
118                 gp = s.get( i.key() );
119                 ASSERT_TRUE( !gp );
120             }
121             gp.release();
122
123             ASSERT_TRUE( s.empty() );
124             ASSERT_CONTAINER_SIZE( s, 0 );
125
126             // Force retiring cycle
127             Set::gc::force_dispose();
128             for ( auto& i : data ) {
129                 EXPECT_EQ( i.nDisposeCount, 1 );
130             }
131
132         }
133     };
134
135 } // namespace cds_test
136
137 #endif // #ifndef CDSUNIT_SET_TEST_INTRUSIVE_FELDMAN_HASHSET_HP_H