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