b51e7ccf1d4014b1ba794caf105353785d0f3910
[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     protected:
521         //@cond
522 #   ifndef CDS_CXX11_LAMBDA_SUPPORT
523         struct empty_insert_functor {
524             void operator()( value_type& )
525             {}
526         };
527
528         struct empty_erase_functor  {
529             void operator()( value_type const& )
530             {}
531         };
532
533         struct empty_find_functor {
534             template <typename Q>
535             void operator()( value_type& item, Q& val )
536             {}
537         };
538 #   endif
539         //@endcond
540
541     public:
542         /// Default ctor. The initial capacity is 16.
543         StripedSet()
544         : base_class()
545         {}
546
547         /// Ctor with initial capacity specified
548         StripedSet(
549             size_t nCapacity    ///< Initial size of bucket table and lock array. Must be power of two, the minimum is 16.
550         ) : base_class( nCapacity )
551         {}
552
553         /// Ctor with resizing policy (copy semantics)
554         /**
555             This constructor initializes m_ResizingPolicy member with copy of \p resizingPolicy parameter
556         */
557         StripedSet(
558             size_t nCapacity    ///< Initial size of bucket table and lock array. Must be power of two, the minimum is 16.
559             ,resizing_policy const& resizingPolicy  ///< Resizing policy
560         ) : base_class( nCapacity, resizingPolicy )
561         {}
562
563         /// Ctor with resizing policy (move semantics)
564         /**
565             This constructor initializes m_ResizingPolicy member moving \p resizingPolicy parameter
566             Move semantics is used. Available only for the compilers that supports C++11 rvalue reference.
567         */
568         StripedSet(
569             size_t nCapacity    ///< Initial size of bucket table and lock array. Must be power of two, the minimum is 16.
570             ,resizing_policy&& resizingPolicy  ///< Resizing policy
571             ) : base_class( nCapacity, std::forward<resizing_policy>(resizingPolicy) )
572         {}
573
574         /// Destructor destroys internal data
575         ~StripedSet()
576         {}
577
578     public:
579         /// Inserts new node
580         /**
581             The function creates a node with copy of \p val value
582             and then inserts the node created into the set.
583
584             The type \p Q should contain as minimum the complete key for the node.
585             The object of \ref value_type should be constructible from a value of type \p Q.
586             In trivial case, \p Q is equal to \ref value_type.
587
588             Returns \p true if \p val is inserted into the set, \p false otherwise.
589         */
590         template <typename Q>
591         bool insert( Q const& val )
592         {
593 #       ifdef CDS_CXX11_LAMBDA_SUPPORT
594             return insert( val, []( value_type& ) {} );
595 #       else
596             return insert( val, empty_insert_functor() );
597 #       endif
598         }
599
600         /// Inserts new node
601         /**
602             The function allows to split creating of new item into two part:
603             - create item with key only
604             - insert new item into the set
605             - if inserting is success, calls \p f functor to initialize value-field of new item .
606
607             The functor signature is:
608             \code
609                 void func( value_type& item );
610             \endcode
611             where \p item is the item inserted.
612
613             The type \p Q can differ from \ref value_type of items storing in the set.
614             Therefore, the \p value_type should be constructible from type \p Q.
615
616             The user-defined functor is called only if the inserting is success. It can be passed by reference
617             using <tt>boost::ref</tt>
618         */
619         template <typename Q, typename Func>
620         bool insert( Q const& val, Func f )
621         {
622             bool bOk;
623             bool bResize;
624             size_t nHash = base_class::hashing( val );
625             bucket_type * pBucket;
626             {
627                 scoped_cell_lock sl( base_class::m_MutexPolicy, nHash );
628                 pBucket = base_class::bucket( nHash );
629                 bOk = pBucket->insert( val, f );
630                 bResize = bOk && base_class::m_ResizingPolicy( ++base_class::m_ItemCounter, *this, *pBucket );
631             }
632
633             if ( bResize )
634                 base_class::resize();
635             return bOk;
636         }
637
638         /// Inserts data of type \p %value_type constructed with <tt>std::forward<Args>(args)...</tt>
639         /**
640             Returns \p true if inserting successful, \p false otherwise.
641         */
642         template <typename... Args>
643         bool emplace( Args&&... args )
644         {
645             bool bOk;
646             bool bResize;
647             size_t nHash = base_class::hashing( value_type( std::forward<Args>(args)...));
648             bucket_type * pBucket;
649             {
650                 scoped_cell_lock sl( base_class::m_MutexPolicy, nHash );
651                 pBucket = base_class::bucket( nHash );
652
653                 bOk = pBucket->emplace( std::forward<Args>(args)...);
654                 bResize = bOk && base_class::m_ResizingPolicy( ++base_class::m_ItemCounter, *this, *pBucket );
655             }
656
657             if ( bResize )
658                 base_class::resize();
659             return bOk;
660         }
661
662         /// Ensures that the \p val exists in the set
663         /**
664             The operation performs inserting or changing data.
665
666             If the \p val key not found in the set, then the new item created from \p val
667             is inserted into the set. Otherwise, the functor \p func is called with the item found.
668             The functor \p Func should be a function with signature:
669             \code
670                 void func( bool bNew, value_type& item, const Q& val );
671             \endcode
672             or a functor:
673             \code
674                 struct my_functor {
675                     void operator()( bool bNew, value_type& item, const Q& val );
676                 };
677             \endcode
678
679             with arguments:
680             - \p bNew - \p true if the item has been inserted, \p false otherwise
681             - \p item - item of the list
682             - \p val - argument \p val passed into the \p ensure function
683
684             The functor can change non-key fields of the \p item.
685
686             You can pass \p func argument by value or by reference using <tt>boost::ref</tt>.
687
688             Returns <tt> std::pair<bool, bool> </tt> where \p first is true if operation is successfull,
689             \p second is true if new item has been added or \p false if the item with \p val key
690             already exists.
691         */
692         template <typename Q, typename Func>
693         std::pair<bool, bool> ensure( Q const& val, Func func )
694         {
695             std::pair<bool, bool> result;
696             bool bResize;
697             size_t nHash = base_class::hashing( val );
698             bucket_type * pBucket;
699             {
700                 scoped_cell_lock sl( base_class::m_MutexPolicy, nHash );
701                 pBucket = base_class::bucket( nHash );
702
703                 result = pBucket->ensure( val, func );
704                 bResize = result.first && result.second && base_class::m_ResizingPolicy( ++base_class::m_ItemCounter, *this, *pBucket );
705             }
706
707             if ( bResize )
708                 base_class::resize();
709             return result;
710         }
711
712         /// Delete \p key from the set
713         /** \anchor cds_nonintrusive_StripedSet_erase
714
715             The set item comparator should be able to compare the type \p value_type and the type \p Q.
716             Return \p true if key is found and deleted, \p false otherwise
717         */
718         template <typename Q>
719         bool erase( Q const& key )
720         {
721 #       ifdef CDS_CXX11_LAMBDA_SUPPORT
722             return erase( key, [](value_type const&) {} );
723 #       else
724             return erase( key, empty_erase_functor() );
725 #       endif
726         }
727
728         /// Deletes the item from the set using \p pred predicate for searching
729         /**
730             The function is an analog of \ref cds_nonintrusive_StripedSet_erase "erase(Q const&)"
731             but \p pred is used for key comparing.
732             \p Less functor has the interface like \p std::less.
733             \p pred must imply the same element order as the comparator used for building the set.
734
735             @note This function is enabled if the compiler supports C++11
736             default template arguments for function template <b>and</b> the underlying container
737             supports \p %erase_with feature.
738         */
739         template < typename Q, typename Less
740             ,typename Bucket = bucket_type, typename = typename std::enable_if< Bucket::has_erase_with >::type >
741         bool erase_with( Q const& key, Less pred )
742         {
743 #       ifdef CDS_CXX11_LAMBDA_SUPPORT
744             return erase_with( key, pred, [](value_type const&) {} );
745 #       else
746             return erase_with( key, pred, empty_erase_functor() );
747 #       endif
748         }
749
750         /// Delete \p key from the set
751         /** \anchor cds_nonintrusive_StripedSet_erase_func
752
753             The function searches an item with key \p key, calls \p f functor with item found
754             and deletes it. If \p key is not found, the functor is not called.
755
756             The functor \p Func interface is:
757             \code
758             struct functor {
759                 void operator()(value_type const& val);
760             };
761             \endcode
762             The functor can be passed by value or by reference using <tt>boost:ref</tt>
763
764             Return \p true if key is found and deleted, \p false otherwise
765         */
766         template <typename Q, typename Func>
767         bool erase( Q const& key, Func f )
768         {
769             bool bOk;
770             size_t nHash = base_class::hashing( key );
771             {
772                 scoped_cell_lock sl( base_class::m_MutexPolicy, nHash );
773                 bucket_type * pBucket = base_class::bucket( nHash );
774
775                 bOk = pBucket->erase( key, f );
776             }
777
778             if ( bOk )
779                 --base_class::m_ItemCounter;
780             return bOk;
781         }
782
783         /// Deletes the item from the set using \p pred predicate for searching
784         /**
785             The function is an analog of \ref cds_nonintrusive_StripedSet_erase_func "erase(Q const&, Func)"
786             but \p pred is used for key comparing.
787             \p Less functor has the interface like \p std::less.
788             \p pred must imply the same element order as the comparator used for building the set.
789
790             @note This function is enabled if the compiler supports C++11
791             default template arguments for function template <b>and</b> the underlying container
792             supports \p %erase_with feature.
793         */
794         template < typename Q, typename Less, typename Func
795             , typename Bucket = bucket_type, typename = typename std::enable_if< Bucket::has_erase_with >::type >
796         bool erase_with( Q const& key, Less pred, Func f )
797         {
798             bool bOk;
799             size_t nHash = base_class::hashing( key );
800             {
801                 scoped_cell_lock sl( base_class::m_MutexPolicy, nHash );
802                 bucket_type * pBucket = base_class::bucket( nHash );
803
804                 bOk = pBucket->erase( key, pred, f );
805             }
806
807             if ( bOk )
808                 --base_class::m_ItemCounter;
809             return bOk;
810         }
811
812         /// Find the key \p val
813         /** \anchor cds_nonintrusive_StripedSet_find_func
814
815             The function searches the item with key equal to \p val and calls the functor \p f for item found.
816             The interface of \p Func functor is:
817             \code
818             struct functor {
819                 void operator()( value_type& item, Q& val );
820             };
821             \endcode
822             where \p item is the item found, \p val is the <tt>find</tt> function argument.
823
824             You can pass \p f argument by value or by reference using <tt>boost::ref</tt> or cds::ref.
825
826             The functor can change non-key fields of \p item.
827             The \p val argument is non-const since it can be used as \p f functor destination i.e., the functor
828             can modify both arguments.
829
830             The type \p Q can differ from \ref value_type of items storing in the container.
831             Therefore, the \p value_type should be comparable with type \p Q.
832
833             The function returns \p true if \p val is found, \p false otherwise.
834         */
835         template <typename Q, typename Func>
836         bool find( Q& val, Func f )
837         {
838             return base_class::find( val, f );
839         }
840
841         /// Find the key \p val using \p pred predicate
842         /**
843             The function is an analog of \ref cds_nonintrusive_StripedSet_find_func "find(Q&, Func)"
844             but \p pred is used for key comparing
845             \p Less has the interface like \p std::less.
846             \p pred must imply the same element order as the comparator used for building the set.
847
848             @note This function is enabled if the compiler supports C++11
849             default template arguments for function template <b>and</b> the underlying container
850             supports \p %find_with feature.
851         */
852         template <typename Q, typename Less, typename Func
853             , typename Bucket = bucket_type, typename = typename std::enable_if< Bucket::has_find_with >::type >
854         bool find_with( Q& val, Less pred, Func f )
855         {
856             return base_class::find_with( val, pred, f );
857         }
858
859         /// Find the key \p val
860         /** \anchor cds_nonintrusive_StripedSet_find_cfunc
861
862             The function searches the item with key equal to \p val and calls the functor \p f for item found.
863             The interface of \p Func functor is:
864             \code
865             struct functor {
866                 void operator()( value_type& item, Q const& val );
867             };
868             \endcode
869             where \p item is the item found, \p val is the <tt>find</tt> function argument.
870
871             You can pass \p f argument by value or by reference using <tt>boost::ref</tt> or cds::ref.
872
873             The functor can change non-key fields of \p item.
874
875             The type \p Q can differ from \ref value_type of items storing in the container.
876             Therefore, the \p value_type should be comparable with type \p Q.
877
878             The function returns \p true if \p val is found, \p false otherwise.
879         */
880         template <typename Q, typename Func>
881         bool find( Q const& val, Func f )
882         {
883             return base_class::find( val, f );
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_cfunc "find(Q const&, Func)"
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, typename Func
898             , typename Bucket = bucket_type, typename = typename std::enable_if< Bucket::has_find_with >::type >
899         bool find_with( Q const& val, Less pred, Func f )
900         {
901             return base_class::find_with( val, pred, f );
902         }
903
904         /// Find the key \p val
905         /** \anchor cds_nonintrusive_StripedSet_find_val
906
907             The function searches the item with key equal to \p val
908             and returns \p true if it is found, and \p false otherwise.
909
910             Note the hash functor specified for class \p Traits template parameter
911             should accept a parameter of type \p Q that can be not the same as \ref value_type.
912         */
913         template <typename Q>
914         bool find( Q const& val )
915         {
916             return base_class::find( val );
917         }
918
919         /// Find the key \p val using \p pred predicate
920         /**
921             The function is an analog of \ref cds_nonintrusive_StripedSet_find_val "find(Q const&)"
922             but \p pred is used for key comparing
923             \p Less has the interface like \p std::less.
924             \p pred must imply the same element order as the comparator used for building the set.
925
926             @note This function is enabled if the compiler supports C++11
927             default template arguments for function template <b>and</b> the underlying container
928             supports \p %find_with feature.
929         */
930         template <typename Q, typename Less
931             , typename Bucket = bucket_type, typename = typename std::enable_if< Bucket::has_find_with >::type >
932         bool find_with( Q const& val, Less pred )
933         {
934             return base_class::find_with( val, pred );
935         }
936
937         /// Clears the set
938         /**
939             The function erases all items from the set.
940         */
941         void clear()
942         {
943             return base_class::clear();
944         }
945
946         /// Checks if the set is empty
947         /**
948             Emptiness is checked by item counting: if item count is zero then the set is empty.
949         */
950         bool empty() const
951         {
952             return base_class::empty();
953         }
954
955         /// Returns item count in the set
956         size_t size() const
957         {
958             return base_class::size();
959         }
960
961         /// Returns the size of hash table
962         /**
963             The hash table size is non-constant and can be increased via resizing.
964         */
965         size_t bucket_count() const
966         {
967             return base_class::bucket_count();
968         }
969
970         /// Returns lock array size
971         size_t lock_count() const
972         {
973             return base_class::lock_count();
974         }
975
976         /// Returns resizing policy object
977         resizing_policy& get_resizing_policy()
978         {
979             return base_class::get_resizing_policy();
980         }
981
982         /// Returns resizing policy (const version)
983         resizing_policy const& get_resizing_policy() const
984         {
985             return base_class::get_resizing_policy();
986         }
987     };
988
989 }} // namespace cds::container
990
991
992 #endif // #ifndef __CDS_CONTAINER_STRIPED_SET_H