mq_coder/encoding/varfloat.go

119 lines
3.2 KiB
Go
Raw Normal View History

2022-10-07 15:30:45 +08:00
package encoding
import (
"errors"
"math"
mbit "math/bits"
)
// SizeOfVarFloat32 return the buffer size after encoding value as VarFloat32
func SizeOfVarFloat32(value float32) int {
return sizeOfVarFloat(uint64(math.Float32bits(value)), 4)
}
// EncodeVarFloat32 encode value as VarFloat32 to buffer
func (codec *VarCodec) EncodeVarFloat32(buffer []byte, value float32) error {
return codec.encodeVarFloat(buffer, uint64(math.Float32bits(value)), 4)
}
// DecodeVarFloat32 decode to value as VarFloat32 from buffer
func (codec *VarCodec) DecodeVarFloat32(buffer []byte, value *float32) error {
var bits = uint64(math.Float32bits(*value))
var err = codec.decodeVarFloat(buffer, &bits, 4)
*value = math.Float32frombits(uint32(bits))
return err
}
// SizeOfVarFloat64 return the buffer size after encoding value as VarFloat32
func SizeOfVarFloat64(value float64) int {
return sizeOfVarFloat(math.Float64bits(value), 8)
}
// EncodeVarFloat64 encode value as VarFloat64 to buffer
func (codec *VarCodec) EncodeVarFloat64(buffer []byte, value float64) error {
return codec.encodeVarFloat(buffer, math.Float64bits(value), 8)
}
// DecodeVarFloat64 decode to value as VarFloat64 from buffer
func (codec *VarCodec) DecodeVarFloat64(buffer []byte, value *float64) error {
var bits = math.Float64bits(*value)
var err = codec.decodeVarFloat(buffer, &bits, 8)
*value = math.Float64frombits(bits)
return err
}
func sizeOfVarFloat(bits uint64, width int) int {
2022-10-07 15:41:18 +08:00
const unit = 8 // a bit width of encoding unit
2022-10-07 15:30:45 +08:00
const mask = uint64(0xFF) // mask of encoding unit
for s := 0; width > 1; s += unit {
2022-10-07 15:41:18 +08:00
if bits&(mask<<s) != 0 {
2022-10-07 15:30:45 +08:00
return width
}
width--
}
return 1
}
func (codec *VarCodec) encodeVarFloat(buffer []byte, bits uint64, width int) error {
if codec == nil || codec.Size == 0 {
return errors.New("nothing to encode")
}
const unit = 8 // bit width of encoding unit
var gap, mask = codec.sizeOfGap(width)
for (codec.Size & mask) > 0 {
if codec.Ptr >= len(buffer) {
return ErrBufferInsufficient
}
codec.Size--
2022-10-07 15:41:18 +08:00
buffer[codec.Ptr] = byte(bits >> ((codec.Size&mask + gap) * unit))
2022-10-07 15:30:45 +08:00
codec.Ptr++
}
codec.Size = 0
return nil
}
func (codec *VarCodec) decodeVarFloat(buffer []byte, bits *uint64, width int) error {
if codec == nil || codec.Size == 0 {
return errors.New("nothing to decode")
}
const unit = 8 // bit width of encoding unit
var gap, mask = codec.sizeOfGap(width)
for (codec.Size & mask) > 0 {
if codec.Ptr >= len(buffer) {
return ErrBufferInsufficient
}
codec.Size--
*bits = (*bits << unit) | uint64(buffer[codec.Ptr])
codec.Ptr++
}
*bits <<= gap * unit
codec.Size = 0
return nil
}
func (codec *VarCodec) sizeOfGap(width int) (int, int) {
2022-10-07 15:41:18 +08:00
var ms = mbit.OnesCount(^uint(0)) // machine a bit of width for an int
var size = ms - 8 // a bit width of effective size
2022-10-07 15:30:45 +08:00
var mask = -1 ^ (-1 << size) // mask of effective size
var gap = 0 // gap between encoded size and decoded size
if codec.Size > 0 {
if width > codec.Size {
gap = width - codec.Size
}
2022-10-07 15:41:18 +08:00
var sign = -1 << (ms - 1) // single sign a bit for an int
2022-10-07 15:30:45 +08:00
codec.Size = sign | (gap << size) | (codec.Size & mask)
} else {
gap = (codec.Size >> size) & 0x7F
}
return gap, mask
}