Remove CDS_EMPLACE_SUPPORT macro and unused code
[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 <cds/container/striped_set/adapter.h>
7 #include <cds/ref.h>
8 #include <list>
9 #include <algorithm>    // std::lower_bound
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, CDS_SPEC_OPTIONS>
62     class adapt< std::list<T, Alloc>, CDS_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, CDS_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                         , CDS_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 #       ifdef __GLIBCXX__
121             // GCC C++ lib bug:
122             // In GCC (at least up to 4.7.x), the complexity of std::list::size() is O(N)
123             // (see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49561)
124             size_t          m_nSize ;   // list size
125 #       endif
126             //@endcond
127
128         public:
129             adapted_container()
130 #       ifdef __GLIBCXX__
131                 : m_nSize(0)
132 #       endif
133             {}
134
135             template <typename Q, typename Func>
136             bool insert( const Q& val, Func f )
137             {
138                 iterator it = std::lower_bound( m_List.begin(), m_List.end(), val, find_predicate() );
139                 if ( it == m_List.end() || key_comparator()( val, *it ) != 0 ) {
140                     value_type newItem( val );
141                     it = m_List.insert( it, newItem );
142                     cds::unref( f )( *it );
143
144 #           ifdef __GLIBCXX__
145                     ++m_nSize;
146 #           endif
147                     return true;
148                 }
149
150                 // key already exists
151                 return false;
152             }
153
154             template <typename... Args>
155             bool emplace( Args&&... args )
156             {
157 #if CDS_COMPILER == CDS_COMPILER_MSVC && CDS_COMPILER_VERSION == CDS_COMPILER_MSVC12
158                 // MS VC++ 2013: internal compiler error
159                 // Use assignment workaround, see http://connect.microsoft.com/VisualStudio/feedback/details/804941/visual-studio-2013-rc-c-internal-compiler-error-with-std-forward
160                 value_type val = value_type( std::forward<Args>(args)... );
161 #else
162                 value_type val(std::forward<Args>(args)...);
163 #endif
164                 iterator it = std::lower_bound( m_List.begin(), m_List.end(), val, find_predicate() );
165                 if ( it == m_List.end() || key_comparator()( val, *it ) != 0 ) {
166                     it = m_List.emplace( it, std::move( val ) );
167 #           ifdef __GLIBCXX__
168                     ++m_nSize;
169 #           endif
170                     return true;
171                 }
172                 return false;
173             }
174
175             template <typename Q, typename Func>
176             std::pair<bool, bool> ensure( const Q& val, Func func )
177             {
178                 iterator it = std::lower_bound( m_List.begin(), m_List.end(), val, find_predicate() );
179                 if ( it == m_List.end() || key_comparator()( val, *it ) != 0 ) {
180                     // insert new
181                     value_type newItem( val );
182                     it = m_List.insert( it, newItem );
183                     cds::unref( func )( true, *it, val );
184 #           ifdef __GLIBCXX__
185                     ++m_nSize;
186 #           endif
187                     return std::make_pair( true, true );
188                 }
189                 else {
190                     // already exists
191                     cds::unref( func )( false, *it, val );
192                     return std::make_pair( true, false );
193                 }
194             }
195
196             template <typename Q, typename Func>
197             bool erase( const Q& key, Func f )
198             {
199                 iterator it = std::lower_bound( m_List.begin(), m_List.end(), key, find_predicate() );
200                 if ( it == m_List.end() || key_comparator()( key, *it ) != 0 )
201                     return false;
202
203                 // key exists
204                 cds::unref( f )( *it );
205                 m_List.erase( it );
206 #           ifdef __GLIBCXX__
207                 --m_nSize;
208 #           endif
209
210                 return true;
211             }
212
213             template <typename Q, typename Less, typename Func>
214             bool erase( Q const& key, Less pred, Func f )
215             {
216                 iterator it = std::lower_bound( m_List.begin(), m_List.end(), key, pred );
217                 if ( it == m_List.end() || pred( key, *it ) || pred( *it, key ) )
218                     return false;
219
220                 // key exists
221                 cds::unref( f )( *it );
222                 m_List.erase( it );
223 #           ifdef __GLIBCXX__
224                 --m_nSize;
225 #           endif
226
227                 return true;
228             }
229
230             template <typename Q, typename Func>
231             bool find( Q& val, Func f )
232             {
233                 iterator it = std::lower_bound( m_List.begin(), m_List.end(), val, find_predicate() );
234                 if ( it == m_List.end() || key_comparator()( val, *it ) != 0 )
235                     return false;
236
237                 // key exists
238                 cds::unref( f )( *it, val );
239                 return true;
240             }
241
242             template <typename Q, typename Less, typename Func>
243             bool find( Q& val, Less pred, Func f )
244             {
245                 iterator it = std::lower_bound( m_List.begin(), m_List.end(), val, pred );
246                 if ( it == m_List.end() || pred( val, *it ) || pred( *it, val ) )
247                     return false;
248
249                 // key exists
250                 cds::unref( f )( *it, val );
251                 return true;
252             }
253
254             /// Clears the container
255             void clear()
256             {
257                 m_List.clear();
258             }
259
260             iterator begin()                { return m_List.begin(); }
261             const_iterator begin() const    { return m_List.begin(); }
262             iterator end()                  { return m_List.end(); }
263             const_iterator end() const      { return m_List.end(); }
264
265             void move_item( adapted_container& /*from*/, iterator itWhat )
266             {
267                 iterator it = std::lower_bound( m_List.begin(), m_List.end(), *itWhat, find_predicate() );
268                 assert( it == m_List.end() || key_comparator()( *itWhat, *it ) != 0 );
269
270                 copy_item()( m_List, it, itWhat );
271 #           ifdef __GLIBCXX__
272                 ++m_nSize;
273 #           endif
274             }
275
276             size_t size() const
277             {
278 #           ifdef __GLIBCXX__
279                 return m_nSize;
280 #           else
281                 return m_List.size();
282 #           endif
283
284             }
285         };
286
287     public:
288         typedef adapted_container type ; ///< Result of \p adapt metafunction
289
290     };
291 }}}
292
293
294 //@endcond
295
296 #endif // #ifndef __CDS_CONTAINER_STRIPED_SET_STD_LIST_ADAPTER_H