Added copyright and license
[libcds.git] / tests / test-hdr / set / intrusive_cuckoo_set_common.h
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 #ifndef CDSTEST_HDR_INTRUSIVE_CUCKOO_SET_COMMON_H
32 #define CDSTEST_HDR_INTRUSIVE_CUCKOO_SET_COMMON_H
33
34 namespace set {
35     namespace {
36
37         typedef IntrusiveCuckooSetHdrTest::hash_int    hash1;
38         struct hash2: private hash1
39         {
40             typedef hash1 base_class;
41
42             size_t operator()( int i ) const
43             {
44                 size_t h = ~( base_class::operator()(i));
45                 return ~h + 0x9e3779b9 + (h << 6) + (h >> 2);
46             }
47             template <typename Item>
48             size_t operator()( const Item& i ) const
49             {
50                 size_t h = ~( base_class::operator()(i));
51                 return ~h + 0x9e3779b9 + (h << 6) + (h >> 2);
52             }
53             size_t operator()( IntrusiveCuckooSetHdrTest::find_key const& i) const
54             {
55                 size_t h = ~( base_class::operator()(i));
56                 return ~h + 0x9e3779b9 + (h << 6) + (h >> 2);
57             }
58         };
59
60         template <typename T>
61         struct equal_to
62         {
63             bool operator ()(const T& v1, const T& v2 ) const
64             {
65                 return v1.key() == v2.key();
66             }
67
68             template <typename Q>
69             bool operator ()(const T& v1, const Q& v2 ) const
70             {
71                 return v1.key() == v2;
72             }
73
74             template <typename Q>
75             bool operator ()(const Q& v1, const T& v2 ) const
76             {
77                 return v1 == v2.key();
78             }
79         };
80
81     }
82 } // namespace set
83
84 #endif // #ifndef CDSTEST_HDR_INTRUSIVE_CUCKOO_SET_COMMON_H