Merge pull request #96 from delthas/fix-stream-read

[zstd_stream] Don't block in reader.Read if a zstd block is available
tree: ba4c1e1c2792e42151dc183d3cfe218a6762e866
  1. .circleci/
  2. .github/
  3. tools/
  4. bitstream.h
  5. compiler.h
  6. cover.c
  7. cover.h
  8. cpu.h
  9. debug.c
  10. debug.h
  11. divsufsort.c
  12. divsufsort.h
  13. entropy_common.c
  14. error_private.c
  15. error_private.h
  16. errors.go
  17. errors_test.go
  18. external_zstd.go
  19. fastcover.c
  20. fse.h
  21. fse_compress.c
  22. fse_decompress.c
  23. go.mod
  24. helpers_test.go
  25. hist.c
  26. hist.h
  27. huf.h
  28. huf_compress.c
  29. huf_decompress.c
  30. LICENSE
  31. mem.h
  32. pool.c
  33. pool.h
  34. README.md
  35. threading.c
  36. threading.h
  37. travis_test_32.sh
  38. update.txt
  39. xxhash.c
  40. xxhash.h
  41. zdict.c
  42. zdict.h
  43. zstd.go
  44. zstd.h
  45. zstd_common.c
  46. zstd_compress.c
  47. zstd_compress_internal.h
  48. zstd_compress_literals.c
  49. zstd_compress_literals.h
  50. zstd_compress_sequences.c
  51. zstd_compress_sequences.h
  52. zstd_compress_superblock.c
  53. zstd_compress_superblock.h
  54. zstd_ctx.go
  55. zstd_ctx_test.go
  56. zstd_cwksp.h
  57. zstd_ddict.c
  58. zstd_ddict.h
  59. zstd_decompress.c
  60. zstd_decompress_block.c
  61. zstd_decompress_block.h
  62. zstd_decompress_internal.h
  63. zstd_deps.h
  64. zstd_double_fast.c
  65. zstd_double_fast.h
  66. zstd_errors.h
  67. zstd_fast.c
  68. zstd_fast.h
  69. zstd_internal.h
  70. zstd_lazy.c
  71. zstd_lazy.h
  72. zstd_ldm.c
  73. zstd_ldm.h
  74. zstd_ldm_geartab.h
  75. zstd_legacy.h
  76. ZSTD_LICENSE
  77. zstd_opt.c
  78. zstd_opt.h
  79. zstd_stream.go
  80. zstd_stream_test.go
  81. zstd_test.go
  82. zstd_trace.h
  83. zstd_v01.c
  84. zstd_v01.h
  85. zstd_v02.c
  86. zstd_v02.h
  87. zstd_v03.c
  88. zstd_v03.h
  89. zstd_v04.c
  90. zstd_v04.h
  91. zstd_v05.c
  92. zstd_v05.h
  93. zstd_v06.c
  94. zstd_v06.h
  95. zstd_v07.c
  96. zstd_v07.h
  97. zstdmt_compress.c
  98. zstdmt_compress.h
README.md

Zstd Go Wrapper

CircleCI GoDoc

C Zstd Homepage

The current headers and C files are from v1.5.0 (Commit 10f0e699).

Usage

There are two main APIs:

  • simple Compress/Decompress
  • streaming API (io.Reader/io.Writer)

The compress/decompress APIs mirror that of lz4, while the streaming API was designed to be a drop-in replacement for zlib.

Building against an external libzstd

By default, zstd source code is vendored in this repository and the binding will be built with the vendored source code bundled.

If you want to build this binding against an external static or shared libzstd library, you can use the external_libzstd build tag. This will look for the libzstd pkg-config file and extract build and linking parameters from that pkg-config file.

Note that it requires at least libzstd 1.4.0.

go build -tags external_libzstd

Simple Compress/Decompress

