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
|
#include "bititerator.h"
#include <library/cpp/testing/unittest/registar.h>
#include <util/generic/vector.h>
Y_UNIT_TEST_SUITE(TBitIteratorTest) {
TVector<ui16> GenWords() {
TVector<ui16> words(1, 0);
for (ui16 word = 1; word; ++word)
words.push_back(word);
return words;
}
template <typename TWord>
void AssertPeekRead(TBitIterator<TWord> & iter, ui8 count, TWord expected) {
auto peek = iter.Peek(count);
auto read = iter.Read(count);
UNIT_ASSERT_EQUAL(peek, read);
UNIT_ASSERT_EQUAL(peek, expected);
}
Y_UNIT_TEST(TestNextAndPeek) {
const auto& words = GenWords();
TBitIterator<ui16> iter(words.data());
ui16 word = 0;
for (int i = 0; i != (1 << 16); ++i, ++word) {
for (int bit = 0; bit != 16; ++bit) {
auto peek = iter.Peek();
auto next = iter.Next();
UNIT_ASSERT_EQUAL(peek, next);
UNIT_ASSERT_EQUAL(peek, (word >> bit) & 1);
}
UNIT_ASSERT_EQUAL(iter.NextWord(), words.data() + i + 1);
}
UNIT_ASSERT_EQUAL(iter.NextWord(), words.data() + words.size());
}
Y_UNIT_TEST(TestAlignedReadAndPeek) {
const auto& words = GenWords();
TBitIterator<ui16> iter(words.data());
ui16 word = 0;
for (int i = 0; i != (1 << 16); ++i, ++word) {
AssertPeekRead(iter, 16, word);
UNIT_ASSERT_EQUAL(iter.NextWord(), words.data() + i + 1);
}
UNIT_ASSERT_EQUAL(iter.NextWord(), words.data() + words.size());
}
Y_UNIT_TEST(TestForward) {
TVector<ui32> words;
words.push_back((1 << 10) | (1 << 20) | (1 << 25));
words.push_back(1 | (1 << 5) | (1 << 6) | (1 << 30));
for (int i = 0; i < 3; ++i)
words.push_back(0);
words.push_back(1 << 10);
TBitIterator<ui32> iter(words.data());
UNIT_ASSERT(!iter.Next());
UNIT_ASSERT(!iter.Next());
UNIT_ASSERT(!iter.Next());
iter.Forward(6);
UNIT_ASSERT(!iter.Next());
UNIT_ASSERT(iter.Next());
UNIT_ASSERT(!iter.Next());
iter.Forward(8);
UNIT_ASSERT(iter.Next());
iter.Forward(4);
UNIT_ASSERT(iter.Next());
iter.Forward(5);
UNIT_ASSERT(!iter.Next());
UNIT_ASSERT(iter.Next());
iter.Forward(4);
UNIT_ASSERT(iter.Next());
iter.Reset(words.data());
iter.Forward(38);
UNIT_ASSERT(iter.Next());
UNIT_ASSERT(!iter.Next());
UNIT_ASSERT_EQUAL(iter.NextWord(), words.data() + 2);
iter.Forward(24 + 32 * 3 + 9);
UNIT_ASSERT(!iter.Next());
UNIT_ASSERT(iter.Next());
UNIT_ASSERT(!iter.Next());
UNIT_ASSERT_EQUAL(iter.NextWord(), words.data() + 6);
}
Y_UNIT_TEST(TestUnalignedReadAndPeek) {
TVector<ui32> words;
words.push_back((1 << 10) | (1 << 20) | (1 << 25));
words.push_back(1 | (1 << 5) | (1 << 6) | (1 << 30));
for (int i = 0; i < 5; ++i)
words.push_back(1 | (1 << 10));
TBitIterator<ui32> iter(words.data());
AssertPeekRead(iter, 5, ui32(0));
AssertPeekRead(iter, 7, ui32(1 << 5));
AssertPeekRead(iter, 21, ui32((1 << 8) | (1 << 13) | (1 << 20)));
AssertPeekRead(iter, 32, (words[1] >> 1) | (1 << 31));
iter.Forward(8);
UNIT_ASSERT(!iter.Next());
UNIT_ASSERT(iter.Next());
UNIT_ASSERT(!iter.Next());
}
}
|