intrusive::MichaelSet refactoring
[libcds.git] / cds / intrusive / details / michael_set_base.h
1 //$$CDS-header$$
2
3 #ifndef __CDS_INTRUSIVE_DETAILS_MICHAEL_SET_BASE_H
4 #define __CDS_INTRUSIVE_DETAILS_MICHAEL_SET_BASE_H
5
6 #include <cds/intrusive/details/base.h>
7 #include <cds/opt/compare.h>
8 #include <cds/opt/hash.h>
9 #include <cds/algo/bitop.h>
10 #include <cds/cxx11_atomic.h>
11
12 namespace cds { namespace intrusive {
13
14     /// MichaelHashSet related definitions
15     /** @ingroup cds_intrusive_helper
16     */
17     namespace michael_set {
18
19         /// MichaelHashSet traits
20         struct traits {
21             /// Hash function
22             /**
23                 Hash function converts the key fields of struct \p T stored in the hash-set
24                 into value of type \p size_t called hash value that is an index of hash table.
25
26                 This is mandatory type and has no predefined one.
27             */
28             typedef opt::none hash;
29
30             /// Item counter
31             /**
32                 The item counting is an important part of \p MichaelHashSet algorithm:
33                 the \p empty() member function depends on correct item counting.
34                 Therefore, \p atomicity::empty_item_counter is not allowed as a type of the option.
35
36                 Default is \p atomicity::item_counter.
37             */
38             typedef cds::atomicity::item_counter item_counter;
39
40             /// Bucket table allocator
41             /**
42                 Allocator for bucket table. Default is \ref CDS_DEFAULT_ALLOCATOR
43                 The allocator uses only in constructor for allocating bucket table
44                 and in destructor for destroying bucket table
45             */
46             typedef CDS_DEFAULT_ALLOCATOR   allocator;
47         };
48
49         /// Metafunction converting option list to traits struct
50         /**
51             Available \p Options:
52             - \p opt::hash - mandatory option, specifies hash functor.
53             - \p opt::item_counter - optional, specifies item counting policy. See \p traits::item_counter
54                 for default type.
55             - \p opt::allocator - optional, bucket table allocator. Default is \ref CDS_DEFAULT_ALLOCATOR.
56         */
57         template <typename... Options>
58         struct make_traits {
59             typedef typename cds::opt::make_options< traits, Options...>::type type;   ///< Metafunction result
60         };
61
62         //@cond
63         namespace details {
64             static inline size_t init_hash_bitmask( size_t nMaxItemCount, size_t nLoadFactor )
65             {
66                 if ( nLoadFactor == 0 )
67                     nLoadFactor = 1;
68                 if ( nMaxItemCount == 0 )
69                     nMaxItemCount = 4;
70                 const size_t nBucketCount = (size_t)( nMaxItemCount / nLoadFactor );
71                 const size_t nLog2 = cds::bitop::MSB( nBucketCount );
72
73                 return (( size_t( 1 << nLog2 ) < nBucketCount ? size_t( 1 << (nLog2 + 1) ) : size_t( 1 << nLog2 ))) - 1;
74             }
75
76             template <typename OrderedList, bool IsConst>
77             struct list_iterator_selector;
78
79             template <typename OrderedList>
80             struct list_iterator_selector< OrderedList, false>
81             {
82                 typedef OrderedList * bucket_ptr;
83                 typedef typename OrderedList::iterator  type;
84             };
85
86             template <typename OrderedList>
87             struct list_iterator_selector< OrderedList, true>
88             {
89                 typedef OrderedList const * bucket_ptr;
90                 typedef typename OrderedList::const_iterator  type;
91             };
92
93             template <typename OrderedList, bool IsConst>
94             class iterator
95             {
96             protected:
97                 typedef OrderedList bucket_type;
98                 typedef typename list_iterator_selector< bucket_type, IsConst>::bucket_ptr bucket_ptr;
99                 typedef typename list_iterator_selector< bucket_type, IsConst>::type list_iterator;
100
101                 bucket_ptr      m_pCurBucket;
102                 list_iterator   m_itList;
103                 bucket_ptr      m_pEndBucket;
104
105                 void next()
106                 {
107                     if ( m_pCurBucket < m_pEndBucket ) {
108                         if ( ++m_itList != m_pCurBucket->end() )
109                             return;
110                         while ( ++m_pCurBucket < m_pEndBucket ) {
111                             m_itList = m_pCurBucket->begin();
112                             if ( m_itList != m_pCurBucket->end() )
113                                 return;
114                         }
115                     }
116                     m_pCurBucket = m_pEndBucket - 1;
117                     m_itList = m_pCurBucket->end();
118                 }
119
120             public:
121                 typedef typename list_iterator::value_ptr   value_ptr;
122                 typedef typename list_iterator::value_ref   value_ref;
123
124             public:
125                 iterator()
126                     : m_pCurBucket( nullptr )
127                     , m_itList()
128                     , m_pEndBucket( nullptr )
129                 {}
130
131                 iterator( list_iterator const& it, bucket_ptr pFirst, bucket_ptr pLast )
132                     : m_pCurBucket( pFirst )
133                     , m_itList( it )
134                     , m_pEndBucket( pLast )
135                 {
136                     if ( it == pFirst->end() )
137                         next();
138                 }
139
140                 iterator( iterator const& src )
141                     : m_pCurBucket( src.m_pCurBucket )
142                     , m_itList( src.m_itList )
143                     , m_pEndBucket( src.m_pEndBucket )
144                 {}
145
146                 value_ptr operator ->() const
147                 {
148                     assert( m_pCurBucket != nullptr );
149                     return m_itList.operator ->();
150                 }
151
152                 value_ref operator *() const
153                 {
154                     assert( m_pCurBucket != nullptr );
155                     return m_itList.operator *();
156                 }
157
158                 /// Pre-increment
159                 iterator& operator ++()
160                 {
161                     next();
162                     return *this;
163                 }
164
165                 iterator& operator = (const iterator& src)
166                 {
167                     m_pCurBucket = src.m_pCurBucket;
168                     m_pEndBucket = src.m_pEndBucket;
169                     m_itList = src.m_itList;
170                     return *this;
171                 }
172
173                 bucket_ptr bucket() const
174                 {
175                     return m_pCurBucket != m_pEndBucket ? m_pCurBucket : nullptr;
176                 }
177
178                 template <bool C>
179                 bool operator ==(iterator<OrderedList, C> const& i ) const
180                 {
181                     return m_pCurBucket == i.m_pCurBucket && m_itList == i.m_itList;
182                 }
183                 template <bool C>
184                 bool operator !=(iterator<OrderedList, C> const& i ) const
185                 {
186                     return !( *this == i );
187                 }
188
189             };
190         }
191         //@endcond
192     }
193
194     //@cond
195     // Forward declarations
196     template <class GC, class OrderedList, class Traits = michael_set::traits>
197     class MichaelHashSet;
198     //@endcond
199
200 }} // namespace cds::intrusive
201
202 #endif // #ifndef __CDS_INTRUSIVE_DETAILS_MICHAEL_SET_BASE_H