1# Collection of compression libraries for Go #
2
3[![GoDoc](https://godoc.org/github.com/dsnet/compress/cmp?status.svg)](https://godoc.org/github.com/dsnet/compress)
4[![Build Status](https://travis-ci.org/dsnet/compress.svg?branch=master)](https://travis-ci.org/dsnet/compress)
5[![Report Card](https://goreportcard.com/badge/github.com/dsnet/compress)](https://goreportcard.com/report/github.com/dsnet/compress)
6
7## Introduction ##
8
9**NOTE: This library is in active development. As such, there are no guarantees about the stability of the API. The author reserves the right to arbitrarily break the API for any reason.**
10
11This repository hosts a collection of compression related libraries. The goal of this project is to provide pure Go implementations for popular compression algorithms beyond what the Go standard library provides. The goals for these packages are as follows:
12* Maintainable: That the code remains well documented, well tested, readable, easy to maintain, and easy to verify that it conforms to the specification for the format being implemented.
13* Performant: To be able to compress and decompress within at least 80% of the rates that the C implementations are able to achieve.
14* Flexible: That the code provides low-level and fine granularity control over the compression streams similar to what the C APIs would provide.
15
16Of these three, the first objective is often at odds with the other two objectives and provides interesting challenges. Higher performance can often be achieved by muddling abstraction layers or using non-intuitive low-level primitives. Also, more features and functionality, while useful in some situations, often complicates the API. Thus, this package will attempt to satisfy all the goals, but will defer to favoring maintainability when the performance or flexibility benefits are not significant enough.
17
18
19## Library Status ##
20
21For the packages available, only some features are currently implemented:
22
23| Package | Reader | Writer |
24| ------- | :----: | :----: |
25| brotli | :white_check_mark: | |
26| bzip2 | :white_check_mark: | :white_check_mark: |
27| flate | :white_check_mark: | |
28| xflate | :white_check_mark: | :white_check_mark: |
29
30This library is in active development. As such, there are no guarantees about the stability of the API. The author reserves the right to arbitrarily break the API for any reason. When the library becomes more mature, it is planned to eventually conform to some strict versioning scheme like [Semantic Versioning](http://semver.org/).
31
32However, in the meanwhile, this library does provide some basic API guarantees. For the types defined below, the method signatures are guaranteed to not change. Note that the author still reserves the right to change the fields within each ```Reader``` and ```Writer``` structs.
33```go
34type ReaderConfig struct { ... }
35type Reader struct { ... }
36  func NewReader(io.Reader, *ReaderConfig) (*Reader, error) { ... }
37  func (*Reader) Read([]byte) (int, error)                  { ... }
38  func (*Reader) Close() error                              { ... }
39
40type WriterConfig struct { ... }
41type Writer struct { ... }
42  func NewWriter(io.Writer, *WriterConfig) (*Writer, error) { ... }
43  func (*Writer) Write([]byte) (int, error)                 { ... }
44  func (*Writer) Close() error                              { ... }
45```
46
47To see what work still remains, see the [Task List](https://github.com/dsnet/compress/wiki/Task-List).
48
49## Performance  ##
50
51See [Performance Metrics](https://github.com/dsnet/compress/wiki/Performance-Metrics).
52
53
54## Frequently Asked Questions ##
55
56See [Frequently Asked Questions](https://github.com/dsnet/compress/wiki/Frequently-Asked-Questions).
57
58
59## Installation ##
60
61Run the command:
62
63```go get -u github.com/dsnet/compress```
64
65This library requires `Go1.9` or higher in order to build.
66
67
68## Packages ##
69
70| Package | Description |
71| :------ | :---------- |
72| [brotli](http://godoc.org/github.com/dsnet/compress/brotli) | Package brotli implements the Brotli format, described in RFC 7932. |
73| [bzip2](http://godoc.org/github.com/dsnet/compress/bzip2) | Package bzip2 implements the BZip2 compressed data format. |
74| [flate](http://godoc.org/github.com/dsnet/compress/flate) | Package flate implements the DEFLATE format, described in RFC 1951. |
75| [xflate](http://godoc.org/github.com/dsnet/compress/xflate) | Package xflate implements the XFLATE format, an random-access extension to DEFLATE. |
76