264ef94b3c6813bc45899915860fcdd7ccc983bf
[libcds.git] / cds / container / striped_set / std_list.h
1 //$$CDS-header$$
2
3 #ifndef __CDS_CONTAINER_STRIPED_SET_STD_LIST_ADAPTER_H
4 #define __CDS_CONTAINER_STRIPED_SET_STD_LIST_ADAPTER_H
5
6 #include <functional>   // ref
7 #include <list>
8 #include <algorithm>    // std::lower_bound
9 #include <cds/container/striped_set/adapter.h>
10
11 //@cond
12 namespace cds { namespace container {
13     namespace striped_set {
14
15         // Copy policy for std::list
16         template <typename T, typename Alloc>
17         struct copy_item_policy< std::list< T, Alloc > >
18         {
19             typedef std::list< T, Alloc > list_type;
20             typedef typename list_type::iterator iterator;
21
22             void operator()( list_type& list, iterator itInsert, iterator itWhat )
23             {
24                 itInsert = list.insert( itInsert, *itWhat );
25             }
26         };
27
28         // Swap policy for std::list
29         template <typename T, typename Alloc>
30         struct swap_item_policy< std::list< T, Alloc > >
31         {
32             typedef std::list< T, Alloc > list_type;
33             typedef typename list_type::iterator iterator;
34
35             void operator()( list_type& list, iterator itInsert, iterator itWhat )
36             {
37                 typename list_type::value_type newVal;
38                 itInsert = list.insert( itInsert, newVal );
39                 std::swap( *itWhat, *itInsert );
40             }
41         };
42
43         // Move policy for std::list
44         template <typename T, typename Alloc>
45         struct move_item_policy< std::list< T, Alloc > >
46         {
47             typedef std::list< T, Alloc > list_type;
48             typedef typename list_type::iterator iterator;
49
50             void operator()( list_type& list, iterator itInsert, iterator itWhat )
51             {
52                 list.insert( itInsert, std::move( *itWhat ) );
53             }
54         };
55     }   // namespace striped_set
56 }} // namespace cds::container
57
58 namespace cds { namespace intrusive { namespace striped_set {
59
60     /// std::list adapter for hash set bucket
61     template <typename T, class Alloc, typename... Options>
62     class adapt< std::list<T, Alloc>, Options... >
63     {
64     public:
65         typedef std::list<T, Alloc>     container_type          ;   ///< underlying container type
66
67     private:
68         /// Adapted container type
69         class adapted_container: public cds::container::striped_set::adapted_sequential_container
70         {
71         public:
72             typedef typename container_type::value_type value_type  ;   ///< value type stored in the container
73             typedef typename container_type::iterator      iterator ;   ///< container iterator
74             typedef typename container_type::const_iterator const_iterator ;    ///< container const iterator
75
76             static bool const has_find_with = true;
77             static bool const has_erase_with = true;
78
79         private:
80             //@cond
81             typedef typename cds::opt::details::make_comparator_from_option_list< value_type, Options... >::type key_comparator;
82
83
84             typedef typename cds::opt::select<
85                 typename cds::opt::value<
86                     typename cds::opt::find_option<
87                         cds::opt::copy_policy< cds::container::striped_set::move_item >
88                         , Options...
89                     >::type
90                 >::copy_policy
91                 , cds::container::striped_set::copy_item, cds::container::striped_set::copy_item_policy<container_type>
92                 , cds::container::striped_set::swap_item, cds::container::striped_set::swap_item_policy<container_type>
93                 , cds::container::striped_set::move_item, cds::container::striped_set::move_item_policy<container_type>
94             >::type copy_item;
95
96             struct find_predicate
97             {
98                 bool operator()( value_type const& i1, value_type const& i2) const
99                 {
100                     return key_comparator()( i1, i2 ) < 0;
101                 }
102
103                 template <typename Q>
104                 bool operator()( Q const& i1, value_type const& i2) const
105                 {
106                     return key_comparator()( i1, i2 ) < 0;
107                 }
108
109                 template <typename Q>
110                 bool operator()( value_type const& i1, Q const& i2) const
111                 {
112                     return key_comparator()( i1, i2 ) < 0;
113                 }
114             };
115             //@endcond
116
117         private:
118             //@cond
119             container_type  m_List;
120 #       if defined(__GLIBCXX__ ) && !( CDS_COMPILER == CDS_COMPILER_GCC && CDS_COMPILER_VERSION >= 50000 )
121             // GCC C++ lib bug:
122             // In GCC, the complexity of std::list::size() is O(N)
123             // (see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49561)
124             // Fixed in GCC 5
125             size_t          m_nSize ;   // list size
126 #       endif
127             //@endcond
128
129         public:
130             adapted_container()
131 #       if defined(__GLIBCXX__ ) && !( CDS_COMPILER == CDS_COMPILER_GCC && CDS_COMPILER_VERSION >= 50000 )
132                 : m_nSize(0)
133 #       endif
134             {}
135
136             template <typename Q, typename Func>
137             bool insert( const Q& val, Func f )
138             {
139                 iterator it = std::lower_bound( m_List.begin(), m_List.end(), val, find_predicate() );
140                 if ( it == m_List.end() || key_comparator()( val, *it ) != 0 ) {
141                     value_type newItem( val );
142                     it = m_List.insert( it, newItem );
143                     f( *it );
144
145 #           if defined(__GLIBCXX__ ) && !( CDS_COMPILER == CDS_COMPILER_GCC && CDS_COMPILER_VERSION >= 50000 )
146                     ++m_nSize;
147 #           endif
148                     return true;
149                 }
150
151                 // key already exists
152                 return false;
153             }
154
155             template <typename... Args>
156             bool emplace( Args&&... args )
157             {
158                 value_type val(std::forward<Args>(args)...);
159                 iterator it = std::lower_bound( m_List.begin(), m_List.end(), val, find_predicate() );
160                 if ( it == m_List.end() || key_comparator()( val, *it ) != 0 ) {
161                     it = m_List.emplace( it, std::move( val ) );
162 #           if defined(__GLIBCXX__ ) && !( CDS_COMPILER == CDS_COMPILER_GCC && CDS_COMPILER_VERSION >= 50000 )
163                     ++m_nSize;
164 #           endif
165                     return true;
166                 }
167                 return false;
168             }
169
170             template <typename Q, typename Func>
171             std::pair<bool, bool> ensure( const Q& val, Func func )
172             {
173                 iterator it = std::lower_bound( m_List.begin(), m_List.end(), val, find_predicate() );
174                 if ( it == m_List.end() || key_comparator()( val, *it ) != 0 ) {
175                     // insert new
176                     value_type newItem( val );
177                     it = m_List.insert( it, newItem );
178                     func( true, *it, val );
179 #           if defined(__GLIBCXX__ ) && !( CDS_COMPILER == CDS_COMPILER_GCC && CDS_COMPILER_VERSION >= 50000 )
180                     ++m_nSize;
181 #           endif
182                     return std::make_pair( true, true );
183                 }
184                 else {
185                     // already exists
186                     func( false, *it, val );
187                     return std::make_pair( true, false );
188                 }
189             }
190
191             template <typename Q, typename Func>
192             bool erase( const Q& key, Func f )
193             {
194                 iterator it = std::lower_bound( m_List.begin(), m_List.end(), key, find_predicate() );
195                 if ( it == m_List.end() || key_comparator()( key, *it ) != 0 )
196                     return false;
197
198                 // key exists
199                 f( *it );
200                 m_List.erase( it );
201 #           if defined(__GLIBCXX__ ) && !( CDS_COMPILER == CDS_COMPILER_GCC && CDS_COMPILER_VERSION >= 50000 )
202                 --m_nSize;
203 #           endif
204
205                 return true;
206             }
207
208             template <typename Q, typename Less, typename Func>
209             bool erase( Q const& key, Less pred, Func f )
210             {
211                 iterator it = std::lower_bound( m_List.begin(), m_List.end(), key, pred );
212                 if ( it == m_List.end() || pred( key, *it ) || pred( *it, key ) )
213                     return false;
214
215                 // key exists
216                 f( *it );
217                 m_List.erase( it );
218 #           if defined(__GLIBCXX__ ) && !( CDS_COMPILER == CDS_COMPILER_GCC && CDS_COMPILER_VERSION >= 50000 )
219                 --m_nSize;
220 #           endif
221
222                 return true;
223             }
224
225             template <typename Q, typename Func>
226             bool find( Q& val, Func f )
227             {
228                 iterator it = std::lower_bound( m_List.begin(), m_List.end(), val, find_predicate() );
229                 if ( it == m_List.end() || key_comparator()( val, *it ) != 0 )
230                     return false;
231
232                 // key exists
233                 f( *it, val );
234                 return true;
235             }
236
237             template <typename Q, typename Less, typename Func>
238             bool find( Q& val, Less pred, Func f )
239             {
240                 iterator it = std::lower_bound( m_List.begin(), m_List.end(), val, pred );
241                 if ( it == m_List.end() || pred( val, *it ) || pred( *it, val ) )
242                     return false;
243
244                 // key exists
245                 f( *it, val );
246                 return true;
247             }
248
249             /// Clears the container
250             void clear()
251             {
252                 m_List.clear();
253             }
254
255             iterator begin()                { return m_List.begin(); }
256             const_iterator begin() const    { return m_List.begin(); }
257             iterator end()                  { return m_List.end(); }
258             const_iterator end() const      { return m_List.end(); }
259
260             void move_item( adapted_container& /*from*/, iterator itWhat )
261             {
262                 iterator it = std::lower_bound( m_List.begin(), m_List.end(), *itWhat, find_predicate() );
263                 assert( it == m_List.end() || key_comparator()( *itWhat, *it ) != 0 );
264
265                 copy_item()( m_List, it, itWhat );
266 #           if defined(__GLIBCXX__ ) && !( CDS_COMPILER == CDS_COMPILER_GCC && CDS_COMPILER_VERSION >= 50000 )
267                 ++m_nSize;
268 #           endif
269             }
270
271             size_t size() const
272             {
273 #           if defined(__GLIBCXX__ ) && !( CDS_COMPILER == CDS_COMPILER_GCC && CDS_COMPILER_VERSION >= 50000 )
274                 return m_nSize;
275 #           else
276                 return m_List.size();
277 #           endif
278
279             }
280         };
281
282     public:
283         typedef adapted_container type ; ///< Result of \p adapt metafunction
284
285     };
286 }}}
287
288
289 //@endcond
290
291 #endif // #ifndef __CDS_CONTAINER_STRIPED_SET_STD_LIST_ADAPTER_H