This is used to record installation times and also to determine whether to display caveats.
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # typed: true
 | |
| # frozen_string_literal: true
 | |
| 
 | |
| # A {Messages} object collects messages that may need to be displayed together
 | |
| # at the end of a multi-step `brew` command run.
 | |
| class Messages
 | |
|   extend T::Sig
 | |
| 
 | |
|   attr_reader :caveats, :package_count, :install_times
 | |
| 
 | |
|   sig { void }
 | |
|   def initialize
 | |
|     @caveats = []
 | |
|     @package_count = 0
 | |
|     @install_times = []
 | |
|   end
 | |
| 
 | |
|   def record_caveats(package, caveats)
 | |
|     @caveats.push(package: package, caveats: caveats)
 | |
|   end
 | |
| 
 | |
|   def package_installed(package, elapsed_time)
 | |
|     @package_count += 1
 | |
|     @install_times.push(package: package, time: elapsed_time)
 | |
|   end
 | |
| 
 | |
|   def display_messages(force_caveats: false, display_times: false)
 | |
|     display_caveats(force: force_caveats)
 | |
|     display_install_times if display_times
 | |
|   end
 | |
| 
 | |
|   def display_caveats(force: false)
 | |
|     return if @package_count.zero?
 | |
|     return if @package_count == 1 && !force
 | |
|     return if @caveats.empty?
 | |
| 
 | |
|     oh1 "Caveats"
 | |
|     @caveats.each do |c|
 | |
|       ohai c[:package], c[:caveats]
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   def display_install_times
 | |
|     return if install_times.empty?
 | |
| 
 | |
|     oh1 "Installation times"
 | |
|     install_times.each do |t|
 | |
|       puts format("%<package>-20s %<time>10.3f s", t)
 | |
|     end
 | |
|   end
 | |
| end
 |