removed container_node struct from gc::HP and gc::DHP
[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.
592         */
593         template <typename Q, typename Func>
594         bool insert( Q const& val, Func f )
595         {
596             bool bOk;
597             bool bResize;
598             size_t nHash = base_class::hashing( val );
599             bucket_type * pBucket;
600             {
601                 scoped_cell_lock sl( base_class::m_MutexPolicy, nHash );
602                 pBucket = base_class::bucket( nHash );
603                 bOk = pBucket->insert( val, f );
604                 bResize = bOk && base_class::m_ResizingPolicy( ++base_class::m_ItemCounter, *this, *pBucket );
605             }
606
607             if ( bResize )
608                 base_class::resize();
609             return bOk;
610         }
611
612         /// Inserts data of type \p %value_type constructed with <tt>std::forward<Args>(args)...</tt>
613         /**
614             Returns \p true if inserting successful, \p false otherwise.
615         */
616         template <typename... Args>
617         bool emplace( Args&&... args )
618         {
619             bool bOk;
620             bool bResize;
621             size_t nHash = base_class::hashing( value_type( std::forward<Args>(args)...));
622             bucket_type * pBucket;
623             {
624                 scoped_cell_lock sl( base_class::m_MutexPolicy, nHash );
625                 pBucket = base_class::bucket( nHash );
626
627                 bOk = pBucket->emplace( std::forward<Args>(args)...);
628                 bResize = bOk && base_class::m_ResizingPolicy( ++base_class::m_ItemCounter, *this, *pBucket );
629             }
630
631             if ( bResize )
632                 base_class::resize();
633             return bOk;
634         }
635
636         /// Ensures that the \p val exists in the set
637         /**
638             The operation performs inserting or changing data.
639
640             If the \p val key not found in the set, then the new item created from \p val
641             is inserted into the set. Otherwise, the functor \p func is called with the item found.
642             The functor \p Func should be a function with signature:
643             \code
644                 void func( bool bNew, value_type& item, const Q& val );
645             \endcode
646             or a functor:
647             \code
648                 struct my_functor {
649                     void operator()( bool bNew, value_type& item, const Q& val );
650                 };
651             \endcode
652
653             with arguments:
654             - \p bNew - \p true if the item has been inserted, \p false otherwise
655             - \p item - item of the list
656             - \p val - argument \p val passed into the \p ensure function
657
658             The functor can change non-key fields of the \p item.
659
660             Returns <tt> std::pair<bool, bool> </tt> where \p first is true if operation is successfull,
661             \p second is true if new item has been added or \p false if the item with \p val key
662             already exists.
663         */
664         template <typename Q, typename Func>
665         std::pair<bool, bool> ensure( Q const& val, Func func )
666         {
667             std::pair<bool, bool> result;
668             bool bResize;
669             size_t nHash = base_class::hashing( val );
670             bucket_type * pBucket;
671             {
672                 scoped_cell_lock sl( base_class::m_MutexPolicy, nHash );
673                 pBucket = base_class::bucket( nHash );
674
675                 result = pBucket->ensure( val, func );
676                 bResize = result.first && result.second && base_class::m_ResizingPolicy( ++base_class::m_ItemCounter, *this, *pBucket );
677             }
678
679             if ( bResize )
680                 base_class::resize();
681             return result;
682         }
683
684         /// Delete \p key from the set
685         /** \anchor cds_nonintrusive_StripedSet_erase
686
687             The set item comparator should be able to compare the type \p value_type and the type \p Q.
688             Return \p true if key is found and deleted, \p false otherwise
689         */
690         template <typename Q>
691         bool erase( Q const& key )
692         {
693             return erase( key, [](value_type const&) {} );
694         }
695
696         /// Deletes the item from the set using \p pred predicate for searching
697         /**
698             The function is an analog of \ref cds_nonintrusive_StripedSet_erase "erase(Q const&)"
699             but \p pred is used for key comparing.
700             \p Less functor has the interface like \p std::less.
701             \p pred must imply the same element order as the comparator used for building the set.
702
703             @note This function is enabled if the compiler supports C++11
704             default template arguments for function template <b>and</b> the underlying container
705             supports \p %erase_with feature.
706         */
707         template < typename Q, typename Less
708             ,typename Bucket = bucket_type, typename = typename std::enable_if< Bucket::has_erase_with >::type >
709         bool erase_with( Q const& key, Less pred )
710         {
711             return erase_with( key, pred, [](value_type const&) {} );
712         }
713
714         /// Delete \p key from the set
715         /** \anchor cds_nonintrusive_StripedSet_erase_func
716
717             The function searches an item with key \p key, calls \p f functor with item found
718             and deletes it. If \p key is not found, the functor is not called.
719
720             The functor \p Func interface is:
721             \code
722             struct functor {
723                 void operator()(value_type const& val);
724             };
725             \endcode
726
727             Return \p true if key is found and deleted, \p false otherwise
728         */
729         template <typename Q, typename Func>
730         bool erase( Q const& key, Func f )
731         {
732             bool bOk;
733             size_t nHash = base_class::hashing( key );
734             {
735                 scoped_cell_lock sl( base_class::m_MutexPolicy, nHash );
736                 bucket_type * pBucket = base_class::bucket( nHash );
737
738                 bOk = pBucket->erase( key, f );
739             }
740
741             if ( bOk )
742                 --base_class::m_ItemCounter;
743             return bOk;
744         }
745
746         /// Deletes the item from the set using \p pred predicate for searching
747         /**
748             The function is an analog of \ref cds_nonintrusive_StripedSet_erase_func "erase(Q const&, Func)"
749             but \p pred is used for key comparing.
750             \p Less functor has the interface like \p std::less.
751             \p pred must imply the same element order as the comparator used for building the set.
752
753             @note This function is enabled if the compiler supports C++11
754             default template arguments for function template <b>and</b> the underlying container
755             supports \p %erase_with feature.
756         */
757         template < typename Q, typename Less, typename Func
758             , typename Bucket = bucket_type, typename = typename std::enable_if< Bucket::has_erase_with >::type >
759         bool erase_with( Q const& key, Less pred, Func f )
760         {
761             bool bOk;
762             size_t nHash = base_class::hashing( key );
763             {
764                 scoped_cell_lock sl( base_class::m_MutexPolicy, nHash );
765                 bucket_type * pBucket = base_class::bucket( nHash );
766
767                 bOk = pBucket->erase( key, pred, f );
768             }
769
770             if ( bOk )
771                 --base_class::m_ItemCounter;
772             return bOk;
773         }
774
775         /// Find the key \p val
776         /** \anchor cds_nonintrusive_StripedSet_find_func
777
778             The function searches the item with key equal to \p val and calls the functor \p f for item found.
779             The interface of \p Func functor is:
780             \code
781             struct functor {
782                 void operator()( value_type& item, Q& val );
783             };
784             \endcode
785             where \p item is the item found, \p val is the <tt>find</tt> function argument.
786
787             The functor can change non-key fields of \p item.
788             The \p val argument is non-const since it can be used as \p f functor destination i.e., the functor
789             can modify both arguments.
790
791             The type \p Q can differ from \ref value_type of items storing in the container.
792             Therefore, the \p value_type should be comparable with type \p Q.
793
794             The function returns \p true if \p val is found, \p false otherwise.
795         */
796         template <typename Q, typename Func>
797         bool find( Q& val, Func f )
798         {
799             return base_class::find( val, f );
800         }
801
802         /// Find the key \p val using \p pred predicate
803         /**
804             The function is an analog of \ref cds_nonintrusive_StripedSet_find_func "find(Q&, Func)"
805             but \p pred is used for key comparing
806             \p Less has the interface like \p std::less.
807             \p pred must imply the same element order as the comparator used for building the set.
808
809             @note This function is enabled if the compiler supports C++11
810             default template arguments for function template <b>and</b> the underlying container
811             supports \p %find_with feature.
812         */
813         template <typename Q, typename Less, typename Func
814             , typename Bucket = bucket_type, typename = typename std::enable_if< Bucket::has_find_with >::type >
815         bool find_with( Q& val, Less pred, Func f )
816         {
817             return base_class::find_with( val, pred, f );
818         }
819
820         /// Find the key \p val
821         /** \anchor cds_nonintrusive_StripedSet_find_cfunc
822
823             The function searches the item with key equal to \p val and calls the functor \p f for item found.
824             The interface of \p Func functor is:
825             \code
826             struct functor {
827                 void operator()( value_type& item, Q const& val );
828             };
829             \endcode
830             where \p item is the item found, \p val is the <tt>find</tt> function argument.
831
832             The functor can change non-key fields of \p item.
833
834             The type \p Q can differ from \ref value_type of items storing in the container.
835             Therefore, the \p value_type should be comparable with type \p Q.
836
837             The function returns \p true if \p val is found, \p false otherwise.
838         */
839         template <typename Q, typename Func>
840         bool find( Q const& val, Func f )
841         {
842             return base_class::find( val, f );
843         }
844
845         /// Find the key \p val using \p pred predicate
846         /**
847             The function is an analog of \ref cds_nonintrusive_StripedSet_find_cfunc "find(Q const&, Func)"
848             but \p pred is used for key comparing
849             \p Less has the interface like \p std::less.
850             \p pred must imply the same element order as the comparator used for building the set.
851
852             @note This function is enabled if the compiler supports C++11
853             default template arguments for function template <b>and</b> the underlying container
854             supports \p %find_with feature.
855         */
856         template <typename Q, typename Less, typename Func
857             , typename Bucket = bucket_type, typename = typename std::enable_if< Bucket::has_find_with >::type >
858         bool find_with( Q const& val, Less pred, Func f )
859         {
860             return base_class::find_with( val, pred, f );
861         }
862
863         /// Find the key \p val
864         /** \anchor cds_nonintrusive_StripedSet_find_val
865
866             The function searches the item with key equal to \p val
867             and returns \p true if it is found, and \p false otherwise.
868
869             Note the hash functor specified for class \p Traits template parameter
870             should accept a parameter of type \p Q that can be not the same as \ref value_type.
871         */
872         template <typename Q>
873         bool find( Q const& val )
874         {
875             return base_class::find( val );
876         }
877
878         /// Find the key \p val using \p pred predicate
879         /**
880             The function is an analog of \ref cds_nonintrusive_StripedSet_find_val "find(Q const&)"
881             but \p pred is used for key comparing
882             \p Less has the interface like \p std::less.
883             \p pred must imply the same element order as the comparator used for building the set.
884
885             @note This function is enabled if the compiler supports C++11
886             default template arguments for function template <b>and</b> the underlying container
887             supports \p %find_with feature.
888         */
889         template <typename Q, typename Less
890             , typename Bucket = bucket_type, typename = typename std::enable_if< Bucket::has_find_with >::type >
891         bool find_with( Q const& val, Less pred )
892         {
893             return base_class::find_with( val, pred );
894         }
895
896         /// Clears the set
897         /**
898             The function erases all items from the set.
899         */
900         void clear()
901         {
902             return base_class::clear();
903         }
904
905         /// Checks if the set is empty
906         /**
907             Emptiness is checked by item counting: if item count is zero then the set is empty.
908         */
909         bool empty() const
910         {
911             return base_class::empty();
912         }
913
914         /// Returns item count in the set
915         size_t size() const
916         {
917             return base_class::size();
918         }
919
920         /// Returns the size of hash table
921         /**
922             The hash table size is non-constant and can be increased via resizing.
923         */
924         size_t bucket_count() const
925         {
926             return base_class::bucket_count();
927         }
928
929         /// Returns lock array size
930         size_t lock_count() const
931         {
932             return base_class::lock_count();
933         }
934
935         /// Returns resizing policy object
936         resizing_policy& get_resizing_policy()
937         {
938             return base_class::get_resizing_policy();
939         }
940
941         /// Returns resizing policy (const version)
942         resizing_policy const& get_resizing_policy() const
943         {
944             return base_class::get_resizing_policy();
945         }
946     };
947
948 }} // namespace cds::container
949
950
951 #endif // #ifndef __CDS_CONTAINER_STRIPED_SET_H