Added copyright and license
[libcds.git] / tests / test-hdr / map / hdr_michael_map_lazy_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-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 "map/hdr_map.h"
32 #include <cds/container/lazy_kvlist_hp.h>
33 #include <cds/container/michael_map.h>
34
35 namespace map {
36     namespace {
37         struct map_traits: public cc::michael_map::traits
38         {
39             typedef HashMapHdrTest::hash_int            hash;
40             typedef HashMapHdrTest::simple_item_counter item_counter;
41         };
42         struct HP_cmp_traits: public cc::lazy_list::traits
43         {
44             typedef HashMapHdrTest::cmp   compare;
45         };
46
47         struct HP_less_traits: public cc::lazy_list::traits
48         {
49             typedef HashMapHdrTest::less  less;
50         };
51
52         struct HP_cmpmix_traits: public cc::lazy_list::traits
53         {
54             typedef HashMapHdrTest::cmp   compare;
55             typedef HashMapHdrTest::less  less;
56         };
57     }
58
59     void HashMapHdrTest::Lazy_HP_cmp()
60     {
61         typedef cc::LazyKVList< cds::gc::HP, int, HashMapHdrTest::value_type, HP_cmp_traits > list;
62
63         // traits-based version
64         typedef cc::MichaelHashMap< cds::gc::HP, list, map_traits > map;
65         test_int< map >();
66
67         // option-based version
68         typedef cc::MichaelHashMap< cds::gc::HP, list,
69             cc::michael_map::make_traits<
70                 cc::opt::hash< hash_int >
71                 ,cc::opt::item_counter< simple_item_counter >
72             >::type
73         > opt_map;
74         test_int< opt_map >();
75     }
76
77     void HashMapHdrTest::Lazy_HP_less()
78     {
79         typedef cc::LazyKVList< cds::gc::HP, int, HashMapHdrTest::value_type, HP_less_traits > list;
80
81         // traits-based version
82         typedef cc::MichaelHashMap< cds::gc::HP, list, map_traits > map;
83         test_int< map >();
84
85         // option-based version
86         typedef cc::MichaelHashMap< cds::gc::HP, list,
87             cc::michael_map::make_traits<
88                 cc::opt::hash< hash_int >
89                 ,cc::opt::item_counter< simple_item_counter >
90             >::type
91         > opt_map;
92         test_int< opt_map >();
93     }
94
95     void HashMapHdrTest::Lazy_HP_cmpmix()
96     {
97         typedef cc::LazyKVList< cds::gc::HP, int, HashMapHdrTest::value_type, HP_cmpmix_traits > list;
98
99         // traits-based version
100         typedef cc::MichaelHashMap< cds::gc::HP, list, map_traits > map;
101         test_int< map >();
102
103         // option-based version
104         typedef cc::MichaelHashMap< cds::gc::HP, list,
105             cc::michael_map::make_traits<
106                 cc::opt::hash< hash_int >
107                 ,cc::opt::item_counter< simple_item_counter >
108             >::type
109         > opt_map;
110         test_int< opt_map >();
111     }
112
113
114 } // namespace map
115