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 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539
|
/*
Author: Shane Neph
Date: Tue Nov 22 13:53:28 PST 2016
*/
//
// BEDOPS
// Copyright (C) 2011-2022 Shane Neph, Scott Kuehn and Alex Reynolds
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with this program; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//
#ifndef UTILS_BITMONITOR
#define UTILS_BITMONITOR
#include <algorithm>
#include <array>
#include <bitset>
#include <iterator>
#include <limits>
#include <ostream>
#include <type_traits>
#include "utility/CompilerMath.hpp"
namespace Ext {
template <std::size_t Total>
struct BSet {
static constexpr std::size_t BITS = Total;
static constexpr std::size_t BASE = std::numeric_limits<unsigned char>::digits;
static constexpr std::size_t npos = std::numeric_limits<std::size_t>::max();
BSet() : _count(0), _open(0) { for (std::size_t i=0; i<TBYTE; ++i) _charset[i]=CZERO; }
inline bool any() const { return _count < BITS; }
inline bool empty() const { return _count == 0; }
inline std::size_t size() const { return BITS; }
inline std::size_t get_open() { return (npos != _open) ? _open : find_first_unset(); }
inline bool set(std::size_t bit) {
_charset[bit/BASE] |= (1 << (bit%BASE));
bool has_open = (++_count < BITS);
if ( bit == _open && has_open )
_open = (bit+1 < BITS) ? next_unset(bit) : find_first_unset(bit); // could still become npos
return has_open;
}
inline void set_all() {
for ( auto& c : _charset )
c = FULL;
_count = BITS;
_open = npos;
}
inline void unset(std::size_t bit) {
_charset[bit/BASE] &= ~(1 << (bit%BASE));
--_count;
if ( npos == _open )
_open = bit;
}
inline void unset_all() {
for ( auto& c : _charset )
c = CZERO;
_count = 0;
_open = 0;
}
inline std::size_t next_set(std::size_t start) {
start += 1;
std::size_t bin = start/BASE;
if ( _charset[bin] ) {
for ( std::size_t i = start%BASE; i < BASE; ++i ) {
if (_charset[bin] & (1 << i))
return bin*BASE+i;
else if ( npos == _open )
_open = bin*BASE+i;
} // for
}
for ( std::size_t b = bin+1; b < TBYTE; ++b ) {
if ( _charset[b] ) {
for ( std::size_t i = 0; i < BASE; ++i ) {
if ( _charset[b] & (1 << i) )
return b*BASE+i;
else if ( npos == _open )
_open = bin*BASE+i;
} // for
}
} // for
return npos;
}
inline std::size_t find_first_set() {
if ( _charset[0] & (1 << 0) )
return 0;
else if ( npos == _open )
_open = 0;
return next_set(0);
}
inline std::size_t next_unset(std::size_t start) {
start += 1;
std::size_t bin = start/BASE;
for ( std::size_t i = start%BASE; i < BASE; ++i ) {
if ( !(_charset[bin] & (1 << i)) ) {
if ( npos == _open )
_open = bin*BASE+i;
return bin*BASE+i;
}
} // for
for ( std::size_t b = bin+1; b < TBYTE; ++b ) {
if ( _charset[b] != FULL ) {
for ( std::size_t i = 0; i < BASE; ++i ) {
if ( !(_charset[b] & (1 << i)) ) {
if ( npos == _open )
_open = b*BASE+i;
return b*BASE+i;
}
} // for
}
} // for
return npos;
}
inline std::size_t find_first_unset() {
if ( !(_charset[0] & (1 << 0) ) ) {
if ( npos == _open )
_open = 0;
return 0;
}
return next_unset(0);
}
template <std::size_t A>
friend
std::ostream&
operator<<(std::ostream& os, const BSet<A>& r);
private:
static constexpr std::size_t TBYTE = BITS/BASE;
static constexpr unsigned char CZERO = (unsigned char)0;
static constexpr unsigned char FULL = std::numeric_limits<unsigned char>::max();
std::size_t _count, _open;
std::array<unsigned char, TBYTE> _charset;
};
template <std::size_t A>
std::ostream&
operator<<(std::ostream& os, const BSet<A>& r) {
std::copy(r._charset.begin(), r._charset.end(), std::ostream_iterator<std::bitset<8>>(os, " "));
os << std::endl;
return os;
}
template <std::size_t Base,
std::size_t Total, // undefined when Check==false
bool Check=(Base==std::numeric_limits<unsigned char>::digits) &&
(Total%Base==0) &&
(Pow<Base, IntLogN<Base, Total>::value>::value==Total)>
struct BitMonitor2;
template <std::size_t Base,
std::size_t Total>
struct BitMonitor2<Base, Total, true> {
static constexpr std::size_t BASE = std::numeric_limits<unsigned char>::digits;
static constexpr std::size_t TOTAL = Total + BitMonitor2<Base, Total/Base>::TOTAL;
static constexpr std::size_t BITS = Total;
static constexpr std::size_t npos = std::numeric_limits<std::size_t>::max();
BitMonitor2() : _nxt(0) { for( std::size_t i=0; i<TBYTE; ++i) _charset[i]=CZERO; }
inline bool any() const { return _charset[LAST_BYTE] != FULL; }
inline std::size_t get_open() const { return _nxt; }
inline std::size_t size() const { return BITS; }
inline bool set(std::size_t bit) {
std::size_t bin = bit/BASE;
_charset[bin] |= (1 << (bit%BASE));
if ( _charset[bin] != FULL ) {
if ( bit == _nxt ) {
for ( std::size_t i = 0; i < BASE; ++i ) {
if ( !(_charset[bin] & (1 << i)) ) {
_nxt = BASE*bin+i;
break;
}
} // for
}
return true;
}
std::size_t idx = BITS;
std::size_t val = bin; // val == bit/BASE
bin = BITS;
std::size_t parent = (bin + val);
std::size_t pbyte = parent/BASE;
while ( parent < TOTAL ) {
_charset[pbyte] |= (1 << (val%BASE));
if ( _charset[pbyte] != FULL ) {
if ( _nxt != bit )
return true;
_nxt = npos;
for ( std::size_t i = 0; i < BASE; ++i ) {
if ( !(_charset[pbyte] & (1 << i)) ) {
_nxt = find_open_child(pbyte*BASE+i);
break;
}
} // for
return true;
}
idx /= BASE;
bin += idx;
val /= BASE;
parent = bin + val;
pbyte = parent/BASE;
} // while
return false;
}
inline void set_all() {
for ( auto& c : _charset )
c = FULL;
_nxt = npos;
}
inline void unset(std::size_t bit) {
std::size_t bin = bit/BASE;
bool pstatus = _charset[bin] != FULL;
_charset[bin] &= ~(1 << (bit%BASE));
_nxt = bit;
if ( pstatus ) // parent wasn't FULL even before unsetting bit
return;
// unset parent from FULL
std::size_t parent_bit = BITS + bin; // bin=bit/BASE
_charset[parent_bit/BASE] &= ~(1 << (parent_bit%BASE));
std::size_t val = BITS/BASE;
std::size_t idx = BITS + val;
bin /= BASE;
while ( !pstatus && (parent_bit = idx + bin) < TOTAL ) {
if ( _charset[parent_bit/BASE] != FULL )
pstatus = true;
_charset[parent_bit/BASE] &= ~(1 << (parent_bit%BASE));
val /= BASE;
idx += val;
bin /= BASE;
} // while
}
inline void unset_all() {
for ( auto& c : _charset )
c = CZERO;
_nxt = 0;
}
inline std::size_t next_set(std::size_t start, std::size_t end = BITS, bool include_start = false) const {
std::size_t beg = (start + !include_start);
std::size_t bin = beg/BASE;
for ( std::size_t i = beg%BASE; i < BASE; ++i ) {
if (_charset[bin] & (1 << i))
return bin*BASE+i;
} // for
for ( std::size_t b = bin+1; b <= end/BASE; ++b ) {
if ( _charset[b] ) {
for ( std::size_t i = 0; i < BASE; ++i ) {
if ( _charset[b] & (1 << i) )
return b*BASE+i;
} // for
}
} // for
return npos;
}
inline std::size_t next_unset(std::size_t start, bool include_start = false) const {
std::size_t beg = (start + !include_start);
std::size_t bin = beg/BASE;
for ( std::size_t i = beg%BASE; i < BASE; ++i ) {
if ( !(_charset[bin] & (1 << i)) )
return bin*BASE+i;
} // for
for ( std::size_t b = bin+1; b <= BITS/BASE; ++b ) {
if ( _charset[b] != FULL ) {
for ( std::size_t i = 0; i < BASE; ++i ) {
if ( !(_charset[b] & (1 << i)) )
return b*BASE+i;
} // for
}
} // for
return npos;
}
private:
inline std::size_t find_open_child(std::size_t p) {
while ( BITS <= p ) {
std::size_t isum = BITS;
std::size_t inow = BITS;
std::size_t itrail = 0, ptrail = 0;
while ( isum < p ) {
inow /= BASE;
ptrail = itrail;
itrail = isum;
isum += inow;
} // while
if ( isum > p ) { isum = itrail; itrail = ptrail; }
p -= isum;
p *= BASE;
p += itrail;
std::size_t pbyte = p/BASE;
for ( std::size_t i = 0; i < BASE; ++i ) {
if ( !(_charset[pbyte] & (1 << i)) ) {
p += i;
break;
}
} // for
} // while
return p;
}
template <std::size_t A, std::size_t B, bool C>
friend
typename std::enable_if<C, std::ostream&>::type
operator<<(std::ostream& os, const BitMonitor2<A,B,C>& r);
private:
static constexpr unsigned char FULL = std::numeric_limits<unsigned char>::max();
static constexpr unsigned char CZERO = (unsigned char)0;
static constexpr std::size_t TBYTE = TOTAL/BASE;
static constexpr std::size_t LAST_BYTE = TBYTE-1;
std::size_t _nxt;
std::array<unsigned char, TBYTE> _charset;
};
template <std::size_t Base>
struct BitMonitor2<Base, Base, true> {
static constexpr std::size_t BASE = Base;
static constexpr std::size_t TOTAL = Base;
};
template <std::size_t A, std::size_t B, bool C>
typename std::enable_if<C, std::ostream&>::type
operator<<(std::ostream& os, const BitMonitor2<A,B,C>& r) {
std::copy(r._charset.begin(), r._charset.end(), std::ostream_iterator<std::bitset<8>>(os, " "));
os << std::endl;
return os;
}
namespace Zeros {
std::size_t NC_ZERO = 0;
static constexpr std::size_t C_ZERO = 0;
} // namespace Zeros
/* forcing N to be a power of 8 as less than 8 with a bitset is not that great,
though it can be done by modifying Iter requirements.
*/
template <std::size_t Base,
std::size_t StopLevel,
std::size_t Iter=(Base%std::numeric_limits<unsigned char>::digits==0) &&
(StopLevel%Base==0) &&
(Pow<Base, IntLogN<Base, StopLevel>::value>::value==StopLevel)>
struct BitMonitor {
static constexpr std::size_t BASE = Base;
static constexpr std::size_t MYSZ = Pow<BASE,Iter>::value;
static constexpr std::size_t PARENTSZ = Pow<BASE,Iter-1>::value;
static constexpr std::size_t TOTALSZ = MYSZ+PARENTSZ;
static constexpr std::size_t LEVEL = Iter;
static constexpr bool STOP = false;
static constexpr std::size_t npos = std::numeric_limits<std::size_t>::max();
BitMonitor() : _nxt(0) {}
inline bool any() const { return _nxt != npos; }
inline std::size_t get_open() {
// assume any() is true, but perhaps not _children.any()
if ( !_children.any() )
_children.find_open(_nxt); // ignore rtn value
return _children.get_open();
}
std::size_t find_open(std::size_t pbin) {
// don't call this - use get_open()
pbin *= BASE;
for ( std::size_t idx = pbin; idx < pbin+BASE; ++idx ) {
if ( !_bset[idx] ) {
_nxt = idx;
return _nxt;
}
} // for
return npos; // something bad just happened
}
// calling program can simply check return value here instead of any()
inline bool set(std::size_t bit, std::size_t& cnt=Zeros::NC_ZERO) {
std::size_t val = 0;
if ( !_children.set(bit, val) ) {
_bset[val] = true;
cnt = val/BASE;
std::size_t pbin = cnt*BASE;
_nxt = npos;
for ( std::size_t idx = pbin; idx < pbin+BASE; ++idx ) {
if ( !_bset[idx] ) {
_nxt = idx;
break;
}
} // for
return _nxt != npos;
}
return true;
}
inline void unset(std::size_t bit, std::size_t& cnt=Zeros::NC_ZERO) {
_children.unset(bit, cnt);
_bset[cnt] = false;
_nxt = cnt;
cnt /= BASE;
}
inline std::size_t size() const { return _children.size(); }
template <std::size_t A, std::size_t B, std::size_t C>
friend
typename std::enable_if<!BitMonitor<A,B,C>::STOP, std::ostream&>::type
operator<<(std::ostream& os, const BitMonitor<A,B,C>& r);
std::size_t _nxt;
std::bitset<MYSZ> _bset; // all zeroes by default
BitMonitor<BASE, StopLevel/BASE, Iter+1> _children;
};
template <std::size_t Base, std::size_t Iter>
struct BitMonitor<Base,Base,Iter> {
static constexpr std::size_t BASE = Base;
static constexpr std::size_t MYSZ = Pow<BASE,Iter>::value;
static constexpr std::size_t PARENTSZ = Pow<BASE,Iter-1>::value;
static constexpr std::size_t TOTALSZ = MYSZ+PARENTSZ;
static constexpr std::size_t LEVEL = Iter;
static constexpr bool STOP = true;
static constexpr std::size_t npos = std::numeric_limits<std::size_t>::max();
BitMonitor() : _nxt(0) {}
inline bool any() const { return _nxt != npos; }
inline std::size_t get_open() {
return _nxt;
}
std::size_t find_open(std::size_t pbin) {
pbin *= BASE;
for ( std::size_t idx = pbin; idx < pbin+BASE; ++idx ) {
if ( !_bset[idx] ) {
_nxt = idx;
return _nxt;
}
} // for
return npos; // something bad just happened
}
// calling program can simply check return value here instead of any()
inline bool set(std::size_t bit, std::size_t& cnt) {
_bset[bit] = true;
Zeros::NC_ZERO = Zeros::C_ZERO;
// make pbin the group that the parent class is monitoring
cnt = bit/BASE;
std::size_t pbin = cnt*BASE;
_nxt = npos;
for ( std::size_t idx = bit+1; idx < pbin+BASE; ++idx ) {
if ( !_bset[idx] ) {
_nxt = idx;
return _nxt != npos;
}
} // for
for ( std::size_t idx = pbin; idx < bit; ++idx ) {
if ( !_bset[idx] ) {
_nxt = idx;
return _nxt != npos;
}
}
return _nxt != npos;
}
inline void unset(std::size_t bit, std::size_t& cnt) {
_bset[bit] = false;
Zeros::NC_ZERO = Zeros::C_ZERO;
cnt = bit/BASE;
if ( _nxt == npos ) { _nxt = bit; }
}
inline std::size_t size() const { return _bset.size(); }
template <std::size_t A, std::size_t B, std::size_t C>
friend
typename std::enable_if<BitMonitor<A,B,C>::STOP, std::ostream&>::type
operator<<(std::ostream& os, const BitMonitor<A,B,C>& r);
std::size_t _nxt;
std::bitset<MYSZ> _bset; // initialized all-zeroes
};
template <std::size_t N, std::size_t M>
struct BitMonitor<N,M,0>; // undefined
template <std::size_t N>
struct BitMonitor<N,N,0>; // undefined
template <std::size_t A, std::size_t B, std::size_t C>
typename std::enable_if<!BitMonitor<A,B,C>::STOP, std::ostream&>::type
operator<<(std::ostream& os, const BitMonitor<A,B,C>& r) {
os << r._bset << std::endl;
os << r._children;
return os;
}
template <std::size_t A, std::size_t B, std::size_t C>
typename std::enable_if<BitMonitor<A,B,C>::STOP, std::ostream&>::type
operator<<(std::ostream& os, const BitMonitor<A,B,C>& r) {
os << r._bset;
return os;
}
} // namespace Ext
#endif // UTILS_BITMONITOR__
|