Removed unused vars
[libcds.git] / cds / container / split_list_set_rcu.h
1 //$$CDS-header$$
2
3 #ifndef __CDS_CONTAINER_SPLIT_LIST_SET_RCU_H
4 #define __CDS_CONTAINER_SPLIT_LIST_SET_RCU_H
5
6 #include <cds/intrusive/split_list_rcu.h>
7 #include <cds/container/details/make_split_list_set.h>
8
9 namespace cds { namespace container {
10
11     /// Split-ordered list set (template specialization for \ref cds_urcu_desc "RCU")
12     /** @ingroup cds_nonintrusive_set
13         \anchor cds_nonintrusive_SplitListSet_rcu
14
15         Hash table implementation based on split-ordered list algorithm discovered by Ori Shalev and Nir Shavit, see
16         - [2003] Ori Shalev, Nir Shavit "Split-Ordered Lists - Lock-free Resizable Hash Tables"
17         - [2008] Nir Shavit "The Art of Multiprocessor Programming"
18
19         See \p intrusive::SplitListSet for a brief description of the split-list algorithm.
20
21         Template parameters:
22         - \p RCU - one of \ref cds_urcu_gc "RCU type"
23         - \p T - type of the value to be stored in the split-list.
24         - \p Traits - type traits, default is \p split_list::traits. Instead of declaring \p split_list::traits -based
25             struct you can apply option-based notation with \p split_list::make_traits metafunction.
26
27         <b>Iterators</b>
28
29         The class supports a forward iterator (\ref iterator and \ref const_iterator).
30         The iteration is unordered.
31
32         You may iterate over split-list set items only under RCU lock.
33         Only in this case the iterator is thread-safe since
34         while RCU is locked any set's item cannot be reclaimed.
35
36         @warning The iterator object cannot be passed between threads
37
38         \warning Due to concurrent nature of skip-list set it is not guarantee that you can iterate
39         all elements in the set: any concurrent deletion can exclude the element
40         pointed by the iterator from the set, and your iteration can be terminated
41         before end of the set. Therefore, such iteration is more suitable for debugging purposes
42
43         The iterator class supports the following minimalistic interface:
44         \code
45         struct iterator {
46             // Default ctor
47             iterator();
48
49             // Copy ctor
50             iterator( iterator const& s);
51
52             value_type * operator ->() const;
53             value_type& operator *() const;
54
55             // Pre-increment
56             iterator& operator ++();
57
58             // Copy assignment
59             iterator& operator = (const iterator& src);
60
61             bool operator ==(iterator const& i ) const;
62             bool operator !=(iterator const& i ) const;
63         };
64         \endcode
65         Note, the iterator object returned by \p end(), \p cend() member functions points to \p nullptr and should not be dereferenced.
66
67         \par Usage
68
69         You should decide what garbage collector you want, and what ordered list you want to use. Split-ordered list
70         is an original data structure based on an ordered list. Suppose, you want construct split-list set based on \p cds::urcu::general_buffered<> GC
71         and \p LazyList as ordered list implementation. So, you beginning your program with following include:
72         \code
73         #include <cds/urcu/general_buffered.h>
74         #include <cds/container/lazy_list_rcu.h>
75         #include <cds/container/split_list_set_rcu.h>
76
77         namespace cc = cds::container;
78
79         // The data belonged to split-ordered list
80         sturuct foo {
81             int     nKey;   // key field
82             std::string strValue    ;   // value field
83         };
84         \endcode
85         The inclusion order is important:
86         - first, include one of \ref cds_urcu_gc "RCU implementation" (<tt>cds/urcu/general_buffered.h</tt> in our case)
87         - second, include file for ordered-list implementation (for this example, <tt>cds/container/lazy_list_rcu.h</tt>),
88         - then, the header for RCU-based split-list set <tt>cds/container/split_list_set_rcu.h</tt>.
89
90         Now, you should declare traits for split-list set. The main parts of traits are a hash functor for the set and a comparing functor for ordered list.
91         Note that we define several function in \p foo_hash and \p foo_less functors for different argument types since we want call our \p %SplitListSet
92         object by the key of type \p int and by the value of type \p foo.
93
94         The second attention: instead of using \p %LazyList in \p %SplitListSet traits we use \p cds::contaner::lazy_list_tag tag for the lazy list.
95         The split-list requires significant support from underlying ordered list class and it is not good idea to dive you
96         into deep implementation details of split-list and ordered list interrelations. The tag paradigm simplifies split-list interface.
97
98         \code
99         // foo hash functor
100         struct foo_hash {
101             size_t operator()( int key ) const { return std::hash( key ) ; }
102             size_t operator()( foo const& item ) const { return std::hash( item.nKey ) ; }
103         };
104
105         // foo comparator
106         struct foo_less {
107             bool operator()(int i, foo const& f ) const { return i < f.nKey ; }
108             bool operator()(foo const& f, int i ) const { return f.nKey < i ; }
109             bool operator()(foo const& f1, foo const& f2) const { return f1.nKey < f2.nKey; }
110         };
111
112         // SplitListSet traits
113         struct foo_set_traits: public cc::split_list::traits
114         {
115             typedef cc::lazy_list_tag   ordered_list    ;   // what type of ordered list we want to use
116             typedef foo_hash            hash            ;   // hash functor for our data stored in split-list set
117
118             // Type traits for our LazyList class
119             struct ordered_list_traits: public cc::lazy_list::traits
120             {
121                 typedef foo_less less   ;   // use our foo_less as comparator to order list nodes
122             };
123         };
124         \endcode
125
126         Now you are ready to declare our set class based on \p %SplitListSet:
127         \code
128         typedef cc::SplitListSet< cds::urcu::gc<cds::urcu::general_buffered<> >, foo, foo_set_traits > foo_set;
129         \endcode
130
131         You may use the modern option-based declaration instead of classic type-traits-based one:
132         \code
133         typedef cc:SplitListSet<
134             cds::urcu::gc<cds::urcu::general_buffered<> >   // RCU type used
135             ,foo                                            // type of data stored
136             ,cc::split_list::make_traits<      // metafunction to build split-list traits
137                 cc::split_list::ordered_list<cc::lazy_list_tag>     // tag for underlying ordered list implementation
138                 ,cc::opt::hash< foo_hash >              // hash functor
139                 ,cc::split_list::ordered_list_traits<   // ordered list traits
140                     cc::lazy_list::make_traits<         // metafunction to build lazy list traits
141                         cc::opt::less< foo_less >       // less-based compare functor
142                     >::type
143                 >
144             >::type
145         >  foo_set;
146         \endcode
147         In case of option-based declaration using \p split_list::make_traits metafunction
148         the struct \p foo_set_traits is not required.
149
150         Now, the set of type \p foo_set is ready to use in your program.
151
152         Note that in this example we show only mandatory \p traits parts, optional ones is the default and they are inherited
153         from \p container::split_list::traits.
154         There are many other options for deep tuning of the split-list and ordered-list containers.
155     */
156     template <
157         class RCU,
158         class T,
159 #ifdef CDS_DOXYGEN_INVOKED
160         class Traits = split_list::traits
161 #else
162         class Traits
163 #endif
164     >
165     class SplitListSet< cds::urcu::gc< RCU >, T, Traits >:
166 #ifdef CDS_DOXYGEN_INVOKED
167         protected intrusive::SplitListSet< cds::urcu::gc< RCU >, typename Traits::ordered_list, Traits >
168 #else
169         protected details::make_split_list_set< cds::urcu::gc< RCU >, T, typename Traits::ordered_list, split_list::details::wrap_set_traits<T, Traits> >::type
170 #endif
171     {
172     protected:
173         //@cond
174         typedef details::make_split_list_set< cds::urcu::gc< RCU >, T, typename Traits::ordered_list, split_list::details::wrap_set_traits<T, Traits> > maker;
175         typedef typename maker::type  base_class;
176         //@endcond
177
178     public:
179         typedef cds::urcu::gc< RCU >  gc; ///< RCU-based garbage collector
180         typedef T       value_type; ///< Type of value to be storedin the set
181         typedef Traits  traits;    ///< \p Traits template argument
182
183         typedef typename maker::ordered_list        ordered_list;   ///< Underlying ordered list class
184         typedef typename base_class::key_comparator key_comparator; ///< key compare functor
185
186         /// Hash functor for \ref value_type and all its derivatives that you use
187         typedef typename base_class::hash           hash;
188         typedef typename base_class::item_counter   item_counter; ///< Item counter type
189         typedef typename base_class::stat           stat; ///< Internal statistics
190
191         typedef typename base_class::rcu_lock      rcu_lock   ; ///< RCU scoped lock
192         /// Group of \p extract_xxx functions require external locking if underlying ordered list requires that
193         static CDS_CONSTEXPR const bool c_bExtractLockExternal = base_class::c_bExtractLockExternal;
194
195     protected:
196         //@cond
197         typedef typename maker::cxx_node_allocator    cxx_node_allocator;
198         typedef typename maker::node_type             node_type;
199         //@endcond
200
201     public:
202         /// pointer to extracted node
203         using exempt_ptr = cds::urcu::exempt_ptr< gc, node_type, value_type, typename maker::ordered_list_traits::disposer >;
204
205     protected:
206         //@cond
207         template <typename Q, typename Func>
208         bool find_( Q& val, Func f )
209         {
210             return base_class::find( val, [&f]( node_type& item, Q& val ) { f(item.m_Value, val) ; } );
211         }
212
213         template <typename Q, typename Less, typename Func>
214         bool find_with_( Q& val, Less pred, Func f )
215         {
216             CDS_UNUSED( pred );
217             return base_class::find_with( val, typename maker::template predicate_wrapper<Less>::type(),
218                 [&f]( node_type& item, Q& val ) { f(item.m_Value, val) ; } );
219         }
220
221         template <typename Q>
222         static node_type * alloc_node( Q const& v )
223         {
224             return cxx_node_allocator().New( v );
225         }
226
227         template <typename... Args>
228         static node_type * alloc_node( Args&&... args )
229         {
230             return cxx_node_allocator().MoveNew( std::forward<Args>(args)...);
231         }
232
233         static void free_node( node_type * pNode )
234         {
235             cxx_node_allocator().Delete( pNode );
236         }
237
238         struct node_disposer {
239             void operator()( node_type * pNode )
240             {
241                 free_node( pNode );
242             }
243         };
244         typedef std::unique_ptr< node_type, node_disposer >     scoped_node_ptr;
245
246         bool insert_node( node_type * pNode )
247         {
248             assert( pNode != nullptr );
249             scoped_node_ptr p(pNode);
250
251             if ( base_class::insert( *pNode ) ) {
252                 p.release();
253                 return true;
254             }
255
256             return false;
257         }
258         //@endcond
259
260     protected:
261         /// Forward iterator
262         /**
263             \p IsConst - constness boolean flag
264
265             The forward iterator for a split-list has the following features:
266             - it has no post-increment operator
267             - it depends on underlying ordered list iterator
268             - it is safe to iterate only inside RCU critical section
269             - deleting an item pointed by the iterator can cause to deadlock
270
271             Therefore, the use of iterators in concurrent environment is not good idea.
272             Use it for debug purpose only.
273         */
274         template <bool IsConst>
275         class iterator_type: protected base_class::template iterator_type<IsConst>
276         {
277             //@cond
278             typedef typename base_class::template iterator_type<IsConst> iterator_base_class;
279             friend class SplitListSet;
280             //@endcond
281         public:
282             /// Value pointer type (const for const iterator)
283             typedef typename cds::details::make_const_type<value_type, IsConst>::pointer   value_ptr;
284             /// Value reference type (const for const iterator)
285             typedef typename cds::details::make_const_type<value_type, IsConst>::reference value_ref;
286
287         public:
288             /// Default ctor
289             iterator_type()
290             {}
291
292             /// Copy ctor
293             iterator_type( iterator_type const& src )
294                 : iterator_base_class( src )
295             {}
296
297         protected:
298             //@cond
299             explicit iterator_type( iterator_base_class const& src )
300                 : iterator_base_class( src )
301             {}
302             //@endcond
303
304         public:
305             /// Dereference operator
306             value_ptr operator ->() const
307             {
308                 return &(iterator_base_class::operator->()->m_Value);
309             }
310
311             /// Dereference operator
312             value_ref operator *() const
313             {
314                 return iterator_base_class::operator*().m_Value;
315             }
316
317             /// Pre-increment
318             iterator_type& operator ++()
319             {
320                 iterator_base_class::operator++();
321                 return *this;
322             }
323
324             /// Assignment operator
325             iterator_type& operator = (iterator_type const& src)
326             {
327                 iterator_base_class::operator=(src);
328                 return *this;
329             }
330
331             /// Equality operator
332             template <bool C>
333             bool operator ==(iterator_type<C> const& i ) const
334             {
335                 return iterator_base_class::operator==(i);
336             }
337
338             /// Equality operator
339             template <bool C>
340             bool operator !=(iterator_type<C> const& i ) const
341             {
342                 return iterator_base_class::operator!=(i);
343             }
344         };
345
346     public:
347         /// Initializes split-ordered list of default capacity
348         /**
349             The default capacity is defined in bucket table constructor.
350             See \p intrusive::split_list::expandable_bucket_table, \p intrusive::split_list::static_bucket_table
351             which selects by \p container::split_list::dynamic_bucket_table option.
352         */
353         SplitListSet()
354             : base_class()
355         {}
356
357         /// Initializes split-ordered list
358         SplitListSet(
359             size_t nItemCount           ///< estimated average of item count
360             , size_t nLoadFactor = 1    ///< load factor - average item count per bucket. Small integer up to 8, default is 1.
361             )
362             : base_class( nItemCount, nLoadFactor )
363         {}
364
365     public:
366         typedef iterator_type<false>  iterator        ; ///< Forward iterator
367         typedef iterator_type<true>   const_iterator  ; ///< Forward const iterator
368
369         /// Returns a forward iterator addressing the first element in a set
370         /**
371             For empty set \code begin() == end() \endcode
372         */
373         iterator begin()
374         {
375             return iterator( base_class::begin() );
376         }
377
378         /// Returns an iterator that addresses the location succeeding the last element in a set
379         /**
380             Do not use the value returned by <tt>end</tt> function to access any item.
381             The returned value can be used only to control reaching the end of the set.
382             For empty set \code begin() == end() \endcode
383         */
384         iterator end()
385         {
386             return iterator( base_class::end() );
387         }
388
389         /// Returns a forward const iterator addressing the first element in a set
390         const_iterator begin() const
391         {
392             return cbegin();
393         }
394         /// Returns a forward const iterator addressing the first element in a set
395         const_iterator cbegin() const
396         {
397             return const_iterator( base_class::cbegin() );
398         }
399
400         /// Returns an const iterator that addresses the location succeeding the last element in a set
401         const_iterator end() const
402         {
403             return cend();
404         }
405         /// Returns an const iterator that addresses the location succeeding the last element in a set
406         const_iterator cend() const
407         {
408             return const_iterator( base_class::cend() );
409         }
410
411     public:
412         /// Inserts new node
413         /**
414             The function creates a node with copy of \p val value
415             and then inserts the node created into the set.
416
417             The type \p Q should contain as minimum the complete key for the node.
418             The object of \p value_type should be constructible from a value of type \p Q.
419             In trivial case, \p Q is equal to \p value_type.
420
421             The function applies RCU lock internally.
422
423             Returns \p true if \p val is inserted into the set, \p false otherwise.
424         */
425         template <typename Q>
426         bool insert( Q const& val )
427         {
428             return insert_node( alloc_node( val ) );
429         }
430
431         /// Inserts new node
432         /**
433             The function allows to split creating of new item into two part:
434             - create item with key only
435             - insert new item into the set
436             - if inserting is success, calls  \p f functor to initialize value-field of \p val.
437
438             The functor signature is:
439             \code
440                 void func( value_type& val );
441             \endcode
442             where \p val is the item inserted. User-defined functor \p f should guarantee that during changing
443             \p val no any other changes could be made on this set's item by concurrent threads.
444             The user-defined functor is called only if the inserting is success.
445
446             The function applies RCU lock internally.
447         */
448         template <typename Q, typename Func>
449         bool insert( Q const& key, Func f )
450         {
451             scoped_node_ptr pNode( alloc_node( key ));
452
453             if ( base_class::insert( *pNode, [&f](node_type& node) { f( node.m_Value ) ; } )) {
454                 pNode.release();
455                 return true;
456             }
457             return false;
458         }
459
460         /// Inserts data of type \p value_type created from \p args
461         /**
462             Returns \p true if inserting successful, \p false otherwise.
463
464             The function applies RCU lock internally.
465         */
466         template <typename... Args>
467         bool emplace( Args&&... args )
468         {
469             return insert_node( alloc_node( std::forward<Args>(args)...));
470         }
471
472         /// Ensures that the \p val exists in the set
473         /**
474             The operation performs inserting or changing data with lock-free manner.
475
476             If the \p val key not found in the set, then the new item created from \p val
477             is inserted into the set. Otherwise, the functor \p func is called with the item found.
478             The functor \p Func signature is:
479             \code
480                 struct my_functor {
481                     void operator()( bool bNew, value_type& item, const Q& val );
482                 };
483             \endcode
484
485             with arguments:
486             - \p bNew - \p true if the item has been inserted, \p false otherwise
487             - \p item - item of the set
488             - \p val - argument \p val passed into the \p %ensure() function
489
490             The functor may change non-key fields of the \p item; however, \p func must guarantee
491             that during changing no any other modifications could be made on this item by concurrent threads.
492
493             The function applies RCU lock internally.
494
495             Returns <tt> std::pair<bool, bool> </tt> where \p first is true if operation is successfull,
496             \p second is true if new item has been added or \p false if the item with \p key
497             already is in the set.
498         */
499         template <typename Q, typename Func>
500         std::pair<bool, bool> ensure( Q const& val, Func func )
501         {
502             scoped_node_ptr pNode( alloc_node( val ));
503
504             std::pair<bool, bool> bRet = base_class::ensure( *pNode,
505                 [&func, &val]( bool bNew, node_type& item,  node_type const& /*val*/ ) {
506                     func( bNew, item.m_Value, val );
507                 } );
508             if ( bRet.first && bRet.second )
509                 pNode.release();
510             return bRet;
511         }
512
513         /// Deletes \p key from the set
514         /** \anchor cds_nonintrusive_SplitListSet_rcu_erase_val
515
516             Template parameter of type \p Q defines the key type searching in the list.
517             The set item comparator should be able to compare the values of type \p value_type
518             and the type \p Q.
519
520             RCU \p synchronize method can be called. RCU should not be locked.
521
522             Return \p true if key is found and deleted, \p false otherwise
523         */
524         template <typename Q>
525         bool erase( Q const& key )
526         {
527             return base_class::erase( key );
528         }
529
530         /// Deletes the item from the set using \p pred predicate for searching
531         /**
532             The function is an analog of \ref cds_nonintrusive_SplitListSet_rcu_erase_val "erase(Q const&)"
533             but \p pred is used for key comparing.
534             \p Less functor has the interface like \p std::less.
535             \p Less must imply the same element order as the comparator used for building the set.
536         */
537         template <typename Q, typename Less>
538         bool erase_with( Q const& key, Less pred )
539         {
540             CDS_UNUSED( pred );
541              return base_class::erase_with( key, typename maker::template predicate_wrapper<Less>::type() );
542         }
543
544         /// Deletes \p key from the set
545         /** \anchor cds_nonintrusive_SplitListSet_rcu_erase_func
546
547             The function searches an item with key \p key, calls \p f functor
548             and deletes the item. If \p key is not found, the functor is not called.
549
550             The functor \p Func interface:
551             \code
552             struct extractor {
553                 void operator()(value_type const& val);
554             };
555             \endcode
556
557             Template parameter of type \p Q defines the key type searching in the list.
558             The list item comparator should be able to compare the values of the type \p value_type
559             and the type \p Q.
560
561             RCU \p synchronize method can be called. RCU should not be locked.
562
563             Return \p true if key is found and deleted, \p false otherwise
564         */
565         template <typename Q, typename Func>
566         bool erase( Q const& key, Func f )
567         {
568             return base_class::erase( key, [&f](node_type& node) { f( node.m_Value ); } );
569         }
570
571         /// Deletes the item from the set using \p pred predicate for searching
572         /**
573             The function is an analog of \ref cds_nonintrusive_SplitListSet_rcu_erase_func "erase(Q const&, Func)"
574             but \p pred is used for key comparing.
575             \p Less functor has the interface like \p std::less.
576             \p Less must imply the same element order as the comparator used for building the set.
577         */
578         template <typename Q, typename Less, typename Func>
579         bool erase_with( Q const& key, Less pred, Func f )
580         {
581             CDS_UNUSED( pred );
582             return base_class::erase_with( key, typename maker::template predicate_wrapper<Less>::type(),
583                 [&f](node_type& node) { f( node.m_Value ); } );
584         }
585
586         /// Extracts an item from the set
587         /** \anchor cds_nonintrusive_SplitListSet_rcu_extract
588             The function searches an item with key equal to \p key in the set,
589             unlinks it from the set, and returns \ref cds::urcu::exempt_ptr "exempt_ptr" pointer to the item found.
590             If the item with the key equal to \p key is not found the function returns an empty \p exempt_ptr.
591
592             @note The function does NOT call RCU read-side lock or synchronization,
593             and does NOT dispose the item found. It just excludes the item from the set
594             and returns a pointer to item found.
595             You should lock RCU before calling of the function, and you should synchronize RCU
596             outside the RCU lock to free extracted item
597
598             \code
599             typedef cds::urcu::gc< general_buffered<> > rcu;
600             typedef cds::container::SplitListSet< rcu, Foo > splitlist_set;
601
602             splitlist_set theSet;
603             // ...
604
605             splitlist_set::exempt_ptr p;
606             {
607                 // first, we should lock RCU
608                 splitlist_set::rcu_lock lock;
609
610                 // Now, you can apply extract function
611                 // Note that you must not delete the item found inside the RCU lock
612                 p = theSet.extract( 10 );
613                 if ( p ) {
614                     // do something with p
615                     ...
616                 }
617             }
618
619             // We may safely release p here
620             // release() passes the pointer to RCU reclamation cycle
621             p.release();
622             \endcode
623         */
624         template <typename Q>
625         exempt_ptr extract( Q const& key )
626         {
627             return exempt_ptr( base_class::extract_( key, key_comparator() ));
628         }
629
630         /// Extracts an item from the set using \p pred predicate for searching
631         /**
632             The function is an analog of \ref cds_nonintrusive_SplitListSet_rcu_extract "extract(exempt_ptr&, Q const&)"
633             but \p pred is used for key comparing.
634             \p Less functor has the interface like \p std::less.
635             \p pred must imply the same element order as the comparator used for building the set.
636         */
637         template <typename Q, typename Less>
638         exempt_ptr extract_with( Q const& key, Less pred )
639         {
640             CDS_UNUSED( pred );
641             return exempt_ptr( base_class::extract_with_( key, typename maker::template predicate_wrapper<Less>::type()));
642         }
643
644         /// Finds the key \p key
645         /** \anchor cds_nonintrusive_SplitListSet_rcu_find_func
646
647             The function searches the item with key equal to \p key and calls the functor \p f for item found.
648             The interface of \p Func functor is:
649             \code
650             struct functor {
651                 void operator()( value_type& item, Q& key );
652             };
653             \endcode
654             where \p item is the item found, \p key is the <tt>find</tt> function argument.
655
656             The functor may change non-key fields of \p item. Note that the functor is only guarantee
657             that \p item cannot be disposed during functor is executing.
658             The functor does not serialize simultaneous access to the set's \p item. If such access is
659             possible you must provide your own synchronization schema on item level to exclude unsafe item modifications.
660
661             Note the hash functor specified for class \p Traits template parameter
662             should accept a parameter of type \p Q that can be not the same as \p value_type.
663
664             The function makes RCU lock internally.
665
666             The function returns \p true if \p key is found, \p false otherwise.
667         */
668         template <typename Q, typename Func>
669         bool find( Q& key, Func f )
670         {
671             return find_( key, f );
672         }
673         //@cond
674         template <typename Q, typename Func>
675         bool find( Q const& key, Func f )
676         {
677             return find_( key, f );
678         }
679         //@endcond
680
681         /// Finds the key \p key using \p pred predicate for searching
682         /**
683             The function is an analog of \ref cds_nonintrusive_SplitListSet_rcu_find_func "find(Q&, Func)"
684             but \p pred is used for key comparing.
685             \p Less functor has the interface like \p std::less.
686             \p Less must imply the same element order as the comparator used for building the set.
687         */
688         template <typename Q, typename Less, typename Func>
689         bool find_with( Q& key, Less pred, Func f )
690         {
691             return find_with_( key, pred, f );
692         }
693         //@cond
694         template <typename Q, typename Less, typename Func>
695         bool find_with( Q const& key, Less pred, Func f )
696         {
697             return find_with_( key, pred, f );
698         }
699         //@endcond
700
701         /// Finds the key \p key
702         /** \anchor cds_nonintrusive_SplitListSet_rcu_find_val
703
704             The function searches the item with key equal to \p key
705             and returns \p true if it is found, and \p false otherwise.
706
707             Note the hash functor specified for class \p Traits template parameter
708             should accept a parameter of type \p Q that can be not the same as \p value_type.
709
710             The function makes RCU lock internally.
711         */
712         template <typename Q>
713         bool find( Q const& key )
714         {
715             return base_class::find( key );
716         }
717
718         /// Finds the key \p key using \p pred predicate for searching
719         /**
720             The function is an analog of \ref cds_nonintrusive_SplitListSet_rcu_find_val "find(Q const&)"
721             but \p pred is used for key comparing.
722             \p Less functor has the interface like \p std::less.
723             \p Less must imply the same element order as the comparator used for building the set.
724         */
725         template <typename Q, typename Less>
726         bool find_with( Q const& key, Less pred )
727         {
728             CDS_UNUSED( pred );
729             return base_class::find_with( key, typename maker::template predicate_wrapper<Less>::type() );
730         }
731
732         /// Finds the key \p key and return the item found
733         /** \anchor cds_nonintrusive_SplitListSet_rcu_get
734             The function searches the item with key equal to \p key and returns the pointer to item found.
735             If \p key is not found it returns \p nullptr.
736
737             Note the compare functor should accept a parameter of type \p Q that can be not the same as \p value_type.
738
739             RCU should be locked before call of this function.
740             Returned item is valid only while RCU is locked:
741             \code
742             typedef cds::urcu::gc< general_buffered<> > rcu;
743             typedef cds::container::SplitListSet< rcu, Foo > splitlist_set;
744             splitlist_set theSet;
745             // ...
746             {
747                 // Lock RCU
748                 splitlist_set::rcu_lock lock;
749
750                 foo * pVal = theSet.get( 5 );
751                 if ( pVal ) {
752                     // Deal with pVal
753                     //...
754                 }
755                 // Unlock RCU by rcu_lock destructor
756                 // pVal can be retired by disposer at any time after RCU has been unlocked
757             }
758             \endcode
759         */
760         template <typename Q>
761         value_type * get( Q const& key )
762         {
763             node_type * pNode = base_class::get( key );
764             return pNode ? &pNode->m_Value : nullptr;
765         }
766
767         /// Finds the key \p key and return the item found
768         /**
769             The function is an analog of \ref cds_nonintrusive_SplitListSet_rcu_get "get(Q const&)"
770             but \p pred is used for comparing the keys.
771
772             \p Less functor has the semantics like \p std::less but should take arguments of type \ref value_type and \p Q
773             in any order.
774             \p pred must imply the same element order as the comparator used for building the set.
775         */
776         template <typename Q, typename Less>
777         value_type * get_with( Q const& key, Less pred )
778         {
779             CDS_UNUSED( pred );
780             node_type * pNode = base_class::get_with( key, typename maker::template predicate_wrapper<Less>::type());
781             return pNode ? &pNode->m_Value : nullptr;
782         }
783
784         /// Clears the set (not atomic)
785         void clear()
786         {
787             base_class::clear();
788         }
789
790         /// Checks if the set is empty
791         /**
792             Emptiness is checked by item counting: if item count is zero then assume that the set is empty.
793             Thus, the correct item counting feature is an important part of split-list set implementation.
794         */
795         bool empty() const
796         {
797             return base_class::empty();
798         }
799
800         /// Returns item count in the set
801         size_t size() const
802         {
803             return base_class::size();
804         }
805
806         /// Returns internal statistics
807         stat const& statistics() const
808         {
809             return base_class::statistics();
810         }
811     };
812 }}  // namespace cds::container
813
814 #endif // #ifndef __CDS_CONTAINER_SPLIT_LIST_SET_RCU_H