76 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # typed: true
 | |
| # frozen_string_literal: true
 | |
| 
 | |
| require "formula"
 | |
| 
 | |
| # Helper class for traversing a formula's previous versions.
 | |
| #
 | |
| # @api private
 | |
| class FormulaVersions
 | |
|   include Context
 | |
| 
 | |
|   IGNORED_EXCEPTIONS = [
 | |
|     ArgumentError, NameError, SyntaxError, TypeError,
 | |
|     FormulaSpecificationError, FormulaValidationError,
 | |
|     ErrorDuringExecution, LoadError, MethodDeprecatedError
 | |
|   ].freeze
 | |
| 
 | |
|   MAX_VERSIONS_DEPTH = 2
 | |
| 
 | |
|   attr_reader :name, :path, :repository, :entry_name
 | |
| 
 | |
|   def initialize(formula)
 | |
|     @name = formula.name
 | |
|     @path = formula.path
 | |
|     @repository = formula.tap.path
 | |
|     @entry_name = @path.relative_path_from(repository).to_s
 | |
|     @current_formula = formula
 | |
|     @formula_at_revision = {}
 | |
|   end
 | |
| 
 | |
|   def rev_list(branch)
 | |
|     repository.cd do
 | |
|       rev_list_cmd = ["git", "rev-list", "--abbrev-commit", "--remove-empty"]
 | |
|       rev_list_cmd << "--first-parent" if repository != CoreTap.instance.path
 | |
|       Utils.popen_read(*rev_list_cmd, branch, "--", entry_name) do |io|
 | |
|         yield io.readline.chomp until io.eof?
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   sig { params(rev: String).returns(String) }
 | |
|   def file_contents_at_revision(rev)
 | |
|     repository.cd { Utils.popen_read("git", "cat-file", "blob", "#{rev}:#{entry_name}") }
 | |
|   end
 | |
| 
 | |
|   sig {
 | |
|     type_parameters(:U)
 | |
|       .params(rev: String, _block: T.proc.params(arg0: Formula).returns(T.type_parameter(:U)))
 | |
|       .returns(T.nilable(T.type_parameter(:U)))
 | |
|   }
 | |
|   def formula_at_revision(rev, &_block)
 | |
|     Homebrew.raise_deprecation_exceptions = true
 | |
| 
 | |
|     yield @formula_at_revision[rev] ||= begin
 | |
|       contents = file_contents_at_revision(rev)
 | |
|       nostdout { Formulary.from_contents(name, path, contents, ignore_errors: true) }
 | |
|     end
 | |
|   rescue *IGNORED_EXCEPTIONS => e
 | |
|     # We rescue these so that we can skip bad versions and
 | |
|     # continue walking the history
 | |
|     odebug "#{e} in #{name} at revision #{rev}", e.backtrace
 | |
|   rescue FormulaUnavailableError
 | |
|     nil
 | |
|   ensure
 | |
|     Homebrew.raise_deprecation_exceptions = false
 | |
|   end
 | |
| 
 | |
|   def nostdout(&block)
 | |
|     if verbose?
 | |
|       yield
 | |
|     else
 | |
|       redirect_stdout(File::NULL, &block)
 | |
|     end
 | |
|   end
 | |
| end
 | 
