zlibimpl

package
v0.62.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 13, 2025 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Overview

Package zlibimpl provides a set of functions for compressing with zlib

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Provides

type Provides struct {
	Comp compression.Component
}

Provides contains the compression component

func NewComponent

func NewComponent() Provides

NewComponent returns a new ZlibStrategy

type ZlibStrategy

type ZlibStrategy struct {
}

ZlibStrategy is the strategy for when serializer_compressor_kind is zlib

func (*ZlibStrategy) Compress

func (s *ZlibStrategy) Compress(src []byte) ([]byte, error)

Compress will compress the data with zlib

func (*ZlibStrategy) CompressBound

func (s *ZlibStrategy) CompressBound(sourceLen int) int

CompressBound returns the worst case size needed for a destination buffer This is allowed to return a value _larger_ than 'sourceLen'. Ref: https://refspecs.linuxbase.org/LSB_3.0.0/LSB-Core-generic/LSB-Core-generic/zlib-compressbound-1.html

func (*ZlibStrategy) ContentEncoding

func (s *ZlibStrategy) ContentEncoding() string

ContentEncoding returns the content encoding value for zlib

func (*ZlibStrategy) Decompress

func (s *ZlibStrategy) Decompress(src []byte) ([]byte, error)

Decompress will decompress the data with zlib

func (*ZlibStrategy) NewStreamCompressor

func (s *ZlibStrategy) NewStreamCompressor(output *bytes.Buffer) compression.StreamCompressor

NewStreamCompressor returns a new zlib writer

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL