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