zstd-ruby
Ruby binding for zstd(Zstandard - Fast real-time compression algorithm)
See https://github.com/facebook/zstd
Fork from https://github.com/jarredholman/ruby-zstd.
Zstd version
v1.5.6
Installation
Add this line to your application's Gemfile:
gem 'zstd-ruby'
And then execute:
$ bundle
Or install it yourself as:
$ gem install zstd-ruby
Usage
require 'zstd-ruby'
Compression
Simple Compression
compressed_data = Zstd.compress(data)
compressed_data = Zstd.compress(data, level: complession_level)
Compression with Dictionary
compressed_using_dict = Zstd.compress("", dict: File.read('dictionary_file'))
Streaming Compression
stream = Zstd::StreamingCompress.new
stream << "abc" << "def"
res = stream.flush
stream << "ghi"
res << stream.finish
or
stream = Zstd::StreamingCompress.new
res = stream.compress("abc")
res << stream.flush
res << stream.compress("def")
res << stream.finish
Streaming Compression with Dictionary
stream = Zstd::StreamingCompress.new(dict: File.read('dictionary_file'))
stream << "abc" << "def"
res = stream.flush
stream << "ghi"
res << stream.finish
Streaming Compression with level and Dictionary
stream = Zstd::StreamingCompress.new(level: 5, dict: File.read('dictionary_file'))
stream << "abc" << "def"
res = stream.flush
stream << "ghi"
res << stream.finish
Decompression
Simple Decompression
data = Zstd.decompress(compressed_data)
Decompression with Dictionary
Zstd.decompress(compressed_using_dict, dict: File.read('dictionary_file'))
Streaming Decompression
cstr = ""
stream = Zstd::StreamingDecompress.new
result = ''
result << stream.decompress(cstr[0, 10])
result << stream.decompress(cstr[10..-1])
Streaming Decompression with dictionary
cstr = ""
stream = Zstd::StreamingDecompress.new(dict: File.read('dictionary_file'))
result = ''
result << stream.decompress(cstr[0, 10])
result << stream.decompress(cstr[10..-1])
Skippable frame
compressed_data_with_skippable_frame = Zstd.write_skippable_frame(compressed_data, "sample data")
Zstd.read_skippable_frame(compressed_data_with_skippable_frame)
Stream Writer and Reader Wrapper
EXPERIMENTAL
- These features are experimental and may be subject to API changes in future releases.
- There may be performance and compatibility issues, so extensive testing is required before production use.
- If you have any questions, encounter bugs, or have suggestions, please report them via GitHub issues.
Zstd::StreamWriter
require 'stringio'
require 'zstd-ruby'
io = StringIO.new
stream = Zstd::StreamWriter.new(io)
stream.write("abc")
stream.finish
io.rewind
compressed_data = io.read
Zstd::StreamReader
require 'stringio'
require 'zstd-ruby'
io = StringIO.new(compressed_data)
reader = Zstd::StreamReader.new(io)
puts reader.read(10)
puts reader.read(10)
puts reader.read(10)
JRuby
This gem does not support JRuby.
Please consider using https://github.com/luben/zstd-jni.
Sample code is below.
require 'java'
require_relative './zstd-jni-1.5.2-3.jar'
str = "testtest"
compressed = com.github.luben.zstd.Zstd.compress(str.to_java_bytes)
puts com.github.luben.zstd.Zstd.decompress(compressed, str.length)
% ls
test.rb zstd-jni-1.5.2-3.jar
% ruby -v
jruby 9.3.2.0 (2.6.8) 2021-12-01 0b8223f905 OpenJDK 64-Bit Server VM 11.0.12+0 on 11.0.12+0 +jit [darwin-x86_64]
% ruby test.rb
testtest
Development
After checking out the repo, run bin/setup
to install dependencies. Then, run rake spec
to run the tests. You can also run bin/console
for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version, update the version number in version.rb
, and then run bundle exec rake release
, which will create a git tag for the version, push git commits and tags, and push the .gem
file to rubygems.org.
Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/SpringMT/zstd-ruby. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
License
The gem is available as open source under the terms of the BSD-3-Clause License.