# frozen_string_literal: true # # Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # ronin-support is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as published # by the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # ronin-support is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License # along with ronin-support. If not, see . # require 'ronin/support/compression/zlib' require 'ronin/support/compression/gzip' require 'ronin/support/compression/core_ext' module Ronin module Support # # Methods for compressing and uncompressing data. # # ## Core-Ext Methods # # * {File.gzip} # * {File.gunzip} # * {String#zlib_deflate} # * {String#zlib_inflate} # * {String#gzip} # * {String#gunzip} # # @api public # # @since 1.0.0 # module Compression # # Zlib inflate a string. # # @param [String] string # The Zlib compressed input. # # @return [String] # The Zlib inflated form of the input. # # @example # Compression.zlib_inflate("x\x9C\xCBH\xCD\xC9\xC9\a\x00\x06,\x02\x15") # # => "hello" # # @api public # def self.zlib_inflate(string) Zlib.inflate(string) end # # Zlib deflate a string. # # @param [String] string # The uncompressed input. # # @return [String] # The Zlib deflated form of the input. # # @example # Compression.zlib_deflate("hello") # # => "x\x9C\xCBH\xCD\xC9\xC9\a\x00\x06,\x02\x15" # # @api public # def self.zlib_deflate(string) Zlib.deflate(string) end # # Creates a gzip stream around the IO object. # # @param [IO, StringIO] io # The IO object to read or write data to. # # @param [String] mode # The mode to open the gzip stream in. # # @yield [gz] # If a block is given, it will be passed the gzip stream object. # # @yieldparam [Gzip::Reader, Gzip::Writer] gz # The gzip reader or writer object. # # @return [Gzip::Reader, Gzip::Writer] # The gzip reader or writer object. # # @raise [ArgumentError] # The mode must include either `r`, `w`, or `a`. # # @see Gzip.new # # @api public # def self.gzip_stream(io, mode: 'r', &block) Gzip.new(io, mode: mode, &block) end # # Opens a gzip file for reading or writing. # # @param [String] path # The path to the gzip file. # # @param [String] mode # The mode to open the file as. # # @yield [output] # If a block is given, it will be passed the gzip writer object. # # @yieldparam [Gzip::Writer] output # The gzip writer object. # # @return [Gzip::Writer] # The gzip writer object. # # @raise [ArgumentError] # The mode must include either `r`, `w`, or `a`. # # @see Gzip.open # # @api public # def self.gzip_open(path, mode: 'r', &block) Gzip.open(path, mode: mode, &block) end # # Opens the gzipped file for reading. # # @param [String] path # The path to the file to read. # # @yield [gz] # If a block is given, it will be passed the gzip reader object. # # @yieldparam [Gzip::Reader] gz # The gzip reader object. # # @return [Gzip::Reader] # The gzip reader object. # # @see gzip_open # # @api public # def self.gunzip(path,&block) gzip_open(path,&block) end # # Opens the gzip file for writing. # # @param [String] path # The path to the file to write to. # # @yield [gz] # If a block is given, it will be passed the gzip writer object. # # @yieldparam [Gzip::Writer] gz # The gzip writer object. # # @return [Gzip::Writer] # The gzip writer object. # # @see gzip_open # # @api public # def self.gzip(path,&block) gzip_open(path, mode: 'w', &block) end end end end