-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrle.go
233 lines (213 loc) · 7.07 KB
/
rle.go
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
package bitmap
import (
"encoding/binary"
"fmt"
)
// ==========
// First idea
// ==========
// Each byte contains either compressed or uncompressed data:
// Bytes starting with 0 are uncompressed bytes, with
// leading 0 followed by sequence of literal 0s and 1s,
// 01001011 1000100
// ^^^^ ^^^^^^^ - up to 12 bits of uncompressed data
// ^^^ - length of uncompressed data, [1; 15]
// ^ - uncompressed byte flag
// In our scheme we start to make profit only if run is longer than 8,
// thus we can use bits encoding the length to encode values starting from 8
// Bytes starting with 1 are compressed bytes:
// 10100001
// ^ - value of the run
// ^^^^^^ - length of the run, starting from 2^3 to to 2^9 - 1 = 511
// ^ - compressed byte flag
// Disadvantages:
// annoying to work with individual bits
//
// ===========
// Second idea
// ===========
// Let's work with whole bytes instead:
// 0_______
// ^^^^^^^ - length of followed uncompressed bytes[1;127]
// ^ - uncompressed flag
// 1_______
// ^^^^^^ - length of the run in bytes [1;63]
// ^ - value, of the run, 0 or 1
// ^ - compressed flag
type byteType uint
const (
compressed0 byteType = iota
compressed1
uncompressed
)
const maxUncompressedRunLength = 127 // 7 bits
const maxCompressedRunLength = 63 // 6 bits
func getByteType(b byte) byteType {
if b == 0x00 {
return compressed0
}
if b == 0xff {
return compressed1
}
return uncompressed
}
func genHeaderByte(st byteType, runLength uint8) byte {
if runLength == 0 {
panic("BUG! run length must be non-zero to produce valid encoding")
}
if st == uncompressed {
if runLength > maxUncompressedRunLength {
// TODO abozhenko for robot-dreams:
// If I know that runLength for uncompressed must be in range [1;127]
// and length for compressed byte must be in range [1;63],
// how do I enforce these rules at compile time?
// In oCaml that can be solved with custom type
panic(fmt.Sprintf("BUG! run length(%v) of uncompressed bytes must be encoded with just 6 bits",
runLength))
}
return byte(runLength)
}
if runLength > maxCompressedRunLength {
panic(fmt.Sprintf("BUG! run length(%v) of compressed bytes must be encoded with just 5 bits",
runLength))
}
// TODO abozhenko for robot-dreams
// In ocaml, we can do pattern matching, e.g:
// https://www2.lib.uchicago.edu/keith/ocaml-class/pattern-matching.html
// Here, if we introduce a new const, e.g compressedA, nothing would warn
// us that we forget to add corresponding if statement
// In ocaml I would introdcue custom enum type,
// and compiler would warn us about Non-Exhaustive Pattern-Matches
// How to do something like this in go, to make the code more bulletproof
// against future modifications like this?
if st == compressed0 {
return byte(runLength) | (0b1 << 7)
} else {
return byte(runLength) | (0b11 << 6)
}
}
func compress(b *uncompressedBitmap) []uint64 {
//atom.SetLevel(zapcore.DebugLevel)
compressedBytes := []byte{}
uncompressedRunBytes := []byte{}
currentBlockBytes := make([]byte, 8)
var runLength uint8 = 0 // length of consequent bytes of the same type
currentByteType := uncompressed
// TODO abozhenko for robot-dreams:
// Is there a better way to turn []uint64 into bytes to iterate over?
for _, block := range b.data {
binary.BigEndian.PutUint64(currentBlockBytes, block)
for _, b := range currentBlockBytes {
// When current byte type differs from the previous one,
// that means end of the run, so we need to write the header byte,
// followed by the bytes of the run itself.
// Also, if we accumulated more than enough bytes in the current run,
// let's create a new run, with new header byte
if getByteType(b) != currentByteType && runLength > 0 ||
(currentByteType == uncompressed && runLength >= maxUncompressedRunLength) ||
(currentByteType != uncompressed && runLength >= maxCompressedRunLength) {
sugar.Debugw(
"Detected new run",
"previous runLength", runLength,
"previous state", currentByteType,
"new state", getByteType(b),
"len compressedBytes", len(compressedBytes),
)
compressedBytes = append(compressedBytes,
genHeaderByte(currentByteType, runLength))
compressedBytes = append(compressedBytes, uncompressedRunBytes...)
uncompressedRunBytes = []byte{}
currentByteType = getByteType(b)
runLength = 0
}
runLength++
if currentByteType == uncompressed {
uncompressedRunBytes = append(uncompressedRunBytes, b)
}
}
}
compressedBytes = append(compressedBytes,
genHeaderByte(currentByteType, runLength))
compressedBytes = append(compressedBytes, uncompressedRunBytes...)
sugar.Debugw(
"before adding 0-bytes to align to uint64",
"len was", len(compressedBytes),
"len/8", len(compressedBytes)/8,
"len%8", len(compressedBytes)%8,
"adding zero bytes: ", len(compressedBytes)%8,
)
// append 0-bytes to align to uint64
compressedBytes = append(compressedBytes, make([]byte, 8-len(compressedBytes)%8)...)
compressedData := make([]uint64, len(compressedBytes)/8)
for i := range compressedData {
compressedData[i] = binary.BigEndian.Uint64(compressedBytes[8*i : 8*i+8])
}
sugar.Debugw(
"Finished compression",
"compressed len",
len(compressedData),
"uncompressed len",
len(b.data),
)
return compressedData
}
func parseCompressedHeader(header byte) (st byteType, runLength uint8) {
compressedMark := header & (1 << 7)
if compressedMark != 0 {
st = byteType((header & (1 << 6)) >> 6)
} else {
st = uncompressed
}
if st == uncompressed {
runLength = uint8(header & 0b01111111)
} else {
runLength = uint8(header & 0b00111111)
}
return
}
func decompress(compressed []uint64) *uncompressedBitmap {
compressedBytesBuffer := make([]byte, 8)
uncompressedBytes := []byte{}
var runLength uint8 = 0
var byteToAppend byte
var bytetype byteType
for _, block := range compressed {
binary.BigEndian.PutUint64(compressedBytesBuffer, block)
for _, b := range compressedBytesBuffer {
if runLength == 0 { // header byte
if b == 0 {
// stop when we reached zero-bytes added for padding at the end
break
}
bytetype, runLength = parseCompressedHeader(b)
// if bytetype == uncompressed runLength will show
// number of remaining following uncompressed bytes
// we need to read as is
if bytetype != uncompressed {
if bytetype == compressed0 {
byteToAppend = 0b00000000
} else {
byteToAppend = 0b11111111
}
for i := uint8(0); i < runLength; i++ {
uncompressedBytes = append(uncompressedBytes, byteToAppend)
}
// because no uncompressed bytes follow compressed byte header,
// we know that next byte is another header, so set runLength=0
// to parse it on the next iteration
runLength = 0
}
} else { // runLength != 0 means we are at uncompressed byte
uncompressedBytes = append(uncompressedBytes, b)
runLength--
}
}
}
data := make([]uint64, len(uncompressedBytes)/8)
for i := range data {
data[i] = binary.BigEndian.Uint64(uncompressedBytes[8*i : 8*i+8])
}
return &uncompressedBitmap{
data: data,
}
}