Added copyright and license
[libcds.git] / tests / test-hdr / priority_queue / hdr_mspqueue_dyn.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 "priority_queue/hdr_pqueue.h"
32 #include <cds/container/mspriority_queue.h>
33
34 namespace priority_queue {
35     namespace pqueue {
36         template <typename T, typename Traits>
37         struct constants<cds::container::MSPriorityQueue<T, Traits> > {
38             static size_t const nCapacity = c_nCapacity - 1;
39         };
40     }
41
42     namespace {
43         typedef cds::opt::v::dynamic_buffer< char > buffer_type;
44     }
45
46     void PQueueHdrTest::MSPQueue_dyn()
47     {
48         typedef cds::container::MSPriorityQueue< PQueueHdrTest::value_type,
49             cds::container::mspriority_queue::make_traits<
50                 cds::opt::buffer< buffer_type >
51             >::type
52         > pqueue;
53
54         test_msq_dyn<pqueue>();
55     }
56
57     void PQueueHdrTest::MSPQueue_dyn_cmp()
58     {
59         typedef cds::container::MSPriorityQueue< PQueueHdrTest::value_type,
60             cds::container::mspriority_queue::make_traits<
61                 cds::opt::buffer< buffer_type >
62                 ,cds::opt::compare< PQueueHdrTest::compare >
63             >::type
64         > pqueue;
65
66         test_msq_dyn<pqueue>();
67     }
68
69     void PQueueHdrTest::MSPQueue_dyn_less()
70     {
71         typedef cds::container::MSPriorityQueue< PQueueHdrTest::value_type,
72             cds::container::mspriority_queue::make_traits<
73                 cds::opt::buffer< buffer_type >
74                 ,cds::opt::less< PQueueHdrTest::less >
75             >::type
76         > pqueue;
77
78         test_msq_dyn<pqueue>();
79     }
80
81     void PQueueHdrTest::MSPQueue_dyn_cmpless()
82     {
83         struct pqueue_traits : public cds::container::mspriority_queue::traits
84         {
85             typedef buffer_type buffer;
86             typedef PQueueHdrTest::less less;
87             typedef PQueueHdrTest::compare compare;
88         };
89         typedef cds::container::MSPriorityQueue< PQueueHdrTest::value_type, pqueue_traits > pqueue;
90
91         test_msq_dyn<pqueue>();
92     }
93
94     void PQueueHdrTest::MSPQueue_dyn_cmp_mtx()
95     {
96         typedef cds::container::MSPriorityQueue< PQueueHdrTest::value_type,
97             cds::container::mspriority_queue::make_traits<
98                 cds::opt::buffer< buffer_type >
99                 ,cds::opt::compare< PQueueHdrTest::compare >
100                 ,cds::opt::lock_type<std::mutex>
101             >::type
102         > pqueue;
103
104         test_msq_dyn<pqueue>();
105     }
106
107 } // namespace priority_queue