9bb3a25624d3642ffcf959e277023b13202e254f
[libcds.git] / cds / container / details / make_split_list_set_iterable_list.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_CONTAINER_DETAILS_MAKE_SPLIT_LIST_SET_ITERABLE_LIST_H
32 #define CDSLIB_CONTAINER_DETAILS_MAKE_SPLIT_LIST_SET_ITERABLE_LIST_H
33
34 //@cond
35 namespace cds { namespace container { namespace details {
36
37     template <typename GC, typename T, typename Traits>
38     struct make_split_list_set< GC, T, iterable_list_tag, Traits >
39     {
40         typedef GC      gc;
41         typedef T       value_type;
42         typedef Traits  original_traits;
43
44         typedef typename cds::opt::select_default<
45             typename original_traits::ordered_list_traits,
46             cds::container::iterable_list::traits
47         >::type original_ordered_list_traits;
48
49         struct node_type: public cds::intrusive::split_list::node< void >
50         {
51             value_type  m_Value;
52
53             template <typename Q>
54             explicit node_type( Q const& v )
55                 : m_Value(v)
56             {}
57             template <typename Q, typename... Args>
58             explicit node_type( Q&& q, Args&&... args )
59                 : m_Value( std::forward<Q>(q), std::forward<Args>(args)... )
60             {}
61
62             node_type() = delete;
63         };
64
65         typedef typename cds::opt::select_default<
66             typename original_traits::ordered_list_traits,
67             typename original_traits::allocator,
68             typename cds::opt::select_default<
69                 typename original_traits::ordered_list_traits::allocator,
70                 typename original_traits::allocator
71             >::type
72         >::type node_allocator_;
73
74         typedef typename node_allocator_::template rebind<node_type>::other node_allocator_type;
75
76         typedef cds::details::Allocator< node_type, node_allocator_type > cxx_node_allocator;
77         struct node_deallocator
78         {
79             void operator ()( node_type * pNode )
80             {
81                 cxx_node_allocator().Delete( pNode );
82             }
83         };
84
85         typedef typename opt::details::make_comparator< value_type, original_ordered_list_traits >::type key_comparator;
86
87         typedef typename original_traits::key_accessor key_accessor;
88
89         struct value_accessor
90         {
91             typename key_accessor::key_type const& operator()( node_type const& node ) const
92             {
93                 return key_accessor()(node.m_Value);
94             }
95         };
96
97         template <typename Predicate>
98         struct predicate_wrapper {
99             typedef cds::details::predicate_wrapper< node_type, Predicate, value_accessor > type;
100         };
101
102         struct ordered_list_traits: public original_ordered_list_traits
103         {
104             typedef cds::atomicity::empty_item_counter item_counter;
105             typedef node_deallocator disposer;
106             typedef cds::details::compare_wrapper< node_type, key_comparator, value_accessor > compare;
107         };
108
109         struct traits: public original_traits
110         {
111             struct hash: public original_traits::hash
112             {
113                 typedef typename original_traits::hash  base_class;
114
115                 size_t operator()(node_type const& v ) const
116                 {
117                     return base_class::operator()( key_accessor()( v.m_Value ) );
118                 }
119                 template <typename Q>
120                 size_t operator()( Q const& k ) const
121                 {
122                     return base_class::operator()( k );
123                 }
124             };
125         };
126
127         class ordered_list: public cds::intrusive::IterableList< gc, node_type, ordered_list_traits >
128         {};
129
130         typedef cds::intrusive::SplitListSet< gc, ordered_list, traits > type;
131     };
132
133 }}}  // namespace cds::container::details
134 //@endcond
135
136 #endif // #ifndef CDSLIB_CONTAINER_DETAILS_MAKE_SPLIT_LIST_SET_ITERABLE_LIST_H