Sha256: 9392027b82f9528f076e81bb862fc2e633a3a38483ce65da689de24489689549
Contents?: true
Size: 1.17 KB
Versions: 5
Compression:
Stored size: 1.17 KB
Contents
require 'zlib' require 'stringio' module Riak module Util # Borrowed from ActiveSupport # https://github.com/rails/rails/blob/master/activesupport/lib/active_support/gzip.rb # # A convenient wrapper for the zlib standard library that allows # compression/decompression of strings with gzip. # # gzip = Riak::Util::Gzip.compress('compress me!') # # => "\x1F\x8B\b\x00o\x8D\xCDO\x00\x03K\xCE\xCF-(J-.V\xC8MU\x04\x00R>n\x83\f\x00\x00\x00" # # Riak::Util::Gzip.decompress(gzip) # # => "compress me!" module Gzip class Stream < StringIO def initialize(*) super set_encoding "BINARY" end def close rewind end end # Decompresses a gzipped string. def self.decompress(source) Zlib::GzipReader.new(StringIO.new(source)).read end # Compresses a string using gzip. def self.compress(source, level = Zlib::DEFAULT_COMPRESSION, strategy = Zlib::DEFAULT_STRATEGY) output = Stream.new gz = Zlib::GzipWriter.new(output, level, strategy) gz.write(source) gz.close output.string end end end end
Version data entries
5 entries across 5 versions & 1 rubygems