-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbool_array.h
365 lines (326 loc) · 10.9 KB
/
bool_array.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
// -*- Mode: C++; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
// vim:tabstop=4:shiftwidth=4:expandtab:
/*
* Copyright (C) 2004-2014 Wu Yongwei <adah at users dot sourceforge dot net>
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any
* damages arising from the use of this software.
*
* Permission is granted to anyone to use this software for any purpose,
* including commercial applications, and to alter it and redistribute
* it freely, subject to the following restrictions:
*
* 1. The origin of this software must not be misrepresented; you must
* not claim that you wrote the original software. If you use this
* software in a product, an acknowledgement in the product
* documentation would be appreciated but is not required.
* 2. Altered source versions must be plainly marked as such, and must
* not be misrepresented as being the original software.
* 3. This notice may not be removed or altered from any source
* distribution.
*
* This file is part of Stones of Nvwa:
* http://sourceforge.net/projects/nvwa
*
*/
/**
* @file bool_array.h
*
* Header file for class bool_array (packed boolean array).
*
* @date 2014-11-29
*/
#ifndef NVWA_BOOL_ARRAY_H
#define NVWA_BOOL_ARRAY_H
#include <assert.h> // assert
#include <stdlib.h> // exit/free/NULL
#include <new> // std::bad_alloc
#include <stdexcept> // std::out_of_range
#include <string> // for exception constructors
#include "_nvwa.h" // NVWA_NAMESPACE_*
#include "c++11.h" // _NOEXCEPT/_NULLPTR
NVWA_NAMESPACE_BEGIN
/**
* Class to represent a packed boolean array.
*
* This was first written in April 1995, before I knew of any existing
* implementation of this kind of classes. Of course, the C++ Standard
* Template Library now demands an implementation of packed boolean
* array as \c vector<bool>, but the code here should still be
* useful for the following reasons:
*
* -# Some compilers (like MSVC 6) did not implement this
* specialization (and they may not have a \c bit_vector either);
* -# I included some additional member functions, like \e #initialize,
* \e #count, and \e #find, which should be useful;
* -# My tests show that the code here is significantly FASTER
* than \c vector<bool> (and the normal boolean array)
* under MSVC versions 6/8/9 and GCC versions before 4.3 (while
* the \c vector<bool> implementations of MSVC 7.1 and
* GCC 4.3 have performance similar to that of \c bool_array).
*/
class bool_array
{
public:
#if (defined(__x86_64) || defined(__ia64) || defined(__ppc64__) || \
defined(_WIN64) || defined(_M_IA64)) && \
!(defined(_LP64) || defined(__lp64))
/** Type of array indices. */
typedef unsigned long long size_type;
#else
/** Type of array indices. */
typedef unsigned long size_type;
#endif
private:
/** Private definition of byte to avoid polluting the global namespace. */
typedef unsigned char byte;
/** Class to represent a reference to an array element. */
template <typename _Byte_type>
class _Element
{
public:
_Element(_Byte_type* ptr, size_type pos);
bool operator=(bool value);
operator bool() const;
private:
_Byte_type* _M_byte_ptr;
size_t _M_byte_pos;
size_t _M_bit_pos;
};
public:
typedef _Element<byte> reference; ///< Type of reference
typedef _Element<const byte> const_reference; ///< Type of const reference
#if defined(_MSC_VER) && _MSC_VER < 1300
enum { npos = (size_type)-1 /**< Constant representing `not found' */ };
#else
/** Constant representing `not found'. */
static const size_type npos = (size_type)-1;
#endif
bool_array() _NOEXCEPT;
explicit bool_array(size_type size);
bool_array(const void* ptr, size_type size);
~bool_array();
bool_array(const bool_array& rhs);
bool_array& operator=(const bool_array& rhs);
bool create(size_type size) _NOEXCEPT;
void initialize(bool value) _NOEXCEPT;
reference operator[](size_type pos);
const_reference operator[](size_type pos) const;
bool at(size_type pos) const;
void reset(size_type pos);
void set(size_type pos);
size_type size() const _NOEXCEPT;
size_type count() const _NOEXCEPT;
size_type count(size_type begin, size_type end = npos) const;
size_type find(bool value, size_type offset = 0) const;
size_type find(bool value, size_type offset, size_type count) const;
size_type find_until(bool value, size_type begin, size_type end) const;
void flip() _NOEXCEPT;
void swap(bool_array& rhs) _NOEXCEPT;
void merge_and(const bool_array& rhs,
size_type begin = 0,
size_type end = npos,
size_type offset = 0);
void merge_or (const bool_array& rhs,
size_type begin = 0,
size_type end = npos,
size_type offset = 0);
void copy_to_bitmap(void* dest, size_type begin = 0, size_type end = npos);
static size_t get_num_bytes_from_bits(size_type num_bits);
private:
byte get_8bits(size_type offset, size_type end) const;
byte* _M_byte_ptr;
size_type _M_length;
static byte _S_bit_count[256];
static byte _S_bit_ordinal[256];
};
/* Inline functions */
/**
* Constructs a reference to an array element.
*
* @param ptr ptr to the interal boolean data
* @param pos position of the array element to access
*/
template <typename _Byte_type>
inline bool_array::_Element<_Byte_type>::_Element(
_Byte_type* ptr,
size_type pos)
{
_M_byte_ptr = ptr;
_M_byte_pos = (size_t)(pos / 8);
_M_bit_pos = (size_t)(pos % 8);
}
/**
* Assigns a new boolean value to an array element.
*
* @param value the new boolean value
* @return the assigned boolean value
*/
template <typename _Byte_type>
inline bool bool_array::_Element<_Byte_type>::operator=(bool value)
{
if (value)
*(_M_byte_ptr + _M_byte_pos) |= 1 << _M_bit_pos;
else
*(_M_byte_ptr + _M_byte_pos) &= ~(1 << _M_bit_pos);
return value;
}
/**
* Reads the boolean value from an array element.
*
* @return the boolean value of the accessed array element
*/
template <typename _Byte_type>
inline bool_array::_Element<_Byte_type>::operator bool() const
{
return *(_M_byte_ptr + _M_byte_pos) & (1 << _M_bit_pos) ? true : false;
}
/**
* Constructs an empty bool_array.
*/
inline bool_array::bool_array() _NOEXCEPT : _M_byte_ptr(_NULLPTR), _M_length(0)
{
}
/**
* Destroys the bool_array and releases memory.
*/
inline bool_array::~bool_array()
{
if (_M_byte_ptr != _NULLPTR)
free(_M_byte_ptr);
}
/**
* Creates a reference to an array element.
*
* @param pos position of the array element to access
* @return reference to the specified element
*/
inline bool_array::reference bool_array::operator[](size_type pos)
{
assert(_M_byte_ptr);
assert(pos < _M_length);
return reference(_M_byte_ptr, pos);
}
/**
* Creates a const reference to an array element.
*
* @param pos position of the array element to access
* @return const reference to the specified element
*/
inline bool_array::const_reference bool_array::operator[](size_type pos) const
{
assert(_M_byte_ptr);
assert(pos < _M_length);
return const_reference(_M_byte_ptr, pos);
}
/**
* Reads the boolean value of an array element at a specified position.
*
* @param pos position of the array element to access
* @return the boolean value of the accessed array element
* @throw out_of_range \a pos is greater than the size of the array
*/
inline bool bool_array::at(size_type pos) const
{
size_t byte_pos, bit_pos;
if (pos >= _M_length)
throw std::out_of_range("invalid bool_array position");
byte_pos = (size_t)(pos / 8);
bit_pos = (size_t)(pos % 8);
return *(_M_byte_ptr + byte_pos) & (1 << bit_pos) ? true : false;
}
/**
* Resets an array element to \c false at a specified position.
*
* @param pos position of the array element to access
* @throw out_of_range \a pos is greater than the size of the array
*/
inline void bool_array::reset(size_type pos)
{
size_t byte_pos, bit_pos;
if (pos >= _M_length)
throw std::out_of_range("invalid bool_array position");
byte_pos = (size_t)(pos / 8);
bit_pos = (size_t)(pos % 8);
*(_M_byte_ptr + byte_pos) &= ~(1 << bit_pos);
}
/**
* Sets an array element to \c true at a specified position.
*
* @param pos position of the array element to access
* @throw out_of_range \a pos is greater than the size of the array
*/
inline void bool_array::set(size_type pos)
{
size_t byte_pos, bit_pos;
if (pos >= _M_length)
throw std::out_of_range("invalid bool_array position");
byte_pos = (size_t)(pos / 8);
bit_pos = (size_t)(pos % 8);
*(_M_byte_ptr + byte_pos) |= 1 << bit_pos;
}
/**
* Gets the size of the bool_array.
*
* @return the number of bits of the bool_array
*/
inline bool_array::size_type bool_array::size() const _NOEXCEPT
{
return _M_length;
}
/**
* Searches for the specified boolean value. This function seaches from
* the specified position (default to beginning) to the end.
*
* @param offset the position at which the search is to begin
* @param value the boolean value to find
* @return position of the first value found if successful; \c #npos
* otherwise
*/
inline bool_array::size_type bool_array::find(
bool value,
size_type offset) const
{
return find_until(value, offset, _M_length);
}
/**
* Searches for the specified boolean value. This function accepts a
* range expressed in {position, count}.
*
* @param offset the position at which the search is to begin
* @param count the number of bits to search
* @param value the boolean value to find
* @return position of the first value found if successful;
* \c #npos otherwise
* @throw out_of_range \a offset and/or \a count is too big
*/
inline bool_array::size_type bool_array::find(
bool value,
size_type offset,
size_type count) const
{
return find_until(value, offset, offset + count);
}
/**
* Converts the number of bits to number of bytes.
*
* @param num_bits number of bits
* @return number of bytes needed to store \a num_bits bits
*/
inline size_t bool_array::get_num_bytes_from_bits(size_type num_bits)
{
return (size_t)((num_bits + 7) / 8);
}
/**
* Exchanges the content of two bool_arrays.
*
* @param lhs the first bool_array to exchange
* @param rhs the second bool_array to exchange
*/
inline void swap(bool_array& lhs, bool_array& rhs) _NOEXCEPT
{
lhs.swap(rhs);
}
NVWA_NAMESPACE_END
#endif // NVWA_BOOL_ARRAY_H