TSan exam: SplitList
[libcds.git] / cds / intrusive / split_list_rcu.h
1 //$$CDS-header$$
2
3 #ifndef CDSLIB_INTRUSIVE_SPLIT_LIST_RCU_H
4 #define CDSLIB_INTRUSIVE_SPLIT_LIST_RCU_H
5
6 #include <limits>
7
8 #include <cds/intrusive/details/split_list_base.h>
9 #include <cds/details/binary_functor_wrapper.h>
10
11 namespace cds { namespace intrusive {
12
13     /// Split-ordered list RCU specialization
14     /** @ingroup cds_intrusive_map
15         \anchor cds_intrusive_SplitListSet_rcu
16
17         Hash table implementation based on split-ordered list algorithm discovered by Ori Shalev and Nir Shavit, see
18         - [2003] Ori Shalev, Nir Shavit "Split-Ordered Lists - Lock-free Resizable Hash Tables"
19         - [2008] Nir Shavit "The Art of Multiprocessor Programming"
20
21         The split-ordered list is a lock-free implementation of an extensible unbounded hash table. It uses original
22         recursive split-ordering algorithm discovered by Ori Shalev and Nir Shavit that allows to split buckets
23         without moving an item on resizing, see \ref cds_SplitList_algo_desc "short algo description".
24
25         <b>Implementation</b>
26
27         Template parameters are:
28         - \p RCU - one of \ref cds_urcu_gc "RCU type"
29         - \p OrderedList - ordered list implementation used as bucket for hash set, for example, MichaelList, LazyList.
30             The intrusive ordered list implementation specifies the type \p T stored in the hash-set,
31             the comparing functor for the type \p T and other features specific for the ordered list.
32         - \p Traits - set traits, default isd \p split_list::traits.
33             Instead of defining \p Traits struct you may use option-based syntax with \p split_list::make_traits metafunction.
34
35         @note About reqired features of hash functor see \ref cds_SplitList_hash_functor "SplitList general description".
36
37         \par How to use
38         Before including <tt><cds/intrusive/split_list_rcu.h></tt> you should include appropriate RCU header file,
39         see \ref cds_urcu_gc "RCU type" for list of existing RCU class and corresponding header files.
40         For example, for \ref cds_urcu_general_buffered_gc "general-purpose buffered RCU" and
41         MichaelList-based split-list you should include:
42         \code
43         #include <cds/urcu/general_buffered.h>
44         #include <cds/intrusive/michael_list_rcu.h>
45         #include <cds/intrusive/split_list_rcu.h>
46
47         // Declare Michael's list for type Foo and default traits:
48         typedef cds::intrusive::MichaelList< cds::urcu::gc< cds::urcu::general_buffered<> >, Foo > rcu_michael_list;
49
50         // Declare split-list based on rcu_michael_list
51         typedef cds::intrusive::SplitListSet< cds::urcu::gc< cds::urcu::general_buffered<> >, rcu_michael_list > rcu_split_list;
52         \endcode
53
54     */
55     template <
56         class RCU,
57         class OrderedList,
58 #   ifdef CDS_DOXYGEN_INVOKED
59         class Traits = split_list::traits
60 #   else
61         class Traits
62 #   endif
63     >
64     class SplitListSet< cds::urcu::gc< RCU >, OrderedList, Traits >
65     {
66     public:
67         typedef cds::urcu::gc< RCU > gc;   ///< RCU garbage collector
68         typedef Traits           traits;   ///< Traits template parameters
69
70         /// Hash functor for \ref value_type and all its derivatives that you use
71         typedef typename cds::opt::v::hash_selector< typename traits::hash >::type   hash;
72
73         //@cond
74         typedef cds::intrusive::split_list::implementation_tag implementation_tag;
75         //@endcond
76
77     protected:
78         //@cond
79         typedef split_list::details::rebind_list_traits<OrderedList, traits> wrapped_ordered_list;
80         //@endcond
81
82     public:
83 #   ifdef CDS_DOXYGEN_INVOKED
84         typedef OrderedList         ordered_list;   ///< type of ordered list used as base for split-list
85 #   else
86         typedef typename wrapped_ordered_list::result    ordered_list;
87 #   endif
88         typedef typename ordered_list::value_type     value_type;     ///< type of value stored in the split-list
89         typedef typename ordered_list::key_comparator key_comparator; ///< key compare functor
90         typedef typename ordered_list::disposer       disposer;       ///< Node disposer functor
91         typedef typename ordered_list::rcu_lock       rcu_lock;       ///< RCU scoped lock
92         typedef typename ordered_list::exempt_ptr     exempt_ptr;     ///< pointer to extracted node
93         /// Group of \p extract_xxx functions require external locking if underlying ordered list requires that
94         static CDS_CONSTEXPR const bool c_bExtractLockExternal = ordered_list::c_bExtractLockExternal;
95
96         typedef typename traits::item_counter item_counter; ///< Item counter type
97         typedef typename traits::back_off     back_off;     ///< back-off strategy for spinning
98         typedef typename traits::memory_model memory_model; ///< Memory ordering. See cds::opt::memory_model option
99         typedef typename traits::stat         stat;         ///< Internal statistics
100
101     protected:
102         typedef typename ordered_list::node_type    list_node_type;  ///< Node type as declared in ordered list
103         typedef split_list::node<list_node_type>    node_type;       ///< split-list node type
104         typedef node_type                           dummy_node_type; ///< dummy node type
105
106         /// Split-list node traits
107         /**
108             This traits is intended for converting between underlying ordered list node type \ref list_node_type
109             and split-list node type \ref node_type
110         */
111         typedef split_list::node_traits<typename ordered_list::node_traits>  node_traits;
112
113         //@cond
114         /// Bucket table implementation
115         typedef typename split_list::details::bucket_table_selector<
116             traits::dynamic_bucket_table
117             , gc
118             , dummy_node_type
119             , opt::allocator< typename traits::allocator >
120             , opt::memory_model< memory_model >
121         >::type bucket_table;
122
123         //@endcond
124
125     protected:
126         //@cond
127         /// Ordered list wrapper to access protected members of OrderedList
128         class ordered_list_wrapper: public ordered_list
129         {
130             typedef ordered_list base_class;
131             typedef typename base_class::auxiliary_head       bucket_head_type;
132
133         public:
134             bool insert_at( dummy_node_type * pHead, value_type& val )
135             {
136                 assert( pHead != nullptr );
137                 bucket_head_type h(pHead);
138                 return base_class::insert_at( h, val );
139             }
140
141             template <typename Func>
142             bool insert_at( dummy_node_type * pHead, value_type& val, Func f )
143             {
144                 assert( pHead != nullptr );
145                 bucket_head_type h(pHead);
146                 return base_class::insert_at( h, val, f );
147             }
148
149             template <typename Func>
150             std::pair<bool, bool> ensure_at( dummy_node_type * pHead, value_type& val, Func func )
151             {
152                 assert( pHead != nullptr );
153                 bucket_head_type h(pHead);
154                 return base_class::ensure_at( h, val, func );
155             }
156
157             bool unlink_at( dummy_node_type * pHead, value_type& val )
158             {
159                 assert( pHead != nullptr );
160                 bucket_head_type h(pHead);
161                 return base_class::unlink_at( h, val );
162             }
163
164             template <typename Q, typename Compare, typename Func>
165             bool erase_at( dummy_node_type * pHead, split_list::details::search_value_type<Q> const& val, Compare cmp, Func f )
166             {
167                 assert( pHead != nullptr );
168                 bucket_head_type h(pHead);
169                 return base_class::erase_at( h, val, cmp, f );
170             }
171
172             template <typename Q, typename Compare>
173             bool erase_at( dummy_node_type * pHead, split_list::details::search_value_type<Q> const& val, Compare cmp )
174             {
175                 assert( pHead != nullptr );
176                 bucket_head_type h(pHead);
177                 return base_class::erase_at( h, val, cmp );
178             }
179
180             template <typename Q, typename Compare>
181             value_type * extract_at( dummy_node_type * pHead, split_list::details::search_value_type<Q>& val, Compare cmp )
182             {
183                 assert( pHead != nullptr );
184                 bucket_head_type h(pHead);
185                 return base_class::extract_at( h, val, cmp );
186             }
187
188             template <typename Q, typename Compare, typename Func>
189             bool find_at( dummy_node_type * pHead, split_list::details::search_value_type<Q>& val, Compare cmp, Func f ) const
190             {
191                 assert( pHead != nullptr );
192                 bucket_head_type h(pHead);
193                 return base_class::find_at( h, val, cmp, f );
194             }
195
196             template <typename Q, typename Compare>
197             bool find_at( dummy_node_type * pHead, split_list::details::search_value_type<Q> const & val, Compare cmp ) const
198             {
199                 assert( pHead != nullptr );
200                 bucket_head_type h(pHead);
201                 return base_class::find_at( h, val, cmp );
202             }
203
204             template <typename Q, typename Compare>
205             value_type * get_at( dummy_node_type * pHead, split_list::details::search_value_type<Q>& val, Compare cmp ) const
206             {
207                 assert( pHead != nullptr );
208                 bucket_head_type h(pHead);
209                 return base_class::get_at( h, val, cmp );
210             }
211
212             bool insert_aux_node( dummy_node_type * pNode )
213             {
214                 return base_class::insert_aux_node( pNode );
215             }
216             bool insert_aux_node( dummy_node_type * pHead, dummy_node_type * pNode )
217             {
218                 bucket_head_type h(pHead);
219                 return base_class::insert_aux_node( h, pNode );
220             }
221         };
222
223         template <typename Less>
224         struct less_wrapper: public cds::opt::details::make_comparator_from_less<Less>
225         {
226             typedef cds::opt::details::make_comparator_from_less<Less> base_wrapper;
227
228             template <typename Q1, typename Q2>
229             int operator()( split_list::details::search_value_type<Q1> const& v1, Q2 const& v2 ) const
230             {
231                 return base_wrapper::operator()( v1.val, v2 );
232             }
233
234             template <typename Q1, typename Q2>
235             int operator()( Q1 const& v1, split_list::details::search_value_type<Q2> const& v2 ) const
236             {
237                 return base_wrapper::operator()( v1, v2.val );
238             }
239         };
240         //@endcond
241
242     protected:
243         ordered_list_wrapper    m_List;             ///< Ordered list containing split-list items
244         bucket_table            m_Buckets;          ///< bucket table
245         atomics::atomic<size_t> m_nBucketCountLog2; ///< log2( current bucket count )
246         atomics::atomic<size_t> m_nMaxItemCount;    ///< number of items container can hold, before we have to resize
247         item_counter            m_ItemCounter;      ///< Item counter
248         hash                    m_HashFunctor;      ///< Hash functor
249         stat                    m_Stat;             ///< Internal stattistics accumulator
250
251     protected:
252         //@cond
253         typedef cds::details::Allocator< dummy_node_type, typename traits::allocator >   dummy_node_allocator;
254
255         dummy_node_type * alloc_dummy_node( size_t nHash )
256         {
257             m_Stat.onHeadNodeAllocated();
258             return dummy_node_allocator().New( nHash );
259         }
260         void free_dummy_node( dummy_node_type * p )
261         {
262             dummy_node_allocator().Delete( p );
263             m_Stat.onHeadNodeFreed();
264         }
265
266         /// Calculates hash value of \p key
267         template <typename Q>
268         size_t hash_value( Q const& key ) const
269         {
270             return m_HashFunctor( key );
271         }
272
273         size_t bucket_no( size_t nHash ) const
274         {
275             return nHash & ( (1 << m_nBucketCountLog2.load(memory_model::memory_order_relaxed)) - 1 );
276         }
277
278         static size_t parent_bucket( size_t nBucket )
279         {
280             assert( nBucket > 0 );
281             return nBucket & ~( 1 << bitop::MSBnz( nBucket ) );
282         }
283
284         dummy_node_type * init_bucket( size_t nBucket )
285         {
286             assert( nBucket > 0 );
287             size_t nParent = parent_bucket( nBucket );
288
289             dummy_node_type * pParentBucket = m_Buckets.bucket( nParent );
290             if ( pParentBucket == nullptr ) {
291                 pParentBucket = init_bucket( nParent );
292                 m_Stat.onRecursiveInitBucket();
293             }
294
295             assert( pParentBucket != nullptr );
296
297             // Allocate a dummy node for new bucket
298             {
299                 dummy_node_type * pBucket = alloc_dummy_node( split_list::dummy_hash( nBucket ) );
300                 if ( m_List.insert_aux_node( pParentBucket, pBucket ) ) {
301                     m_Buckets.bucket( nBucket, pBucket );
302                     m_Stat.onNewBucket();
303                     return pBucket;
304                 }
305                 free_dummy_node( pBucket );
306             }
307
308             // Another thread set the bucket. Wait while it done
309
310             // In this point, we must wait while nBucket is empty.
311             // The compiler can decide that waiting loop can be "optimized" (stripped)
312             // To prevent this situation, we use waiting on volatile bucket_head_ptr pointer.
313             //
314             m_Stat.onBucketInitContenton();
315             back_off bkoff;
316             while ( true ) {
317                 dummy_node_type volatile * p = m_Buckets.bucket( nBucket );
318                 if ( p != nullptr )
319                     return const_cast<dummy_node_type *>( p );
320                 bkoff();
321                 m_Stat.onBusyWaitBucketInit();
322             }
323         }
324
325         dummy_node_type * get_bucket( size_t nHash )
326         {
327             size_t nBucket = bucket_no( nHash );
328
329             dummy_node_type * pHead = m_Buckets.bucket( nBucket );
330             if ( pHead == nullptr )
331                 pHead = init_bucket( nBucket );
332
333             assert( pHead->is_dummy() );
334
335             return pHead;
336         }
337
338         void init()
339         {
340             // GC and OrderedList::gc must be the same
341             static_assert( std::is_same<gc, typename ordered_list::gc>::value, "GC and OrderedList::gc must be the same");
342
343             // atomicity::empty_item_counter is not allowed as a item counter
344             static_assert( !std::is_same<item_counter, cds::atomicity::empty_item_counter>::value,
345                            "cds::atomicity::empty_item_counter is not allowed as a item counter");
346
347             // Initialize bucket 0
348             dummy_node_type * pNode = alloc_dummy_node( 0 /*split_list::dummy_hash(0)*/ );
349
350             // insert_aux_node cannot return false for empty list
351             CDS_VERIFY( m_List.insert_aux_node( pNode ));
352
353             m_Buckets.bucket( 0, pNode );
354         }
355
356         static size_t max_item_count( size_t nBucketCount, size_t nLoadFactor )
357         {
358             return nBucketCount * nLoadFactor;
359         }
360
361         void inc_item_count()
362         {
363             size_t nMaxCount = m_nMaxItemCount.load(memory_model::memory_order_relaxed);
364             if ( ++m_ItemCounter <= nMaxCount )
365                 return;
366
367             size_t sz = m_nBucketCountLog2.load(memory_model::memory_order_relaxed);
368             const size_t nBucketCount = static_cast<size_t>(1) << sz;
369             if ( nBucketCount < m_Buckets.capacity() ) {
370                 // we may grow the bucket table
371                 const size_t nLoadFactor = m_Buckets.load_factor();
372                 if ( nMaxCount < max_item_count( nBucketCount, nLoadFactor ))
373                     return; // someone already have updated m_nBucketCountLog2, so stop here
374
375                 m_nMaxItemCount.compare_exchange_strong( nMaxCount, max_item_count( nBucketCount << 1, nLoadFactor ), 
376                                                          memory_model::memory_order_relaxed, atomics::memory_order_relaxed );
377                 m_nBucketCountLog2.compare_exchange_strong( sz, sz + 1, memory_model::memory_order_relaxed, atomics::memory_order_relaxed );
378             }
379             else
380                 m_nMaxItemCount.store( std::numeric_limits<size_t>::max(), memory_model::memory_order_relaxed );
381         }
382
383         template <typename Q, typename Compare, typename Func>
384         bool find_( Q& val, Compare cmp, Func f )
385         {
386             size_t nHash = hash_value( val );
387             split_list::details::search_value_type<Q>  sv( val, split_list::regular_hash( nHash ));
388             dummy_node_type * pHead = get_bucket( nHash );
389             assert( pHead != nullptr );
390
391             return m_Stat.onFind( m_List.find_at( pHead, sv, cmp,
392                 [&f](value_type& item, split_list::details::search_value_type<Q>& val){ f(item, val.val ); }));
393         }
394
395         template <typename Q, typename Compare>
396         bool find_value( Q const& val, Compare cmp )
397         {
398             size_t nHash = hash_value( val );
399             split_list::details::search_value_type<Q const>  sv( val, split_list::regular_hash( nHash ));
400             dummy_node_type * pHead = get_bucket( nHash );
401             assert( pHead != nullptr );
402
403             return m_Stat.onFind( m_List.find_at( pHead, sv, cmp ));
404         }
405
406         template <typename Q, typename Compare>
407         value_type * get_( Q const& val, Compare cmp )
408         {
409             size_t nHash = hash_value( val );
410             split_list::details::search_value_type<Q const>  sv( val, split_list::regular_hash( nHash ));
411             dummy_node_type * pHead = get_bucket( nHash );
412             assert( pHead != nullptr );
413
414             value_type * p = m_List.get_at( pHead, sv, cmp );
415             m_Stat.onFind( p != nullptr );
416             return p;
417         }
418
419         template <typename Q, typename Compare>
420         value_type * extract_( Q const& val, Compare cmp )
421         {
422             size_t nHash = hash_value( val );
423             split_list::details::search_value_type<Q const>  sv( val, split_list::regular_hash( nHash ));
424             dummy_node_type * pHead = get_bucket( nHash );
425             assert( pHead != nullptr );
426
427             value_type * pNode = m_List.extract_at( pHead, sv, cmp );
428             if ( pNode ) {
429                 --m_ItemCounter;
430                 m_Stat.onExtractSuccess();
431             }
432             else
433                 m_Stat.onExtractFailed();
434             return pNode;
435         }
436
437         template <typename Q, typename Less>
438         value_type * extract_with_( Q const& val, Less pred )
439         {
440             CDS_UNUSED( pred );
441             return extract_( val, typename wrapped_ordered_list::template make_compare_from_less<Less>());
442         }
443
444         template <typename Q, typename Compare>
445         bool erase_( const Q& val, Compare cmp )
446         {
447             size_t nHash = hash_value( val );
448             split_list::details::search_value_type<Q const>  sv( val, split_list::regular_hash( nHash ));
449             dummy_node_type * pHead = get_bucket( nHash );
450             assert( pHead != nullptr );
451
452             if ( m_List.erase_at( pHead, sv, cmp ) ) {
453                 --m_ItemCounter;
454                 m_Stat.onEraseSuccess();
455                 return true;
456             }
457             m_Stat.onEraseFailed();
458             return false;
459         }
460
461         template <typename Q, typename Compare, typename Func>
462         bool erase_( Q const& val, Compare cmp, Func f )
463         {
464             size_t nHash = hash_value( val );
465             split_list::details::search_value_type<Q const>  sv( val, split_list::regular_hash( nHash ));
466             dummy_node_type * pHead = get_bucket( nHash );
467             assert( pHead != nullptr );
468
469             if ( m_List.erase_at( pHead, sv, cmp, f )) {
470                 --m_ItemCounter;
471                 m_Stat.onEraseSuccess();
472                 return true;
473             }
474             m_Stat.onEraseFailed();
475             return false;
476         }
477
478         //@endcond
479
480     public:
481         /// Initialize split-ordered list of default capacity
482         /**
483             The default capacity is defined in bucket table constructor.
484             See split_list::expandable_bucket_table, split_list::static_ducket_table
485             which selects by split_list::dynamic_bucket_table option.
486         */
487         SplitListSet()
488             : m_nBucketCountLog2(1)
489             , m_nMaxItemCount( max_item_count(2, m_Buckets.load_factor()) )
490         {
491             init();
492         }
493
494         /// Initialize split-ordered list
495         SplitListSet(
496             size_t nItemCount           ///< estimate average of item count
497             , size_t nLoadFactor = 1    ///< load factor - average item count per bucket. Small integer up to 8, default is 1.
498             )
499             : m_Buckets( nItemCount, nLoadFactor )
500             , m_nBucketCountLog2(1)
501             , m_nMaxItemCount( max_item_count(2, m_Buckets.load_factor()) )
502         {
503             init();
504         }
505
506     public:
507         /// Inserts new node
508         /**
509             The function inserts \p val in the set if it does not contain
510             an item with key equal to \p val.
511
512             The function makes RCU lock internally.
513
514             Returns \p true if \p val is placed into the set, \p false otherwise.
515         */
516         bool insert( value_type& val )
517         {
518             size_t nHash = hash_value( val );
519             dummy_node_type * pHead = get_bucket( nHash );
520             assert( pHead != nullptr );
521
522             // TSan false positive: hash is read-only, will be ordered when we insert a node
523             CDS_TSAN_ANNOTATE_IGNORE_WRITES_BEGIN;
524             node_traits::to_node_ptr( val )->m_nHash = split_list::regular_hash( nHash );
525             CDS_TSAN_ANNOTATE_IGNORE_WRITES_END;
526
527             if ( m_List.insert_at( pHead, val )) {
528                 inc_item_count();
529                 m_Stat.onInsertSuccess();
530                 return true;
531             }
532             m_Stat.onInsertFailed();
533             return false;
534         }
535
536         /// Inserts new node
537         /**
538             This function is intended for derived non-intrusive containers.
539
540             The function allows to split creating of new item into two part:
541             - create item with key only
542             - insert new item into the set
543             - if inserting is success, calls  \p f functor to initialize value-field of \p val.
544
545             The functor signature is:
546             \code
547                 void func( value_type& val );
548             \endcode
549             where \p val is the item inserted.
550
551             The function makes RCU lock internally.
552
553             @warning For \ref cds_intrusive_MichaelList_rcu "MichaelList" as the bucket see \ref cds_intrusive_item_creating "insert item troubleshooting".
554             \ref cds_intrusive_LazyList_rcu "LazyList" provides exclusive access to inserted item and does not require any node-level
555             synchronization.
556             */
557         template <typename Func>
558         bool insert( value_type& val, Func f )
559         {
560             size_t nHash = hash_value( val );
561             dummy_node_type * pHead = get_bucket( nHash );
562             assert( pHead != nullptr );
563
564             node_traits::to_node_ptr( val )->m_nHash = split_list::regular_hash( nHash );
565
566             if ( m_List.insert_at( pHead, val, f )) {
567                 inc_item_count();
568                 m_Stat.onInsertSuccess();
569                 return true;
570             }
571             m_Stat.onInsertFailed();
572             return false;
573         }
574
575         /// Ensures that the \p val exists in the set
576         /**
577             The operation performs inserting or changing data with lock-free manner.
578
579             If the item \p val is not found in the set, then \p val is inserted into the set.
580             Otherwise, the functor \p func is called with item found.
581             The functor signature is:
582             \code
583                 void func( bool bNew, value_type& item, value_type& val );
584             \endcode
585             with arguments:
586             - \p bNew - \p true if the item has been inserted, \p false otherwise
587             - \p item - item of the set
588             - \p val - argument \p val passed into the \p ensure function
589             If new item has been inserted (i.e. \p bNew is \p true) then \p item and \p val arguments
590             refers to the same thing.
591
592             The function makes RCU lock internally.
593
594             Returns std::pair<bool, bool> where \p first is \p true if operation is successfull,
595             \p second is \p true if new item has been added or \p false if the item with \p key
596             already is in the set.
597
598             @warning For \ref cds_intrusive_MichaelList_rcu "MichaelList" as the bucket see \ref cds_intrusive_item_creating "insert item troubleshooting".
599             \ref cds_intrusive_LazyList_rcu "LazyList" provides exclusive access to inserted item and does not require any node-level
600             synchronization.
601             */
602         template <typename Func>
603         std::pair<bool, bool> ensure( value_type& val, Func func )
604         {
605             size_t nHash = hash_value( val );
606             dummy_node_type * pHead = get_bucket( nHash );
607             assert( pHead != nullptr );
608
609             node_traits::to_node_ptr( val )->m_nHash = split_list::regular_hash( nHash );
610
611             std::pair<bool, bool> bRet = m_List.ensure_at( pHead, val, func );
612             if ( bRet.first && bRet.second ) {
613                 inc_item_count();
614                 m_Stat.onEnsureNew();
615             }
616             else
617                 m_Stat.onEnsureExist();
618             return bRet;
619         }
620
621         /// Unlinks the item \p val from the set
622         /**
623             The function searches the item \p val in the set and unlinks it from the set
624             if it is found and is equal to \p val.
625
626             Difference between \ref erase and \p unlink functions: \p erase finds <i>a key</i>
627             and deletes the item found. \p unlink finds an item by key and deletes it
628             only if \p val is an item of that set, i.e. the pointer to item found
629             is equal to <tt> &val </tt>.
630
631             RCU \p synchronize method can be called, therefore, RCU should not be locked.
632
633             The function returns \p true if success and \p false otherwise.
634         */
635         bool unlink( value_type& val )
636         {
637             size_t nHash = hash_value( val );
638             dummy_node_type * pHead = get_bucket( nHash );
639             assert( pHead != nullptr );
640
641             if ( m_List.unlink_at( pHead, val ) ) {
642                 --m_ItemCounter;
643                 m_Stat.onEraseSuccess();
644                 return true;
645             }
646             m_Stat.onEraseFailed();
647             return false;
648         }
649
650         /// Deletes the item from the set
651         /** \anchor cds_intrusive_SplitListSet_rcu_erase
652             The function searches an item with key equal to \p key in the set,
653             unlinks it from the set, and returns \p true.
654             If the item with key equal to \p key is not found the function return \p false.
655
656             Difference between \ref erase and \p unlink functions: \p erase finds <i>a key</i>
657             and deletes the item found. \p unlink finds an item by key and deletes it
658             only if \p key is an item of that set, i.e. the pointer to item found
659             is equal to <tt> &key </tt>.
660
661             RCU \p synchronize method can be called, therefore, RCU should not be locked.
662
663             Note the hash functor should accept a parameter of type \p Q that can be not the same as \p value_type.
664         */
665         template <typename Q>
666         bool erase( Q const& key )
667         {
668             return erase_( key, key_comparator() );
669         }
670
671         /// Deletes the item from the set using \p pred for searching
672         /**
673             The function is an analog of \ref cds_intrusive_SplitListSet_rcu_erase "erase(Q const&)"
674             but \p cmp is used for key compare.
675             \p Less has the interface like \p std::less.
676             \p pred must imply the same element order as the comparator used for building the set.
677         */
678         template <typename Q, typename Less>
679         bool erase_with( Q const& key, Less pred )
680         {
681             CDS_UNUSED( pred );
682             return erase_( key, typename wrapped_ordered_list::template make_compare_from_less<Less>() );
683         }
684
685         /// Deletes the item from the set
686         /** \anchor cds_intrusive_SplitListSet_rcu_erase_func
687             The function searches an item with key equal to \p key in the set,
688             call \p f functor with item found, unlinks it from the set, and returns \p true.
689             The \ref disposer specified by \p OrderedList class template parameter is called
690             by garbage collector \p GC asynchronously.
691
692             The \p Func interface is
693             \code
694             struct functor {
695                 void operator()( value_type const& item );
696             };
697             \endcode
698
699             If the item with key equal to \p key is not found the function return \p false.
700
701             RCU \p synchronize method can be called, therefore, RCU should not be locked.
702
703             Note the hash functor should accept a parameter of type \p Q that can be not the same as \p value_type.
704         */
705         template <typename Q, typename Func>
706         bool erase( Q const& key, Func f )
707         {
708             return erase_( key, key_comparator(), f );
709         }
710
711         /// Deletes the item from the set using \p pred for searching
712         /**
713             The function is an analog of \ref cds_intrusive_SplitListSet_rcu_erase_func "erase(Q const&, Func)"
714             but \p cmp is used for key compare.
715             \p Less has the interface like \p std::less.
716             \p pred must imply the same element order as the comparator used for building the set.
717         */
718         template <typename Q, typename Less, typename Func>
719         bool erase_with( Q const& key, Less pred, Func f )
720         {
721             CDS_UNUSED( pred );
722             return erase_( key, typename wrapped_ordered_list::template make_compare_from_less<Less>(), f );
723         }
724
725         /// Extracts an item from the set
726         /** \anchor cds_intrusive_SplitListSet_rcu_extract
727             The function searches an item with key equal to \p key in the set,
728             unlinks it, and returns \ref cds::urcu::exempt_ptr "exempt_ptr" pointer to the item found.
729             If the item with the key equal to \p key is not found the function returns an empty \p exempt_ptr.
730
731             @note The function does NOT call RCU read-side lock or synchronization,
732             and does NOT dispose the item found. It just excludes the item from the set
733             and returns a pointer to item found.
734             You should lock RCU before calling of the function, and you should synchronize RCU
735             outside the RCU lock before reusing returned pointer.
736
737             \code
738             typedef cds::urcu::gc< general_buffered<> > rcu;
739             typedef cds::intrusive::MichaelList< rcu, Foo > rcu_michael_list;
740             typedef cds::intrusive::SplitListSet< rcu, rcu_michael_list, foo_traits > rcu_splitlist_set;
741
742             rcu_splitlist_set theSet;
743             // ...
744
745             rcu_splitlist_set::exempt_ptr p;
746             {
747                 // first, we should lock RCU
748                 rcu_splitlist_set::rcu_lock lock;
749
750                 // Now, you can apply extract function
751                 // Note that you must not delete the item found inside the RCU lock
752                 p = theList.extract( 10 );
753                 if ( p ) {
754                     // do something with p
755                     ...
756                 }
757             }
758
759             // We may safely release p here
760             // release() passes the pointer to RCU reclamation cycle:
761             // it invokes RCU retire_ptr function with the disposer you provided for rcu_michael_list.
762             p.release();
763             \endcode
764         */
765         template <typename Q>
766         exempt_ptr extract( Q const& key )
767         {
768             return exempt_ptr(extract_( key, key_comparator() ));
769         }
770
771         /// Extracts an item from the set using \p pred for searching
772         /**
773             The function is an analog of \p extract(Q const&) but \p pred is used for key compare.
774             \p Less functor has the interface like \p std::less.
775             \p pred must imply the same element order as the comparator used for building the set.
776         */
777         template <typename Q, typename Less>
778         exempt_ptr extract_with( Q const& key, Less pred )
779         {
780             return exempt_ptr( extract_with_( key, pred ));
781         }
782
783         /// Finds the key \p key
784         /** \anchor cds_intrusive_SplitListSet_rcu_find_func
785             The function searches the item with key equal to \p key and calls the functor \p f for item found.
786             The interface of \p Func functor is:
787             \code
788             struct functor {
789                 void operator()( value_type& item, Q& key );
790             };
791             \endcode
792             where \p item is the item found, \p key is the <tt>find</tt> function argument.
793
794             The functor can change non-key fields of \p item. Note that the functor is only guarantee
795             that \p item cannot be disposed during functor is executing.
796             The functor does not serialize simultaneous access to the set \p item. If such access is
797             possible you must provide your own synchronization schema on item level to exclude unsafe item modifications.
798
799             The \p key argument is non-const since it can be used as \p f functor destination i.e., the functor
800             can modify both arguments.
801
802             Note the hash functor specified for class \p Traits template parameter
803             should accept a parameter of type \p Q that can be not the same as \p value_type.
804
805             The function applies RCU lock internally.
806
807             The function returns \p true if \p key is found, \p false otherwise.
808         */
809         template <typename Q, typename Func>
810         bool find( Q& key, Func f )
811         {
812             return find_( key, key_comparator(), f );
813         }
814         //@cond
815         template <typename Q, typename Func>
816         bool find( Q const& key, Func f )
817         {
818             return find_( key, key_comparator(), f );
819         }
820         //@endcond
821
822         /// Finds the key \p key with \p pred predicate for comparing
823         /**
824             The function is an analog of \ref cds_intrusive_SplitListSet_rcu_find_func "find(Q&, Func)"
825             but \p cmp is used for key compare.
826             \p Less has the interface like \p std::less.
827             \p cmp must imply the same element order as the comparator used for building the set.
828         */
829         template <typename Q, typename Less, typename Func>
830         bool find_with( Q& key, Less pred, Func f )
831         {
832             CDS_UNUSED( pred );
833             return find_( key, typename wrapped_ordered_list::template make_compare_from_less<Less>(), f );
834         }
835         //@cond
836         template <typename Q, typename Less, typename Func>
837         bool find_with( Q const& key, Less pred, Func f )
838         {
839             CDS_UNUSED( pred );
840             return find_( key, typename wrapped_ordered_list::template make_compare_from_less<Less>(), f );
841         }
842         //@endcond
843
844         /// Finds the key \p key
845         /** \anchor cds_intrusive_SplitListSet_rcu_find_val
846             The function searches the item with key equal to \p key
847             and returns \p true if \p key found or \p false otherwise.
848         */
849         template <typename Q>
850         bool find( Q const& key )
851         {
852             return find_value( key, key_comparator() );
853         }
854
855         /// Finds the key \p key with \p pred predicate for comparing
856         /**
857             The function is an analog of \ref cds_intrusive_SplitListSet_rcu_find_val "find(Q const&)"
858             but \p cmp is used for key compare.
859             \p Less has the interface like \p std::less.
860             \p pred must imply the same element order as the comparator used for building the set.
861         */
862         template <typename Q, typename Less>
863         bool find_with( Q const& key, Less pred )
864         {
865             CDS_UNUSED( pred );
866             return find_value( key, typename wrapped_ordered_list::template make_compare_from_less<Less>() );
867         }
868
869         /// Finds the key \p key and return the item found
870         /** \anchor cds_intrusive_SplitListSet_rcu_get
871             The function searches the item with key equal to \p key and returns the pointer to item found.
872             If \p key is not found it returns \p nullptr.
873
874             Note the compare functor should accept a parameter of type \p Q that can be not the same as \p value_type.
875
876             RCU should be locked before call of this function.
877             Returned item is valid only while RCU is locked:
878             \code
879             cds::intrusive::SplitListSet< your_template_parameters > theSet;
880             // ...
881             {
882                 // Lock RCU
883                 hash_set::rcu_lock lock;
884
885                 foo * pVal = theSet.get( 5 );
886                 if ( pVal ) {
887                     // Deal with pVal
888                     //...
889                 }
890                 // Unlock RCU by rcu_lock destructor
891                 // pVal can be retired by disposer at any time after RCU has been unlocked
892             }
893             \endcode
894         */
895         template <typename Q>
896         value_type * get( Q const& key )
897         {
898             return get_( key, key_comparator() );
899         }
900
901         /// Finds the key \p key and return the item found
902         /**
903             The function is an analog of \ref cds_intrusive_SplitListSet_rcu_get "get(Q const&)"
904             but \p pred is used for comparing the keys.
905
906             \p Less functor has the semantics like \p std::less but should take arguments of type \ref value_type and \p Q
907             in any order.
908             \p pred must imply the same element order as the comparator used for building the set.
909         */
910         template <typename Q, typename Less>
911         value_type * get_with( Q const& key, Less pred )
912         {
913             CDS_UNUSED( pred );
914             return get_( key, typename wrapped_ordered_list::template make_compare_from_less<Less>());
915         }
916
917
918         /// Returns item count in the set
919         size_t size() const
920         {
921             return m_ItemCounter;
922         }
923
924         /// Checks if the set is empty
925         /**
926             Emptiness is checked by item counting: if item count is zero then the set is empty.
927             Thus, the correct item counting feature is an important part of split-list set implementation.
928         */
929         bool empty() const
930         {
931             return size() == 0;
932         }
933
934         /// Clears the set (not atomic)
935         void clear()
936         {
937             iterator it = begin();
938             while ( it != end() ) {
939                 iterator i(it);
940                 ++i;
941                 unlink( *it );
942                 it = i;
943             }
944         }
945
946         /// Returns internal statistics
947         stat const& statistics() const
948         {
949             return m_Stat;
950         }
951
952     protected:
953         //@cond
954         template <bool IsConst>
955         class iterator_type
956             :public split_list::details::iterator_type<node_traits, ordered_list, IsConst>
957         {
958             typedef split_list::details::iterator_type<node_traits, ordered_list, IsConst> iterator_base_class;
959             typedef typename iterator_base_class::list_iterator list_iterator;
960         public:
961             iterator_type()
962                 : iterator_base_class()
963             {}
964
965             iterator_type( iterator_type const& src )
966                 : iterator_base_class( src )
967             {}
968
969             // This ctor should be protected...
970             iterator_type( list_iterator itCur, list_iterator itEnd )
971                 : iterator_base_class( itCur, itEnd )
972             {}
973         };
974         //@endcond
975     public:
976         /// Forward iterator
977         /**
978             The forward iterator for a split-list has some features:
979             - it has no post-increment operator
980             - it depends on iterator of underlying \p OrderedList
981             - The iterator cannot be moved across thread boundary since it may contain GC's guard that is thread-private GC data.
982             - Iterator ensures thread-safety even if you delete the item that iterator points to. However, in case of concurrent
983               deleting operations it is no guarantee that you iterate all item in the split-list.
984
985             Therefore, the use of iterators in concurrent environment is not good idea. Use the iterator on the concurrent container
986             for debug purpose only.
987         */
988         typedef iterator_type<false>    iterator;
989         /// Const forward iterator
990         /**
991             For iterator's features and requirements see \ref iterator
992         */
993         typedef iterator_type<true>     const_iterator;
994
995         /// Returns a forward iterator addressing the first element in a split-list
996         /**
997             For empty list \code begin() == end() \endcode
998         */
999         iterator begin()
1000         {
1001             return iterator( m_List.begin(), m_List.end() );
1002         }
1003
1004         /// Returns an iterator that addresses the location succeeding the last element in a split-list
1005         /**
1006             Do not use the value returned by <tt>end</tt> function to access any item.
1007
1008             The returned value can be used only to control reaching the end of the split-list.
1009             For empty list \code begin() == end() \endcode
1010         */
1011         iterator end()
1012         {
1013             return iterator( m_List.end(), m_List.end() );
1014         }
1015
1016         /// Returns a forward const iterator addressing the first element in a split-list
1017         const_iterator begin() const
1018         {
1019             return cbegin();
1020         }
1021         /// Returns a forward const iterator addressing the first element in a split-list
1022         const_iterator cbegin() const
1023         {
1024             return const_iterator( m_List.cbegin(), m_List.cend() );
1025         }
1026
1027         /// Returns an const iterator that addresses the location succeeding the last element in a split-list
1028         const_iterator end() const
1029         {
1030             return cend();
1031         }
1032         /// Returns an const iterator that addresses the location succeeding the last element in a split-list
1033         const_iterator cend() const
1034         {
1035             return const_iterator( m_List.cend(), m_List.cend() );
1036         }
1037
1038     };
1039
1040 }}  // namespace cds::intrusive
1041
1042 #endif // #ifndef CDSLIB_INTRUSIVE_SPLIT_LIST_RCU_H