Removed redundant spaces
[libcds.git] / test / unit / list / test_list_rcu.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_LIST_TEST_LIST_RCU_H
32 #define CDSUNIT_LIST_TEST_LIST_RCU_H
33
34 #include "test_list.h"
35
36 namespace cds_test {
37
38     class list_rcu : public list_common
39     {
40     protected:
41         template <typename List>
42         void test_rcu( List& l )
43         {
44             // Precondition: list is empty
45             // Postcondition: list is empty
46
47             static const size_t nSize = 20;
48             typedef typename List::value_type value_type;
49             value_type arr[nSize];
50
51             for ( size_t i = 0; i < nSize; ++i ) {
52                 arr[i].nKey = static_cast<int>(i);
53                 arr[i].nVal = arr[i].nKey * 10;
54             }
55             shuffle( arr, arr + nSize );
56
57             ASSERT_TRUE( l.empty());
58             ASSERT_CONTAINER_SIZE( l, 0 );
59
60             typedef typename List::exempt_ptr exempt_ptr;
61             typedef typename List::raw_ptr    raw_ptr;
62             typedef typename List::rcu_lock   rcu_lock;
63
64             // get() test
65             for ( auto const& i : arr ) {
66                 {
67                     rcu_lock lock;
68                     raw_ptr rp = l.get( i.nKey );
69                     EXPECT_TRUE( !rp );
70                     rp = l.get_with( other_item( i.nKey ), other_less());
71                     EXPECT_TRUE( !rp );
72                 }
73
74                 EXPECT_TRUE( l.insert( i ));
75
76                 {
77                     rcu_lock lock;
78                     raw_ptr rp = l.get( i.nKey );
79                     ASSERT_FALSE( !rp );
80                     EXPECT_EQ( rp->nKey, i.nKey );
81                     EXPECT_EQ( rp->nVal, i.nVal );
82                 }
83                 {
84                     rcu_lock lock;
85                     raw_ptr rp = l.get( i );
86                     ASSERT_FALSE( !rp );
87                     EXPECT_EQ( rp->nKey, i.nKey );
88                     EXPECT_EQ( rp->nVal, i.nVal );
89                 }
90                 {
91                     rcu_lock lock;
92                     raw_ptr rp = l.get_with( other_item( i.nKey ), other_less());
93                     ASSERT_FALSE( !rp );
94                     EXPECT_EQ( rp->nKey, i.nKey );
95                     EXPECT_EQ( rp->nVal, i.nVal );
96                 }
97             }
98
99             ASSERT_FALSE( l.empty());
100             ASSERT_CONTAINER_SIZE( l, nSize );
101
102             // extract()
103
104             exempt_ptr gp;
105             if ( List::c_bExtractLockExternal ) {
106                 for ( auto const& i : arr ) {
107                     {
108                         rcu_lock lock;
109                         if ( i.nKey & 1 )
110                             gp = l.extract( i.nKey );
111                         else
112                             gp = l.extract_with( other_item( i.nKey ), other_less());
113
114                         ASSERT_FALSE( !gp );
115                         EXPECT_EQ( gp->nKey, i.nKey );
116                     }
117                     gp.release();
118                     {
119                         rcu_lock lock;
120                         gp = l.extract( i );
121                         EXPECT_TRUE( !gp );
122                         gp = l.extract_with( other_item( i.nKey ), other_less());
123                         EXPECT_TRUE( !gp );
124                     }
125                 }
126             }
127             else {
128                 for ( auto const& i : arr ) {
129                     if ( i.nKey & 1 )
130                         gp = l.extract( i.nKey );
131                     else
132                         gp = l.extract_with( other_item( i.nKey ), other_less());
133
134                     ASSERT_FALSE( !gp );
135                     EXPECT_EQ( gp->nKey, i.nKey );
136
137                     gp = l.extract( i );
138                     EXPECT_TRUE( !gp );
139                     gp = l.extract_with( other_item( i.nKey ), other_less());
140                     EXPECT_TRUE( !gp );
141                 }
142             }
143
144             ASSERT_TRUE( l.empty());
145             ASSERT_CONTAINER_SIZE( l, 0 );
146         }
147     };
148 } // namespace cds_test
149
150 #endif // CDSUNIT_LIST_TEST_LIST_RCU_H