35 lines
947 B
Ruby
Raw Normal View History

2021-09-16 15:56:31 +01:00
# typed: true
# frozen_string_literal: true
module UnpackStrategy
# Strategy for unpacking zstd archives.
class Zstd
include UnpackStrategy
2024-07-05 22:29:41 -07:00
sig { override.returns(T::Array[String]) }
2021-09-16 15:56:31 +01:00
def self.extensions
[".zst"]
end
def self.can_extract?(path)
path.magic_number.match?(/\x28\xB5\x2F\xFD/n)
end
def dependencies
@dependencies ||= [Formula["zstd"]]
end
private
sig { override.params(unpack_dir: Pathname, basename: Pathname, verbose: T::Boolean).void }
2021-09-16 15:56:31 +01:00
def extract_to_dir(unpack_dir, basename:, verbose:)
FileUtils.cp path, unpack_dir/basename, preserve: true
2021-09-16 15:56:31 +01:00
quiet_flags = verbose ? [] : ["-q"]
system_command! "unzstd",
args: [*quiet_flags, "-T0", "--rm", "--", unpack_dir/basename],
env: { "PATH" => PATH.new(Formula["zstd"].opt_bin, ENV.fetch("PATH")) },
2024-03-07 16:20:20 +00:00
verbose:
2021-09-16 15:56:31 +01:00
end
end
end