issue#11: cds: changed __CDS_ guard prefix to CDSLIB_ for all .h files
[libcds.git] / cds / container / impl / lazy_list.h
1 //$$CDS-header$$
2
3 #ifndef CDSLIB_CONTAINER_IMPL_LAZY_LIST_H
4 #define CDSLIB_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 typename gc::template guarded_ptr< 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 as \p guarded_ptr.
494             If \p key is not found the function returns an empty guarded pointer.
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(theList.extract( 5 ));
507                 if ( gp ) {
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         guarded_ptr extract( Q const& key )
517         {
518             guarded_ptr gp;
519             extract_at( head(), gp.guard(), key, intrusive_key_comparator() );
520             return gp;
521         }
522
523         /// Extracts the item from the list with comparing functor \p pred
524         /**
525             The function is an analog of \ref cds_nonintrusive_LazyList_hp_extract "extract(Q const&)"
526             but \p pred predicate is used for key comparing.
527
528             \p Less functor has the semantics like \p std::less but should take arguments of type \ref value_type and \p Q
529             in any order.
530             \p pred must imply the same element order as the comparator used for building the list.
531         */
532         template <typename Q, typename Less>
533         guarded_ptr extract_with( Q const& key, Less pred )
534         {
535             CDS_UNUSED( pred );
536             guarded_ptr gp;
537             extract_at( head(), gp.guard(), key, typename maker::template less_wrapper<Less>::type() );
538             return gp;
539         }
540
541         /// Finds the key \p key
542         /** \anchor cds_nonintrusive_LazyList_hp_find_val
543             The function searches the item with key equal to \p key
544             and returns \p true if it is found, and \p false otherwise
545         */
546         template <typename Q>
547         bool find( Q const& key )
548         {
549             return find_at( head(), key, intrusive_key_comparator() );
550         }
551
552         /// Finds the key \p key using \p pred predicate for searching
553         /**
554             The function is an analog of \ref cds_nonintrusive_LazyList_hp_find_val "find(Q const&)"
555             but \p pred is used for key comparing.
556             \p Less functor has the interface like \p std::less.
557             \p pred must imply the same element order as the comparator used for building the list.
558         */
559         template <typename Q, typename Less>
560         bool find_with( Q const& key, Less pred )
561         {
562             CDS_UNUSED( pred );
563             return find_at( head(), key, typename maker::template less_wrapper<Less>::type() );
564         }
565
566         /// Finds the key \p key and performs an action with it
567         /** \anchor cds_nonintrusive_LazyList_hp_find_func
568             The function searches an item with key equal to \p key and calls the functor \p f for the item found.
569             The interface of \p Func functor is:
570             \code
571             struct functor {
572                 void operator()( value_type& item, Q& key );
573             };
574             \endcode
575             where \p item is the item found, \p key is the <tt>find</tt> function argument.
576
577             The functor may change non-key fields of \p item. Note that the function is only guarantee
578             that \p item cannot be deleted during functor is executing.
579             The function does not serialize simultaneous access to the list \p item. If such access is
580             possible you must provide your own synchronization schema to exclude unsafe item modifications.
581
582             The \p key argument is non-const since it can be used as \p f functor destination i.e., the functor
583             may modify both arguments.
584
585             The function returns \p true if \p key is found, \p false otherwise.
586         */
587         template <typename Q, typename Func>
588         bool find( Q& key, Func f )
589         {
590             return find_at( head(), key, intrusive_key_comparator(), f );
591         }
592         //@cond
593         template <typename Q, typename Func>
594         bool find( Q const& key, Func f )
595         {
596             return find_at( head(), key, intrusive_key_comparator(), f );
597         }
598         //@endcond
599
600         /// Finds the key \p key using \p pred predicate for searching
601         /**
602             The function is an analog of \ref cds_nonintrusive_LazyList_hp_find_func "find(Q&, Func)"
603             but \p pred is used for key comparing.
604             \p Less functor has the interface like \p std::less.
605             \p pred must imply the same element order as the comparator used for building the list.
606         */
607         template <typename Q, typename Less, typename Func>
608         bool find_with( Q& key, Less pred, Func f )
609         {
610             CDS_UNUSED( pred );
611             return find_at( head(), key, typename maker::template less_wrapper<Less>::type(), f );
612         }
613         //@cond
614         template <typename Q, typename Less, typename Func>
615         bool find_with( Q const& key, Less pred, Func f )
616         {
617             CDS_UNUSED( pred );
618             return find_at( head(), key, typename maker::template less_wrapper<Less>::type(), f );
619         }
620         //@endcond
621
622         /// Finds the key \p key and return the item found
623         /** \anchor cds_nonintrusive_LazyList_hp_get
624             The function searches the item with key equal to \p key
625             and returns the item found as \p guarded_ptr.
626             If \p key is not found the function returns an empty guarded pointer.
627
628             @note Each \p guarded_ptr object uses one GC's guard which can be limited resource.
629
630             Usage:
631             \code
632             typedef cds::container::LazyList< cds::gc::HP, foo, my_traits >  ord_list;
633             ord_list theList;
634             // ...
635             {
636                 ord_list::guarded_ptr gp( theList.get( 5 ));
637                 if ( gp ) {
638                     // Deal with gp
639                     //...
640                 }
641                 // Destructor of guarded_ptr releases internal HP guard and frees the item
642             }
643             \endcode
644
645             Note the compare functor specified for class \p Traits template parameter
646             should accept a parameter of type \p Q that can be not the same as \p value_type.
647         */
648         template <typename Q>
649         guarded_ptr get( Q const& key )
650         {
651             guarded_ptr gp;
652             get_at( head(), gp.guard(), key, intrusive_key_comparator() );
653             return gp;
654         }
655
656         /// Finds the key \p key and return the item found
657         /**
658             The function is an analog of \ref cds_nonintrusive_LazyList_hp_get "get( Q const&)"
659             but \p pred is used for comparing the keys.
660
661             \p Less functor has the semantics like \p std::less but should take arguments of type \ref value_type and \p Q
662             in any order.
663             \p pred must imply the same element order as the comparator used for building the list.
664         */
665         template <typename Q, typename Less>
666         guarded_ptr get_with( Q const& key, Less pred )
667         {
668             CDS_UNUSED( pred );
669             guarded_ptr gp;
670             get_at( head(), gp.guard(), key, typename maker::template less_wrapper<Less>::type() );
671             return gp;
672         }
673
674         /// Checks whether the list is empty
675         bool empty() const
676         {
677             return base_class::empty();
678         }
679
680         /// Returns list's item count
681         /**
682             The value returned depends on \p Traits::item_counter type. For \p atomicity::empty_item_counter,
683             this function always returns 0.
684
685             @note Even if you use real item counter and it returns 0, this fact is not mean that the list
686             is empty. To check list emptyness use \ref empty() method.
687         */
688         size_t size() const
689         {
690             return base_class::size();
691         }
692
693         /// Clears the list
694         void clear()
695         {
696             base_class::clear();
697         }
698
699     protected:
700         //@cond
701         bool insert_node_at( head_type& refHead, node_type * pNode )
702         {
703             assert( pNode != nullptr );
704             scoped_node_ptr p( pNode );
705
706             if ( base_class::insert_at( &refHead, *pNode )) {
707                 p.release();
708                 return true;
709             }
710
711             return false;
712         }
713
714         template <typename Q>
715         bool insert_at( head_type& refHead, const Q& val )
716         {
717             return insert_node_at( refHead, alloc_node( val ));
718         }
719
720         template <typename... Args>
721         bool emplace_at( head_type& refHead, Args&&... args )
722         {
723             return insert_node_at( refHead, alloc_node( std::forward<Args>(args)... ));
724         }
725
726         template <typename Q, typename Func>
727         bool insert_at( head_type& refHead, const Q& key, Func f )
728         {
729             scoped_node_ptr pNode( alloc_node( key ));
730
731             if ( base_class::insert_at( &refHead, *pNode, [&f](node_type& node){ f( node_to_value(node) ); } )) {
732                 pNode.release();
733                 return true;
734             }
735             return false;
736         }
737
738         template <typename Q, typename Compare, typename Func>
739         bool erase_at( head_type& refHead, const Q& key, Compare cmp, Func f )
740         {
741             return base_class::erase_at( &refHead, key, cmp, [&f](node_type const& node){ f( node_to_value(node) ); } );
742         }
743
744         template <typename Q, typename Compare>
745         bool extract_at( head_type& refHead, typename guarded_ptr::native_guard& guard, Q const& key, Compare cmp )
746         {
747             return base_class::extract_at( &refHead, guard, key, cmp );
748         }
749
750         template <typename Q, typename Func>
751         std::pair<bool, bool> ensure_at( head_type& refHead, const Q& key, Func f )
752         {
753             scoped_node_ptr pNode( alloc_node( key ));
754
755             std::pair<bool, bool> ret = base_class::ensure_at( &refHead, *pNode,
756                 [&f, &key](bool bNew, node_type& node, node_type&){f( bNew, node_to_value(node), key ); });
757             if ( ret.first && ret.second )
758                 pNode.release();
759
760             return ret;
761         }
762
763         template <typename Q, typename Compare>
764         bool find_at( head_type& refHead, Q const& key, Compare cmp )
765         {
766             return base_class::find_at( &refHead, key, cmp );
767         }
768
769         template <typename Q, typename Compare, typename Func>
770         bool find_at( head_type& refHead, Q& val, Compare cmp, Func f )
771         {
772             return base_class::find_at( &refHead, val, cmp, [&f](node_type& node, Q& val){ f( node_to_value(node), val ); });
773         }
774
775         template <typename Q, typename Compare>
776         bool get_at( head_type& refHead, typename guarded_ptr::native_guard& guard, Q const& key, Compare cmp )
777         {
778             return base_class::get_at( &refHead, guard, key, cmp );
779         }
780
781         //@endcond
782     };
783
784 }} // namespace cds::container
785
786 #endif // #ifndef CDSLIB_CONTAINER_IMPL_LAZY_LIST_H