2 This file is a part of libcds - Concurrent Data Structures library
4 (C) Copyright Maxim Khizhinsky (libcds.dev@gmail.com) 2006-2017
6 Source code repo: http://github.com/khizmax/libcds/
7 Download: http://sourceforge.net/projects/libcds/files/
9 Redistribution and use in source and binary forms, with or without
10 modification, are permitted provided that the following conditions are met:
12 * Redistributions of source code must retain the above copyright notice, this
13 list of conditions and the following disclaimer.
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.
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.
31 #ifndef CDSLIB_CONTAINER_MICHAEL_SET_H
32 #define CDSLIB_CONTAINER_MICHAEL_SET_H
34 #include <cds/container/details/michael_set_base.h>
35 #include <cds/container/details/iterable_list_base.h>
36 #include <cds/details/allocator.h>
38 namespace cds { namespace container {
40 /// Michael's hash set
41 /** @ingroup cds_nonintrusive_set
42 \anchor cds_nonintrusive_MichaelHashSet_hp
45 - [2002] Maged Michael "High performance dynamic lock-free hash tables and list-based sets"
47 Michael's hash table algorithm is based on lock-free ordered list and it is very simple.
48 The main structure is an array \p T of size \p M. Each element in \p T is basically a pointer
49 to a hash bucket, implemented as a singly linked list. The array of buckets cannot be dynamically expanded.
50 However, each bucket may contain unbounded number of items.
52 Template parameters are:
53 - \p GC - Garbage collector used. You may use any \ref cds_garbage_collector "Garbage collector"
54 from the \p libcds library.
55 Note the \p GC must be the same as the \p GC used for \p OrderedList
56 - \p OrderedList - ordered list implementation used as bucket for hash set, possible implementations:
57 \p MichaelList, \p LazyList, \p IterableList.
58 The ordered list implementation specifies the type \p T to be stored in the hash-set,
59 the comparing functor for the type \p T and other features specific for the ordered list.
60 - \p Traits - set traits, default is \p michael_set::traits.
61 Instead of defining \p Traits struct you may use option-based syntax with \p michael_set::make_traits metafunction.
63 There are the specializations:
64 - for \ref cds_urcu_desc "RCU" - declared in <tt>cd/container/michael_set_rcu.h</tt>,
65 see \ref cds_nonintrusive_MichaelHashSet_rcu "MichaelHashSet<RCU>".
66 - for \ref cds::gc::nogc declared in <tt>cds/container/michael_set_nogc.h</tt>,
67 see \ref cds_nonintrusive_MichaelHashSet_nogc "MichaelHashSet<gc::nogc>".
69 \anchor cds_nonintrusive_MichaelHashSet_hash_functor
72 Some member functions of Michael's hash set accept the key parameter of type \p Q which differs from node type \p value_type.
73 It is expected that type \p Q contains full key of node type \p value_type, and if keys of type \p Q and \p value_type
74 are equal the hash values of these keys must be equal too.
76 The hash functor \p Traits::hash should accept parameters of both type:
80 std::string key_; // key field
86 size_t operator()( const std::string& s ) const
88 return std::hash( s );
91 size_t operator()( const Foo& f ) const
93 return (*this)( f.key_ );
100 Suppose, we have the following type \p Foo that we want to store in our \p %MichaelHashSet:
103 int nKey; // key field
104 int nVal; // value field
108 To use \p %MichaelHashSet for \p Foo values, you should first choose suitable ordered list class
109 that will be used as a bucket for the set. We will use \p gc::DHP reclamation schema and
110 \p MichaelList as a bucket type. Also, for ordered list we should develop a comparator for our \p Foo
113 #include <cds/container/michael_list_dhp.h>
114 #include <cds/container/michael_set.h>
116 namespace cc = cds::container;
120 int operator ()(Foo const& v1, Foo const& v2 ) const
122 if ( std::less( v1.nKey, v2.nKey ))
124 return std::less(v2.nKey, v1.nKey) ? 1 : 0;
129 typedef cc::MichaelList< cds::gc::DHP, Foo,
130 typename cc::michael_list::make_traits<
131 cc::opt::compare< Foo_cmp > // item comparator option
135 // Hash functor for Foo
137 size_t operator ()( int i ) const
139 return std::hash( i );
141 size_t operator()( Foo const& i ) const
143 return std::hash( i.nKey );
148 // Note that \p GC template parameter of ordered list must be equal \p GC for the set.
149 typedef cc::MichaelHashSet< cds::gc::DHP, bucket_list,
150 cc::michael_set::make_traits<
151 cc::opt::hash< foo_hash >
162 #ifdef CDS_DOXYGEN_INVOKED
163 class Traits = michael_set::traits
171 typedef GC gc; ///< Garbage collector
172 typedef OrderedList ordered_list; ///< type of ordered list used as a bucket implementation
173 typedef Traits traits; ///< Set traits
175 typedef typename ordered_list::value_type value_type; ///< type of value to be stored in the list
176 typedef typename ordered_list::key_comparator key_comparator; ///< key comparison functor
177 #ifdef CDS_DOXYGEN_INVOKED
178 typedef typename ordered_list::stat stat; ///< Internal statistics
181 /// Hash functor for \ref value_type and all its derivatives that you use
182 typedef typename cds::opt::v::hash_selector< typename traits::hash >::type hash;
183 typedef typename traits::item_counter item_counter; ///< Item counter type
184 typedef typename traits::allocator allocator; ///< Bucket table allocator
186 static CDS_CONSTEXPR const size_t c_nHazardPtrCount = ordered_list::c_nHazardPtrCount; ///< Count of hazard pointer required
188 // GC and OrderedList::gc must be the same
189 static_assert( std::is_same<gc, typename ordered_list::gc>::value, "GC and OrderedList::gc must be the same");
192 typedef typename ordered_list::template select_stat_wrapper< typename ordered_list::stat > bucket_stat;
194 typedef typename ordered_list::template rebind_traits<
195 cds::opt::item_counter< cds::atomicity::empty_item_counter >
196 , cds::opt::stat< typename bucket_stat::wrapped_stat >
197 >::type internal_bucket_type;
199 /// Bucket table allocator
200 typedef typename allocator::template rebind< internal_bucket_type >::other bucket_table_allocator;
202 typedef typename bucket_stat::stat stat;
205 /// Guarded pointer - a result of \p get() and \p extract() functions
206 typedef typename internal_bucket_type::guarded_ptr guarded_ptr;
210 size_t const m_nHashBitmask;
211 internal_bucket_type * m_Buckets; ///< bucket table
212 hash m_HashFunctor; ///< Hash functor
213 item_counter m_ItemCounter; ///< Item counter
214 stat m_Stat; ///< Internal statistics
218 ///@name Forward iterators
222 The forward iterator for Michael's set has some features:
223 - it has no post-increment operator
224 - to protect the value, the iterator contains a GC-specific guard + another guard is required locally for increment operator.
225 For some GC (like as \p gc::HP), a guard is a limited resource per thread, so an exception (or assertion) "no free guard"
226 may be thrown if the limit of guard count per thread is exceeded.
227 - The iterator cannot be moved across thread boundary because it contains thread-private GC's guard.
229 Iterator thread safety depends on type of \p OrderedList:
230 - for \p MichaelList and \p LazyList: iterator guarantees safety even if you delete the item that iterator points to
231 because that item is guarded by hazard pointer.
232 However, in case of concurrent deleting operations it is no guarantee that you iterate all item in the set.
233 Moreover, a crash is possible when you try to iterate the next element that has been deleted by concurrent thread.
234 Use this iterator on the concurrent container for debugging purpose only.
235 - for \p IterableList: iterator is thread-safe. You may use it freely in concurrent environment.
237 The iterator interface:
241 // Default constructor
245 iterator( iterator const& src );
247 // Dereference operator
248 value_type * operator ->() const;
250 // Dereference operator
251 value_type& operator *() const;
253 // Preincrement operator
254 iterator& operator ++();
256 // Assignment operator
257 iterator& operator = (iterator const& src);
259 // Equality operators
260 bool operator ==(iterator const& i ) const;
261 bool operator !=(iterator const& i ) const;
267 typedef michael_set::details::iterator< internal_bucket_type, false > iterator;
269 /// Const forward iterator
270 typedef michael_set::details::iterator< internal_bucket_type, true > const_iterator;
272 /// Returns a forward iterator addressing the first element in a set
274 For empty set \code begin() == end() \endcode
278 return iterator( bucket_begin()->begin(), bucket_begin(), bucket_end());
281 /// Returns an iterator that addresses the location succeeding the last element in a set
283 Do not use the value returned by <tt>end</tt> function to access any item.
284 The returned value can be used only to control reaching the end of the set.
285 For empty set \code begin() == end() \endcode
289 return iterator( bucket_end()[-1].end(), bucket_end() - 1, bucket_end());
292 /// Returns a forward const iterator addressing the first element in a set
293 const_iterator begin() const
295 return get_const_begin();
298 /// Returns a forward const iterator addressing the first element in a set
299 const_iterator cbegin() const
301 return get_const_begin();
304 /// Returns an const iterator that addresses the location succeeding the last element in a set
305 const_iterator end() const
307 return get_const_end();
310 /// Returns an const iterator that addresses the location succeeding the last element in a set
311 const_iterator cend() const
313 return get_const_end();
318 /// Initialize hash set
320 The Michael's hash set is non-expandable container. You should point the average count of items \p nMaxItemCount
321 when you create an object.
322 \p nLoadFactor parameter defines average count of items per bucket and it should be small number between 1 and 10.
323 Remember, since the bucket implementation is an ordered list, searching in the bucket is linear [<tt>O(nLoadFactor)</tt>].
325 The ctor defines hash table size as rounding <tt>nMaxItemCount / nLoadFactor</tt> up to nearest power of two.
328 size_t nMaxItemCount, ///< estimation of max item count in the hash set
329 size_t nLoadFactor ///< load factor: estimation of max number of items in the bucket
330 ) : m_nHashBitmask( michael_set::details::init_hash_bitmask( nMaxItemCount, nLoadFactor ))
331 , m_Buckets( bucket_table_allocator().allocate( bucket_count()))
333 for ( auto it = m_Buckets, itEnd = m_Buckets + bucket_count(); it != itEnd; ++it )
334 construct_bucket<bucket_stat>( it );
337 /// Clears hash set and destroys it
342 for ( auto it = m_Buckets, itEnd = m_Buckets + bucket_count(); it != itEnd; ++it )
343 it->~internal_bucket_type();
344 bucket_table_allocator().deallocate( m_Buckets, bucket_count());
349 The function creates a node with copy of \p val value
350 and then inserts the node created into the set.
352 The type \p Q should contain as minimum the complete key for the node.
353 The object of \ref value_type should be constructible from a value of type \p Q.
354 In trivial case, \p Q is equal to \ref value_type.
356 Returns \p true if \p val is inserted into the set, \p false otherwise.
358 template <typename Q>
359 bool insert( Q&& val )
361 const bool bRet = bucket( val ).insert( std::forward<Q>( val ));
369 The function allows to split creating of new item into two part:
370 - create item with key only
371 - insert new item into the set
372 - if inserting is success, calls \p f functor to initialize value-fields of \p val.
374 The functor signature is:
376 void func( value_type& val );
378 where \p val is the item inserted.
379 The user-defined functor is called only if the inserting is success.
381 @warning For \ref cds_nonintrusive_MichaelList_gc "MichaelList" and \ref cds_nonintrusive_IterableList_gc "IterableList"
382 as the bucket see \ref cds_intrusive_item_creating "insert item troubleshooting".
383 @ref cds_nonintrusive_LazyList_gc "LazyList" provides exclusive access to inserted item and does not require any node-level
386 template <typename Q, typename Func>
387 bool insert( Q&& val, Func f )
389 const bool bRet = bucket( val ).insert( std::forward<Q>( val ), f );
395 /// Updates the element
397 The operation performs inserting or changing data with lock-free manner.
399 If the item \p val not found in the set, then \p val is inserted iff \p bAllowInsert is \p true.
400 Otherwise, the functor \p func is called with item found.
402 The functor \p func signature depends of \p OrderedList:
404 <b>for \p MichaelList, \p LazyList</b>
407 void operator()( bool bNew, value_type& item, Q const& val );
411 - \p bNew - \p true if the item has been inserted, \p false otherwise
412 - \p item - item of the set
413 - \p val - argument \p val passed into the \p %update() function
415 The functor may change non-key fields of the \p item.
417 <b>for \p IterableList</b>
419 void func( value_type& val, value_type * old );
422 - \p val - a new data constructed from \p key
423 - \p old - old value that will be retired. If new item has been inserted then \p old is \p nullptr.
425 @return <tt> std::pair<bool, bool> </tt> where \p first is \p true if operation is successful,
426 \p second is \p true if new item has been added or \p false if the item with \p key
427 already is in the set.
429 @warning For \ref cds_intrusive_MichaelList_hp "MichaelList" and \ref cds_nonintrusive_IterableList_gc "IterableList"
430 as the bucket see \ref cds_intrusive_item_creating "insert item troubleshooting".
431 \ref cds_intrusive_LazyList_hp "LazyList" provides exclusive access to inserted item and does not require any node-level
434 template <typename Q, typename Func>
435 std::pair<bool, bool> update( Q&& val, Func func, bool bAllowUpdate = true )
437 std::pair<bool, bool> bRet = bucket( val ).update( std::forward<Q>( val ), func, bAllowUpdate );
443 template <typename Q, typename Func>
444 CDS_DEPRECATED("ensure() is deprecated, use update()")
445 std::pair<bool, bool> ensure( const Q& val, Func func )
447 return update( val, func, true );
451 /// Inserts or updates the node (only for \p IterableList)
453 The operation performs inserting or changing data with lock-free manner.
455 If the item \p val is not found in the set, then \p val is inserted iff \p bAllowInsert is \p true.
456 Otherwise, the current element is changed to \p val, the old element will be retired later.
458 Returns std::pair<bool, bool> where \p first is \p true if operation is successful,
459 \p second is \p true if \p val has been added or \p false if the item with that key
462 template <typename Q>
463 #ifdef CDS_DOXYGEN_INVOKED
464 std::pair<bool, bool>
466 typename std::enable_if<
467 std::is_same< Q, Q>::value && is_iterable_list< ordered_list >::value,
468 std::pair<bool, bool>
471 upsert( Q&& val, bool bAllowInsert = true )
473 std::pair<bool, bool> bRet = bucket( val ).upsert( std::forward<Q>( val ), bAllowInsert );
479 /// Inserts data of type \p value_type constructed from \p args
481 Returns \p true if inserting successful, \p false otherwise.
483 template <typename... Args>
484 bool emplace( Args&&... args )
486 bool bRet = bucket_emplace<internal_bucket_type>( std::forward<Args>(args)... );
492 /// Deletes \p key from the set
494 Since the key of MichaelHashSet's item type \p value_type is not explicitly specified,
495 template parameter \p Q defines the key type searching in the list.
496 The set item comparator should be able to compare the type \p value_type
499 Return \p true if key is found and deleted, \p false otherwise.
501 template <typename Q>
502 bool erase( Q const& key )
504 const bool bRet = bucket( key ).erase( key );
510 /// Deletes the item from the set using \p pred predicate for searching
512 The function is an analog of \p erase(Q const&) but \p pred is used for key comparing.
513 \p Less functor has the interface like \p std::less.
514 \p Less must imply the same element order as the comparator used for building the set.
516 template <typename Q, typename Less>
517 bool erase_with( Q const& key, Less pred )
519 const bool bRet = bucket( key ).erase_with( key, pred );
525 /// Deletes \p key from the set
527 The function searches an item with key \p key, calls \p f functor
528 and deletes the item. If \p key is not found, the functor is not called.
530 The functor \p Func interface:
533 void operator()(value_type& item);
536 where \p item - the item found.
538 Since the key of %MichaelHashSet's \p value_type is not explicitly specified,
539 template parameter \p Q defines the key type searching in the list.
540 The list item comparator should be able to compare the type \p T of list item
543 Return \p true if key is found and deleted, \p false otherwise
545 template <typename Q, typename Func>
546 bool erase( Q const& key, Func f )
548 const bool bRet = bucket( key ).erase( key, f );
554 /// Deletes the item from the set using \p pred predicate for searching
556 The function is an analog of \p erase(Q const&, Func) but \p pred is used for key comparing.
557 \p Less functor has the interface like \p std::less.
558 \p Less must imply the same element order as the comparator used for building the set.
560 template <typename Q, typename Less, typename Func>
561 bool erase_with( Q const& key, Less pred, Func f )
563 const bool bRet = bucket( key ).erase_with( key, pred, f );
569 /// Deletes the item pointed by iterator \p iter (only for \p IterableList based set)
571 Returns \p true if the operation is successful, \p false otherwise.
572 The function can return \p false if the node the iterator points to has already been deleted
575 The function does not invalidate the iterator, it remains valid and can be used for further traversing.
577 @note \p %erase_at() is supported only for \p %MichaelHashSet based on \p IterableList.
579 #ifdef CDS_DOXYGEN_INVOKED
580 bool erase_at( iterator const& iter )
582 template <typename Iterator>
583 typename std::enable_if< std::is_same<Iterator, iterator>::value && is_iterable_list< ordered_list >::value, bool >::type
584 erase_at( Iterator const& iter )
587 assert( iter != end());
588 assert( iter.bucket() != nullptr );
590 if ( iter.bucket()->erase_at( iter.underlying_iterator())) {
597 /// Extracts the item with specified \p key
598 /** \anchor cds_nonintrusive_MichaelHashSet_hp_extract
599 The function searches an item with key equal to \p key,
600 unlinks it from the set, and returns it as \p guarded_ptr.
601 If \p key is not found the function returns an empty guadd pointer.
603 Note the compare functor should accept a parameter of type \p Q that may be not the same as \p value_type.
605 The extracted item is freed automatically when returned \p guarded_ptr object will be destroyed or released.
606 @note Each \p guarded_ptr object uses the GC's guard that can be limited resource.
610 typedef cds::container::MichaelHashSet< your_template_args > michael_set;
614 typename michael_set::guarded_ptr gp( theSet.extract( 5 ));
619 // Destructor of gp releases internal HP guard
623 template <typename Q>
624 guarded_ptr extract( Q const& key )
626 guarded_ptr gp( bucket( key ).extract( key ));
632 /// Extracts the item using compare functor \p pred
634 The function is an analog of \p extract(Q const&)
635 but \p pred predicate is used for key comparing.
637 \p Less functor has the semantics like \p std::less but should take arguments
638 of type \p value_type and \p Q in any order.
639 \p pred must imply the same element order as the comparator used for building the set.
641 template <typename Q, typename Less>
642 guarded_ptr extract_with( Q const& key, Less pred )
644 guarded_ptr gp( bucket( key ).extract_with( key, pred ));
650 /// Finds the key \p key
652 The function searches the item with key equal to \p key and calls the functor \p f for item found.
653 The interface of \p Func functor is:
656 void operator()( value_type& item, Q& key );
659 where \p item is the item found, \p key is the <tt>find</tt> function argument.
661 The functor may change non-key fields of \p item. Note that the functor is only guarantee
662 that \p item cannot be disposed during functor is executing.
663 The functor does not serialize simultaneous access to the set's \p item. If such access is
664 possible you must provide your own synchronization schema on item level to exclude unsafe item modifications.
666 The \p key argument is non-const since it can be used as \p f functor destination i.e., the functor
667 can modify both arguments.
669 Note the hash functor specified for class \p Traits template parameter
670 should accept a parameter of type \p Q that may be not the same as \p value_type.
672 The function returns \p true if \p key is found, \p false otherwise.
674 template <typename Q, typename Func>
675 bool find( Q& key, Func f )
677 return bucket( key ).find( key, f );
680 template <typename Q, typename Func>
681 bool find( Q const& key, Func f )
683 return bucket( key ).find( key, f );
687 /// Finds \p key and returns iterator pointed to the item found (only for \p IterableList)
689 If \p key is not found the function returns \p end().
691 @note This function is supported only for the set based on \p IterableList
693 template <typename Q>
694 #ifdef CDS_DOXYGEN_INVOKED
697 typename std::enable_if< std::is_same<Q,Q>::value && is_iterable_list< ordered_list >::value, iterator >::type
701 internal_bucket_type& b = bucket( key );
702 typename internal_bucket_type::iterator it = b.find( key );
705 return iterator( it, &b, bucket_end());
708 template <typename Q>
709 typename std::enable_if< std::is_same<Q, Q>::value && is_iterable_list< ordered_list >::value, iterator >::type
712 internal_bucket_type& b = bucket( key );
713 typename internal_bucket_type::iterator it = b.find( key );
716 return iterator( it, &b, bucket_end());
720 /// Finds the key \p key using \p pred predicate for searching
722 The function is an analog of \p find(Q&, Func) but \p pred is used for key comparing.
723 \p Less functor has the interface like \p std::less.
724 \p Less must imply the same element order as the comparator used for building the set.
726 template <typename Q, typename Less, typename Func>
727 bool find_with( Q& key, Less pred, Func f )
729 return bucket( key ).find_with( key, pred, f );
732 template <typename Q, typename Less, typename Func>
733 bool find_with( Q const& key, Less pred, Func f )
735 return bucket( key ).find_with( key, pred, f );
739 /// Finds \p key using \p pred predicate and returns iterator pointed to the item found (only for \p IterableList)
741 The function is an analog of \p find(Q&) but \p pred is used for key comparing.
742 \p Less functor has the interface like \p std::less.
743 \p pred must imply the same element order as the comparator used for building the set.
745 If \p key is not found the function returns \p end().
747 @note This function is supported only for the set based on \p IterableList
749 template <typename Q, typename Less>
750 #ifdef CDS_DOXYGEN_INVOKED
753 typename std::enable_if< std::is_same<Q, Q>::value && is_iterable_list< ordered_list >::value, iterator >::type
755 find_with( Q& key, Less pred )
757 internal_bucket_type& b = bucket( key );
758 typename internal_bucket_type::iterator it = b.find_with( key, pred );
761 return iterator( it, &b, bucket_end());
764 template <typename Q, typename Less>
765 typename std::enable_if< std::is_same<Q, Q>::value && is_iterable_list< ordered_list >::value, iterator >::type
766 find_with( Q const& key, Less pred )
768 internal_bucket_type& b = bucket( key );
769 typename internal_bucket_type::iterator it = b.find_with( key, pred );
772 return iterator( it, &b, bucket_end());
776 /// Checks whether the set contains \p key
778 The function searches the item with key equal to \p key
779 and returns \p true if the key is found, and \p false otherwise.
781 Note the hash functor specified for class \p Traits template parameter
782 should accept a parameter of type \p Q that can be not the same as \p value_type.
784 template <typename Q>
785 bool contains( Q const& key )
787 return bucket( key ).contains( key );
790 /// Checks whether the set contains \p key using \p pred predicate for searching
792 The function is an analog of <tt>contains( key )</tt> but \p pred is used for key comparing.
793 \p Less functor has the interface like \p std::less.
794 \p Less must imply the same element order as the comparator used for building the set.
796 template <typename Q, typename Less>
797 bool contains( Q const& key, Less pred )
799 return bucket( key ).contains( key, pred );
802 /// Finds the key \p key and return the item found
803 /** \anchor cds_nonintrusive_MichaelHashSet_hp_get
804 The function searches the item with key equal to \p key
805 and returns the guarded pointer to the item found.
806 If \p key is not found the functin returns an empty guarded pointer.
808 @note Each \p guarded_ptr object uses one GC's guard which can be limited resource.
812 typedef cds::container::MichaeHashSet< your_template_params > michael_set;
816 typename michael_set::guarded_ptr gp( theSet.get( 5 ));
821 // Destructor of guarded_ptr releases internal HP guard
825 Note the compare functor specified for \p OrderedList template parameter
826 should accept a parameter of type \p Q that can be not the same as \p value_type.
828 template <typename Q>
829 guarded_ptr get( Q const& key )
831 return bucket( key ).get( key );
834 /// Finds the key \p key and return the item found
836 The function is an analog of \ref cds_nonintrusive_MichaelHashSet_hp_get "get( Q const&)"
837 but \p pred is used for comparing the keys.
839 \p Less functor has the semantics like \p std::less but should take arguments of type \ref value_type and \p Q
841 \p pred must imply the same element order as the comparator used for building the set.
843 template <typename Q, typename Less>
844 guarded_ptr get_with( Q const& key, Less pred )
846 return bucket( key ).get_with( key, pred );
849 /// Clears the set (non-atomic)
851 The function erases all items from the set.
853 The function is not atomic. It cleans up each bucket and then resets the item counter to zero.
854 If there are a thread that performs insertion while \p clear is working the result is undefined in general case:
855 <tt> empty() </tt> may return \p true but the set may contain item(s).
856 Therefore, \p clear may be used only for debugging purposes.
860 for ( size_t i = 0; i < bucket_count(); ++i )
861 m_Buckets[i].clear();
862 m_ItemCounter.reset();
865 /// Checks if the set is empty
867 @warning If you use \p atomicity::empty_item_counter in \p traits::item_counter,
868 the function always returns \p true.
875 /// Returns item count in the set
877 @warning If you use \p atomicity::empty_item_counter in \p traits::item_counter,
878 the function always returns 0.
882 return m_ItemCounter;
885 /// Returns const reference to internal statistics
886 stat const& statistics() const
891 /// Returns the size of hash table
893 Since MichaelHashSet cannot dynamically extend the hash table size,
894 the value returned is an constant depending on object initialization parameters;
895 see MichaelHashSet::MichaelHashSet for explanation.
897 size_t bucket_count() const
899 return m_nHashBitmask + 1;
904 /// Calculates hash value of \p key
905 template <typename Q>
906 size_t hash_value( Q const& key ) const
908 return m_HashFunctor( key ) & m_nHashBitmask;
911 /// Returns the bucket (ordered list) for \p key
912 template <typename Q>
913 internal_bucket_type& bucket( Q const& key )
915 return m_Buckets[ hash_value( key ) ];
917 template <typename Q>
918 internal_bucket_type const& bucket( Q const& key ) const
920 return m_Buckets[hash_value( key )];
926 internal_bucket_type* bucket_begin() const
931 internal_bucket_type* bucket_end() const
933 return m_Buckets + bucket_count();
936 const_iterator get_const_begin() const
938 return const_iterator( bucket_begin()->cbegin(), bucket_begin(), bucket_end());
940 const_iterator get_const_end() const
942 return const_iterator(( bucket_end() -1 )->cend(), bucket_end() - 1, bucket_end());
945 template <typename Stat>
946 typename std::enable_if< Stat::empty >::type construct_bucket( internal_bucket_type* bucket )
948 new (bucket) internal_bucket_type;
951 template <typename Stat>
952 typename std::enable_if< !Stat::empty >::type construct_bucket( internal_bucket_type* bucket )
954 new (bucket) internal_bucket_type( m_Stat );
957 template <typename List, typename... Args>
958 typename std::enable_if< !is_iterable_list<List>::value, bool>::type
959 bucket_emplace( Args&&... args )
961 class list_accessor: public List
964 using List::alloc_node;
965 using List::node_to_value;
966 using List::insert_node;
969 auto pNode = list_accessor::alloc_node( std::forward<Args>( args )... );
970 assert( pNode != nullptr );
971 return static_cast<list_accessor&>( bucket( list_accessor::node_to_value( *pNode ))).insert_node( pNode );
974 template <typename List, typename... Args>
975 typename std::enable_if< is_iterable_list<List>::value, bool>::type
976 bucket_emplace( Args&&... args )
978 class list_accessor: public List
981 using List::alloc_data;
982 using List::insert_node;
985 auto pData = list_accessor::alloc_data( std::forward<Args>( args )... );
986 assert( pData != nullptr );
987 return static_cast<list_accessor&>( bucket( *pData )).insert_node( pData );
992 }} // namespace cds::container
994 #endif // ifndef CDSLIB_CONTAINER_MICHAEL_SET_H