BitArray.cpp 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. #include "data/BitArray.h"
  2. #include "math/Math.h"
  3. static int roundUpDivide(int a, int b) {
  4. if(a % b == 0) {
  5. return a / b;
  6. }
  7. return a / b + 1;
  8. }
  9. static constexpr int INT_BITS = sizeof(int) * 8;
  10. static constexpr int DIVIDE_BITS = Math::roundUpLog2(INT_BITS);
  11. static int readBits(const int* data, int index, int bits) {
  12. int dataIndexA = (index * bits) >> DIVIDE_BITS;
  13. int dataIndexB = ((index + 1) * bits) >> DIVIDE_BITS;
  14. int shifts = (index * bits) & (INT_BITS - 1);
  15. if(dataIndexA == dataIndexB) {
  16. return (data[dataIndexA] >> shifts) & ((1 << bits) - 1);
  17. }
  18. int bitsInA = INT_BITS - shifts;
  19. int r = (data[dataIndexA] >> shifts) & ((1 << bitsInA) - 1);
  20. r |= (data[dataIndexB] & ((1 << (bits - bitsInA)) - 1)) << bitsInA;
  21. return r;
  22. }
  23. static void setBits(int* data, int index, int bits, int value) {
  24. int mask = (1 << bits) - 1;
  25. value &= mask;
  26. int dataIndexA = (index * bits) >> DIVIDE_BITS;
  27. int dataIndexB = ((index + 1) * bits) >> DIVIDE_BITS;
  28. int shifts = (index * bits) & (INT_BITS - 1);
  29. data[dataIndexA] &= ~(mask << shifts);
  30. data[dataIndexA] |= (value << shifts);
  31. if(dataIndexA != dataIndexB) {
  32. int leftBits = bits - (INT_BITS - shifts);
  33. int mask = (1 << leftBits) - 1;
  34. data[dataIndexB] &= ~mask;
  35. data[dataIndexB] |= (value >> (INT_BITS - shifts));
  36. }
  37. }
  38. static int getArrayLength(int length, int bits) {
  39. return roundUpDivide(length * bits, sizeof(int) * 8);
  40. }
  41. BitArray::BitArray() : length(0), bits(0), data(nullptr) {
  42. }
  43. BitArray::BitArray(int length, int bits)
  44. : length(length), bits(bits), data(nullptr) {
  45. if(length > 0 && bits > 0) {
  46. data = new int[getArrayLength(length, bits)];
  47. }
  48. }
  49. BitArray::BitArray(const BitArray& other) : BitArray(other.length, other.bits) {
  50. for(int i = 0; i < length; i++) {
  51. set(i, other.get(i));
  52. }
  53. }
  54. BitArray::BitArray(BitArray&& other) : BitArray() {
  55. swap(other);
  56. }
  57. BitArray::~BitArray() {
  58. delete[] data;
  59. }
  60. BitArray& BitArray::operator=(BitArray other) {
  61. swap(other);
  62. return *this;
  63. }
  64. BitArray& BitArray::set(int index, int value) {
  65. setBits(data, index, bits, value);
  66. return *this;
  67. }
  68. int BitArray::get(int index) const {
  69. return readBits(data, index, bits);
  70. }
  71. int BitArray::getLength() const {
  72. return length;
  73. }
  74. int BitArray::getBits() const {
  75. return bits;
  76. }
  77. int BitArray::getInternalByteSize() const {
  78. if(bits <= 0 || length <= 0) {
  79. return 0;
  80. }
  81. return getArrayLength(length, bits) * sizeof(int);
  82. }
  83. void BitArray::fill(int value) {
  84. for(int i = 0; i < length; i++) {
  85. set(i, value);
  86. }
  87. }
  88. void BitArray::resize(int newLength, int newBits) {
  89. int* newData = new int[getArrayLength(newLength, newBits)];
  90. int end = Math::min(length, newLength);
  91. for(int i = 0; i < end; i++) {
  92. setBits(newData, i, newBits, get(i));
  93. }
  94. for(int i = end; i < newLength; i++) {
  95. setBits(newData, i, newBits, 0);
  96. }
  97. delete[] data;
  98. data = newData;
  99. bits = newBits;
  100. length = newLength;
  101. }
  102. void BitArray::swap(BitArray& other) {
  103. std::swap(length, other.length);
  104. std::swap(bits, other.bits);
  105. std::swap(data, other.data);
  106. }