51a94da30ac511d073941dfd6aa6b98ea46f3e69
[libcds.git] / cds / container / bronson_avltree_map_rcu.h
1 //$$CDS-header$$
2
3 #ifndef CDSLIB_CONTAINER_BRONSON_AVLTREE_MAP_RCU_H
4 #define CDSLIB_CONTAINER_BRONSON_AVLTREE_MAP_RCU_H
5
6 #include <functional>
7 #include <cds/container/impl/bronson_avltree_map_rcu.h>
8
9 namespace cds { namespace container {
10
11     namespace bronson_avltree {
12         //@cond
13         namespace details {
14             template < class RCU, typename Key, typename T, typename Traits>
15             struct make_map
16             {
17                 typedef Key key_type;
18                 typedef T mapped_type;
19                 typedef Traits original_traits;
20
21                 typedef cds::details::Allocator< mapped_type, typename original_traits::allocator > cxx_allocator;
22
23                 struct traits : public original_traits
24                 {
25                     struct disposer {
26                         void operator()( mapped_type * p ) const
27                         {
28                             cxx_allocator().Delete( p );
29                         }
30                     };
31                 };
32
33                 // Metafunction result
34                 typedef BronsonAVLTreeMap< RCU, Key, mapped_type *, traits > type;
35             };
36         } // namespace details
37         //@endcond
38     } // namespace bronson_avltree
39
40     /// Bronson et al AVL-tree (RCU specialization)
41     /** @ingroup cds_nonintrusive_map
42         @ingroup cds_nonintrusive_tree
43         @anchor cds_container_BronsonAVLTreeMap_rcu
44
45         Source:
46             - [2010] N.Bronson, J.Casper, H.Chafi, K.Olukotun "A Practical Concurrent Binary Search Tree"
47             - <a href="http://github.com/nbronson/snaptree">Java implementation</a>
48
49         This is a concurrent AVL tree algorithm that uses hand-over-hand optimistic validation,
50         a concurrency control mechanism for searching and navigating a binary search tree.
51         This mechanism minimizes spurious retries when concurrent structural changes cannot
52         affect the correctness of the search or navigation result.
53         The algorithm is based on partially external trees, a simple scheme that simplifies deletions
54         by leaving a routing node in the tree when deleting a node that has two children,
55         then opportunistically unlinking routing nodes during rebalancing. As in external trees,
56         which store values only in leaf nodes, deletions can be performed locally while holding
57         a fixed number of locks. Partially external trees, however, require far fewer routing nodes
58         than an external tree for most sequences of insertions and deletions.
59         The algorithm uses optimistic concurrency control, but carefully manage the
60         tree in such a way that all atomic regions have fixed read and write sets
61         that are known ahead of time. This allows to reduce practical overheads by embedding
62         the concurrency control directly. To perform tree operations using only fixed sized
63         atomic regions the algo uses the following mechanisms: search operations overlap atomic blocks as
64         in the hand-over-hand locking technique; mutations perform rebalancing separately;
65         and deletions occasionally leave a routing node in the tree.
66
67         <b>Template arguments</b>:
68         - \p RCU - one of \ref cds_urcu_gc "RCU type"
69         - \p Key - key type
70         - \p T - value type to be stored in tree's nodes.
71         - \p Traits - tree traits, default is \p bronson_avltree::traits
72             It is possible to declare option-based tree with \p bronson_avltree::make_traits metafunction
73             instead of \p Traits template argument.
74
75         There is \ref cds_container_BronsonAVLTreeMap_rcu_ptr "a specialization" for "key -> value pointer" map.
76
77         @note Before including <tt><cds/container/bronson_avltree_map_rcu.h></tt> you should include appropriate RCU header file,
78         see \ref cds_urcu_gc "RCU type" for list of existing RCU class and corresponding header files.
79     */
80     template <
81         typename RCU,
82         typename Key,
83         typename T,
84 #   ifdef CDS_DOXYGEN_INVOKED
85         typename Traits = bronson_avltree::traits
86 #else
87         typename Traits
88 #endif
89     >
90     class BronsonAVLTreeMap< cds::urcu::gc<RCU>, Key, T, Traits >
91 #ifdef CDS_DOXYGEN_INVOKED
92         : private BronsonAVLTreeMap< cds::urcu::gc<RCU>, Key, T*, Traits >
93 #else
94         : private bronson_avltree::details::make_map< cds::urcu::gc<RCU>, Key, T, Traits >::type
95 #endif
96     {
97         //@cond
98         typedef bronson_avltree::details::make_map< cds::urcu::gc<RCU>, Key, T, Traits > maker;
99         typedef typename maker::type base_class;
100         //@endcond
101
102     public:
103         typedef cds::urcu::gc<RCU>  gc;   ///< RCU Garbage collector
104         typedef Key     key_type;    ///< type of a key stored in the map
105         typedef T       mapped_type; ///< type of value stored in the map
106         typedef Traits  traits;      ///< Traits template parameter
107
108         typedef typename base_class::key_comparator     key_comparator;     ///< key compare functor based on \p Traits::compare and \p Traits::less
109         typedef typename traits::item_counter           item_counter;       ///< Item counting policy
110         typedef typename traits::memory_model           memory_model;       ///< Memory ordering, see \p cds::opt::memory_model option
111         typedef typename traits::allocator              allocator_type;     ///< allocator for value
112         typedef typename traits::node_allocator         node_allocator_type;///< allocator for maintaining internal nodes
113         typedef typename traits::stat                   stat;               ///< internal statistics
114         typedef typename traits::rcu_check_deadlock     rcu_check_deadlock; ///< Deadlock checking policy
115         typedef typename traits::back_off               back_off;           ///< Back-off strategy
116         typedef typename traits::sync_monitor           sync_monitor;       ///< @ref cds_sync_monitor "Synchronization monitor" type for node-level locking
117
118         /// Enabled or disabled @ref bronson_avltree::relaxed_insert "relaxed insertion"
119         static bool const c_bRelaxedInsert = traits::relaxed_insert;
120
121         /// Group of \p extract_xxx functions does not require external locking
122         static CDS_CONSTEXPR const bool c_bExtractLockExternal = base_class::c_bExtractLockExternal;
123
124         typedef typename base_class::rcu_lock   rcu_lock;  ///< RCU scoped lock
125
126         /// Returned pointer to \p mapped_type of extracted node
127         typedef typename base_class::exempt_ptr exempt_ptr;
128
129     protected:
130         //@cond
131         typedef typename base_class::node_type        node_type;
132         typedef typename base_class::node_scoped_lock node_scoped_lock;
133         typedef typename maker::cxx_allocator         cxx_allocator;
134
135         typedef typename base_class::update_flags update_flags;
136         //@endcond
137
138     public:
139         /// Creates empty map
140         BronsonAVLTreeMap()
141         {}
142
143         /// Destroys the map
144         ~BronsonAVLTreeMap()
145         {}
146
147         /// Inserts new node with \p key and default value
148         /**
149             The function creates a node with \p key and default value, and then inserts the node created into the map.
150
151             Preconditions:
152             - The \p key_type should be constructible from a value of type \p K.
153             - The \p mapped_type should be default-constructible.
154
155             RCU \p synchronize() can be called. RCU should not be locked.
156
157             Returns \p true if inserting successful, \p false otherwise.
158         */
159         template <typename K>
160         bool insert( K const& key )
161         {
162             return base_class::do_update(key, key_comparator(),
163                 []( node_type * pNode ) -> mapped_type*
164                 {
165                     assert( pNode->m_pValue.load( memory_model::memory_order_relaxed ) == nullptr );
166                     CDS_UNUSED( pNode );
167                     return cxx_allocator().New();
168                 },
169                 update_flags::allow_insert
170             ) == update_flags::result_inserted;
171         }
172
173         /// Inserts new node
174         /**
175             The function creates a node with copy of \p val value
176             and then inserts the node created into the map.
177
178             Preconditions:
179             - The \p key_type should be constructible from \p key of type \p K.
180             - The \p mapped_type should be constructible from \p val of type \p V.
181
182             RCU \p synchronize() method can be called. RCU should not be locked.
183
184             Returns \p true if \p val is inserted into the map, \p false otherwise.
185         */
186         template <typename K, typename V>
187         bool insert( K const& key, V const& val )
188         {
189             return base_class::do_update( key, key_comparator(),
190                 [&val]( node_type * pNode ) -> mapped_type*
191                 {
192                     assert( pNode->m_pValue.load( memory_model::memory_order_relaxed ) == nullptr );
193                     CDS_UNUSED( pNode );
194                     return cxx_allocator().New( val );
195                 },
196                 update_flags::allow_insert
197             ) == update_flags::result_inserted;
198         }
199
200         /// Inserts new node and initialize it by a functor
201         /**
202             This function inserts new node with key \p key and if inserting is successful then it calls
203             \p func functor with signature
204             \code
205                 struct functor {
206                     void operator()( key_type const& key, mapped_type& item );
207                 };
208             \endcode
209
210             The key_type should be constructible from value of type \p K.
211
212             The function allows to split creating of new item into two part:
213             - create item from \p key;
214             - insert new item into the map;
215             - if inserting is successful, initialize the value of item by calling \p func functor
216
217             This can be useful if complete initialization of object of \p value_type is heavyweight and
218             it is preferable that the initialization should be completed only if inserting is successful.
219             The functor is called under the node lock.
220
221             RCU \p synchronize() method can be called. RCU should not be locked.
222         */
223         template <typename K, typename Func>
224         bool insert_with( K const& key, Func func )
225         {
226             return base_class::do_update( key, key_comparator(),
227                 [&func]( node_type * pNode ) -> mapped_type*
228                 {
229                     assert( pNode->m_pValue.load( memory_model::memory_order_relaxed ) == nullptr );
230                     mapped_type * pVal = cxx_allocator().New();
231                     func( pNode->m_key, *pVal );
232                     return pVal;
233                 },
234                 update_flags::allow_insert
235             ) == update_flags::result_inserted;
236         }
237
238         /// For key \p key inserts data of type \p mapped_type created in-place from \p args
239         /**
240             Returns \p true if inserting successful, \p false otherwise.
241
242             RCU \p synchronize() method can be called. RCU should not be locked.
243         */
244         template <typename K, typename... Args>
245         bool emplace( K&& key, Args&&... args )
246         {
247 #       if !( CDS_COMPILER == CDS_COMPILER_GCC && CDS_COMPILER_VERSION >= 40800 && CDS_COMPILER_VERSION < 40900 )
248             // Probably, the following code is not so efficient, since we pass lvalues instead rvalues to lambda
249             //TODO: study how to pass a parameter pack to a lambda efficiently using perfect forwarding
250             // see http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#904 - this is what we need
251             return base_class::do_update( key, key_comparator(),
252                 [&args...]( node_type * pNode ) -> mapped_type *
253                 {
254                     assert( pNode->m_pValue.load( memory_model::memory_order_relaxed ) == nullptr );
255                     CDS_UNUSED( pNode );
256                     return cxx_allocator().New( std::forward<Args>(args)...);
257                 },
258                 update_flags::allow_insert
259             ) == update_flags::result_inserted;
260 #       else
261             // gcc 4.8 error: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=47226
262             // workaround (from http://stackoverflow.com/questions/14191989/how-do-i-use-variadic-perfect-forwarding-into-a-lambda)
263             auto f = std::bind<mapped_type *>(
264                         []( Args... args) -> mapped_type* { return cxx_allocator().New( std::move(args)...); },
265                         std::forward<Args>(args)...
266                         );
267             return base_class::do_update( key, key_comparator(),
268                 [&f]( node_type * pNode ) -> mapped_type *
269                 {
270                     assert( pNode->m_pValue.load( memory_model::memory_order_relaxed ) == nullptr );
271                     CDS_UNUSED( pNode );
272                     return f();
273                 },
274                 update_flags::allow_insert
275             ) == update_flags::result_inserted;
276 #       endif
277         }
278
279         /// Updates the value for \p key
280         /**
281             The operation performs inserting or changing data with lock-free manner.
282
283             If the \p key not found in the map, then the new item created from \p key
284             will be inserted into the map iff \p bAllowInsert is \p true 
285             (note that in this case the \ref key_type should be constructible from type \p K).
286             Otherwise, the functor \p func is called with item found.
287             The functor \p Func signature is:
288             \code
289                 struct my_functor {
290                     void operator()( bool bNew, key_type const& key, mapped_type& item );
291                 };
292             \endcode
293
294             with arguments:
295             - \p bNew - \p true if the item has been inserted, \p false otherwise
296             - \p item - value
297
298             The functor may change any fields of the \p item. The functor is called under the node lock,
299             the caller can change any field of \p item.
300
301             RCU \p synchronize() method can be called. RCU should not be locked.
302
303             Returns <tt> std::pair<bool, bool> </tt> where \p first is \p true if operation is successfull,
304             \p second is \p true if new item has been added or \p false if the item with \p key
305             already exists.
306         */
307         template <typename K, typename Func>
308         std::pair<bool, bool> update( K const& key, Func func, bool bAllowInsert = true )
309         {
310             int result = base_class::do_update( key, key_comparator(),
311                 [&func]( node_type * pNode ) -> mapped_type*
312                 {
313                     mapped_type * pVal = pNode->m_pValue.load( memory_model::memory_order_relaxed );
314                     if ( !pVal ) {
315                         pVal = cxx_allocator().New();
316                         func( true, pNode->m_key, *pVal );
317                     }
318                     else
319                         func( false, pNode->m_key, *pVal );
320                     return pVal;
321                 },
322                 (bAllowInsert ? update_flags::allow_insert : 0) | update_flags::allow_update
323             );
324             return std::make_pair( result != 0, (result & update_flags::result_inserted) != 0 );
325         }
326
327
328         /// Delete \p key from the map
329         /**
330             RCU \p synchronize() method can be called. RCU should not be locked.
331
332             Return \p true if \p key is found and deleted, \p false otherwise
333         */
334         template <typename K>
335         bool erase( K const& key )
336         {
337             return base_class::erase( key );
338         }
339
340         /// Deletes the item from the map using \p pred predicate for searching
341         /**
342             The function is an analog of \p erase(K const&)
343             but \p pred is used for key comparing.
344             \p Less functor has the interface like \p std::less.
345             \p Less must imply the same element order as the comparator used for building the map.
346         */
347         template <typename K, typename Less>
348         bool erase_with( K const& key, Less pred )
349         {
350             return base_class::erase_with( key, pred );
351         }
352
353         /// Delete \p key from the map
354         /** \anchor cds_nonintrusive_BronsonAVLTreeMap_rcu_erase_func
355
356             The function searches an item with key \p key, calls \p f functor
357             and deletes the item. If \p key is not found, the functor is not called.
358
359             The functor \p Func interface:
360             \code
361             struct extractor {
362                 void operator()(key_type const& key, mapped_type& item) { ... }
363             };
364             \endcode
365
366             RCU \p synchronize method can be called. RCU should not be locked.
367
368             Return \p true if key is found and deleted, \p false otherwise
369         */
370         template <typename K, typename Func>
371         bool erase( K const& key, Func f )
372         {
373             return base_class::erase( key, f );
374         }
375
376         /// Deletes the item from the map using \p pred predicate for searching
377         /**
378             The function is an analog of \ref cds_nonintrusive_BronsonAVLTreeMap_rcu_erase_func "erase(K const&, Func)"
379             but \p pred is used for key comparing.
380             \p Less functor has the interface like \p std::less.
381             \p Less must imply the same element order as the comparator used for building the map.
382         */
383         template <typename K, typename Less, typename Func>
384         bool erase_with( K const& key, Less pred, Func f )
385         {
386             return base_class::erase_with( key, pred, f );
387         }
388
389         /// Extracts a value with minimal key from the map
390         /**
391             Returns \p exempt_ptr pointer to the leftmost item.
392             If the set is empty, returns empty \p exempt_ptr.
393
394             Note that the function returns only the value for minimal key.
395             To retrieve its key use \p extract_min( Func ) member function.
396
397             @note Due the concurrent nature of the map, the function extracts <i>nearly</i> minimum key.
398             It means that the function gets leftmost leaf of the tree and tries to unlink it.
399             During unlinking, a concurrent thread may insert an item with key less than leftmost item's key.
400             So, the function returns the item with minimum key at the moment of tree traversing.
401
402             RCU \p synchronize method can be called. RCU should NOT be locked.
403             The function does not free the item.
404             The deallocator will be implicitly invoked when the returned object is destroyed or when
405             its \p release() member function is called.
406         */
407         exempt_ptr extract_min()
408         {
409             return base_class::extract_min();
410         }
411
412         /// Extracts minimal key key and corresponding value
413         /**
414             Returns \p exempt_ptr to the leftmost item.
415             If the tree is empty, returns empty \p exempt_ptr.
416
417             \p Func functor is used to store minimal key.
418             \p Func has the following signature:
419             \code
420                 struct functor {
421                     void operator()( key_type const& key );
422                 };
423             \endcode
424             If the tree is empty, \p f is not called.
425             Otherwise, is it called with minimal key, the pointer to corresponding value is returned
426             as \p exempt_ptr.
427
428             @note Due the concurrent nature of the map, the function extracts <i>nearly</i> minimum key.
429             It means that the function gets leftmost leaf of the tree and tries to unlink it.
430             During unlinking, a concurrent thread may insert an item with key less than leftmost item's key.
431             So, the function returns the item with minimum key at the moment of tree traversing.
432
433             RCU \p synchronize method can be called. RCU should NOT be locked.
434             The function does not free the item.
435             The deallocator will be implicitly invoked when the returned object is destroyed or when
436             its \p release() member function is called.
437         */
438         template <typename Func>
439         exempt_ptr extract_min( Func f )
440         {
441             return base_class::extract_min( f );
442         }
443
444         /// Extracts minimal key key and corresponding value
445         /**
446             This function is a shortcut for the following call:
447             \code
448                 key_type key;
449                 exempt_ptr xp = theTree.extract_min( [&key]( key_type const& k ) { key = k; } );
450             \endcode
451             \p key_type should be copy-assignable. The copy of minimal key
452             is returned in \p min_key argument.
453         */
454         typename std::enable_if< std::is_copy_assignable<key_type>::value, exempt_ptr >::type
455         extract_min_key( key_type& min_key )
456         {
457             return base_class::extract_min_key( min_key );
458         }
459
460         /// Extracts an item with maximal key from the map
461         /**
462             Returns \p exempt_ptr pointer to the rightmost item.
463             If the set is empty, returns empty \p exempt_ptr.
464
465             Note that the function returns only the value for maximal key.
466             To retrieve its key use \p extract_max( Func ) or \p extract_max_key(key_type&) member function.
467
468             @note Due the concurrent nature of the map, the function extracts <i>nearly</i> maximal key.
469             It means that the function gets rightmost leaf of the tree and tries to unlink it.
470             During unlinking, a concurrent thread may insert an item with key great than leftmost item's key.
471             So, the function returns the item with maximum key at the moment of tree traversing.
472
473             RCU \p synchronize method can be called. RCU should NOT be locked.
474             The function does not free the item.
475             The deallocator will be implicitly invoked when the returned object is destroyed or when
476             its \p release() is called.
477         */
478         exempt_ptr extract_max()
479         {
480             return base_class::extract_max();
481         }
482
483         /// Extracts the maximal key and corresponding value
484         /**
485             Returns \p exempt_ptr pointer to the rightmost item.
486             If the set is empty, returns empty \p exempt_ptr.
487
488             \p Func functor is used to store maximal key.
489             \p Func has the following signature:
490             \code
491                 struct functor {
492                     void operator()( key_type const& key );
493                 };
494             \endcode
495             If the tree is empty, \p f is not called.
496             Otherwise, is it called with maximal key, the pointer to corresponding value is returned
497             as \p exempt_ptr.
498
499             @note Due the concurrent nature of the map, the function extracts <i>nearly</i> maximal key.
500             It means that the function gets rightmost leaf of the tree and tries to unlink it.
501             During unlinking, a concurrent thread may insert an item with key great than leftmost item's key.
502             So, the function returns the item with maximum key at the moment of tree traversing.
503
504             RCU \p synchronize method can be called. RCU should NOT be locked.
505             The function does not free the item.
506             The deallocator will be implicitly invoked when the returned object is destroyed or when
507             its \p release() is called.
508         */
509         template <typename Func>
510         exempt_ptr extract_max( Func f )
511         {
512             return base_class::extract_max( f );
513         }
514
515         /// Extracts the maximal key and corresponding value
516         /**
517             This function is a shortcut for the following call:
518             \code
519                 key_type key;
520                 exempt_ptr xp = theTree.extract_max( [&key]( key_type const& k ) { key = k; } );
521             \endcode
522             \p key_type should be copy-assignable. The copy of maximal key
523             is returned in \p max_key argument.
524         */
525         typename std::enable_if< std::is_copy_assignable<key_type>::value, exempt_ptr >::type
526         extract_max_key( key_type& max_key )
527         {
528             return base_class::extract_max_key( max_key );
529         }
530
531         /// Extracts an item from the map
532         /**
533             The function searches an item with key equal to \p key in the tree,
534             unlinks it, and returns \p exempt_ptr pointer to a value found.
535             If \p key is not found the function returns an empty \p exempt_ptr.
536
537             RCU \p synchronize method can be called. RCU should NOT be locked.
538             The function does not destroy the value found.
539             The dealloctor will be implicitly invoked when the returned object is destroyed or when
540             its \p release() member function is called.
541         */
542         template <typename Q>
543         exempt_ptr extract( Q const& key )
544         {
545             return base_class::extract( key );
546         }
547
548         /// Extracts an item from the map using \p pred for searching
549         /**
550             The function is an analog of \p extract(Q const&)
551             but \p pred is used for key compare.
552             \p Less has the interface like \p std::less.
553             \p pred must imply the same element order as the comparator used for building the map.
554         */
555         template <typename Q, typename Less>
556         exempt_ptr extract_with( Q const& key, Less pred )
557         {
558             return base_class::extract_with( key, pred );
559         }
560
561         /// Find the key \p key
562         /**
563             The function searches the item with key equal to \p key and calls the functor \p f for item found.
564             The interface of \p Func functor is:
565             \code
566             struct functor {
567                 void operator()( key_type const& key, mapped_type& val );
568             };
569             \endcode
570             where \p val is the item found for \p key
571             The functor is called under node-level lock.
572
573             The function applies RCU lock internally.
574
575             The function returns \p true if \p key is found, \p false otherwise.
576         */
577         template <typename K, typename Func>
578         bool find( K const& key, Func f )
579         {
580             return base_class::find( key, f );
581         }
582
583         /// Finds the key \p val using \p pred predicate for searching
584         /**
585             The function is an analog of \p find(K const&, Func)
586             but \p pred is used for key comparing.
587             \p Less functor has the interface like \p std::less.
588             \p Less must imply the same element order as the comparator used for building the map.
589         */
590         template <typename K, typename Less, typename Func>
591         bool find_with( K const& key, Less pred, Func f )
592         {
593             return base_class::find_with( key, pred, f );
594         }
595
596         /// Checks whether the map contains \p key
597         /**
598             The function searches the item with key equal to \p key
599             and returns \p true if it is found, and \p false otherwise.
600
601             The function applies RCU lock internally.
602         */
603         template <typename K>
604         bool contains( K const& key )
605         {
606             return base_class::contains( key );
607         }
608
609         /// Checks whether the map contains \p key using \p pred predicate for searching
610         /**
611             The function is similar to <tt>contains( key )</tt> but \p pred is used for key comparing.
612             \p Less functor has the interface like \p std::less.
613             \p Less must imply the same element order as the comparator used for building the set.
614         */
615         template <typename K, typename Less>
616         bool contains( K const& key, Less pred )
617         {
618             return base_class::contains( key, pred );
619         }
620
621         /// Clears the map
622         void clear()
623         {
624             base_class::clear();
625         }
626
627         /// Checks if the map is empty
628         bool empty() const
629         {
630             return base_class::empty();
631         }
632
633         /// Returns item count in the map
634         /**
635             Only leaf nodes containing user data are counted.
636
637             The value returned depends on item counter type provided by \p Traits template parameter.
638             If it is \p atomicity::empty_item_counter this function always returns 0.
639
640             The function is not suitable for checking the tree emptiness, use \p empty()
641             member function for this purpose.
642         */
643         size_t size() const
644         {
645             return base_class::size();
646         }
647
648         /// Returns const reference to internal statistics
649         stat const& statistics() const
650         {
651             return base_class::statistics();
652         }
653
654         /// Returns reference to \p sync_monitor object
655         sync_monitor& monitor()
656         {
657             return base_class::monitor();
658         }
659         //@cond
660         sync_monitor const& monitor() const
661         {
662             return base_class::monitor();
663         }
664         //@endcond
665
666         /// Checks internal consistency (not atomic, not thread-safe)
667         /**
668             The debugging function to check internal consistency of the tree.
669         */
670         bool check_consistency() const
671         {
672             return base_class::check_consistency();
673         }
674
675         /// Checks internal consistency (not atomic, not thread-safe)
676         /**
677             The debugging function to check internal consistency of the tree.
678             The functor \p Func is called if a violation of internal tree structure
679             is found:
680             \code
681             struct functor {
682                 void operator()( size_t nLevel, size_t hLeft, size_t hRight );
683             };
684             \endcode
685             where
686             - \p nLevel - the level where the violation is found
687             - \p hLeft - the height of left subtree
688             - \p hRight - the height of right subtree
689
690             The functor is called for each violation found.
691         */
692         template <typename Func>
693         bool check_consistency( Func f ) const
694         {
695             return base_class::check_consistency( f );
696         }
697     };
698 }} // namespace cds::container
699
700 #endif // #ifndef CDSLIB_CONTAINER_IMPL_BRONSON_AVLTREE_MAP_RCU_H