Remove CDS_CXX11_LAMBDA_SUPPORT macro and a lot of emulating code
[libcds.git] / cds / container / striped_set.h
1 //$$CDS-header$$
2
3 #ifndef __CDS_CONTAINER_STRIPED_SET_H
4 #define __CDS_CONTAINER_STRIPED_SET_H
5
6 #include <cds/intrusive/striped_set.h>
7 #include <cds/container/striped_set/adapter.h>
8
9 namespace cds { namespace container {
10
11     /// Striped hash set
12     /** @ingroup cds_nonintrusive_set
13
14         Source
15             - [2008] Maurice Herlihy, Nir Shavit "The Art of Multiprocessor Programming"
16
17         Lock striping is very simple technique.
18         The set consists of the bucket table and the array of locks.
19         Initially, the capacity of lock array and bucket table is the same.
20         When set is resized, bucket table capacity will be doubled but lock array will not.
21         The lock \p i protects each bucket \p j, where <tt> j = i mod L </tt>,
22         where \p L - the size of lock array.
23
24         Template arguments:
25             - \p Container - the container class that is used as bucket table entry. The \p Container class should support
26                 an uniform interface described below.
27             - \p Options - options
28
29         The \p %StripedSet class does not exactly dictate the type of container that should be used as a \p Container bucket.
30         Instead, the class supports different container type for the bucket, for exampe, \p std::list, \p std::set and others.
31
32         Remember that \p %StripedSet class algorithm ensures sequential blocking access to its bucket through the mutex type you specify
33         among \p Options template arguments.
34
35         The \p Options are:
36             - opt::mutex_policy - concurrent access policy.
37                 Available policies: intrusive::striped_set::striping, intrusive::striped_set::refinable.
38                 Default is %striped_set::striping.
39             - opt::hash - hash functor. Default option value see opt::v::hash_selector<opt::none> which selects default hash functor for
40                 your compiler.
41             - opt::compare - key comparison functor. No default functor is provided.
42                 If the option is not specified, the opt::less is used.
43             - opt::less - specifies binary predicate used for key comparison. Default is \p std::less<T>.
44             - opt::item_counter - item counter type. Default is \p atomicity::item_counter since some operation on the counter is performed
45                 without locks. Note that item counting is an essential part of the set algorithm, so dummy type like atomicity::empty_item_counter
46                 is not suitable.
47             - opt::allocator - the allocator type using for memory allocation of bucket table and lock array. Default is CDS_DEFAULT_ALLOCATOR.
48             - opt::resizing_policy - the resizing policy that is a functor that decides when to resize the hash set.
49                 Default option value depends on bucket container type:
50                     for sequential containers like \p std::list, \p std::vector the resizing policy is striped_set::load_factor_resizing<4>;
51                     for other type of containers like \p std::set, \p std::unordered_set the resizing policy is striped_set::no_resizing.
52                 See \ref striped_set namespace for list of all possible types of the option.
53                 Note that the choose of resizing policy depends of \p Container type:
54                 for sequential containers like \p std::list, \p std::vector and so on, right choosing of the policy can
55                 significantly improve performance.
56                 For other, non-sequential types of \p Container (like a \p std::set)
57                 the resizing policy is not so important.
58             - opt::copy_policy - the copy policy which is used to copy items from the old set to the new one when resizing.
59                 The policy can be optionally used in adapted bucket container for performance reasons of resizing.
60                 The detail of copy algorithm depends on type of bucket container and explains below.
61
62             opt::compare or opt::less options are used in some \p Container class for searching an item.
63             opt::compare option has the highest priority: if opt::compare is specified, opt::less is not used.
64
65         You can pass other option that would be passed to <tt>adapt</tt> metafunction, see below.
66
67         <b>Internal details</b>
68
69             The \p %StripedSet class cannot utilize the \p Container container specified directly, but only its adapted variant which
70             supports an unified interface. Internally, the adaptation is made via striped_set::adapt metafunction that wraps bucket container
71             and provides the unified bucket interface suitable for \p %StripedSet. Such adaptation is completely transparent for you -
72             you don't need to call \p adapt metafunction directly, \p %StripedSet class's internal machinery itself invokes appropriate
73             \p adapt metafunction to adjust your \p Container container class to \p %StripedSet bucket's internal interface.
74             All you need is to include a right header before <tt>striped_hash_set.h</tt>.
75
76             By default, <tt>striped_set::adapt<AnyContainer, Options...> </tt> metafunction does not make any wrapping to \p AnyContainer,
77             so, the result <tt>%striped_set::adapt<AnyContainer, Options...>::type </tt> is the same as \p AnyContainer.
78             However, there are a lot of specializations of <tt>striped_set::adapt</tt> for well-known containers, see table below.
79             Any of this specialization wraps corresponding container making it suitable for the set's bucket.
80             Remember, you should include the proper header file for \p adapt <b>before</b> including <tt>striped_hash_set.h</tt>.
81             <table>
82                 <tr>
83                     <th>Container</th>
84                     <th>.h-file for \p adapt</th>
85                     <th>Example</th>
86                     <th>Notes</th>
87                 </tr>
88                 <tr>
89                     <td> \p std::list</td>
90                     <td><tt><cds/container/striped_set/std_list.h></tt></td>
91                     <td>\code
92                         #include <cds/container/striped_set/std_list.h>
93                         #include <cds/container/striped_hash_set.h>
94                         typedef cds::container::StripedSet<
95                             std::list<T>,
96                             cds::opt::less< std::less<T> >
97                         > striped_set;
98                     \endcode
99                     </td>
100                     <td>
101                         The list is ordered.
102                         Template argument pack \p Options <b>must</b> contain cds::opt::less or cds::opt::compare for type \p T stored in the list
103                     </td>
104                 </tr>
105                 <tr>
106                     <td> \p std::vector</td>
107                     <td><tt><cds/container/striped_set/std_vector.h></tt></td>
108                     <td>\code
109                         #include <cds/container/striped_set/std_vector.h>
110                         #include <cds/container/striped_hash_set.h>
111                         typedef cds::container::StripedSet<
112                             std::vector<T>,
113                             cds::opt::less< std::less<T> >
114                         > striped_set;
115                     \endcode
116                     </td>
117                     <td>
118                         The vector is ordered.
119                         Template argument pack \p Options <b>must</b> contain cds::opt::less or cds::opt::compare for type \p T stored in the list
120                     </td>
121                 </tr>
122                 <tr>
123                     <td> \p std::set</td>
124                     <td><tt><cds/container/striped_set/std_set.h></tt></td>
125                     <td>\code
126                         #include <cds/container/striped_set/std_set.h>
127                         #include <cds/container/striped_hash_set.h>
128                         typedef cds::container::StripedSet<
129                             std::set< T, std::less<T> >
130                         > striped_set;
131                     \endcode
132                     </td>
133                     <td>
134                     </td>
135                 </tr>
136                 <tr>
137                     <td> \p std::unordered_set</td>
138                     <td><tt><cds/container/striped_set/std_hash_set.h></tt></td>
139                     <td>\code
140                         #include <cds/container/striped_set/std_hash_set.h>
141                         #include <cds/container/striped_hash_set.h>
142                         typedef cds::container::StripedSet<
143                             std::unordered_set<
144                                 T,
145                                 hash<T>,
146                                 equal<T>
147                             >
148                         > striped_set;
149                     \endcode
150                     </td>
151                     <td>
152                         You should provide two different hash function \p h1 and \p h2 - one for std::unordered_set and other for \p %StripedSet.
153                         For the best result, \p h1 and \p h2 must be orthogonal i.e. <tt> h1(X) != h2(X) </tt> for any value \p X.
154                     </td>
155                 </tr>
156                 <tr>
157                     <td>\p stdext::hash_set (only for MS VC++ 2008)</td>
158                     <td><tt><cds/container/striped_set/std_hash_set.h></tt></td>
159                     <td>\code
160                         #include <cds/container/striped_set/std_hash_set.h>
161                         #include <cds/container/striped_hash_set.h>
162                         typedef cds::container::StripedSet<
163                             stdext::hash_set< T,
164                                 stdext::hash_compare<
165                                     T,
166                                     std::less<T>
167                                 >
168                             >
169                         > striped_set;
170                     \endcode
171                     </td>
172                     <td>
173                         You should provide two different hash function \p h1 and \p h2 - one for stdext::hash_set and other for \p %StripedSet.
174                         For the best result, \p h1 and \p h2 must be orthogonal i.e. <tt> h1(X) != h2(X) </tt> for any value \p X.
175                     </td>
176                 </tr>
177                 <tr>
178                     <td> \p boost::container::slist</td>
179                     <td><tt><cds/container/striped_set/boost_slist.h></tt></td>
180                     <td>\code
181                         #include <cds/container/striped_set/boost_slist.h>
182                         #include <cds/container/striped_hash_set.h>
183                         typedef cds::container::StripedSet<
184                             boost::container::slist<T>
185                         > striped_set;
186                     \endcode
187                     </td>
188                     <td>
189                         The list is ordered.
190                         \p Options <b>must</b> contain cds::opt::less or cds::opt::compare.
191                     </td>
192                 </tr>
193                 <tr>
194                     <td> \p boost::container::list</td>
195                     <td><tt><cds/container/striped_set/boost_list.h></tt></td>
196                     <td>\code
197                         #include <cds/container/striped_set/boost_list.h>
198                         #include <cds/container/striped_hash_set.h>
199                         typedef cds::container::StripedSet<
200                             boost::container::list<T>
201                         > striped_set;
202                     \endcode
203                     </td>
204                     <td>
205                         The list is ordered.
206                         \p Options <b>must</b> contain cds::opt::less or cds::opt::compare.
207                     </td>
208                 </tr>
209                 <tr>
210                     <td> \p boost::container::vector</td>
211                     <td><tt><cds/container/striped_set/boost_vector.h></tt></td>
212                     <td>\code
213                         #include <cds/container/striped_set/boost_vector.h>
214                         #include <cds/container/striped_hash_set.h>
215                         typedef cds::container::StripedSet<
216                             boost::container::vector<T>,
217                             cds::opt::less< std::less<T> >
218                         > striped_set;
219                     \endcode
220                     </td>
221                     <td>
222                         The vector is ordered.
223                         Template argument pack \p Options <b>must</b> contain cds::opt::less or cds::opt::compare for type \p T stored in the list
224                     </td>
225                 </tr>
226                 <tr>
227                     <td> \p boost::container::stable_vector</td>
228                     <td><tt><cds/container/striped_set/boost_stable_vector.h></tt></td>
229                     <td>\code
230                         #include <cds/container/striped_set/boost_stable_vector.h>
231                         #include <cds/container/striped_hash_set.h>
232                         typedef cds::container::StripedSet<
233                             boost::container::stable_vector<T>,
234                             cds::opt::less< std::less<T> >
235                         > striped_set;
236                     \endcode
237                     </td>
238                     <td>
239                         The vector is ordered.
240                         Template argument pack \p Options <b>must</b> contain cds::opt::less or cds::opt::compare for type \p T stored in the list
241                     </td>
242                 </tr>
243                 <tr>
244                     <td> \p boost::container::set</td>
245                     <td><tt><cds/container/striped_set/boost_set.h></tt></td>
246                     <td>\code
247                         #include <cds/container/striped_set/boost_set.h>
248                         #include <cds/container/striped_hash_set.h>
249                         typedef cds::container::StripedSet<
250                             boost::container::set< T, std::less<T> >
251                         > striped_set;
252                     \endcode
253                     </td>
254                     <td>
255                     </td>
256                 </tr>
257                 <tr>
258                     <td> \p boost::container::flat_set</td>
259                     <td><tt><cds/container/striped_set/boost_flat_set.h></tt></td>
260                     <td>\code
261                         #include <cds/container/striped_set/boost_flat_set.h>
262                         #include <cds/container/striped_hash_set.h>
263                         typedef cds::container::StripedSet<
264                             boost::container::flat_set< T, std::less<T> >
265                         > striped_set;
266                     \endcode
267                     </td>
268                     <td>
269                     </td>
270                 </tr>
271                 <tr>
272                     <td> \p boost::unordered_set</td>
273                     <td><tt><cds/container/striped_set/boost_unordered_set.h></tt></td>
274                     <td>\code
275                         #include <cds/container/striped_set/boost_unordered_set.h>
276                         #include <cds/container/striped_hash_set.h>
277                         typedef cds::container::StripedSet<
278                             boost::unordered_set<
279                                 T,
280                                 hash<T>,
281                                 equal<T>
282                             >
283                         > striped_set;
284                     \endcode
285                     </td>
286                     <td>
287                         You should provide two different hash function \p h1 and \p h2 - one for boost::unordered_set and other for \p %StripedSet.
288                         For the best result, \p h1 and \p h2 must be orthogonal i.e. <tt> h1(X) != h2(X) </tt> for any value \p X.
289                     </td>
290                 </tr>
291             </table>
292
293             You can use another container type as set's bucket.
294             Suppose, you have a container class \p MyBestContainer and you want to integrate it with \p %StripedSet as bucket type.
295             There are two possibility:
296             - either your \p MyBestContainer class has native support of bucket's interface;
297                 in this case, you can use default <tt>striped_set::adapt</tt> metafunction;
298             - or your \p MyBestContainer class does not support bucket's interface, which means, that you should develop a specialization
299                 <tt>cds::container::striped_set::adapt<MyBestContainer> </tt> metafunction providing necessary interface.
300
301             The <tt>striped_set::adapt< Container, Options... ></tt> metafunction has two template argument:
302             - \p Container is the class that should be used as the bucket, for example, <tt>std::list< T ></tt>.
303             - \p Options pack is the options from \p %StripedSet declaration. The \p adapt metafunction can use
304                 any option from \p Options for its internal use. For example, a \p compare option can be passed to \p adapt
305                 metafunction via \p Options argument of \p %StripedSet declaration.
306
307             See striped_set::adapt metafunction for the description of interface that the bucket container must provide
308             to be %StripedSet compatible.
309
310         <b>Copy policy</b>
311             There are three predefined copy policy:
312             - \p cds::container::striped_set::copy_item - copy item from old bucket to new one when resizing using copy ctor. It is default policy for
313                 any compiler that do not support move semantics
314             - \p cds::container::striped_set::move_item - move item from old bucket to new one when resizing using move semantics. It is default policy for
315                 any compiler that support move semantics. If compiler does not support move semantics, the move policy is the same as \p copy_item
316             - \p cds::container::striped_set::swap_item - copy item from old bucket to new one when resizing using \p std::swap. Not all containers support
317                 this copy policy, see details in table below.
318
319             You can define your own copy policy specifically for your case.
320             Note, right copy policy can significantly improve the performance of resizing.
321
322             <table>
323                 <tr>
324                     <th>Container</th>
325                     <th>Policies</th>
326                 </tr>
327                 <tr>
328                     <td>
329                         - \p std::list
330                         - \p std::vector
331                         - \p boost::list
332                         - \p boost::vector
333                         - \p boost::stable_vector
334                     </td>
335                     <td>\code
336                         struct copy_item {
337                             void operator()( std::list<T>& list, std::list<T>::iterator itInsert, std::list<T>::iterator itWhat )
338                             {
339                                 list.insert( itInsert, *itWhat );
340                             }
341                         } \endcode
342
343                         \code
344                         // The type T stored in the list must be swappable
345                         struct swap_item {
346                             void operator()( std::list<T>& list, std::list<T>::iterator itInsert, std::list<T>::iterator itWhat )
347                             {
348                                 std::swap( *list.insert( itInsert, T() ), *itWhat );
349                             }
350                         } \endcode
351
352                         \code
353                         struct move_item {
354                             void operator()( std::list<T>& list, std::list<T>::iterator itInsert, std::list<T>::iterator itWhat )
355                             {
356                                 list.insert( itInsert, std::move( *itWhat ) );
357                             }
358                         } \endcode
359                     </td>
360                 </tr>
361                 <tr>
362                     <td>
363                         - \p std::set
364                         - \p std::unordered_set
365                         - \p stdext::hash_set (only for MS VC++ 2008)
366                     </td>
367                     <td>\code
368                         struct copy_item {
369                             void operator()( std::set<T>& set, std::set<T>::iterator itWhat )
370                             {
371                                 set.insert( *itWhat );
372                             }
373                         } \endcode
374                     \p swap_item is not applicable (same as \p copy_item)
375
376                     \code
377                         struct move_item {
378                             void operator()( std::set<T>& set, std::set<T>::iterator itWhat )
379                             {
380                                 set.insert( std::move( *itWhat ));
381                             }
382                         } \endcode
383                 </tr>
384                 <tr>
385                     <td>
386                         - \p boost::container::slist
387                     </td>
388                     <td>\code
389                         struct copy_item {
390                             void operator()( bc::slist<T>& list, bc::slist<T>::iterator itInsert, bc::slist<T>::iterator itWhat )
391                             {
392                                 list.insert_after( itInsert, *itWhat );
393                             }
394                         } \endcode
395
396                         \code
397                         // The type T stored in the list must be swappable
398                         struct swap_item {
399                             void operator()( bc::slist<T>& list, bc::slist<T>::iterator itInsert, bc::slist<T>::iterator itWhat )
400                             {
401                                 std::swap( *list.insert_after( itInsert, T() ), *itWhat );
402                             }
403                         } \endcode
404
405                         \code
406                         struct move_item {
407                             void operator()( bc::slist<T>& list, bc::slist<T>::iterator itInsert, bc::slist<T>::iterator itWhat )
408                             {
409                                 list.insert_after( itInsert, std::move( *itWhat ) );
410                             }
411                         } \endcode
412                     </td>
413                 </tr>
414             </table>
415
416         <b>Advanced functions</b>
417
418             <b>libcds</b> provides some advanced functions like \p erase_with, \p find_with,
419             that cannot be supported by all underlying containers.
420             The table below shows whether underlying container supports those functions
421             (the sign "+" means "container supports the function"):
422
423             <table>
424                 <tr>
425                     <th>Container</th>
426                     <th>\p find_with</th>
427                     <th>\p erse_with</th>
428                 </tr>
429                 <tr>
430                     <td> \p std::list</td>
431                     <td>+</td>
432                     <td>+</td>
433                 </tr>
434                 <tr>
435                     <td> \p std::vector</td>
436                     <td>+</td>
437                     <td>+</td>
438                 </tr>
439                 <tr>
440                     <td> \p std::set</td>
441                     <td>-</td>
442                     <td>-</td>
443                 </tr>
444                 <tr>
445                     <td> \p std::unordered_set</td>
446                     <td>-</td>
447                     <td>-</td>
448                 </tr>
449                 <tr>
450                     <td>\p stdext::hash_set (only for MS VC++ 2008)</td>
451                     <td>-</td>
452                     <td>-</td>
453                 </tr>
454                 <tr>
455                     <td> \p boost::container::slist</td>
456                     <td>+</td>
457                     <td>+</td>
458                 </tr>
459                 <tr>
460                     <td> \p boost::container::list</td>
461                     <td>+</td>
462                     <td>+</td>
463                 </tr>
464                 <tr>
465                     <td> \p boost::container::vector</td>
466                     <td>+</td>
467                     <td>+</td>
468                 </tr>
469                 <tr>
470                     <td> \p boost::container::stable_vector</td>
471                     <td>+</td>
472                     <td>+</td>
473                 </tr>
474                 <tr>
475                     <td> \p boost::container::set</td>
476                     <td>-</td>
477                     <td>-</td>
478                 </tr>
479                 <tr>
480                     <td> \p boost::container::flat_set</td>
481                     <td>-</td>
482                     <td>-</td>
483                 </tr>
484                 <tr>
485                     <td> \p boost::unordered_set</td>
486                     <td>-</td>
487                     <td>-</td>
488                 </tr>
489             </table>
490     */
491     template <class Container, typename... Options>
492     class StripedSet: protected intrusive::StripedSet<Container, Options...>
493     {
494         //@cond
495         typedef intrusive::StripedSet<Container, Options...>  base_class;
496         //@endcond
497     public:
498         //@cond
499         typedef typename base_class::default_options    default_options;
500         typedef typename base_class::options            options;
501         //@endcond
502
503         typedef Container                           underlying_container_type   ;   ///< original intrusive container type for the bucket
504         typedef typename base_class::bucket_type    bucket_type ;   ///< container type adapted for hash set
505         typedef typename bucket_type::value_type    value_type  ;   ///< value type stored in the set
506
507         typedef typename base_class::hash               hash            ; ///< Hash functor
508         typedef typename base_class::item_counter       item_counter    ; ///< Item counter
509         typedef typename base_class::resizing_policy    resizing_policy ; ///< Resizing policy
510         typedef typename base_class::allocator_type     allocator_type  ; ///< allocator type specified in options.
511         typedef typename base_class::mutex_policy       mutex_policy    ; ///< Mutex policy
512
513     protected:
514         //@cond
515         typedef typename base_class::scoped_cell_lock   scoped_cell_lock;
516         typedef typename base_class::scoped_full_lock   scoped_full_lock;
517         typedef typename base_class::scoped_resize_lock scoped_resize_lock;
518         //@endcond
519
520     public:
521         /// Default ctor. The initial capacity is 16.
522         StripedSet()
523         : base_class()
524         {}
525
526         /// Ctor with initial capacity specified
527         StripedSet(
528             size_t nCapacity    ///< Initial size of bucket table and lock array. Must be power of two, the minimum is 16.
529         ) : base_class( nCapacity )
530         {}
531
532         /// Ctor with resizing policy (copy semantics)
533         /**
534             This constructor initializes m_ResizingPolicy member with copy of \p resizingPolicy parameter
535         */
536         StripedSet(
537             size_t nCapacity    ///< Initial size of bucket table and lock array. Must be power of two, the minimum is 16.
538             ,resizing_policy const& resizingPolicy  ///< Resizing policy
539         ) : base_class( nCapacity, resizingPolicy )
540         {}
541
542         /// Ctor with resizing policy (move semantics)
543         /**
544             This constructor initializes m_ResizingPolicy member moving \p resizingPolicy parameter
545             Move semantics is used. Available only for the compilers that supports C++11 rvalue reference.
546         */
547         StripedSet(
548             size_t nCapacity    ///< Initial size of bucket table and lock array. Must be power of two, the minimum is 16.
549             ,resizing_policy&& resizingPolicy  ///< Resizing policy
550             ) : base_class( nCapacity, std::forward<resizing_policy>(resizingPolicy) )
551         {}
552
553         /// Destructor destroys internal data
554         ~StripedSet()
555         {}
556
557     public:
558         /// Inserts new node
559         /**
560             The function creates a node with copy of \p val value
561             and then inserts the node created into the set.
562
563             The type \p Q should contain as minimum the complete key for the node.
564             The object of \ref value_type should be constructible from a value of type \p Q.
565             In trivial case, \p Q is equal to \ref value_type.
566
567             Returns \p true if \p val is inserted into the set, \p false otherwise.
568         */
569         template <typename Q>
570         bool insert( Q const& val )
571         {
572             return insert( val, []( value_type& ) {} );
573         }
574
575         /// Inserts new node
576         /**
577             The function allows to split creating of new item into two part:
578             - create item with key only
579             - insert new item into the set
580             - if inserting is success, calls \p f functor to initialize value-field of new item .
581
582             The functor signature is:
583             \code
584                 void func( value_type& item );
585             \endcode
586             where \p item is the item inserted.
587
588             The type \p Q can differ from \ref value_type of items storing in the set.
589             Therefore, the \p value_type should be constructible from type \p Q.
590
591             The user-defined functor is called only if the inserting is success. It can be passed by reference
592             using <tt>boost::ref</tt>
593         */
594         template <typename Q, typename Func>
595         bool insert( Q const& val, Func f )
596         {
597             bool bOk;
598             bool bResize;
599             size_t nHash = base_class::hashing( val );
600             bucket_type * pBucket;
601             {
602                 scoped_cell_lock sl( base_class::m_MutexPolicy, nHash );
603                 pBucket = base_class::bucket( nHash );
604                 bOk = pBucket->insert( val, f );
605                 bResize = bOk && base_class::m_ResizingPolicy( ++base_class::m_ItemCounter, *this, *pBucket );
606             }
607
608             if ( bResize )
609                 base_class::resize();
610             return bOk;
611         }
612
613         /// Inserts data of type \p %value_type constructed with <tt>std::forward<Args>(args)...</tt>
614         /**
615             Returns \p true if inserting successful, \p false otherwise.
616         */
617         template <typename... Args>
618         bool emplace( Args&&... args )
619         {
620             bool bOk;
621             bool bResize;
622             size_t nHash = base_class::hashing( value_type( std::forward<Args>(args)...));
623             bucket_type * pBucket;
624             {
625                 scoped_cell_lock sl( base_class::m_MutexPolicy, nHash );
626                 pBucket = base_class::bucket( nHash );
627
628                 bOk = pBucket->emplace( std::forward<Args>(args)...);
629                 bResize = bOk && base_class::m_ResizingPolicy( ++base_class::m_ItemCounter, *this, *pBucket );
630             }
631
632             if ( bResize )
633                 base_class::resize();
634             return bOk;
635         }
636
637         /// Ensures that the \p val exists in the set
638         /**
639             The operation performs inserting or changing data.
640
641             If the \p val key not found in the set, then the new item created from \p val
642             is inserted into the set. Otherwise, the functor \p func is called with the item found.
643             The functor \p Func should be a function with signature:
644             \code
645                 void func( bool bNew, value_type& item, const Q& val );
646             \endcode
647             or a functor:
648             \code
649                 struct my_functor {
650                     void operator()( bool bNew, value_type& item, const Q& val );
651                 };
652             \endcode
653
654             with arguments:
655             - \p bNew - \p true if the item has been inserted, \p false otherwise
656             - \p item - item of the list
657             - \p val - argument \p val passed into the \p ensure function
658
659             The functor can change non-key fields of the \p item.
660
661             You can pass \p func argument by value or by reference using <tt>boost::ref</tt>.
662
663             Returns <tt> std::pair<bool, bool> </tt> where \p first is true if operation is successfull,
664             \p second is true if new item has been added or \p false if the item with \p val key
665             already exists.
666         */
667         template <typename Q, typename Func>
668         std::pair<bool, bool> ensure( Q const& val, Func func )
669         {
670             std::pair<bool, bool> result;
671             bool bResize;
672             size_t nHash = base_class::hashing( val );
673             bucket_type * pBucket;
674             {
675                 scoped_cell_lock sl( base_class::m_MutexPolicy, nHash );
676                 pBucket = base_class::bucket( nHash );
677
678                 result = pBucket->ensure( val, func );
679                 bResize = result.first && result.second && base_class::m_ResizingPolicy( ++base_class::m_ItemCounter, *this, *pBucket );
680             }
681
682             if ( bResize )
683                 base_class::resize();
684             return result;
685         }
686
687         /// Delete \p key from the set
688         /** \anchor cds_nonintrusive_StripedSet_erase
689
690             The set item comparator should be able to compare the type \p value_type and the type \p Q.
691             Return \p true if key is found and deleted, \p false otherwise
692         */
693         template <typename Q>
694         bool erase( Q const& key )
695         {
696             return erase( key, [](value_type const&) {} );
697         }
698
699         /// Deletes the item from the set using \p pred predicate for searching
700         /**
701             The function is an analog of \ref cds_nonintrusive_StripedSet_erase "erase(Q const&)"
702             but \p pred is used for key comparing.
703             \p Less functor has the interface like \p std::less.
704             \p pred must imply the same element order as the comparator used for building the set.
705
706             @note This function is enabled if the compiler supports C++11
707             default template arguments for function template <b>and</b> the underlying container
708             supports \p %erase_with feature.
709         */
710         template < typename Q, typename Less
711             ,typename Bucket = bucket_type, typename = typename std::enable_if< Bucket::has_erase_with >::type >
712         bool erase_with( Q const& key, Less pred )
713         {
714             return erase_with( key, pred, [](value_type const&) {} );
715         }
716
717         /// Delete \p key from the set
718         /** \anchor cds_nonintrusive_StripedSet_erase_func
719
720             The function searches an item with key \p key, calls \p f functor with item found
721             and deletes it. If \p key is not found, the functor is not called.
722
723             The functor \p Func interface is:
724             \code
725             struct functor {
726                 void operator()(value_type const& val);
727             };
728             \endcode
729             The functor can be passed by value or by reference using <tt>boost:ref</tt>
730
731             Return \p true if key is found and deleted, \p false otherwise
732         */
733         template <typename Q, typename Func>
734         bool erase( Q const& key, Func f )
735         {
736             bool bOk;
737             size_t nHash = base_class::hashing( key );
738             {
739                 scoped_cell_lock sl( base_class::m_MutexPolicy, nHash );
740                 bucket_type * pBucket = base_class::bucket( nHash );
741
742                 bOk = pBucket->erase( key, f );
743             }
744
745             if ( bOk )
746                 --base_class::m_ItemCounter;
747             return bOk;
748         }
749
750         /// Deletes the item from the set using \p pred predicate for searching
751         /**
752             The function is an analog of \ref cds_nonintrusive_StripedSet_erase_func "erase(Q const&, Func)"
753             but \p pred is used for key comparing.
754             \p Less functor has the interface like \p std::less.
755             \p pred must imply the same element order as the comparator used for building the set.
756
757             @note This function is enabled if the compiler supports C++11
758             default template arguments for function template <b>and</b> the underlying container
759             supports \p %erase_with feature.
760         */
761         template < typename Q, typename Less, typename Func
762             , typename Bucket = bucket_type, typename = typename std::enable_if< Bucket::has_erase_with >::type >
763         bool erase_with( Q const& key, Less pred, Func f )
764         {
765             bool bOk;
766             size_t nHash = base_class::hashing( key );
767             {
768                 scoped_cell_lock sl( base_class::m_MutexPolicy, nHash );
769                 bucket_type * pBucket = base_class::bucket( nHash );
770
771                 bOk = pBucket->erase( key, pred, f );
772             }
773
774             if ( bOk )
775                 --base_class::m_ItemCounter;
776             return bOk;
777         }
778
779         /// Find the key \p val
780         /** \anchor cds_nonintrusive_StripedSet_find_func
781
782             The function searches the item with key equal to \p val and calls the functor \p f for item found.
783             The interface of \p Func functor is:
784             \code
785             struct functor {
786                 void operator()( value_type& item, Q& val );
787             };
788             \endcode
789             where \p item is the item found, \p val is the <tt>find</tt> function argument.
790
791             You can pass \p f argument by value or by reference using <tt>boost::ref</tt> or cds::ref.
792
793             The functor can change non-key fields of \p item.
794             The \p val argument is non-const since it can be used as \p f functor destination i.e., the functor
795             can modify both arguments.
796
797             The type \p Q can differ from \ref value_type of items storing in the container.
798             Therefore, the \p value_type should be comparable with type \p Q.
799
800             The function returns \p true if \p val is found, \p false otherwise.
801         */
802         template <typename Q, typename Func>
803         bool find( Q& val, Func f )
804         {
805             return base_class::find( val, f );
806         }
807
808         /// Find the key \p val using \p pred predicate
809         /**
810             The function is an analog of \ref cds_nonintrusive_StripedSet_find_func "find(Q&, Func)"
811             but \p pred is used for key comparing
812             \p Less has the interface like \p std::less.
813             \p pred must imply the same element order as the comparator used for building the set.
814
815             @note This function is enabled if the compiler supports C++11
816             default template arguments for function template <b>and</b> the underlying container
817             supports \p %find_with feature.
818         */
819         template <typename Q, typename Less, typename Func
820             , typename Bucket = bucket_type, typename = typename std::enable_if< Bucket::has_find_with >::type >
821         bool find_with( Q& val, Less pred, Func f )
822         {
823             return base_class::find_with( val, pred, f );
824         }
825
826         /// Find the key \p val
827         /** \anchor cds_nonintrusive_StripedSet_find_cfunc
828
829             The function searches the item with key equal to \p val and calls the functor \p f for item found.
830             The interface of \p Func functor is:
831             \code
832             struct functor {
833                 void operator()( value_type& item, Q const& val );
834             };
835             \endcode
836             where \p item is the item found, \p val is the <tt>find</tt> function argument.
837
838             You can pass \p f argument by value or by reference using <tt>boost::ref</tt> or cds::ref.
839
840             The functor can change non-key fields of \p item.
841
842             The type \p Q can differ from \ref value_type of items storing in the container.
843             Therefore, the \p value_type should be comparable with type \p Q.
844
845             The function returns \p true if \p val is found, \p false otherwise.
846         */
847         template <typename Q, typename Func>
848         bool find( Q const& val, Func f )
849         {
850             return base_class::find( val, f );
851         }
852
853         /// Find the key \p val using \p pred predicate
854         /**
855             The function is an analog of \ref cds_nonintrusive_StripedSet_find_cfunc "find(Q const&, Func)"
856             but \p pred is used for key comparing
857             \p Less has the interface like \p std::less.
858             \p pred must imply the same element order as the comparator used for building the set.
859
860             @note This function is enabled if the compiler supports C++11
861             default template arguments for function template <b>and</b> the underlying container
862             supports \p %find_with feature.
863         */
864         template <typename Q, typename Less, typename Func
865             , typename Bucket = bucket_type, typename = typename std::enable_if< Bucket::has_find_with >::type >
866         bool find_with( Q const& val, Less pred, Func f )
867         {
868             return base_class::find_with( val, pred, f );
869         }
870
871         /// Find the key \p val
872         /** \anchor cds_nonintrusive_StripedSet_find_val
873
874             The function searches the item with key equal to \p val
875             and returns \p true if it is found, and \p false otherwise.
876
877             Note the hash functor specified for class \p Traits template parameter
878             should accept a parameter of type \p Q that can be not the same as \ref value_type.
879         */
880         template <typename Q>
881         bool find( Q const& val )
882         {
883             return base_class::find( val );
884         }
885
886         /// Find the key \p val using \p pred predicate
887         /**
888             The function is an analog of \ref cds_nonintrusive_StripedSet_find_val "find(Q const&)"
889             but \p pred is used for key comparing
890             \p Less has the interface like \p std::less.
891             \p pred must imply the same element order as the comparator used for building the set.
892
893             @note This function is enabled if the compiler supports C++11
894             default template arguments for function template <b>and</b> the underlying container
895             supports \p %find_with feature.
896         */
897         template <typename Q, typename Less
898             , typename Bucket = bucket_type, typename = typename std::enable_if< Bucket::has_find_with >::type >
899         bool find_with( Q const& val, Less pred )
900         {
901             return base_class::find_with( val, pred );
902         }
903
904         /// Clears the set
905         /**
906             The function erases all items from the set.
907         */
908         void clear()
909         {
910             return base_class::clear();
911         }
912
913         /// Checks if the set is empty
914         /**
915             Emptiness is checked by item counting: if item count is zero then the set is empty.
916         */
917         bool empty() const
918         {
919             return base_class::empty();
920         }
921
922         /// Returns item count in the set
923         size_t size() const
924         {
925             return base_class::size();
926         }
927
928         /// Returns the size of hash table
929         /**
930             The hash table size is non-constant and can be increased via resizing.
931         */
932         size_t bucket_count() const
933         {
934             return base_class::bucket_count();
935         }
936
937         /// Returns lock array size
938         size_t lock_count() const
939         {
940             return base_class::lock_count();
941         }
942
943         /// Returns resizing policy object
944         resizing_policy& get_resizing_policy()
945         {
946             return base_class::get_resizing_policy();
947         }
948
949         /// Returns resizing policy (const version)
950         resizing_policy const& get_resizing_policy() const
951         {
952             return base_class::get_resizing_policy();
953         }
954     };
955
956 }} // namespace cds::container
957
958
959 #endif // #ifndef __CDS_CONTAINER_STRIPED_SET_H