fixed adding file problem
[c11concurrency-benchmarks.git] / gdax-orderbook-hpp / demo / dependencies / libcds-2.3.2 / test / unit / queue / segmented_queue_hp.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-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 #include "test_segmented_queue.h"
32
33 #include <cds/gc/hp.h>
34 #include <cds/container/segmented_queue.h>
35
36 namespace {
37     namespace cc = cds::container;
38     typedef cds::gc::HP gc_type;
39
40
41     class SegmentedQueue_HP : public cds_test::segmented_queue
42     {
43     protected:
44         static const size_t c_QuasiFactor = 15;
45         void SetUp()
46         {
47             typedef cc::SegmentedQueue< gc_type, int > queue_type;
48
49             cds::gc::hp::GarbageCollector::Construct( queue_type::c_nHazardPtrCount, 1, 16 );
50             cds::threading::Manager::attachThread();
51         }
52
53         void TearDown()
54         {
55             cds::threading::Manager::detachThread();
56             cds::gc::hp::GarbageCollector::Destruct( true );
57         }
58     };
59
60     TEST_F( SegmentedQueue_HP, defaulted )
61     {
62         typedef cds::container::SegmentedQueue< gc_type, int > test_queue;
63
64         test_queue q( c_QuasiFactor );
65         ASSERT_EQ( q.quasi_factor(), cds::beans::ceil2( c_QuasiFactor ));
66         test(q);
67     }
68
69     TEST_F( SegmentedQueue_HP, mutex )
70     {
71         struct traits : public cds::container::segmented_queue::traits
72         {
73             typedef cds::atomicity::item_counter item_counter;
74             typedef cds::opt::v::random_shuffle_permutation<> permutation_generator;
75         };
76         typedef cds::container::SegmentedQueue< cds::gc::HP, int, traits > test_queue;
77
78         test_queue q( c_QuasiFactor );
79         ASSERT_EQ( q.quasi_factor(), cds::beans::ceil2( c_QuasiFactor ));
80         test( q );
81     }
82
83     TEST_F( SegmentedQueue_HP, shuffle )
84     {
85         struct traits : public cds::container::segmented_queue::traits
86         {
87             typedef cds::atomicity::item_counter item_counter;
88             typedef cds::opt::v::random_shuffle_permutation<> permutation_generator;
89         };
90         typedef cds::container::SegmentedQueue< cds::gc::HP, int, traits > test_queue;
91
92         test_queue q( c_QuasiFactor );
93         ASSERT_EQ( q.quasi_factor(), cds::beans::ceil2( c_QuasiFactor ));
94         test( q );
95     }
96
97     TEST_F( SegmentedQueue_HP, stat )
98     {
99         struct traits : public
100             cds::container::segmented_queue::make_traits <
101                 cds::opt::item_counter< cds::atomicity::item_counter >
102                 , cds::opt::permutation_generator< cds::opt::v::random_permutation<> >
103                 , cds::opt::stat < cds::container::segmented_queue::stat<> >
104             > ::type
105         {};
106         typedef cds::container::SegmentedQueue< cds::gc::HP, int, traits > test_queue;
107
108         test_queue q( c_QuasiFactor );
109         ASSERT_EQ( q.quasi_factor(), cds::beans::ceil2( c_QuasiFactor ));
110         test( q );
111     }
112
113     TEST_F( SegmentedQueue_HP, move )
114     {
115         typedef cds::container::SegmentedQueue< gc_type, std::string > test_queue;
116
117         test_queue q( c_QuasiFactor );
118         ASSERT_EQ( q.quasi_factor(), cds::beans::ceil2( c_QuasiFactor ));
119         test_string( q );
120     }
121
122     TEST_F( SegmentedQueue_HP, move_item_counting )
123     {
124         struct traits : public cds::container::segmented_queue::traits
125         {
126             typedef cds::atomicity::item_counter item_counter;
127         };
128         typedef cds::container::SegmentedQueue< gc_type, std::string, traits > test_queue;
129
130         test_queue q( c_QuasiFactor );
131         ASSERT_EQ( q.quasi_factor(), cds::beans::ceil2( c_QuasiFactor ));
132         test_string( q );
133     }
134
135 } // namespace
136