caae0c704083558a5ada5d51c185e631ca7375d7
[libcds.git] / cds / container / lazy_kvlist_rcu.h
1 //$$CDS-header$$
2
3 #ifndef __CDS_CONTAINER_LAZY_KVLIST_RCU_H
4 #define __CDS_CONTAINER_LAZY_KVLIST_RCU_H
5
6 #include <memory>
7 #include <cds/container/details/lazy_list_base.h>
8 #include <cds/intrusive/lazy_list_rcu.h>
9 #include <cds/container/details/make_lazy_kvlist.h>
10
11 namespace cds { namespace container {
12
13     /// Lazy ordered list (key-value pair), template specialization for \ref cds_urcu_desc "RCU"
14     /** @ingroup cds_nonintrusive_list
15         \anchor cds_nonintrusive_LazyKVList_rcu
16
17         This is key-value variation of non-intrusive \p %LazyList.
18         Like standard container, this implementation split a value stored into two part -
19         constant key and alterable value.
20
21         Usually, ordered single-linked list is used as a building block for the hash table implementation.
22         The complexity of searching is <tt>O(N)</tt>.
23
24         Template arguments:
25         - \p RCU - one of \ref cds_urcu_gc "RCU type"
26         - \p Key - key type of an item to be stored in the list. It should be copy-constructible
27         - \p Value - value type to be stored in the list
28         - \p Traits - type traits, default is \p lazy_list::traits
29             It is possible to declare option-based list with \p lazy_list::make_traits metafunction istead of \p Traits template
30             argument. For example, the following traits-based declaration of \p gc::HP lazy list
31             \code
32             #include <cds/urcu/general_threaded.h>
33             #include <cds/container/lazy_kvlist_rcu.h>
34             // Declare comparator for the item
35             struct my_compare {
36                 int operator ()( int i1, int i2 )
37                 {
38                     return i1 - i2;
39                 }
40             };
41
42             // Declare traits
43             struct my_traits: public cds::container::lazy_list::traits
44             {
45                 typedef my_compare compare;
46             };
47
48             // Declare traits-based list
49             typedef cds::container::LazyKVList< cds::urcu::gc< cds::urcu::general_threaded<> >, int, int, my_traits >     traits_based_list;
50             \endcode
51             is equal to the following option-based list
52             \code
53             #include <cds/urcu/general_threaded.h>
54             #include <cds/container/lazy_kvlist_rcu.h>
55
56             // my_compare is the same
57
58             // Declare option-based list
59             typedef cds::container::LazyKVList< cds::urcu::gc< cds::urcu::general_threaded<> >, int, int,
60                 typename cds::container::lazy_list::make_traits<
61                     cds::container::opt::compare< my_compare >     // item comparator option
62                 >::type
63             >     option_based_list;
64             \endcode
65
66         @note Before including <tt><cds/container/lazy_kvlist_rcu.h></tt> you should include appropriate RCU header file,
67         see \ref cds_urcu_gc "RCU type" for list of existing RCU class and corresponding header files.
68     */
69     template <
70         typename RCU,
71         typename Key,
72         typename Value,
73 #ifdef CDS_DOXYGEN_INVOKED
74         typename Traits = lazy_list::traits
75 #else
76         typename Traits
77 #endif
78     >
79     class LazyKVList< cds::urcu::gc<RCU>, Key, Value, Traits >:
80 #ifdef CDS_DOXYGEN_INVOKED
81         protected intrusive::LazyList< cds::urcu::gc<RCU>, implementation_defined, Traits >
82 #else
83         protected details::make_lazy_kvlist< cds::urcu::gc<RCU>, Key, Value, Traits >::type
84 #endif
85     {
86         //@cond
87         typedef details::make_lazy_kvlist< cds::urcu::gc<RCU>, Key, Value, Traits > maker;
88         typedef typename maker::type base_class;
89         //@endcond
90
91     public:
92         typedef cds::urcu::gc<RCU> gc; ///< Garbage collector
93 #ifdef CDS_DOXYGEN_INVOKED
94         typedef Key                                 key_type        ;   ///< Key type
95         typedef Value                               mapped_type     ;   ///< Type of value stored in the list
96         typedef std::pair<key_type const, mapped_type> value_type   ;   ///< key/value pair stored in the list
97 #else
98         typedef typename maker::key_type    key_type;
99         typedef typename maker::mapped_type mapped_type;
100         typedef typename maker::value_type  value_type;
101 #endif
102         typedef typename base_class::back_off     back_off;       ///< Back-off strategy used
103         typedef typename maker::allocator_type    allocator_type; ///< Allocator type used for allocate/deallocate the nodes
104         typedef typename base_class::item_counter item_counter;   ///< Item counting policy used
105         typedef typename maker::key_comparator    key_comparator; ///< key comparison functor
106         typedef typename base_class::memory_model memory_model;   ///< Memory ordering. See cds::opt::memory_model option
107         typedef typename base_class::rcu_check_deadlock rcu_check_deadlock ; ///< RCU deadlock checking policy
108
109         typedef typename gc::scoped_lock    rcu_lock ;  ///< RCU scoped lock
110         static CDS_CONSTEXPR const bool c_bExtractLockExternal = base_class::c_bExtractLockExternal; ///< Group of \p extract_xxx functions require external locking
111
112     protected:
113         //@cond
114         typedef typename base_class::value_type   node_type;
115         typedef typename maker::cxx_allocator     cxx_allocator;
116         typedef typename maker::node_deallocator  node_deallocator;
117         typedef typename maker::intrusive_traits::compare intrusive_key_comparator;
118
119         typedef typename base_class::node_type head_type;
120         //@endcond
121
122     public:
123         /// pointer to extracted node
124         using exempt_ptr = cds::urcu::exempt_ptr< gc, node_type, value_type, typename maker::intrusive_traits::disposer,
125             cds::urcu::details::conventional_exempt_pair_cast<node_type, value_type>
126         >;
127
128     protected:
129         //@cond
130         template <typename K>
131         static node_type * alloc_node(const K& key)
132         {
133             return cxx_allocator().New( key );
134         }
135
136         template <typename K, typename V>
137         static node_type * alloc_node( const K& key, const V& val )
138         {
139             return cxx_allocator().New( key, val );
140         }
141
142         template <typename... Args>
143         static node_type * alloc_node( Args&&... args )
144         {
145             return cxx_allocator().MoveNew( std::forward<Args>(args)... );
146         }
147
148         static void free_node( node_type * pNode )
149         {
150             cxx_allocator().Delete( pNode );
151         }
152
153         struct node_disposer {
154             void operator()( node_type * pNode )
155             {
156                 free_node( pNode );
157             }
158         };
159         typedef std::unique_ptr< node_type, node_disposer >     scoped_node_ptr;
160
161         head_type& head()
162         {
163             return base_class::m_Head;
164         }
165
166         head_type& head() const
167         {
168             return const_cast<head_type&>( base_class::m_Head );
169         }
170
171         head_type& tail()
172         {
173             return base_class::m_Tail;
174         }
175
176         head_type& tail() const
177         {
178             return const_cast<head_type&>( base_class::m_Tail );
179         }
180
181         //@endcond
182
183     protected:
184         //@cond
185         template <bool IsConst>
186         class iterator_type: protected base_class::template iterator_type<IsConst>
187         {
188             typedef typename base_class::template iterator_type<IsConst>    iterator_base;
189
190             iterator_type( head_type const& pNode )
191                 : iterator_base( const_cast<head_type *>(&pNode) )
192             {}
193             iterator_type( head_type const * pNode )
194                 : iterator_base( const_cast<head_type *>(pNode) )
195             {}
196
197             friend class LazyKVList;
198
199         public:
200             typedef typename cds::details::make_const_type<mapped_type, IsConst>::reference  value_ref;
201             typedef typename cds::details::make_const_type<mapped_type, IsConst>::pointer    value_ptr;
202
203             typedef typename cds::details::make_const_type<value_type,  IsConst>::reference  pair_ref;
204             typedef typename cds::details::make_const_type<value_type,  IsConst>::pointer    pair_ptr;
205
206             iterator_type()
207             {}
208
209             iterator_type( iterator_type const& src )
210                 : iterator_base( src )
211             {}
212
213             key_type const& key() const
214             {
215                 typename iterator_base::value_ptr p = iterator_base::operator ->();
216                 assert( p != nullptr );
217                 return p->m_Data.first;
218             }
219
220             value_ref val() const
221             {
222                 typename iterator_base::value_ptr p = iterator_base::operator ->();
223                 assert( p != nullptr );
224                 return p->m_Data.second;
225             }
226
227             pair_ptr operator ->() const
228             {
229                 typename iterator_base::value_ptr p = iterator_base::operator ->();
230                 return p ? &(p->m_Data) : nullptr;
231             }
232
233             pair_ref operator *() const
234             {
235                 typename iterator_base::value_ref p = iterator_base::operator *();
236                 return p.m_Data;
237             }
238
239             /// Pre-increment
240             iterator_type& operator ++()
241             {
242                 iterator_base::operator ++();
243                 return *this;
244             }
245
246             template <bool C>
247             bool operator ==(iterator_type<C> const& i ) const
248             {
249                 return iterator_base::operator ==(i);
250             }
251             template <bool C>
252             bool operator !=(iterator_type<C> const& i ) const
253             {
254                 return iterator_base::operator !=(i);
255             }
256         };
257         //@endcond
258
259     public:
260         /// Forward iterator
261         typedef iterator_type<false>    iterator;
262
263         /// Const forward iterator
264         typedef iterator_type<true>     const_iterator;
265
266         /// Returns a forward iterator addressing the first element in a list
267         /**
268             For empty list \code begin() == end() \endcode
269         */
270         iterator begin()
271         {
272             iterator it( head() );
273             ++it ;  // skip dummy head
274             return it;
275         }
276
277         /// Returns an iterator that addresses the location succeeding the last element in a list
278         /**
279             Do not use the value returned by <tt>end</tt> function to access any item.
280             Internally, <tt>end</tt> returning value pointing to dummy tail node.
281
282             The returned value can be used only to control reaching the end of the list.
283             For empty list \code begin() == end() \endcode
284         */
285         iterator end()
286         {
287             return iterator( tail() );
288         }
289
290         /// Returns a forward const iterator addressing the first element in a list
291         //@{
292         const_iterator begin() const
293         {
294             const_iterator it( head() );
295             ++it;   // skip dummy head
296             return it;
297         }
298         const_iterator cbegin() const
299         {
300             const_iterator it( head() );
301             ++it;   // skip dummy head
302             return it;
303         }
304         //@}
305
306         /// Returns an const iterator that addresses the location succeeding the last element in a list
307         //@{
308         const_iterator end() const
309         {
310             return const_iterator( tail());
311         }
312         const_iterator cend() const
313         {
314             return const_iterator( tail());
315         }
316         //@}
317
318     public:
319         /// Default constructor
320         LazyKVList()
321         {}
322
323         /// Destructor clears the list
324         ~LazyKVList()
325         {
326             clear();
327         }
328
329         /// Inserts new node with key and default value
330         /**
331             The function creates a node with \p key and default value, and then inserts the node created into the list.
332
333             Preconditions:
334             - The \ref key_type should be constructible from value of type \p K.
335                 In trivial case, \p K is equal to \p key_type.
336             - The \ref mapped_type should be default-constructible.
337
338             The function makes RCU lock internally.
339
340             Returns \p true if inserting successful, \p false otherwise.
341         */
342         template <typename K>
343         bool insert( const K& key )
344         {
345             return insert_at( head(), key );
346         }
347
348         /// Inserts new node with a key and a value
349         /**
350             The function creates a node with \p key and value \p val, and then inserts the node created into the list.
351
352             Preconditions:
353             - The \p key_type should be constructible from \p key of type \p K.
354             - The \p mapped_type should be constructible from \p val of type \p V.
355
356             The function makes RCU lock internally.
357
358             Returns \p true if inserting successful, \p false otherwise.
359         */
360         template <typename K, typename V>
361         bool insert( const K& key, const V& val )
362         {
363             return insert_at( head(), key, val );
364         }
365
366         /// Inserts new node and initializes it by a functor
367         /**
368             This function inserts new node with key \p key and if inserting is successful then it calls
369             \p func functor with signature
370             \code
371                 struct functor {
372                     void operator()( value_type& item );
373                 };
374             \endcode
375
376             The argument \p item of user-defined functor \p func is the reference
377             to the list's item inserted. <tt>item.second</tt> is a reference to item's value that may be changed.
378             The user-defined functor is called only if inserting is successful.
379
380             The key_type should be constructible from value of type \p K.
381
382             The function allows to split creating of new item into two part:
383             - create item from \p key;
384             - insert new item into the list;
385             - if inserting is successful, initialize the value of item by calling \p func functor
386
387             This can be useful if complete initialization of object of \p mapped_type is heavyweight and
388             it is preferable that the initialization should be completed only if inserting is successful.
389
390             The function makes RCU lock internally.
391
392             @warning See \ref cds_intrusive_item_creating "insert item troubleshooting"
393         */
394         template <typename K, typename Func>
395         bool insert_key( const K& key, Func func )
396         {
397             return insert_key_at( head(), key, func );
398         }
399
400         /// Inserts data of type \p mapped_type constructed from \p args
401         /**
402             Returns \p true if inserting successful, \p false otherwise.
403
404             The function makes RCU lock internally.
405         */
406         template <typename... Args>
407         bool emplace( Args&&... args )
408         {
409             return emplace_at( head(), std::forward<Args>(args)... );
410         }
411
412         /// Ensures that the \p key exists in the list
413         /**
414             The operation performs inserting or changing data with lock-free manner.
415
416             If the \p key not found in the list, then the new item created from \p key
417             is inserted into the list (note that in this case the \ref key_type should be
418             copy-constructible from type \p K).
419             Otherwise, the functor \p func is called with item found.
420             The functor \p Func may be a function with signature:
421             \code
422                 void func( bool bNew, value_type& item );
423             \endcode
424             or a functor:
425             \code
426                 struct my_functor {
427                     void operator()( bool bNew, value_type& item );
428                 };
429             \endcode
430
431             with arguments:
432             - \p bNew - \p true if the item has been inserted, \p false otherwise
433             - \p item - item of the list
434
435             The functor may change any fields of the \p item.second of type \p mapped_type.
436
437             The function makes RCU lock internally.
438
439             Returns <tt> std::pair<bool, bool> </tt> where \p first is true if operation is successfull,
440             \p second is true if new item has been added or \p false if the item with \p key
441             already is in the list.
442
443             @warning See \ref cds_intrusive_item_creating "insert item troubleshooting"
444         */
445         template <typename K, typename Func>
446         std::pair<bool, bool> ensure( const K& key, Func f )
447         {
448             return ensure_at( head(), key, f );
449         }
450
451         /// Deletes \p key from the list
452         /** \anchor cds_nonintrusive_LazyKVList_rcu_erase
453
454             RCU \p synchronize method can be called. RCU should not be locked.
455
456             Returns \p true if \p key is found and has been deleted, \p false otherwise
457         */
458         template <typename K>
459         bool erase( K const& key )
460         {
461             return erase_at( head(), key, intrusive_key_comparator() );
462         }
463
464         /// Deletes the item from the list using \p pred predicate for searching
465         /**
466             The function is an analog of \ref cds_nonintrusive_LazyKVList_rcu_erase "erase(K const&)"
467             but \p pred is used for key comparing.
468             \p Less functor has the interface like \p std::less.
469             \p pred must imply the same element order as the comparator used for building the list.
470         */
471         template <typename K, typename Less>
472         bool erase_with( K const& key, Less pred )
473         {
474             return erase_at( head(), key, typename maker::template less_wrapper<Less>::type() );
475         }
476
477         /// Deletes \p key from the list
478         /** \anchor cds_nonintrusive_LazyKVList_rcu_erase_func
479             The function searches an item with key \p key, calls \p f functor
480             and deletes the item. If \p key is not found, the functor is not called.
481
482             The functor \p Func interface:
483             \code
484             struct extractor {
485                 void operator()(value_type& val) { ... }
486             };
487             \endcode
488
489             RCU \p synchronize method can be called. RCU should not be locked.
490
491             Returns \p true if key is found and deleted, \p false otherwise
492         */
493         template <typename K, typename Func>
494         bool erase( K const& key, Func f )
495         {
496             return erase_at( head(), key, intrusive_key_comparator(), f );
497         }
498
499         /// Deletes the item from the list using \p pred predicate for searching
500         /**
501             The function is an analog of \ref cds_nonintrusive_LazyKVList_rcu_erase_func "erase(K const&, Func)"
502             but \p pred is used for key comparing.
503             \p Less functor has the interface like \p std::less.
504             \p pred must imply the same element order as the comparator used for building the list.
505         */
506         template <typename K, typename Less, typename Func>
507         bool erase_with( K const& key, Less pred, Func f )
508         {
509             return erase_at( head(), key, typename maker::template less_wrapper<Less>::type(), f );
510         }
511
512         /// Extracts an item from the list
513         /**
514         @anchor cds_nonintrusive_LazyKVList_rcu_extract
515             The function searches an item with key equal to \p key in the list,
516             unlinks it from the list, and returns \ref cds::urcu::exempt_ptr "exempt_ptr" pointer to the item found.
517             If \p key is not found the function returns an empty \p exempt_ptr.
518
519             @note The function does NOT call RCU read-side lock or synchronization,
520             and does NOT dispose the item found. It just excludes the item from the list
521             and returns a pointer to item found.
522             You should manually lock RCU before calling this function.
523
524             \code
525             #include <cds/urcu/general_buffered.h>
526             #include <cds/container/lazy_kvlist_rcu.h>
527
528             typedef cds::urcu::gc< general_buffered<> > rcu;
529             typedef cds::container::LazyKVList< rcu, int, Foo > rcu_lazy_list;
530
531             rcu_lazy_list theList;
532             // ...
533
534             rcu_lazy_list::exempt_ptr p;
535             {
536                 // first, we should lock RCU
537                 rcu_lazy_list::rcu_lock sl;
538
539                 // Now, you can apply extract function
540                 // Note that you must not delete the item found inside the RCU lock
541                 p = theList.extract( 10 );
542                 if ( !p ) {
543                     // do something with p
544                     ...
545                 }
546             }
547             // Outside RCU lock section we may safely release extracted pointer.
548             // release() passes the pointer to RCU reclamation cycle.
549             p.release();
550             \endcode
551         */
552         template <typename K>
553         exempt_ptr extract( K const& key )
554         {
555             return exempt_ptr( extract_at( head(), key, intrusive_key_comparator()));
556         }
557
558         /// Extracts an item from the list using \p pred predicate for searching
559         /**
560             This function is the analog for \ref cds_nonintrusive_LazyKVList_rcu_extract "extract(exempt_ptr&, K const&)".
561             The \p pred is a predicate used for key comparing.
562             \p Less has the interface like \p std::less.
563             \p pred must imply the same element order as \ref key_comparator.
564         */
565         template <typename K, typename Less>
566         exempt_ptr extract_with( K const& key, Less pred )
567         {
568             return exempt_ptr( extract_at( head(), key, typename maker::template less_wrapper<Less>::type() ));
569         }
570
571         /// Finds the key \p key
572         /** \anchor cds_nonintrusive_LazyKVList_rcu_find_val
573             The function searches the item with key equal to \p key
574             and returns \p true if it is found, and \p false otherwise
575
576             The function applies RCU lock internally.
577         */
578         template <typename Q>
579         bool find( Q const& key ) const
580         {
581             return find_at( head(), key, intrusive_key_comparator() );
582         }
583
584         /// Finds the key \p val using \p pred predicate for searching
585         /**
586             The function is an analog of \ref cds_nonintrusive_LazyKVList_rcu_find_val "find(Q const&)"
587             but \p pred is used for key comparing.
588             \p Less functor has the interface like \p std::less.
589             \p pred must imply the same element order as the comparator used for building the list.
590         */
591         template <typename Q, typename Less>
592         bool find_with( Q const& key, Less pred ) const
593         {
594             return find_at( head(), key, typename maker::template less_wrapper<Less>::type() );
595         }
596
597         /// Finds the key \p key and performs an action with it
598         /** \anchor cds_nonintrusive_LazyKVList_rcu_find_func
599             The function searches an item with key equal to \p key and calls the functor \p f for the item found.
600             The interface of \p Func functor is:
601             \code
602             struct functor {
603                 void operator()( value_type& item );
604             };
605             \endcode
606             where \p item is the item found.
607
608             The functor may change <tt>item.second</tt> that is reference to value of node.
609             Note that the function is only guarantee that \p item cannot be deleted during functor is executing.
610             The function does not serialize simultaneous access to the list \p item. If such access is
611             possible you must provide your own synchronization schema to exclude unsafe item modifications.
612
613             The function applies RCU lock internally.
614
615             The function returns \p true if \p key is found, \p false otherwise.
616         */
617         template <typename Q, typename Func>
618         bool find( Q const& key, Func f ) const
619         {
620             return find_at( head(), key, intrusive_key_comparator(), f );
621         }
622
623         /// Finds the key \p val using \p pred predicate for searching
624         /**
625             The function is an analog of \ref cds_nonintrusive_LazyKVList_rcu_find_func "find(Q const&, Func)"
626             but \p pred is used for key comparing.
627             \p Less functor has the interface like \p std::less.
628             \p pred must imply the same element order as the comparator used for building the list.
629         */
630         template <typename Q, typename Less, typename Func>
631         bool find_with( Q const& key, Less pred, Func f ) const
632         {
633             return find_at( head(), key, typename maker::template less_wrapper<Less>::type(), f );
634         }
635
636         /// Finds \p key and return the item found
637         /** \anchor cds_nonintrusive_LazyKVList_rcu_get
638             The function searches the item with \p key and returns the pointer to item found.
639             If \p key is not found it returns \p nullptr.
640
641             Note the compare functor should accept a parameter of type \p K that can be not the same as \p key_type.
642
643             RCU should be locked before call of this function.
644             Returned item is valid only while RCU is locked:
645             \code
646             typedef cds::container::LazyKVList< cds::urcu::gc< cds::urcu::general_buffered<> >, int, foo, my_traits > ord_list;
647             ord_list theList;
648             // ...
649             {
650                 // Lock RCU
651                 ord_list::rcu_lock lock;
652
653                 ord_list::value_type * pVal = theList.get( 5 );
654                 if ( pVal ) {
655                     // Deal with pVal
656                     //...
657                 }
658                 // Unlock RCU by rcu_lock destructor
659                 // pVal can be freed at any time after RCU has been unlocked
660             }
661             \endcode
662         */
663         template <typename K>
664         value_type * get( K const& key ) const
665         {
666             return get_at( head(), key, intrusive_key_comparator());
667         }
668
669         /// Finds \p key and return the item found
670         /**
671             The function is an analog of \ref cds_nonintrusive_LazyKVList_rcu_get "get(K const&)"
672             but \p pred is used for comparing the keys.
673
674             \p Less functor has the semantics like \p std::less but should take arguments of type \ref key_type and \p K
675             in any order.
676             \p pred must imply the same element order as the comparator used for building the list.
677         */
678         template <typename K, typename Less>
679         value_type * get_with( K const& key, Less pred ) const
680         {
681             return get_at( head(), key, typename maker::template less_wrapper<Less>::type());
682         }
683
684         /// Checks if the list is empty
685         bool empty() const
686         {
687             return base_class::empty();
688         }
689
690         /// Returns list's item count
691         /**
692             The value returned depends on opt::item_counter option. For atomicity::empty_item_counter,
693             this function always returns 0.
694
695             @note Even if you use real item counter and it returns 0, this fact is not mean that the list
696             is empty. To check list emptyness use \ref empty() method.
697         */
698         size_t size() const
699         {
700             return base_class::size();
701         }
702
703         /// Clears the list
704         void clear()
705         {
706             base_class::clear();
707         }
708
709     protected:
710         //@cond
711         bool insert_node_at( head_type& refHead, node_type * pNode )
712         {
713             assert( pNode != nullptr );
714             scoped_node_ptr p( pNode );
715
716             if ( base_class::insert_at( &refHead, *p )) {
717                 p.release();
718                 return true;
719             }
720
721             return false;
722         }
723
724         template <typename K>
725         bool insert_at( head_type& refHead, const K& key )
726         {
727             return insert_node_at( refHead, alloc_node( key ));
728         }
729
730         template <typename K, typename V>
731         bool insert_at( head_type& refHead, const K& key, const V& val )
732         {
733             return insert_node_at( refHead, alloc_node( key, val ));
734         }
735
736         template <typename K, typename Func>
737         bool insert_key_at( head_type& refHead, const K& key, Func f )
738         {
739             scoped_node_ptr pNode( alloc_node( key ));
740
741             if ( base_class::insert_at( &refHead, *pNode, [&f](node_type& node){ f( node.m_Data ); } )) {
742                 pNode.release();
743                 return true;
744             }
745             return false;
746         }
747
748         template <typename... Args>
749         bool emplace_at( head_type& refHead, Args&&... args )
750         {
751             return insert_node_at( refHead, alloc_node( std::forward<Args>(args)... ));
752         }
753
754         template <typename K, typename Compare>
755         bool erase_at( head_type& refHead, K const& key, Compare cmp )
756         {
757             return base_class::erase_at( &refHead, key, cmp );
758         }
759
760         template <typename K, typename Compare, typename Func>
761         bool erase_at( head_type& refHead, K const & key, Compare cmp, Func f )
762         {
763             return base_class::erase_at( &refHead, key, cmp, [&f](node_type const & node){f( const_cast<value_type&>(node.m_Data)); });
764         }
765
766         template <typename K, typename Func>
767         std::pair<bool, bool> ensure_at( head_type& refHead, const K& key, Func f )
768         {
769             scoped_node_ptr pNode( alloc_node( key ));
770
771             std::pair<bool, bool> ret = base_class::ensure_at( &refHead, *pNode,
772                 [&f]( bool bNew, node_type& node, node_type& ){ f( bNew, node.m_Data ); });
773             if ( ret.first && ret.second )
774                 pNode.release();
775
776             return ret;
777         }
778
779         template <typename K, typename Compare>
780         node_type * extract_at( head_type& refHead, K const& key, Compare cmp )
781         {
782             return base_class::extract_at( &refHead, key, cmp );
783         }
784
785         template <typename K, typename Compare>
786         bool find_at( head_type& refHead, K const& key, Compare cmp ) const
787         {
788             return base_class::find_at( &refHead, key, cmp, [](node_type&, K const&) {} );
789         }
790
791         template <typename K, typename Compare, typename Func>
792         bool find_at( head_type& refHead, K& key, Compare cmp, Func f ) const
793         {
794             return base_class::find_at( &refHead, key, cmp, [&f]( node_type& node, K& ){ f( node.m_Data ); });
795         }
796
797         template <typename K, typename Compare>
798         value_type * get_at( head_type& refHead, K const& val, Compare cmp ) const
799         {
800             node_type * pNode = base_class::get_at( &refHead, val, cmp );
801             return pNode ? &pNode->m_Data : nullptr;
802         }
803
804         //@endcond
805     };
806
807 }}  // namespace cds::container
808
809 #endif  // #ifndef __CDS_CONTAINER_LAZY_KVLIST_RCU_H