 deaac7ce47
			
		
	
	
		deaac7ce47
		
			
		
	
	
	
	
		
			
			This replaces `FileUtils.cp` and `system_command! "cp"` with the new `Utils::Cp` utility where it is expected that the performance improvement outweighs the cost of the system command invocation.
		
			
				
	
	
		
			37 lines
		
	
	
		
			944 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			944 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # typed: true
 | |
| # frozen_string_literal: true
 | |
| 
 | |
| require "utils/cp"
 | |
| 
 | |
| module UnpackStrategy
 | |
|   # Strategy for unpacking LZMA archives.
 | |
|   class Lzma
 | |
|     include UnpackStrategy
 | |
| 
 | |
|     sig { returns(T::Array[String]) }
 | |
|     def self.extensions
 | |
|       [".lzma"]
 | |
|     end
 | |
| 
 | |
|     def self.can_extract?(path)
 | |
|       path.magic_number.match?(/\A\]\000\000\200\000/n)
 | |
|     end
 | |
| 
 | |
|     def dependencies
 | |
|       @dependencies ||= [Formula["xz"]]
 | |
|     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.copy path, unpack_dir/basename
 | |
|       quiet_flags = verbose ? [] : ["-q"]
 | |
|       system_command! "unlzma",
 | |
|                       args:    [*quiet_flags, "--", unpack_dir/basename],
 | |
|                       env:     { "PATH" => PATH.new(Formula["xz"].opt_bin, ENV.fetch("PATH")) },
 | |
|                       verbose:
 | |
|     end
 | |
|   end
 | |
| end
 |