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
|
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package utils
import (
"encoding/binary"
"math/bits"
"github.com/apache/arrow-go/v18/arrow/bitutil"
)
// BitmapWriter is an interface for bitmap writers so that we can use multiple
// implementations or swap if necessary.
type BitmapWriter interface {
// Set sets the current bit that will be written
Set()
// Clear clears the current bit that will be written
Clear()
// Next advances to the next bit for the writer
Next()
// Finish flushes the current byte out to the bitmap slice
Finish()
// AppendWord takes nbits from word which should be an LSB bitmap and appends them to the bitmap.
AppendWord(word uint64, nbits int64)
// AppendBools appends the bit representation of the bools slice, returning the number
// of bools that were able to fit in the remaining length of the bitmapwriter.
AppendBools(in []bool) int
// Pos is the current position that will be written next
Pos() int
// Reset allows reusing the bitmapwriter by resetting Pos to start with length as
// the number of bits that the writer can write.
Reset(start, length int)
}
type bitmapWriter struct {
*bitutil.BitmapWriter
}
func NewBitmapWriter(bitmap []byte, start, length int) BitmapWriter {
return &bitmapWriter{bitutil.NewBitmapWriter(bitmap, start, length)}
}
func (b *bitmapWriter) AppendWord(uint64, int64) {
panic("unimplemented")
}
type firstTimeBitmapWriter struct {
buf []byte
pos int64
length int64
curByte uint8
bitMask uint8
byteOffset int64
endianBuffer [8]byte
}
// NewFirstTimeBitmapWriter creates a bitmap writer that might clobber any bit values
// following the bits written to the bitmap, as such it is faster than the bitmapwriter
// that is created with NewBitmapWriter
func NewFirstTimeBitmapWriter(buf []byte, start, length int64) BitmapWriter {
ret := &firstTimeBitmapWriter{
buf: buf,
byteOffset: start / 8,
bitMask: bitutil.BitMask[start%8],
length: length,
}
if length > 0 {
ret.curByte = ret.buf[int(ret.byteOffset)] & bitutil.PrecedingBitmask[start%8]
}
return ret
}
func (bw *firstTimeBitmapWriter) Reset(start, length int) {
bw.pos = 0
bw.byteOffset = int64(start / 8)
bw.bitMask = bitutil.BitMask[start%8]
bw.length = int64(length)
if length > 0 {
bw.curByte = bw.buf[int(bw.byteOffset)] & bitutil.PrecedingBitmask[start%8]
}
}
func (bw *firstTimeBitmapWriter) Pos() int { return int(bw.pos) }
func (bw *firstTimeBitmapWriter) AppendWord(word uint64, nbits int64) {
if nbits == 0 {
return
}
// location that the first byte needs to be written to for appending
appslice := bw.buf[int(bw.byteOffset):]
// update everything but curByte
bw.pos += nbits
bitOffset := bits.TrailingZeros32(uint32(bw.bitMask))
bw.bitMask = bitutil.BitMask[(int64(bitOffset)+nbits)%8]
bw.byteOffset += (int64(bitOffset) + nbits) / 8
if bitOffset != 0 {
// we're in the middle of the byte. Update the byte and shift bits appropriately
// so we can just copy the bytes.
carry := 8 - bitOffset
// Carry over bits from word to curByte. We assume any extra bits in word are unset
// so no additional accounting is needed for when nbits < carry
bw.curByte |= uint8((word & uint64(bitutil.PrecedingBitmask[carry])) << bitOffset)
// check everything was transferred to curByte
if nbits < int64(carry) {
return
}
appslice[0] = bw.curByte
appslice = appslice[1:]
// move the carry bits off of word
word = word >> carry
nbits -= int64(carry)
}
bytesForWord := bitutil.BytesForBits(nbits)
binary.LittleEndian.PutUint64(bw.endianBuffer[:], word)
copy(appslice, bw.endianBuffer[:bytesForWord])
// at this point, the previous curByte has been written, the new curByte
// is either the last relevant byte in word or cleared if the new position
// is byte aligned (ie. a fresh byte)
if bw.bitMask == 0x1 {
bw.curByte = 0
} else {
bw.curByte = appslice[bytesForWord-1]
}
}
func (bw *firstTimeBitmapWriter) Set() {
bw.curByte |= bw.bitMask
}
func (bw *firstTimeBitmapWriter) Clear() {}
func (bw *firstTimeBitmapWriter) Next() {
bw.bitMask = uint8(bw.bitMask << 1)
bw.pos++
if bw.bitMask == 0 {
// byte finished, advance to the next one
bw.bitMask = 0x1
bw.buf[int(bw.byteOffset)] = bw.curByte
bw.byteOffset++
bw.curByte = 0
}
}
func (b *firstTimeBitmapWriter) AppendBools(in []bool) int {
panic("Append Bools not yet implemented for firstTimeBitmapWriter")
}
func (bw *firstTimeBitmapWriter) Finish() {
// store curByte into the bitmap
if bw.length > 0 && bw.bitMask != 0x01 || bw.pos < bw.length {
bw.buf[int(bw.byteOffset)] = bw.curByte
}
}
func (bw *firstTimeBitmapWriter) Position() int64 { return bw.pos }
|