fixed adding file problem
[c11concurrency-benchmarks.git] / gdax-orderbook-hpp / demo / dependencies / libcds-2.3.2 / test / unit / list / test_kv_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-2017
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_KV_LIST_RCU_H
32 #define CDSUNIT_LIST_TEST_KV_LIST_RCU_H
33
34 #include "test_kv_list.h"
35
36 namespace cds_test {
37
38     class kv_list_rcu : public kv_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             struct key_val {
49                 int key;
50                 int val;
51             };
52             key_val arr[nSize];
53
54             for ( size_t i = 0; i < nSize; ++i ) {
55                 arr[i].key = static_cast<int>(i);
56                 arr[i].val = arr[i].key * 10;
57             }
58             shuffle( arr, arr + nSize );
59
60             ASSERT_TRUE( l.empty());
61             ASSERT_CONTAINER_SIZE( l, 0 );
62
63             typedef typename List::exempt_ptr exempt_ptr;
64             typedef typename List::raw_ptr    raw_ptr;
65             typedef typename List::rcu_lock   rcu_lock;
66
67             // get() test
68             for ( auto const& i : arr ) {
69                 {
70                     rcu_lock lock;
71                     raw_ptr rp = l.get( i.key );
72                     EXPECT_TRUE( !rp );
73                     rp = l.get_with( other_key( i.key ), other_less());
74                     EXPECT_TRUE( !rp );
75                 }
76
77                 EXPECT_TRUE( l.insert( i.key, i.val ));
78
79                 {
80                     rcu_lock lock;
81                     raw_ptr rp = l.get( i.key );
82                     ASSERT_FALSE( !rp );
83                     EXPECT_EQ( rp->first.nKey, i.key );
84                     EXPECT_EQ( rp->second.val, i.val );
85                 }
86                 {
87                     rcu_lock lock;
88                     raw_ptr rp = l.get( key_type( i.key ));
89                     ASSERT_FALSE( !rp );
90                     EXPECT_EQ( rp->first.nKey, i.key );
91                     EXPECT_EQ( rp->second.val, i.val );
92                 }
93                 {
94                     rcu_lock lock;
95                     raw_ptr rp = l.get_with( other_key( i.key ), other_less());
96                     ASSERT_FALSE( !rp );
97                     EXPECT_EQ( rp->first.key(), i.key );
98                     EXPECT_EQ( rp->second.val, i.val );
99                 }
100             }
101
102             ASSERT_FALSE( l.empty());
103             ASSERT_CONTAINER_SIZE( l, nSize );
104
105             // extract()
106
107             exempt_ptr gp;
108             if ( List::c_bExtractLockExternal ) {
109                 for ( auto const& i : arr ) {
110                     {
111                         rcu_lock lock;
112                         if ( i.key & 1 )
113                             gp = l.extract( i.key );
114                         else
115                             gp = l.extract_with( other_key( i.key ), other_less());
116
117                         ASSERT_FALSE( !gp );
118                         EXPECT_EQ( gp->first.key(), i.key );
119                     }
120                     gp.release();
121                     {
122                         rcu_lock lock;
123                         gp = l.extract( i.key );
124                         EXPECT_TRUE( !gp );
125                         gp = l.extract_with( other_key( i.key ), other_less());
126                         EXPECT_TRUE( !gp );
127                     }
128                 }
129             }
130             else {
131                 for ( auto const& i : arr ) {
132                     if ( i.key & 1 )
133                         gp = l.extract( i.key );
134                     else
135                         gp = l.extract_with( other_key( i.key ), other_less());
136
137                     ASSERT_FALSE( !gp );
138                     EXPECT_EQ( gp->first.key(), i.key );
139
140                     gp = l.extract( i.key );
141                     EXPECT_TRUE( !gp );
142                     gp = l.extract_with( other_key( i.key ), other_less());
143                     EXPECT_TRUE( !gp );
144                 }
145             }
146
147             ASSERT_TRUE( l.empty());
148             ASSERT_CONTAINER_SIZE( l, 0 );
149         }
150     };
151 } // namespace cds_test
152
153 #endif // CDSUNIT_LIST_TEST_KV_LIST_RCU_H