Fixed doc
[libcds.git] / cds / intrusive / michael_set_rcu.h
1 /*
2     This file is a part of libcds - Concurrent Data Structures library
3
4     (C) Copyright Maxim Khizhinsky (libcds.dev@gmail.com) 2006-2016
5
6     Source code repo: http://github.com/khizmax/libcds/
7     Download: http://sourceforge.net/projects/libcds/files/
8     
9     Redistribution and use in source and binary forms, with or without
10     modification, are permitted provided that the following conditions are met:
11
12     * Redistributions of source code must retain the above copyright notice, this
13       list of conditions and the following disclaimer.
14
15     * Redistributions in binary form must reproduce the above copyright notice,
16       this list of conditions and the following disclaimer in the documentation
17       and/or other materials provided with the distribution.
18
19     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20     AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21     IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22     DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
23     FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24     DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25     SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
26     CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27     OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28     OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.     
29 */
30
31 #ifndef CDSLIB_INTRUSIVE_MICHAEL_SET_RCU_H
32 #define CDSLIB_INTRUSIVE_MICHAEL_SET_RCU_H
33
34 #include <cds/intrusive/details/michael_set_base.h>
35 #include <cds/details/allocator.h>
36
37 namespace cds { namespace intrusive {
38
39     /// Michael's hash set, \ref cds_urcu_desc "RCU" specialization
40     /** @ingroup cds_intrusive_map
41         \anchor cds_intrusive_MichaelHashSet_rcu
42
43         Source:
44             - [2002] Maged Michael "High performance dynamic lock-free hash tables and list-based sets"
45
46         Michael's hash table algorithm is based on lock-free ordered list and it is very simple.
47         The main structure is an array \p T of size \p M. Each element in \p T is basically a pointer
48         to a hash bucket, implemented as a singly linked list. The array of buckets cannot be dynamically expanded.
49         However, each bucket may contain unbounded number of items.
50
51         Template parameters are:
52         - \p RCU - one of \ref cds_urcu_gc "RCU type"
53         - \p OrderedList - ordered list implementation used as bucket for hash set, for example, MichaelList, LazyList.
54             The intrusive ordered list implementation specifies the type \p T stored in the hash-set, the reclamation
55             schema \p GC used by hash-set, the comparison functor for the type \p T and other features specific for
56             the ordered list.
57         - \p Traits - type traits, default is \p michael_set::traits.
58             Instead of defining \p Traits struct you can use option-based syntax with \p michael_set::make_traits metafunction.
59
60         \par Usage
61             Before including <tt><cds/intrusive/michael_set_rcu.h></tt> you should include appropriate RCU header file,
62             see \ref cds_urcu_gc "RCU type" for list of existing RCU class and corresponding header files.
63             For example, for \ref cds_urcu_general_buffered_gc "general-purpose buffered RCU" you should include:
64             \code
65             #include <cds/urcu/general_buffered.h>
66             #include <cds/intrusive/michael_list_rcu.h>
67             #include <cds/intrusive/michael_set_rcu.h>
68
69             struct Foo { ... };
70             // Hash functor for struct Foo
71             struct foo_hash {
72                 size_t operator()( Foo const& foo ) const { return ... }
73             };
74
75             // Now, you can declare Michael's list for type Foo and default traits:
76             typedef cds::intrusive::MichaelList<cds::urcu::gc< general_buffered<> >, Foo > rcu_michael_list;
77
78             // Declare Michael's set with MichaelList as bucket type
79             typedef cds::intrusive::MichaelSet<
80                 cds::urcu::gc< general_buffered<> >,
81                 rcu_michael_list,
82                 cds::intrusive::michael_set::make_traits<
83                     cds::opt::::hash< foo_hash >
84                 >::type
85             > rcu_michael_set;
86
87             // Declares hash set for 1000000 items with load factor 2
88             rcu_michael_set theSet( 1000000, 2 );
89
90             // Now you can use theSet object in many threads without any synchronization.
91             \endcode
92     */
93     template <
94         class RCU,
95         class OrderedList,
96 #ifdef CDS_DOXYGEN_INVOKED
97         class Traits = michael_set::traits
98 #else
99         class Traits
100 #endif
101     >
102     class MichaelHashSet< cds::urcu::gc< RCU >, OrderedList, Traits >
103     {
104     public:
105         typedef cds::urcu::gc< RCU > gc;   ///< RCU schema
106         typedef OrderedList bucket_type;   ///< type of ordered list used as a bucket implementation
107         typedef Traits traits;             ///< Set traits
108
109         typedef typename bucket_type::value_type        value_type      ;   ///< type of value stored in the list
110         typedef typename bucket_type::key_comparator    key_comparator  ;   ///< key comparing functor
111         typedef typename bucket_type::disposer          disposer        ;   ///< Node disposer functor
112
113         /// Hash functor for \ref value_type and all its derivatives that you use
114         typedef typename cds::opt::v::hash_selector< typename traits::hash >::type hash;
115         typedef typename traits::item_counter item_counter;   ///< Item counter type
116
117         /// Bucket table allocator
118         typedef cds::details::Allocator< bucket_type, typename traits::allocator >  bucket_table_allocator;
119
120         typedef typename bucket_type::rcu_lock    rcu_lock;   ///< RCU scoped lock
121         typedef typename bucket_type::exempt_ptr  exempt_ptr; ///< pointer to extracted node
122         typedef typename bucket_type::raw_ptr     raw_ptr;    ///< Return type of \p get() member function and its derivatives
123         /// Group of \p extract_xxx functions require external locking if underlying ordered list requires that
124         static CDS_CONSTEXPR const bool c_bExtractLockExternal = bucket_type::c_bExtractLockExternal;
125
126     protected:
127         item_counter    m_ItemCounter;   ///< Item counter
128         hash            m_HashFunctor;   ///< Hash functor
129         bucket_type *   m_Buckets;       ///< bucket table
130
131     private:
132         //@cond
133         const size_t m_nHashBitmask;
134         //@endcond
135
136     protected:
137         //@cond
138         /// Calculates hash value of \p key
139         template <typename Q>
140         size_t hash_value( Q const& key ) const
141         {
142             return m_HashFunctor( key ) & m_nHashBitmask;
143         }
144
145         /// Returns the bucket (ordered list) for \p key
146         template <typename Q>
147         bucket_type& bucket( Q const& key )
148         {
149             return m_Buckets[ hash_value( key ) ];
150         }
151         template <typename Q>
152         bucket_type const& bucket( Q const& key ) const
153         {
154             return m_Buckets[ hash_value( key ) ];
155         }
156         //@endcond
157
158     public:
159     ///@name Forward iterators (only for debugging purpose)
160     //@{
161         /// Forward iterator
162         /**
163             The forward iterator for Michael's set is based on \p OrderedList forward iterator and has some features:
164             - it has no post-increment operator
165             - it iterates items in unordered fashion
166
167             @warning Use this iterator on the concurrent container for debugging purpose only.
168         */
169         typedef michael_set::details::iterator< bucket_type, false >    iterator;
170
171         /// Const forward iterator
172         /**
173             For iterator's features and requirements see \ref iterator
174         */
175         typedef michael_set::details::iterator< bucket_type, true >     const_iterator;
176
177         /// Returns a forward iterator addressing the first element in a set
178         /**
179             For empty set \code begin() == end() \endcode
180         */
181         iterator begin()
182         {
183             return iterator( m_Buckets[0].begin(), m_Buckets, m_Buckets + bucket_count() );
184         }
185
186         /// Returns an iterator that addresses the location succeeding the last element in a set
187         /**
188             Do not use the value returned by <tt>end</tt> function to access any item.
189             The returned value can be used only to control reaching the end of the set.
190             For empty set \code begin() == end() \endcode
191         */
192         iterator end()
193         {
194             return iterator( m_Buckets[bucket_count() - 1].end(), m_Buckets + bucket_count() - 1, m_Buckets + bucket_count() );
195         }
196
197         /// Returns a forward const iterator addressing the first element in a set
198         const_iterator begin() const
199         {
200             return cbegin();
201         }
202
203         /// Returns a forward const iterator addressing the first element in a set
204         const_iterator cbegin() const
205         {
206             return const_iterator( m_Buckets[0].cbegin(), m_Buckets, m_Buckets + bucket_count() );
207         }
208
209         /// Returns an const iterator that addresses the location succeeding the last element in a set
210         const_iterator end() const
211         {
212             return cend();
213         }
214
215         /// Returns an const iterator that addresses the location succeeding the last element in a set
216         const_iterator cend() const
217         {
218             return const_iterator( m_Buckets[bucket_count() - 1].cend(), m_Buckets + bucket_count() - 1, m_Buckets + bucket_count() );
219         }
220     //@}
221
222     public:
223         /// Initialize hash set
224         /**
225             The Michael's hash set is an unbounded container, but its hash table is non-expandable.
226             At construction time you should pass estimated maximum item count and a load factor.
227             The load factor is average size of one bucket - a small number between 1 and 10.
228             The bucket is an ordered single-linked list, the complexity of searching in the bucket is linear <tt>O(nLoadFactor)</tt>.
229             The constructor defines hash table size as rounding <tt>nMaxItemCount / nLoadFactor</tt> up to nearest power of two.
230         */
231         MichaelHashSet(
232             size_t nMaxItemCount,   ///< estimation of max item count in the hash set
233             size_t nLoadFactor      ///< load factor: average size of the bucket
234         ) : m_nHashBitmask( michael_set::details::init_hash_bitmask( nMaxItemCount, nLoadFactor ))
235         {
236             // GC and OrderedList::gc must be the same
237             static_assert( std::is_same<gc, typename bucket_type::gc>::value, "GC and OrderedList::gc must be the same");
238
239             // atomicity::empty_item_counter is not allowed as a item counter
240             static_assert( !std::is_same<item_counter, atomicity::empty_item_counter>::value,
241                 "atomicity::empty_item_counter is not allowed as a item counter");
242
243             m_Buckets = bucket_table_allocator().NewArray( bucket_count() );
244         }
245
246         /// Clear hash set and destroy it
247         ~MichaelHashSet()
248         {
249             clear();
250             bucket_table_allocator().Delete( m_Buckets, bucket_count() );
251         }
252
253         /// Inserts new node
254         /**
255             The function inserts \p val in the set if it does not contain
256             an item with key equal to \p val.
257
258             Returns \p true if \p val is placed into the set, \p false otherwise.
259         */
260         bool insert( value_type& val )
261         {
262             bool bRet = bucket( val ).insert( val );
263             if ( bRet )
264                 ++m_ItemCounter;
265             return bRet;
266         }
267
268         /// Inserts new node
269         /**
270             This function is intended for derived non-intrusive containers.
271
272             The function allows to split creating of new item into two part:
273             - create item with key only
274             - insert new item into the set
275             - if inserting is success, calls  \p f functor to initialize value-field of \p val.
276
277             The functor signature is:
278             \code
279                 void func( value_type& val );
280             \endcode
281             where \p val is the item inserted.
282             The user-defined functor is called only if the inserting is success.
283
284             @warning For \ref cds_intrusive_MichaelList_rcu "MichaelList" as the bucket see \ref cds_intrusive_item_creating "insert item troubleshooting".
285             \ref cds_intrusive_LazyList_rcu "LazyList" provides exclusive access to inserted item and does not require any node-level
286             synchronization.
287         */
288         template <typename Func>
289         bool insert( value_type& val, Func f )
290         {
291             bool bRet = bucket( val ).insert( val, f );
292             if ( bRet )
293                 ++m_ItemCounter;
294             return bRet;
295         }
296
297         /// Updates the element
298         /**
299             The operation performs inserting or changing data with lock-free manner.
300
301             If the item \p val not found in the set, then \p val is inserted iff \p bAllowInsert is \p true.
302             Otherwise, the functor \p func is called with item found.
303             The functor signature is:
304             \code
305                 struct functor {
306                     void operator()( bool bNew, value_type& item, value_type& val );
307                 };
308             \endcode
309             with arguments:
310             - \p bNew - \p true if the item has been inserted, \p false otherwise
311             - \p item - item of the set
312             - \p val - argument \p val passed into the \p %update() function
313             If new item has been inserted (i.e. \p bNew is \p true) then \p item and \p val arguments
314             refers to the same thing.
315
316             The functor may change non-key fields of the \p item.
317
318             Returns <tt> std::pair<bool, bool> </tt> where \p first is \p true if operation is successfull,
319             \p second is \p true if new item has been added or \p false if the item with \p key
320             already is in the set.
321
322             @warning For \ref cds_intrusive_MichaelList_hp "MichaelList" as the bucket see \ref cds_intrusive_item_creating "insert item troubleshooting".
323             \ref cds_intrusive_LazyList_hp "LazyList" provides exclusive access to inserted item and does not require any node-level
324             synchronization.
325         */
326         template <typename Func>
327         std::pair<bool, bool> update( value_type& val, Func func, bool bAllowInsert = true )
328         {
329             std::pair<bool, bool> bRet = bucket( val ).update( val, func, bAllowInsert );
330             if ( bRet.second )
331                 ++m_ItemCounter;
332             return bRet;
333         }
334         //@cond
335         template <typename Func>
336         CDS_DEPRECATED("ensure() is deprecated, use update()")
337         std::pair<bool, bool> ensure( value_type& val, Func func )
338         {
339             return update( val, func, true );
340         }
341         //@endcond
342
343         /// Unlinks the item \p val from the set
344         /**
345             The function searches the item \p val in the set and unlink it from the set
346             if it is found and is equal to \p val.
347
348             The function returns \p true if success and \p false otherwise.
349         */
350         bool unlink( value_type& val )
351         {
352             bool bRet = bucket( val ).unlink( val );
353             if ( bRet )
354                 --m_ItemCounter;
355             return bRet;
356         }
357
358         /// Deletes the item from the set
359         /** \anchor cds_intrusive_MichaelHashSet_rcu_erase
360             The function searches an item with key equal to \p key in the set,
361             unlinks it from the set, and returns \p true.
362             If the item with key equal to \p key is not found the function return \p false.
363
364             Note the hash functor should accept a parameter of type \p Q that may be not the same as \p value_type.
365         */
366         template <typename Q>
367         bool erase( Q const& key )
368         {
369             if ( bucket( key ).erase( key )) {
370                 --m_ItemCounter;
371                 return true;
372             }
373             return false;
374         }
375
376         /// Deletes the item from the set using \p pred predicate for searching
377         /**
378             The function is an analog of \ref cds_intrusive_MichaelHashSet_rcu_erase "erase(Q const&)"
379             but \p pred is used for key comparing.
380             \p Less functor has the interface like \p std::less.
381             \p pred must imply the same element order as the comparator used for building the set.
382         */
383         template <typename Q, typename Less>
384         bool erase_with( Q const& key, Less pred )
385         {
386             if ( bucket( key ).erase_with( key, pred )) {
387                 --m_ItemCounter;
388                 return true;
389             }
390             return false;
391         }
392
393         /// Deletes the item from the set
394         /** \anchor cds_intrusive_MichaelHashSet_rcu_erase_func
395             The function searches an item with key equal to \p key in the set,
396             call \p f functor with item found, and unlinks it from the set.
397             The \ref disposer specified in \p OrderedList class template parameter is called
398             by garbage collector \p GC asynchronously.
399
400             The \p Func interface is
401             \code
402             struct functor {
403                 void operator()( value_type const& item );
404             };
405             \endcode
406
407             If the item with key equal to \p key is not found the function return \p false.
408
409             Note the hash functor should accept a parameter of type \p Q that can be not the same as \p value_type.
410         */
411         template <typename Q, typename Func>
412         bool erase( const Q& key, Func f )
413         {
414             if ( bucket( key ).erase( key, f )) {
415                 --m_ItemCounter;
416                 return true;
417             }
418             return false;
419         }
420
421         /// Deletes the item from the set using \p pred predicate for searching
422         /**
423             The function is an analog of \ref cds_intrusive_MichaelHashSet_rcu_erase_func "erase(Q const&)"
424             but \p pred is used for key comparing.
425             \p Less functor has the interface like \p std::less.
426             \p pred must imply the same element order as the comparator used for building the set.
427         */
428         template <typename Q, typename Less, typename Func>
429         bool erase_with( const Q& key, Less pred, Func f )
430         {
431             if ( bucket( key ).erase_with( key, pred, f )) {
432                 --m_ItemCounter;
433                 return true;
434             }
435             return false;
436         }
437
438         /// Extracts an item from the set
439         /** \anchor cds_intrusive_MichaelHashSet_rcu_extract
440             The function searches an item with key equal to \p key in the set,
441             unlinks it from the set, and returns \ref cds::urcu::exempt_ptr "exempt_ptr" pointer to the item found.
442             If the item with the key equal to \p key is not found the function returns an empty \p exempt_ptr.
443
444             Depends on \p bucket_type you should or should not lock RCU before calling of this function:
445             - for the set based on \ref cds_intrusive_MichaelList_rcu "MichaelList" RCU should not be locked
446             - for the set based on \ref cds_intrusive_LazyList_rcu "LazyList" RCU should be locked
447
448             See ordered list implementation for details.
449
450             \code
451             #include <cds/urcu/general_buffered.h>
452             #include <cds/intrusive/michael_list_rcu.h>
453             #include <cds/intrusive/michael_set_rcu.h>
454
455             typedef cds::urcu::gc< general_buffered<> > rcu;
456             typedef cds::intrusive::MichaelList< rcu, Foo > rcu_michael_list;
457             typedef cds::intrusive::MichaelHashSet< rcu, rcu_michael_list, foo_traits > rcu_michael_set;
458
459             rcu_michael_set theSet;
460             // ...
461
462             typename rcu_michael_set::exempt_ptr p;
463
464             // For MichaelList we should not lock RCU
465
466             // Now, you can apply extract function
467             // Note that you must not delete the item found inside the RCU lock
468             p = theSet.extract( 10 )
469             if ( p ) {
470                 // do something with p
471                 ...
472             }
473
474             // We may safely release p here
475             // release() passes the pointer to RCU reclamation cycle:
476             // it invokes RCU retire_ptr function with the disposer you provided for rcu_michael_list.
477             p.release();
478             \endcode
479         */
480         template <typename Q>
481         exempt_ptr extract( Q const& key )
482         {
483             exempt_ptr p( bucket( key ).extract( key ) );
484             if ( p )
485                 --m_ItemCounter;
486             return p;
487         }
488
489         /// Extracts an item from the set using \p pred predicate for searching
490         /**
491             The function is an analog of \p extract(Q const&) but \p pred is used for key comparing.
492             \p Less functor has the interface like \p std::less.
493             \p pred must imply the same element order as the comparator used for building the set.
494         */
495         template <typename Q, typename Less>
496         exempt_ptr extract_with( Q const& key, Less pred )
497         {
498             exempt_ptr p( bucket( key ).extract_with( key, pred ) );
499             if ( p )
500                 --m_ItemCounter;
501             return p;
502         }
503
504         /// Checks whether the set contains \p key
505         /**
506
507             The function searches the item with key equal to \p key
508             and returns \p true if the key is found, and \p false otherwise.
509
510             Note the hash functor specified for class \p Traits template parameter
511             should accept a parameter of type \p Q that can be not the same as \p value_type.
512         */
513         template <typename Q>
514         bool contains( Q const& key )
515         {
516             return bucket( key ).contains( key );
517         }
518         //@cond
519         template <typename Q>
520         CDS_DEPRECATED("use contains()")
521         bool find( Q const& key )
522         {
523             return contains( key );
524         }
525         //@endcond
526
527         /// Checks whether the set contains \p key using \p pred predicate for searching
528         /**
529             The function is an analog of <tt>contains( key )</tt> but \p pred is used for key comparing.
530             \p Less functor has the interface like \p std::less.
531             \p Less must imply the same element order as the comparator used for building the set.
532         */
533         template <typename Q, typename Less>
534         bool contains( Q const& key, Less pred )
535         {
536             return bucket( key ).contains( key, pred );
537         }
538         //@cond
539         template <typename Q, typename Less>
540         CDS_DEPRECATED("use contains()")
541         bool find_with( Q const& key, Less pred )
542         {
543             return contains( key, pred );
544         }
545         //@endcond
546
547         /// Find the key \p key
548         /** \anchor cds_intrusive_MichaelHashSet_rcu_find_func
549             The function searches the item with key equal to \p key and calls the functor \p f for item found.
550             The interface of \p Func functor is:
551             \code
552             struct functor {
553                 void operator()( value_type& item, Q& key );
554             };
555             \endcode
556             where \p item is the item found, \p key is the <tt>find</tt> function argument.
557
558             The functor can change non-key fields of \p item.
559             The functor does not serialize simultaneous access to the set \p item. If such access is
560             possible you must provide your own synchronization schema on item level to exclude unsafe item modifications.
561
562             The \p key argument is non-const since it can be used as \p f functor destination i.e., the functor
563             can modify both arguments.
564
565             Note the hash functor specified for class \p Traits template parameter
566             should accept a parameter of type \p Q that can be not the same as \p value_type.
567
568             The function returns \p true if \p key is found, \p false otherwise.
569         */
570         template <typename Q, typename Func>
571         bool find( Q& key, Func f )
572         {
573             return bucket( key ).find( key, f );
574         }
575         //@cond
576         template <typename Q, typename Func>
577         bool find( Q const& key, Func f )
578         {
579             return bucket( key ).find( key, f );
580         }
581         //@endcond
582
583         /// Finds the key \p key using \p pred predicate for searching
584         /**
585             The function is an analog of \ref cds_intrusive_MichaelHashSet_rcu_find_func "find(Q&, Func)"
586             but \p pred is used for key comparing.
587             \p Less functor has the interface like \p std::less.
588             \p pred must imply the same element order as the comparator used for building the set.
589         */
590         template <typename Q, typename Less, typename Func>
591         bool find_with( Q& key, Less pred, Func f )
592         {
593             return bucket( key ).find_with( key, pred, f );
594         }
595         //@cond
596         template <typename Q, typename Less, typename Func>
597         bool find_with( Q const& key, Less pred, Func f )
598         {
599             return bucket( key ).find_with( key, pred, f );
600         }
601         //@endcond
602
603         /// Finds the key \p key and return the item found
604         /** \anchor cds_intrusive_MichaelHashSet_rcu_get
605             The function searches the item with key equal to \p key and returns the pointer to item found.
606             If \p key is not found it returns \p nullptr.
607             Note the type of returned value depends on underlying \p bucket_type.
608             For details, see documentation of ordered list you use.
609
610             Note the compare functor should accept a parameter of type \p Q that can be not the same as \p value_type.
611
612             RCU should be locked before call of this function.
613             Returned item is valid only while RCU is locked:
614             \code
615             typedef cds::intrusive::MichaelHashSet< your_template_parameters > hash_set;
616             hash_set theSet;
617             // ...
618             // Result of get() call
619             typename hash_set::raw_ptr ptr;
620             {
621                 // Lock RCU
622                 hash_set::rcu_lock lock;
623
624                 ptr = theSet.get( 5 );
625                 if ( ptr ) {
626                     // Deal with ptr
627                     //...
628                 }
629                 // Unlock RCU by rcu_lock destructor
630                 // ptr can be reclaimed by disposer at any time after RCU has been unlocked
631             }
632             \endcode
633         */
634         template <typename Q>
635         raw_ptr get( Q const& key )
636         {
637             return bucket( key ).get( key );
638         }
639
640         /// Finds the key \p key and return the item found
641         /**
642             The function is an analog of \ref cds_intrusive_MichaelHashSet_rcu_get "get(Q const&)"
643             but \p pred is used for comparing the keys.
644
645             \p Less functor has the semantics like \p std::less but should take arguments of type \ref value_type and \p Q
646             in any order.
647             \p pred must imply the same element order as the comparator used for building the set.
648         */
649         template <typename Q, typename Less>
650         raw_ptr get_with( Q const& key, Less pred )
651         {
652             return bucket( key ).get_with( key, pred );
653         }
654
655         /// Clears the set (non-atomic)
656         /**
657             The function unlink all items from the set.
658             The function is not atomic. It cleans up each bucket and then resets the item counter to zero.
659             If there are a thread that performs insertion while \p clear is working the result is undefined in general case:
660             <tt> empty() </tt> may return \p true but the set may contain item(s).
661             Therefore, \p clear may be used only for debugging purposes.
662
663             For each item the \p disposer is called after unlinking.
664         */
665         void clear()
666         {
667             for ( size_t i = 0; i < bucket_count(); ++i )
668                 m_Buckets[i].clear();
669             m_ItemCounter.reset();
670         }
671
672
673         /// Checks if the set is empty
674         /**
675             Emptiness is checked by item counting: if item count is zero then the set is empty.
676             Thus, the correct item counting feature is an important part of Michael's set implementation.
677         */
678         bool empty() const
679         {
680             return size() == 0;
681         }
682
683         /// Returns item count in the set
684         size_t size() const
685         {
686             return m_ItemCounter;
687         }
688
689         /// Returns the size of hash table
690         /**
691             Since %MichaelHashSet cannot dynamically extend the hash table size,
692             the value returned is an constant depending on object initialization parameters;
693             see \ref cds_intrusive_MichaelHashSet_hp "MichaelHashSet" for explanation.
694         */
695         size_t bucket_count() const
696         {
697             return m_nHashBitmask + 1;
698         }
699
700     };
701
702 }} // namespace cds::intrusive
703
704 #endif // #ifndef CDSLIB_INTRUSIVE_MICHAEL_SET_NOGC_H
705