
As per review feedback: https://github.com/Homebrew/brew/pull/17373#pullrequestreview-2104523770 Co-authored-by: Mike McQuaid <mike@mikemcquaid.com>
32 lines
782 B
Ruby
32 lines
782 B
Ruby
# typed: true
|
|
# frozen_string_literal: true
|
|
|
|
require "utils/cp"
|
|
|
|
module UnpackStrategy
|
|
# Strategy for unpacking gzip archives.
|
|
class Gzip
|
|
include UnpackStrategy
|
|
|
|
sig { returns(T::Array[String]) }
|
|
def self.extensions
|
|
[".gz"]
|
|
end
|
|
|
|
def self.can_extract?(path)
|
|
path.magic_number.match?(/\A\037\213/n)
|
|
end
|
|
|
|
private
|
|
|
|
sig { override.params(unpack_dir: Pathname, basename: Pathname, verbose: T::Boolean).returns(T.untyped) }
|
|
def extract_to_dir(unpack_dir, basename:, verbose:)
|
|
Utils::Cp.with_attributes path, unpack_dir/basename
|
|
quiet_flags = verbose ? [] : ["-q"]
|
|
system_command! "gunzip",
|
|
args: [*quiet_flags, "-N", "--", unpack_dir/basename],
|
|
verbose:
|
|
end
|
|
end
|
|
end
|