Added copyright and license
[libcds.git] / tests / test-hdr / list / hdr_lazy_kv_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 "list/hdr_lazy_kv.h"
32 #include <cds/container/lazy_kvlist_dhp.h>
33
34 namespace ordlist {
35     namespace {
36         struct DHP_cmp_traits : public cc::lazy_list::traits
37         {
38             typedef LazyKVListTestHeader::cmp<LazyKVListTestHeader::key_type>   compare;
39         };
40     }
41     void LazyKVListTestHeader::DHP_cmp()
42     {
43         // traits-based version
44         typedef cc::LazyKVList< cds::gc::DHP, key_type, value_type, DHP_cmp_traits > list;
45         test< list >();
46
47         // option-based version
48
49         typedef cc::LazyKVList< cds::gc::DHP, key_type, value_type,
50             cc::lazy_list::make_traits<
51                 cc::opt::compare< cmp<key_type> >
52             >::type
53         > opt_list;
54         test< opt_list >();
55     }
56
57     namespace {
58         struct DHP_less_traits : public cc::lazy_list::traits
59         {
60             typedef LazyKVListTestHeader::lt<LazyKVListTestHeader::key_type>   less;
61         };
62     }
63     void LazyKVListTestHeader::DHP_less()
64     {
65         // traits-based version
66         typedef cc::LazyKVList< cds::gc::DHP, key_type, value_type, DHP_less_traits > list;
67         test< list >();
68
69         // option-based version
70
71         typedef cc::LazyKVList< cds::gc::DHP, key_type, value_type,
72             cc::lazy_list::make_traits<
73                 cc::opt::less< lt<key_type> >
74             >::type
75         > opt_list;
76         test< opt_list >();
77     }
78
79     namespace {
80         struct DHP_cmpmix_traits : public cc::lazy_list::traits
81         {
82             typedef LazyKVListTestHeader::cmp<LazyKVListTestHeader::key_type>   compare;
83             typedef LazyKVListTestHeader::lt<LazyKVListTestHeader::key_type>  less;
84         };
85     }
86     void LazyKVListTestHeader::DHP_cmpmix()
87     {
88         // traits-based version
89         typedef cc::LazyKVList< cds::gc::DHP, key_type, value_type, DHP_cmpmix_traits > list;
90         test< list >();
91
92         // option-based version
93
94         typedef cc::LazyKVList< cds::gc::DHP, key_type, value_type,
95             cc::lazy_list::make_traits<
96                 cc::opt::compare< cmp<key_type> >
97                 ,cc::opt::less< lt<key_type> >
98             >::type
99         > opt_list;
100         test< opt_list >();
101     }
102
103     namespace {
104         struct DHP_ic_traits : public cc::lazy_list::traits
105         {
106             typedef LazyKVListTestHeader::lt<LazyKVListTestHeader::key_type>   less;
107             typedef cds::atomicity::item_counter item_counter;
108         };
109     }
110     void LazyKVListTestHeader::DHP_ic()
111     {
112         // traits-based version
113         typedef cc::LazyKVList< cds::gc::DHP, key_type, value_type, DHP_ic_traits > list;
114         test< list >();
115
116         // option-based version
117
118         typedef cc::LazyKVList< cds::gc::DHP, key_type, value_type,
119             cc::lazy_list::make_traits<
120                 cc::opt::less< lt<key_type> >
121                 ,cc::opt::item_counter< cds::atomicity::item_counter >
122             >::type
123         > opt_list;
124         test< opt_list >();
125     }
126
127 }   // namespace ordlist
128