a71b7857b68dc06a4ec496f613fa9b736415b7fb
[libcds.git] / cds / container / ellen_bintree_map_impl.h
1 //$$CDS-header$$
2
3 #ifndef __CDS_CONTAINER_ELLEN_BINTREE_MAP_IMPL_H
4 #define __CDS_CONTAINER_ELLEN_BINTREE_MAP_IMPL_H
5
6 #include <type_traits>
7 #include <cds/container/ellen_bintree_base.h>
8 #include <cds/intrusive/ellen_bintree_impl.h>
9 #include <cds/details/functor_wrapper.h>
10 #include <cds/container/details/guarded_ptr_cast.h>
11
12 namespace cds { namespace container {
13
14     /// Map based on Ellen's et al binary search tree
15     /** @ingroup cds_nonintrusive_map
16         @ingroup cds_nonintrusive_tree
17         @anchor cds_container_EllenBinTreeMap
18
19         Source:
20             - [2010] F.Ellen, P.Fatourou, E.Ruppert, F.van Breugel "Non-blocking Binary Search Tree"
21
22         %EllenBinTreeMap is an unbalanced leaf-oriented binary search tree that implements the <i>map</i>
23         abstract data type. Nodes maintains child pointers but not parent pointers.
24         Every internal node has exactly two children, and all data of type <tt>std::pair<Key const, T></tt>
25         currently in the tree are stored in the leaves. Internal nodes of the tree are used to direct \p find
26         operation along the path to the correct leaf. The keys (of \p Key type) stored in internal nodes
27         may or may not be in the map.
28         Unlike \ref cds_container_EllenBinTreeSet "EllenBinTreeSet" keys are not a part of \p T type.
29         The map can be represented as a set containing <tt>std::pair< Key const, T> </tt> values.
30
31         Due to \p extract_min and \p extract_max member functions the \p %EllenBinTreeMap can act as
32         a <i>priority queue</i>. In this case you should provide unique compound key, for example,
33         the priority value plus some uniformly distributed random value.
34
35         @warning Recall the tree is <b>unbalanced</b>. The complexity of operations is <tt>O(log N)</tt>
36         for uniformly distributed random keys, but in worst case the complexity is <tt>O(N)</tt>.
37
38         @note In the current implementation we do not use helping technique described in original paper.
39         So, the current implementation is near to fine-grained lock-based tree.
40         Helping will be implemented in future release
41
42         <b>Template arguments</b> :
43         - \p GC - safe memory reclamation (i.e. light-weight garbage collector) type, like cds::gc::HP, cds::gc::PTB
44             Note that cds::gc::HRC is not supported.
45         - \p Key - key type
46         - \p T - value type to be stored in tree's leaf nodes.
47         - \p Traits - type traits. See ellen_bintree::type_traits for explanation.
48
49         It is possible to declare option-based tree with ellen_bintree::make_map_traits metafunction
50         instead of \p Traits template argument.
51         Template argument list \p Options of ellen_bintree::make_map_traits metafunction are:
52         - opt::compare - key compare functor. No default functor is provided.
53             If the option is not specified, \p %opt::less is used.
54         - opt::less - specifies binary predicate used for key compare. At least \p %opt::compare or \p %opt::less should be defined.
55         - opt::item_counter - the type of item counting feature. Default is \ref atomicity::empty_item_counter that is no item counting.
56         - opt::memory_model - C++ memory ordering model. Can be opt::v::relaxed_ordering (relaxed memory model, the default)
57             or opt::v::sequential_consistent (sequentially consisnent memory model).
58         - opt::allocator - the allocator used for \ref ellen_bintree::map_node "leaf nodes" which contains data.
59             Default is \ref CDS_DEFAULT_ALLOCATOR.
60         - opt::node_allocator - the allocator used for \ref ellen_bintree::internal_node "internal nodes".
61             Default is \ref CDS_DEFAULT_ALLOCATOR.
62         - ellen_bintree::update_desc_allocator - an allocator of \ref ellen_bintree::update_desc "update descriptors",
63             default is \ref CDS_DEFAULT_ALLOCATOR.
64             Note that update descriptor is helping data structure with short lifetime and it is good candidate for pooling.
65             The number of simultaneously existing descriptors is a relatively small number limited the number of threads
66             working with the tree and GC buffer size.
67             Therefore, a bounded lock-free container like \p cds::container::VyukovMPMCCycleQueue is good choice for the free-list
68             of update descriptors, see cds::memory::vyukov_queue_pool free-list implementation.
69             Also notice that size of update descriptor is not dependent on the type of data
70             stored in the tree so single free-list object can be used for several EllenBinTree-based object.
71         - opt::stat - internal statistics. Available types: ellen_bintree::stat, ellen_bintree::empty_stat (the default)
72         - opt::copy_policy - key copy policy defines a functor to copy leaf node's key to internal node.
73             By default, assignment operator is used.
74             The copy functor interface is:
75             \code
76             struct copy_functor {
77                 void operator()( Key& dest, Key const& src );
78             };
79             \endcode
80
81         @note Do not include <tt><cds/container/ellen_bintree_map_impl.h></tt> header file directly.
82         There are header file for each GC type:
83         - <tt><cds/container/ellen_bintree_map_hp.h></tt> - for Hazard Pointer GC cds::gc::HP
84         - <tt><cds/container/ellen_bintree_map_ptb.h></tt> - for Pass-the-Buck GC cds::gc::PTB
85         - <tt><cds/container/ellen_bintree_map_rcu.h></tt> - for RCU GC
86             (see \ref cds_container_EllenBinTreeMap_rcu "RCU-based EllenBinTreeMap")
87     */
88     template <
89         class GC,
90         typename Key,
91         typename T,
92 #ifdef CDS_DOXYGEN_INVOKED
93         class Traits = ellen_bintree::type_traits
94 #else
95         class Traits
96 #endif
97     >
98     class EllenBinTreeMap
99 #ifdef CDS_DOXYGEN_INVOKED
100         : public cds::intrusive::EllenBinTree< GC, Key, T, Traits >
101 #else
102         : public ellen_bintree::details::make_ellen_bintree_map< GC, Key, T, Traits >::type
103 #endif
104     {
105         //@cond
106         typedef ellen_bintree::details::make_ellen_bintree_map< GC, Key, T, Traits > maker;
107         typedef typename maker::type base_class;
108         //@endcond
109     public:
110         typedef GC      gc              ;   ///< Garbage collector
111         typedef Key     key_type        ;   ///< type of a key stored in the map
112         typedef T       mapped_type      ;  ///< type of value stored in the map
113         typedef std::pair< key_type const, mapped_type >    value_type  ;   ///< Key-value pair stored in leaf node of the mp
114         typedef Traits  options         ;   ///< Traits template parameter
115
116 #   ifdef CDS_DOXYGEN_INVOKED
117         typedef implementation_defined key_comparator  ;    ///< key compare functor based on opt::compare and opt::less option setter.
118 #   else
119         typedef typename maker::intrusive_type_traits::compare   key_comparator;
120 #   endif
121         typedef typename base_class::item_counter           item_counter        ; ///< Item counting policy used
122         typedef typename base_class::memory_model           memory_model        ; ///< Memory ordering. See cds::opt::memory_model option
123         typedef typename base_class::node_allocator         node_allocator_type ; ///< allocator for maintaining internal node
124         typedef typename base_class::stat                   stat                ; ///< internal statistics type
125         typedef typename options::copy_policy               copy_policy         ; ///< key copy policy
126
127         typedef typename options::allocator                 allocator_type      ;   ///< Allocator for leaf nodes
128         typedef typename base_class::node_allocator         node_allocator      ;   ///< Internal node allocator
129         typedef typename base_class::update_desc_allocator  update_desc_allocator ; ///< Update descriptor allocator
130
131     protected:
132         //@cond
133         typedef typename base_class::value_type         leaf_node;
134         typedef typename base_class::internal_node      internal_node;
135         typedef typename base_class::update_desc        update_desc;
136
137         typedef typename maker::cxx_leaf_node_allocator cxx_leaf_node_allocator;
138
139         typedef std::unique_ptr< leaf_node, typename maker::leaf_deallocator >    scoped_node_ptr;
140         //@endcond
141
142     public:
143         /// Guarded pointer
144         typedef cds::gc::guarded_ptr< gc, leaf_node, value_type, details::guarded_ptr_cast_set<leaf_node, value_type> > guarded_ptr;
145
146     protected:
147         //@cond
148 #   ifndef CDS_CXX11_LAMBDA_SUPPORT
149         struct empty_insert_functor
150         {
151             void operator()( value_type& ) const
152             {}
153         };
154
155         template <typename Q>
156         class insert_value_functor
157         {
158             Q const&    m_val;
159         public:
160             insert_value_functor( Q const& v)
161                 : m_val(v)
162             {}
163
164             void operator()( value_type& item )
165             {
166                 item.second = m_val;
167             }
168         };
169
170         template <typename Func>
171         class insert_key_wrapper: protected cds::details::functor_wrapper<Func>
172         {
173             typedef cds::details::functor_wrapper<Func> base_class;
174         public:
175             insert_key_wrapper( Func f ): base_class(f) {}
176
177             void operator()( leaf_node& item )
178             {
179                 base_class::get()( item.m_Value );
180             }
181         };
182
183         template <typename Func>
184         class ensure_wrapper: protected cds::details::functor_wrapper<Func>
185         {
186             typedef cds::details::functor_wrapper<Func> base_class;
187         public:
188             ensure_wrapper( Func f) : base_class(f) {}
189
190             void operator()( bool bNew, leaf_node& item, leaf_node const& )
191             {
192                 base_class::get()( bNew, item.m_Value );
193             }
194         };
195
196         template <typename Func>
197         struct erase_functor
198         {
199             Func        m_func;
200
201             erase_functor( Func f )
202                 : m_func(f)
203             {}
204
205             void operator()( leaf_node& node )
206             {
207                 cds::unref(m_func)( node.m_Value );
208             }
209         };
210
211         template <typename Func>
212         class find_wrapper: protected cds::details::functor_wrapper<Func>
213         {
214             typedef cds::details::functor_wrapper<Func> base_class;
215         public:
216             find_wrapper( Func f )
217                 : base_class(f)
218             {}
219
220             template <typename Q>
221             void operator()( leaf_node& item, Q& val )
222             {
223                 base_class::get()( item.m_Value, val );
224             }
225         };
226 #   endif
227         //@endcond
228
229     public:
230         /// Default constructor
231         EllenBinTreeMap()
232             : base_class()
233         {
234             //static_assert( (std::is_same<gc, cds::gc::HP>::value || std::is_same<gc, cds::gc::PTB>::value), "GC must be cds::gc::HP or cds:gc::PTB" );
235         }
236
237         /// Clears the map
238         ~EllenBinTreeMap()
239         {}
240
241         /// Inserts new node with key and default value
242         /**
243             The function creates a node with \p key and default value, and then inserts the node created into the map.
244
245             Preconditions:
246             - The \ref key_type should be constructible from a value of type \p K.
247                 In trivial case, \p K is equal to \ref key_type.
248             - The \ref mapped_type should be default-constructible.
249
250             Returns \p true if inserting successful, \p false otherwise.
251         */
252         template <typename K>
253         bool insert( K const& key )
254         {
255 #       ifdef CDS_CXX11_LAMBDA_SUPPORT
256             return insert_key( key, [](value_type&){} );
257 #       else
258             return insert_key( key, empty_insert_functor() );
259 #       endif
260         }
261
262         /// Inserts new node
263         /**
264             The function creates a node with copy of \p val value
265             and then inserts the node created into the map.
266
267             Preconditions:
268             - The \ref key_type should be constructible from \p key of type \p K.
269             - The \ref value_type should be constructible from \p val of type \p V.
270
271             Returns \p true if \p val is inserted into the map, \p false otherwise.
272         */
273         template <typename K, typename V>
274         bool insert( K const& key, V const& val )
275         {
276             scoped_node_ptr pNode( cxx_leaf_node_allocator().New( key, val ));
277             if ( base_class::insert( *pNode ))
278             {
279                 pNode.release();
280                 return true;
281             }
282             return false;
283         }
284
285         /// Inserts new node and initialize it by a functor
286         /**
287             This function inserts new node with key \p key and if inserting is successful then it calls
288             \p func functor with signature
289             \code
290                 struct functor {
291                     void operator()( value_type& item );
292                 };
293             \endcode
294
295             The argument \p item of user-defined functor \p func is the reference
296             to the map's item inserted:
297                 - <tt>item.first</tt> is a const reference to item's key that cannot be changed.
298                 - <tt>item.second</tt> is a reference to item's value that may be changed.
299
300             The user-defined functor can be passed by reference using <tt>boost::ref</tt>
301             and it is called only if inserting is successful.
302
303             The key_type should be constructible from value of type \p K.
304
305             The function allows to split creating of new item into two part:
306             - create item from \p key;
307             - insert new item into the map;
308             - if inserting is successful, initialize the value of item by calling \p func functor
309
310             This can be useful if complete initialization of object of \p value_type is heavyweight and
311             it is preferable that the initialization should be completed only if inserting is successful.
312         */
313         template <typename K, typename Func>
314         bool insert_key( const K& key, Func func )
315         {
316             scoped_node_ptr pNode( cxx_leaf_node_allocator().New( key ));
317 #       ifdef CDS_CXX11_LAMBDA_SUPPORT
318             if ( base_class::insert( *pNode, [&func]( leaf_node& item ) { cds::unref(func)( item.m_Value ); } ))
319 #       else
320             insert_key_wrapper<Func> wrapper(func);
321             if ( base_class::insert( *pNode, cds::ref(wrapper) ))
322 #endif
323             {
324                 pNode.release();
325                 return true;
326             }
327             return false;
328         }
329
330         /// For key \p key inserts data of type \ref value_type constructed with <tt>std::forward<Args>(args)...</tt>
331         /**
332             Returns \p true if inserting successful, \p false otherwise.
333         */
334         template <typename K, typename... Args>
335         bool emplace( K&& key, Args&&... args )
336         {
337             scoped_node_ptr pNode( cxx_leaf_node_allocator().New( std::forward<K>(key), std::forward<Args>(args)... ));
338             if ( base_class::insert( *pNode )) {
339                 pNode.release();
340                 return true;
341             }
342             return false;
343         }
344
345         /// Ensures that the \p key exists in the map
346         /**
347             The operation performs inserting or changing data with lock-free manner.
348
349             If the \p key not found in the map, then the new item created from \p key
350             is inserted into the map (note that in this case the \ref key_type should be
351             constructible from type \p K).
352             Otherwise, the functor \p func is called with item found.
353             The functor \p Func may be a function with signature:
354             \code
355                 void func( bool bNew, value_type& item );
356             \endcode
357             or a functor:
358             \code
359                 struct my_functor {
360                     void operator()( bool bNew, value_type& item );
361                 };
362             \endcode
363
364             with arguments:
365             - \p bNew - \p true if the item has been inserted, \p false otherwise
366             - \p item - item of the list
367
368             The functor may change any fields of the \p item.second that is \ref value_type.
369
370             You may pass \p func argument by reference using <tt>boost::ref</tt>.
371
372             Returns <tt> std::pair<bool, bool> </tt> where \p first is true if operation is successfull,
373             \p second is true if new item has been added or \p false if the item with \p key
374             already is in the list.
375         */
376         template <typename K, typename Func>
377         std::pair<bool, bool> ensure( K const& key, Func func )
378         {
379             scoped_node_ptr pNode( cxx_leaf_node_allocator().New( key ));
380 #       ifdef CDS_CXX11_LAMBDA_SUPPORT
381             std::pair<bool, bool> res = base_class::ensure( *pNode,
382                 [&func](bool bNew, leaf_node& item, leaf_node const& ){ cds::unref(func)( bNew, item.m_Value ); }
383             );
384 #       else
385             ensure_wrapper<Func> wrapper( func );
386             std::pair<bool, bool> res = base_class::ensure( *pNode, cds::ref(wrapper) );
387 #       endif
388             if ( res.first && res.second )
389                 pNode.release();
390             return res;
391         }
392
393         /// Delete \p key from the map
394         /**\anchor cds_nonintrusive_EllenBinTreeMap_erase_val
395
396             Return \p true if \p key is found and deleted, \p false otherwise
397         */
398         template <typename K>
399         bool erase( K const& key )
400         {
401             return base_class::erase(key);
402         }
403
404         /// Deletes the item from the map using \p pred predicate for searching
405         /**
406             The function is an analog of \ref cds_nonintrusive_EllenBinTreeMap_erase_val "erase(K const&)"
407             but \p pred is used for key comparing.
408             \p Less functor has the interface like \p std::less.
409             \p Less must imply the same element order as the comparator used for building the map.
410         */
411         template <typename K, typename Less>
412         bool erase_with( K const& key, Less pred )
413         {
414             return base_class::erase_with( key, cds::details::predicate_wrapper< leaf_node, Less, typename maker::key_accessor >());
415         }
416
417         /// Delete \p key from the map
418         /** \anchor cds_nonintrusive_EllenBinTreeMap_erase_func
419
420             The function searches an item with key \p key, calls \p f functor
421             and deletes the item. If \p key is not found, the functor is not called.
422
423             The functor \p Func interface:
424             \code
425             struct extractor {
426                 void operator()(value_type& item) { ... }
427             };
428             \endcode
429             The functor may be passed by reference using <tt>boost:ref</tt>
430
431             Return \p true if key is found and deleted, \p false otherwise
432         */
433         template <typename K, typename Func>
434         bool erase( K const& key, Func f )
435         {
436 #       ifdef CDS_CXX11_LAMBDA_SUPPORT
437             return base_class::erase( key, [&f]( leaf_node& node) { cds::unref(f)( node.m_Value ); } );
438 #       else
439             erase_functor<Func> wrapper(f);
440             return base_class::erase( key, cds::ref(wrapper));
441 #       endif
442         }
443
444         /// Deletes the item from the map using \p pred predicate for searching
445         /**
446             The function is an analog of \ref cds_nonintrusive_EllenBinTreeMap_erase_func "erase(K const&, Func)"
447             but \p pred is used for key comparing.
448             \p Less functor has the interface like \p std::less.
449             \p Less must imply the same element order as the comparator used for building the map.
450         */
451         template <typename K, typename Less, typename Func>
452         bool erase_with( K const& key, Less pred, Func f )
453         {
454 #       ifdef CDS_CXX11_LAMBDA_SUPPORT
455             return base_class::erase_with( key, cds::details::predicate_wrapper< leaf_node, Less, typename maker::key_accessor >(),
456                 [&f]( leaf_node& node) { cds::unref(f)( node.m_Value ); } );
457 #       else
458             erase_functor<Func> wrapper(f);
459             return base_class::erase_with( key, cds::details::predicate_wrapper< leaf_node, Less, typename maker::key_accessor >(), cds::ref(wrapper));
460 #       endif
461         }
462
463         /// Extracts an item with minimal key from the map
464         /**
465             If the map is not empty, the function returns \p true, \p result contains a pointer to minimum value.
466             If the map is empty, the function returns \p false, \p result is left unchanged.
467
468             @note Due the concurrent nature of the map, the function extracts <i>nearly</i> minimum key.
469             It means that the function gets leftmost leaf of the tree and tries to unlink it.
470             During unlinking, a concurrent thread may insert an item with key less than leftmost item's key.
471             So, the function returns the item with minimum key at the moment of tree traversing.
472
473             The guarded pointer \p result prevents deallocation of returned item,
474             see cds::gc::guarded_ptr for explanation.
475             @note Each \p guarded_ptr object uses the GC's guard that can be limited resource.
476         */
477         bool extract_min( guarded_ptr& result )
478         {
479             return base_class::extract_min_( result.guard() );
480         }
481
482         /// Extracts an item with maximal key from the map
483         /**
484             If the map is not empty, the function returns \p true, \p result contains a pointer to maximal value.
485             If the map is empty, the function returns \p false, \p result is left unchanged.
486
487             @note Due the concurrent nature of the map, the function extracts <i>nearly</i> maximal key.
488             It means that the function gets rightmost leaf of the tree and tries to unlink it.
489             During unlinking, a concurrent thread may insert an item with key great than leftmost item's key.
490             So, the function returns the item with maximum key at the moment of tree traversing.
491
492             The guarded pointer \p result prevents deallocation of returned item,
493             see cds::gc::guarded_ptr for explanation.
494             @note Each \p guarded_ptr object uses the GC's guard that can be limited resource.
495         */
496         bool extract_max( guarded_ptr& result )
497         {
498             return base_class::extract_max_( result.guard() );
499         }
500
501         /// Extracts an item from the tree
502         /** \anchor cds_nonintrusive_EllenBinTreeMap_extract
503             The function searches an item with key equal to \p key in the tree,
504             unlinks it, and returns pointer to an item found in \p result parameter.
505             If the item  is not found the function returns \p false.
506
507             The guarded pointer \p result prevents deallocation of returned item,
508             see cds::gc::guarded_ptr for explanation.
509             @note Each \p guarded_ptr object uses the GC's guard that can be limited resource.
510         */
511         template <typename Q>
512         bool extract( guarded_ptr& result, Q const& key )
513         {
514             return base_class::extract_( result.guard(), key );
515         }
516
517         /// Extracts an item from the map using \p pred for searching
518         /**
519             The function is an analog of \ref cds_nonintrusive_EllenBinTreeMap_extract "extract(guarded_ptr&, Q const&)"
520             but \p pred is used for key compare.
521             \p Less has the interface like \p std::less.
522             \p pred must imply the same element order as the comparator used for building the map.
523         */
524         template <typename Q, typename Less>
525         bool extract_with( guarded_ptr& result, Q const& key, Less pred )
526         {
527             return base_class::extract_with_( result.guard(), key,
528                 cds::details::predicate_wrapper< leaf_node, Less, typename maker::key_accessor >());
529         }
530
531         /// Find the key \p key
532         /** \anchor cds_nonintrusive_EllenBinTreeMap_find_cfunc
533
534             The function searches the item with key equal to \p key and calls the functor \p f for item found.
535             The interface of \p Func functor is:
536             \code
537             struct functor {
538                 void operator()( value_type& item );
539             };
540             \endcode
541             where \p item is the item found.
542
543             You can pass \p f argument by reference using <tt>boost::ref</tt> or cds::ref.
544
545             The functor may change \p item.second.
546
547             The function returns \p true if \p key is found, \p false otherwise.
548         */
549         template <typename K, typename Func>
550         bool find( K const& key, Func f )
551         {
552 #       ifdef CDS_CXX11_LAMBDA_SUPPORT
553             return base_class::find( key, [&f](leaf_node& item, K const& ) { cds::unref(f)( item.m_Value );});
554 #       else
555             find_wrapper<Func> wrapper(f);
556             return base_class::find( key, cds::ref(wrapper) );
557 #       endif
558         }
559
560         /// Finds the key \p val using \p pred predicate for searching
561         /**
562             The function is an analog of \ref cds_nonintrusive_EllenBinTreeMap_find_cfunc "find(K const&, Func)"
563             but \p pred is used for key comparing.
564             \p Less functor has the interface like \p std::less.
565             \p Less must imply the same element order as the comparator used for building the map.
566         */
567         template <typename K, typename Less, typename Func>
568         bool find_with( K const& key, Less pred, Func f )
569         {
570 #       ifdef CDS_CXX11_LAMBDA_SUPPORT
571             return base_class::find_with( key, cds::details::predicate_wrapper< leaf_node, Less, typename maker::key_accessor >(),
572                 [&f](leaf_node& item, K const& ) { cds::unref(f)( item.m_Value );});
573 #       else
574             find_wrapper<Func> wrapper(f);
575             return base_class::find_with( key, cds::details::predicate_wrapper< leaf_node, Less, typename maker::key_accessor >(), cds::ref(wrapper) );
576 #       endif
577         }
578
579         /// Find the key \p key
580         /** \anchor cds_nonintrusive_EllenBinTreeMap_find_val
581
582             The function searches the item with key equal to \p key
583             and returns \p true if it is found, and \p false otherwise.
584         */
585         template <typename K>
586         bool find( K const& key )
587         {
588             return base_class::find( key );
589         }
590
591         /// Finds the key \p val using \p pred predicate for searching
592         /**
593             The function is an analog of \ref cds_nonintrusive_EllenBinTreeMap_find_val "find(K const&)"
594             but \p pred is used for key comparing.
595             \p Less functor has the interface like \p std::less.
596             \p Less must imply the same element order as the comparator used for building the map.
597         */
598         template <typename K, typename Less>
599         bool find_with( K const& key, Less pred )
600         {
601             return base_class::find_with( key, cds::details::predicate_wrapper< leaf_node, Less, typename maker::key_accessor >() );
602         }
603
604         /// Finds \p key and returns the item found
605         /** @anchor cds_nonintrusive_EllenBinTreeMap_get
606             The function searches the item with key equal to \p key and returns the item found in \p result parameter.
607             The function returns \p true if \p key is found, \p false otherwise.
608
609             The guarded pointer \p result prevents deallocation of returned item,
610             see cds::gc::guarded_ptr for explanation.
611             @note Each \p guarded_ptr object uses the GC's guard that can be limited resource.
612         */
613         template <typename Q>
614         bool get( guarded_ptr& result, Q const& key )
615         {
616             return base_class::get_( result.guard(), key );
617         }
618
619         /// Finds \p key with predicate \p pred and returns the item found
620         /**
621             The function is an analog of \ref cds_nonintrusive_EllenBinTreeMap_get "get(guarded_ptr&, Q const&)"
622             but \p pred is used for key comparing.
623             \p Less functor has the interface like \p std::less.
624             \p pred must imply the same element order as the comparator used for building the map.
625         */
626         template <typename Q, typename Less>
627         bool get_with( guarded_ptr& result, Q const& key, Less pred )
628         {
629             return base_class::get_with_( result.guard(), key,
630                 cds::details::predicate_wrapper< leaf_node, Less, typename maker::key_accessor >() );
631         }
632
633         /// Clears the map
634         void clear()
635         {
636             base_class::clear();
637         }
638
639         /// Checks if the map is empty
640         /**
641             Emptiness is checked by item counting: if item count is zero then the map is empty.
642         */
643         bool empty() const
644         {
645             return base_class::empty();
646         }
647
648         /// Returns item count in the map
649         size_t size() const
650         {
651             return base_class::size();
652         }
653
654         /// Returns const reference to internal statistics
655         stat const& statistics() const
656         {
657             return base_class::statistics();
658         }
659
660         /// Checks internal consistency (not atomic, not thread-safe)
661         /**
662             The debugging function to check internal consistency of the tree.
663         */
664         bool check_consistency() const
665         {
666             return base_class::check_consistency();
667         }
668
669     };
670 }} // namespace cds::container
671
672 #endif //#ifndef __CDS_CONTAINER_ELLEN_BINTREE_MAP_IMPL_H