// Compress compresses the byte array given in src and writes it to dst.
// If you already have a buffer allocated, you can pass it to prevent allocation
// If not, you can pass nil as dst.
// If the buffer is too small, it will be reallocated, resized, and returned bu the function
// If dst is nil, this will allocate the worst case size (CompressBound(src))
Compress(dst, src []byte) ([]byte, error)
// CompressLevel is the same as Compress but you can pass another compression level
CompressLevel(dst, src []byte, level int) ([]byte, error)
// Decompress will decompress your payload into dst.
// If you already have a buffer allocated, you can pass it to prevent allocation
// If not, you can pass nil as dst (allocates a 4*src size as default).
// If the buffer is too small, it will retry 3 times by doubling the dst size
// After max retries, it will switch to the slower stream API to be sure to be able
// to decompress. Currently switches if compression ratio > 4*2**3=32.
Decompress(dst, src []byte) ([]byte, error)

Stream API

// NewWriter creates a new object that can optionally be initialized with
// a precomputed dictionary. If dict is nil, compress without a dictionary.
// The dictionary array should not be changed during the use of this object.
// You MUST CALL Close() to write the last bytes of a zstd stream and free C objects.
NewWriter(w io.Writer) *Writer
NewWriterLevel(w io.Writer, level int) *Writer
NewWriterLevelDict(w io.Writer, level int, dict []byte) *Writer

// Write compresses the input data and write it to the underlying writer
(w *Writer) Write(p []byte) (int, error)

// Flush writes any unwritten data to the underlying writer
(w *Writer) Flush() error

// Close flushes the buffer and frees C zstd objects
(w *Writer) Close() error
// NewReader returns a new io.ReadCloser that will decompress data from the
// underlying reader.  If a dictionary is provided to NewReaderDict, it must
// not be modified until Close is called.  It is the caller's responsibility
// to call Close, which frees up C objects.
NewReader(r io.Reader) io.ReadCloser
NewReaderDict(r io.Reader, dict []byte) io.ReadCloser

Benchmarks (benchmarked with v0.5.0)

The author of Zstd also wrote lz4. Zstd is intended to occupy a speed/ratio level similar to what zlib currently provides. In our tests, the can always be made to be better than zlib by chosing an appropriate level while still keeping compression and decompression time faster than zlib.

You can run the benchmarks against your own payloads by using the Go benchmarks tool. Just export your payload filepath as the PAYLOAD environment variable and run the benchmarks:

go test -bench .

Compression of a 7Mb pdf zstd (this wrapper) vs czlib:

BenchmarkCompression               5     221056624 ns/op      67.34 MB/s
BenchmarkDecompression           100      18370416 ns/op     810.32 MB/s

BenchmarkFzlibCompress             2     610156603 ns/op      24.40 MB/s
BenchmarkFzlibDecompress          20      81195246 ns/op     183.33 MB/s

Ratio is also better by a margin of ~20%. Compression speed is always better than zlib on all the payloads we tested; However, czlib has optimisations that make it faster at decompressiong small payloads:

Testing with size: 11... czlib: 8.97 MB/s, zstd: 3.26 MB/s
Testing with size: 27... czlib: 23.3 MB/s, zstd: 8.22 MB/s
Testing with size: 62... czlib: 31.6 MB/s, zstd: 19.49 MB/s
Testing with size: 141... czlib: 74.54 MB/s, zstd: 42.55 MB/s
Testing with size: 323... czlib: 155.14 MB/s, zstd: 99.39 MB/s
Testing with size: 739... czlib: 235.9 MB/s, zstd: 216.45 MB/s
Testing with size: 1689... czlib: 116.45 MB/s, zstd: 345.64 MB/s
Testing with size: 3858... czlib: 176.39 MB/s, zstd: 617.56 MB/s
Testing with size: 8811... czlib: 254.11 MB/s, zstd: 824.34 MB/s
Testing with size: 20121... czlib: 197.43 MB/s, zstd: 1339.11 MB/s
Testing with size: 45951... czlib: 201.62 MB/s, zstd: 1951.57 MB/s

zstd starts to shine with payloads > 1KB

Stability - Current state: STABLE

The C library seems to be pretty stable and according to the author has been tested and fuzzed.

For the Go wrapper, the test cover most usual cases and we have succesfully tested it on all staging and prod data.