Added copyright and license
[libcds.git] / tests / test-hdr / queue / hdr_segmented_queue_dhp.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-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 #include "hdr_segmented_queue.h"
32 #include <cds/container/segmented_queue.h>
33 #include <cds/gc/dhp.h>
34
35 namespace queue {
36
37     void HdrSegmentedQueue::SegmQueue_DHP()
38     {
39         typedef cds::container::SegmentedQueue< cds::gc::DHP, item > queue_type;
40         test<queue_type>();
41     }
42
43     void HdrSegmentedQueue::SegmQueue_DHP_mutex()
44     {
45         typedef cds::container::SegmentedQueue< cds::gc::DHP, item,
46             cds::container::segmented_queue::make_traits<
47                 cds::opt::lock_type< std::mutex >
48             >::type
49         > queue_type;
50
51         test<queue_type>();
52     }
53
54     void HdrSegmentedQueue::SegmQueue_DHP_shuffle()
55     {
56         struct queue_traits : public cds::container::segmented_queue::traits
57         {
58             typedef cds::atomicity::item_counter item_counter;
59             typedef cds::opt::v::random_shuffle_permutation<> permutation_generator;
60         };
61         typedef cds::container::SegmentedQueue< cds::gc::DHP, item, queue_traits > queue_type;
62
63         test<queue_type>();
64     }
65
66     void HdrSegmentedQueue::SegmQueue_DHP_stat()
67     {
68         struct queue_traits : public
69             cds::container::segmented_queue::make_traits <
70                 cds::opt::item_counter< cds::atomicity::item_counter >
71                 , cds::opt::permutation_generator< cds::opt::v::random_permutation<> >
72                 , cds::opt::stat < cds::container::segmented_queue::stat<> >
73             > ::type
74         {};
75         typedef cds::container::SegmentedQueue< cds::gc::DHP, item, queue_traits > queue_type;
76
77         test<queue_type>();
78     }
79
80     void HdrSegmentedQueue::SegmQueue_DHP_cacheline_padding()
81     {
82         struct queue_traits : public cds::container::segmented_queue::traits
83         {
84             enum { padding = cds::opt::cache_line_padding };
85         };
86
87         typedef cds::container::SegmentedQueue< cds::gc::DHP, item, queue_traits > queue_type;
88         test<queue_type>();
89     }
90
91     void HdrSegmentedQueue::SegmQueue_DHP_mutex_cacheline_padding()
92     {
93         typedef cds::container::SegmentedQueue< cds::gc::DHP, item,
94             cds::container::segmented_queue::make_traits<
95                 cds::opt::lock_type< std::mutex >
96                 , cds::opt::padding< cds::opt::cache_line_padding >
97             >::type
98         > queue_type;
99
100         test<queue_type>();
101     }
102
103     void HdrSegmentedQueue::SegmQueue_DHP_shuffle_cacheline_padding()
104     {
105         struct queue_traits : public cds::container::segmented_queue::traits
106         {
107             typedef cds::atomicity::item_counter item_counter;
108             typedef cds::opt::v::random_shuffle_permutation<> permutation_generator;
109             enum { padding = cds::opt::cache_line_padding };
110         };
111         typedef cds::container::SegmentedQueue< cds::gc::DHP, item, queue_traits > queue_type;
112
113         test<queue_type>();
114     }
115
116     void HdrSegmentedQueue::SegmQueue_DHP_stat_cacheline_padding()
117     {
118         struct queue_traits : public
119             cds::container::segmented_queue::make_traits <
120                 cds::opt::item_counter< cds::atomicity::item_counter >
121                 , cds::opt::permutation_generator< cds::opt::v::random_permutation<> >
122                 , cds::opt::stat < cds::container::segmented_queue::stat<> >
123                 , cds::opt::padding< cds::opt::cache_line_padding >
124             > ::type
125         {};
126         typedef cds::container::SegmentedQueue< cds::gc::DHP, item, queue_traits > queue_type;
127
128         test<queue_type>();
129     }
130
131 } // namespace queue