1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
|
// Copyright (c) 2006-2018 Maxim Khizhinsky
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt)
#ifndef CDSUNIT_MAP_TEST_MAP_RCU_H
#define CDSUNIT_MAP_TEST_MAP_RCU_H
#include "test_map.h"
namespace cds_test {
class container_map_rcu: public container_map
{
typedef container_map base_class;
protected:
template <class Map>
void test( Map& m )
{
// Precondition: map is empty
// Postcondition: map is empty
base_class::test( m );
ASSERT_TRUE( m.empty());
ASSERT_CONTAINER_SIZE( m, 0 );
size_t const kkSize = base_class::kSize;
std::vector<key_type> arrKeys;
for ( int i = 0; i < static_cast<int>(kkSize); ++i )
arrKeys.push_back( key_type( i ));
shuffle( arrKeys.begin(), arrKeys.end());
std::vector< value_type > arrVals;
for ( size_t i = 0; i < kkSize; ++i ) {
value_type val;
val.nVal = static_cast<int>( i );
val.strVal = std::to_string( i );
arrVals.push_back( val );
}
for ( auto const& i : arrKeys )
ASSERT_TRUE( m.insert( i ));
ASSERT_FALSE( m.empty());
ASSERT_CONTAINER_SIZE( m, kkSize );
// iterators
size_t nCount = 0;
for ( auto it = m.begin(); it != m.end(); ++it ) {
EXPECT_EQ( it->second.nVal, 0 );
it->second.nVal = it->first.nKey * 2;
++nCount;
}
EXPECT_EQ( nCount, kkSize );
nCount = 0;
for ( auto it = m.cbegin(); it != m.cend(); ++it ) {
EXPECT_EQ( it->second.nVal, it->first.nKey * 2 );
++nCount;
}
EXPECT_EQ( nCount, kkSize );
typedef typename Map::exempt_ptr exempt_ptr;
typedef typename Map::raw_ptr raw_ptr;
typedef typename Map::rcu_lock rcu_lock;
// get/extract
shuffle( arrKeys.begin(), arrKeys.end());
for ( auto const& i : arrKeys ) {
value_type const& val = arrVals.at( i.nKey );
{
rcu_lock l;
raw_ptr rp;
rp = m.get( i.nKey );
ASSERT_FALSE( !rp );
EXPECT_EQ( rp->first.nKey, i.nKey );
rp->second.nVal = rp->first.nKey * 2;
rp = m.get( i );
ASSERT_FALSE( !rp );
EXPECT_EQ( rp->first.nKey, i.nKey );
EXPECT_EQ( rp->second.nVal, rp->first.nKey * 2 );
rp->second.nVal = rp->first.nKey * 3;
rp = m.get_with( other_item( i.nKey ), other_less());
ASSERT_FALSE( !rp );
EXPECT_EQ( rp->first.nKey, i.nKey );
EXPECT_EQ( rp->second.nVal, rp->first.nKey * 3 );
rp->second.nVal = rp->first.nKey;
}
exempt_ptr xp;
if ( Map::c_bExtractLockExternal ) {
{
rcu_lock l;
switch ( i.nKey % 4 ) {
case 0:
xp = m.extract( i.nKey );
break;
case 1:
xp = m.extract( i );
break;
case 2:
xp = m.extract( val.strVal );
break;
case 3:
xp = m.extract_with( other_item( i.nKey ), other_less());
break;
}
ASSERT_FALSE( !xp );
EXPECT_EQ( xp->first.nKey, i.nKey );
EXPECT_EQ( xp->second.nVal, xp->first.nKey );
}
xp.release();
{
rcu_lock l;
switch ( i.nKey % 4 ) {
case 0:
xp = m.extract( i.nKey );
break;
case 1:
xp = m.extract( i );
break;
case 2:
xp = m.extract( val.strVal );
break;
case 3:
xp = m.extract_with( other_item( i.nKey ), other_less());
break;
}
EXPECT_TRUE( !xp );
}
}
else {
switch ( i.nKey % 4 ) {
case 0:
xp = m.extract( i.nKey );
break;
case 1:
xp = m.extract( i );
break;
case 2:
xp = m.extract( val.strVal );
break;
case 3:
xp = m.extract_with( other_item( i.nKey ), other_less());
break;
}
ASSERT_FALSE( !xp );
EXPECT_EQ( xp->first.nKey, i.nKey );
EXPECT_EQ( xp->second.nVal, xp->first.nKey );
switch ( i.nKey % 4 ) {
case 0:
xp = m.extract( i.nKey );
break;
case 1:
xp = m.extract( i );
break;
case 2:
xp = m.extract( val.strVal );
break;
case 3:
xp = m.extract_with( other_item( i.nKey ), other_less());
break;
}
EXPECT_TRUE( !xp );
}
{
rcu_lock l;
raw_ptr rp;
rp = m.get( i.nKey );
ASSERT_TRUE( !rp );
rp = m.get( i );
ASSERT_TRUE( !rp );
rp = m.get_with( other_item( i.nKey ), other_less());
ASSERT_TRUE( !rp );
}
}
ASSERT_TRUE( m.empty());
ASSERT_CONTAINER_SIZE( m, 0 );
}
};
} // namespace cds_test
#endif // #ifndef CDSUNIT_MAP_TEST_MAP_H
|