package binary
import "github.com/ClickHouse/clickhouse-go/lib/binary"
Index ¶
- Constants
- func NewCompressReader(r io.Reader) *compressReader
- func NewCompressWriter(w io.Writer) *compressWriter
- func Str2Bytes(str string) []byte
- type CompressionMethodByte
- type Decoder
- func NewDecoder(input io.Reader) *Decoder
- func NewDecoderWithCompress(input io.Reader) *Decoder
- func (decoder *Decoder) Bool() (bool, error)
- func (decoder *Decoder) Decimal128() ([]byte, error)
- func (decoder *Decoder) Fixed(ln int) ([]byte, error)
- func (decoder *Decoder) Float32() (float32, error)
- func (decoder *Decoder) Float64() (float64, error)
- func (decoder *Decoder) Get() io.Reader
- func (decoder *Decoder) Int16() (int16, error)
- func (decoder *Decoder) Int32() (int32, error)
- func (decoder *Decoder) Int64() (int64, error)
- func (decoder *Decoder) Int8() (int8, error)
- func (decoder *Decoder) ReadByte() (byte, error)
- func (decoder *Decoder) SelectCompress(compress bool)
- func (decoder *Decoder) String() (string, error)
- func (decoder *Decoder) UInt16() (uint16, error)
- func (decoder *Decoder) UInt32() (uint32, error)
- func (decoder *Decoder) UInt64() (uint64, error)
- func (decoder *Decoder) UInt8() (uint8, error)
- func (decoder *Decoder) Uvarint() (uint64, error)
- type Encoder
- func NewEncoder(w io.Writer) *Encoder
- func NewEncoderWithCompress(w io.Writer) *Encoder
- func (enc *Encoder) Bool(v bool) error
- func (enc *Encoder) Decimal128(bytes []byte) error
- func (enc *Encoder) Float32(v float32) error
- func (enc *Encoder) Float64(v float64) error
- func (enc *Encoder) Flush() error
- func (enc *Encoder) Get() io.Writer
- func (enc *Encoder) Int16(v int16) error
- func (enc *Encoder) Int32(v int32) error
- func (enc *Encoder) Int64(v int64) error
- func (enc *Encoder) Int8(v int8) error
- func (enc *Encoder) RawString(str []byte) error
- func (enc *Encoder) SelectCompress(compress bool)
- func (enc *Encoder) String(v string) error
- func (enc *Encoder) UInt16(v uint16) error
- func (enc *Encoder) UInt32(v uint32) error
- func (enc *Encoder) UInt64(v uint64) error
- func (enc *Encoder) UInt8(v uint8) error
- func (enc *Encoder) Uvarint(v uint64) error
- func (enc *Encoder) Write(b []byte) (int, error)
- type FixedReader
- type WriteFlusher
Constants ¶
const ( NONE CompressionMethodByte = 0x02 LZ4 = 0x82 ZSTD = 0x90 )
const ( // ChecksumSize is 128bits for cityhash102 checksum ChecksumSize = 16 // CompressHeader magic + compressed_size + uncompressed_size CompressHeaderSize = 1 + 4 + 4 // HeaderSize HeaderSize = ChecksumSize + CompressHeaderSize // BlockMaxSize 1MB BlockMaxSize = 1 << 20 )
Functions ¶
func NewCompressReader ¶
NewCompressReader wrap the io.Reader
func NewCompressWriter ¶
NewCompressWriter wrap the io.Writer
func Str2Bytes ¶
Types ¶
type CompressionMethodByte ¶
type CompressionMethodByte byte
type Decoder ¶
type Decoder struct {
// contains filtered or unexported fields
}
func NewDecoder ¶
func NewDecoderWithCompress ¶
func (*Decoder) Bool ¶
func (*Decoder) Decimal128 ¶
func (*Decoder) Fixed ¶
func (*Decoder) Float32 ¶
func (*Decoder) Float64 ¶
func (*Decoder) Get ¶
func (*Decoder) Int16 ¶
func (*Decoder) Int32 ¶
func (*Decoder) Int64 ¶
func (*Decoder) Int8 ¶
func (*Decoder) ReadByte ¶
func (*Decoder) SelectCompress ¶
func (*Decoder) String ¶
func (*Decoder) UInt16 ¶
func (*Decoder) UInt32 ¶
func (*Decoder) UInt64 ¶
func (*Decoder) UInt8 ¶
func (*Decoder) Uvarint ¶
type Encoder ¶
type Encoder struct {
// contains filtered or unexported fields
}
func NewEncoder ¶
func NewEncoderWithCompress ¶
func (*Encoder) Bool ¶
func (*Encoder) Decimal128 ¶
func (*Encoder) Float32 ¶
func (*Encoder) Float64 ¶
func (*Encoder) Flush ¶
func (*Encoder) Get ¶
func (*Encoder) Int16 ¶
func (*Encoder) Int32 ¶
func (*Encoder) Int64 ¶
func (*Encoder) Int8 ¶
func (*Encoder) RawString ¶
func (*Encoder) SelectCompress ¶
func (*Encoder) String ¶
func (*Encoder) UInt16 ¶
func (*Encoder) UInt32 ¶
func (*Encoder) UInt64 ¶
func (*Encoder) UInt8 ¶
func (*Encoder) Uvarint ¶
func (*Encoder) Write ¶
type FixedReader ¶
type WriteFlusher ¶
type WriteFlusher interface { Flush() error }
Source Files ¶
compress_reader.go compress_settings.go compress_writer.go decoder.go encoder.go
- Version
- v1.5.4 (latest)
- Published
- Feb 8, 2022
- Platform
- linux/amd64
- Imports
- 8 packages
- Last checked
- 5 hours ago –
Tools for package owners.