nim-snappy/snappy
Jacek Sieka 7cb2e57a58
snappy revamp (#10)
This is a more or less complete revamp of the snappy library aiming to:

* clear out a lot of the duplicate code
* remove some of the redundant API
* unify the codebase behind a single, optimized "inner" encoder/decoder
* unify the public API for in-memory and stream
compression/decompression
* improve performance

As such, only the documented API remains backwards-compatible - the rest
has been refactored, moved around and rewritten:

* `import snappy` now exposes only in-memory encoders / decoders
* framed format moved to `snappy` module, `snappy/framing` removed
* faststreams integration moved to `snappy/faststreams`
* minimal `std/streams` integration started in `snappy/streams`

Other changes include:

* up-to-date documentation
* allocation- and exception-free API (uses some amount of stack memory)
* a 2-3x improvement to both compression and decompression performance,
putting the library mostly on par with the C++ implementation (see
README)
* the implementation was heavily inspired by the `C++`, `C` and `go`
implementations, but somewhat simplified
* nonetheless, the code uses a significant amount of unsafe code to
work around inefficiencies in the safe subset of Nim

With bulk operations in place, the cost of range checks falls
significantly - we can reintroduce them without any significant loss in
performance by carefully ordering operations such that optimizers can
elide most.
2022-04-14 16:22:41 +02:00
..
codec.nim snappy revamp (#10) 2022-04-14 16:22:41 +02:00
crc32c.c working framing uncompress prototype 2020-04-01 22:35:57 +03:00
decoder.nim snappy revamp (#10) 2022-04-14 16:22:41 +02:00
encoder.nim snappy revamp (#10) 2022-04-14 16:22:41 +02:00
exceptions.nim snappy revamp (#10) 2022-04-14 16:22:41 +02:00
faststreams.nim snappy revamp (#10) 2022-04-14 16:22:41 +02:00
framing_format.txt renormalize *.txt EOL 2020-04-01 22:35:57 +03:00
streams.nim snappy revamp (#10) 2022-04-14 16:22:41 +02:00