cdb93c479e66717719e3d57981a513cbacd1f81d
[libcds.git] / cds / details / binary_functor_wrapper.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 CDSLIB_DETAILS_BINARY_FUNCTOR_WRAPPER_H
32 #define CDSLIB_DETAILS_BINARY_FUNCTOR_WRAPPER_H
33
34 #include <cds/details/defs.h>
35
36 //@cond
37 namespace cds { namespace details {
38
39     template <typename ReturnType, typename Functor, typename ArgType, typename Accessor>
40     struct binary_functor_wrapper {
41         typedef ReturnType  return_type;
42         typedef Functor     functor_type;
43         typedef ArgType     argument_type;
44         typedef Accessor    accessor;
45
46         return_type operator()( argument_type const& a1, argument_type const& a2 ) const
47         {
48             return functor_type()( accessor()( a1 ), accessor()( a2 ));
49         }
50
51         template <typename Q>
52         return_type operator()( argument_type const& a, Q const& q ) const
53         {
54             return functor_type()( accessor()(a), q );
55         }
56
57         template <typename Q>
58         return_type operator()( Q const& q, argument_type const& a ) const
59         {
60             return functor_type()( q, accessor()(a));
61         }
62
63         template <typename Q1, typename Q2>
64         return_type operator()( Q1 const& q1, Q2 const& q2 ) const
65         {
66             return functor_type()( q1, q2 );
67         }
68     };
69
70     struct trivial_accessor
71     {
72         template <typename T>
73         T const& operator()( T const& p ) const
74         {
75             return p;
76         }
77
78         template <typename T>
79         T& operator()( T& p ) const
80         {
81             return p;
82         }
83     };
84
85     template <typename ArgType, typename Predicate, typename Accessor>
86     using predicate_wrapper = binary_functor_wrapper< bool, Predicate, ArgType, Accessor>;
87
88     template <typename ArgType, typename Compare, typename Accessor>
89     using compare_wrapper = binary_functor_wrapper< int, Compare, ArgType, Accessor>;
90
91 }} // namespace cds::details
92
93 //@endcond
94
95 #endif // #ifndef CDSLIB_DETAILS_BINARY_FUNCTOR_WRAPPER_H