-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBitInputStream.cpp
55 lines (51 loc) · 1.48 KB
/
BitInputStream.cpp
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
/**
* Christopher Yeh
* Implementation of a BitInputStream.
* Implements methods for reading individual bits, bytes, or ints.
*/
#include "BitInputStream.hpp"
/** Fill the buffer, read one byte from the input stream */
void BitInputStream::fill() {
buf = in.get(); // read one byte from istream to bitwise buffer
nbits = 0; // No bits have been read from bitwise buffer
}
/** Read the next bit from the bit buffer.
* Fill the buffer from the input stream first if needed.
* @return 1 if the bit read is 1, 0 if bit read is 0.
*/
int BitInputStream::readBit() {
// Fill bitwise buffer if there are no more unread bits.
if (nbits == CHAR_BIT) {
fill();
}
// Get the next unread bit from the bitwise buffer, increment and return.
unsigned int nextBit = (buf >> nbits) & 1;
nbits++;
return nextBit;
}
/** Read the amount of characters or unique characters
* from our bit buffer.
* @return the int given (32) bits
*/
unsigned int BitInputStream::readInt() {
unsigned int numCharacters = 0;
int bit;
for (int i = 0; i < sizeof(int) * CHAR_BIT; i++) {
bit = readBit();
numCharacters |= bit << i;
}
return numCharacters;
}
/** Read the next byte from the bit buffer.
* @return the character given (8) bits.
*/
byte BitInputStream::readByte() {
byte character = 0;
int bit;
for (int i = 0; i < CHAR_BIT; i++) {
bit = readBit();
character |= bit << i;
}
return character;
}