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