| 
									
										
										
										
											2020-10-10 14:16:11 +02:00
										 |  |  | # typed: false | 
					
						
							| 
									
										
										
										
											2019-04-19 15:38:03 +09:00
										 |  |  | # frozen_string_literal: true | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-05 17:17:03 -05:00
										 |  |  | # Performs {Formula#mktemp}'s functionality, and tracks the results. | 
					
						
							| 
									
										
										
										
											2018-07-13 14:42:49 +01:00
										 |  |  | # Each instance is only intended to be used once. | 
					
						
							|  |  |  | class Mktemp | 
					
						
							| 
									
										
										
										
											2020-10-20 12:03:48 +02:00
										 |  |  |   extend T::Sig | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-13 14:42:49 +01:00
										 |  |  |   include FileUtils | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-05 17:17:03 -05:00
										 |  |  |   # Path to the tmpdir used in this run, as a {Pathname}. | 
					
						
							| 
									
										
										
										
											2018-07-13 14:42:49 +01:00
										 |  |  |   attr_reader :tmpdir | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-06 11:05:02 -07:00
										 |  |  |   def initialize(prefix, opts = {}) | 
					
						
							| 
									
										
										
										
											2018-07-13 14:42:49 +01:00
										 |  |  |     @prefix = prefix | 
					
						
							|  |  |  |     @retain = opts[:retain] | 
					
						
							|  |  |  |     @quiet = false | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-05 17:17:03 -05:00
										 |  |  |   # Instructs this {Mktemp} to retain the staged files. | 
					
						
							| 
									
										
										
										
											2020-10-20 12:03:48 +02:00
										 |  |  |   sig { void } | 
					
						
							| 
									
										
										
										
											2018-07-13 14:42:49 +01:00
										 |  |  |   def retain! | 
					
						
							|  |  |  |     @retain = true | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-05 17:17:03 -05:00
										 |  |  |   # True if the staged temporary files should be retained. | 
					
						
							| 
									
										
										
										
											2018-07-13 14:42:49 +01:00
										 |  |  |   def retain? | 
					
						
							|  |  |  |     @retain | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-05 17:17:03 -05:00
										 |  |  |   # Instructs this Mktemp to not emit messages when retention is triggered. | 
					
						
							| 
									
										
										
										
											2020-10-20 12:03:48 +02:00
										 |  |  |   sig { void } | 
					
						
							| 
									
										
										
										
											2018-07-13 14:42:49 +01:00
										 |  |  |   def quiet! | 
					
						
							|  |  |  |     @quiet = true | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-20 12:03:48 +02:00
										 |  |  |   sig { returns(String) } | 
					
						
							| 
									
										
										
										
											2018-07-13 14:42:49 +01:00
										 |  |  |   def to_s | 
					
						
							|  |  |  |     "[Mktemp: #{tmpdir} retain=#{@retain} quiet=#{@quiet}]" | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def run | 
					
						
							| 
									
										
										
										
											2021-04-06 19:13:30 +01:00
										 |  |  |     @tmpdir = Pathname.new(Dir.mktmpdir("#{@prefix.tr "@", "AT"}-", HOMEBREW_TEMP)) | 
					
						
							| 
									
										
										
										
											2018-07-13 14:42:49 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # Make sure files inside the temporary directory have the same group as the | 
					
						
							|  |  |  |     # brew instance. | 
					
						
							|  |  |  |     # | 
					
						
							|  |  |  |     # Reference from `man 2 open` | 
					
						
							|  |  |  |     # > When a new file is created, it is given the group of the directory which | 
					
						
							|  |  |  |     # contains it. | 
					
						
							|  |  |  |     group_id = if HOMEBREW_BREW_FILE.grpowned? | 
					
						
							|  |  |  |       HOMEBREW_BREW_FILE.stat.gid | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |       Process.gid | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     begin | 
					
						
							|  |  |  |       chown(nil, group_id, tmpdir) | 
					
						
							|  |  |  |     rescue Errno::EPERM | 
					
						
							|  |  |  |       opoo "Failed setting group \"#{Etc.getgrgid(group_id).name}\" on #{tmpdir}" | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     begin | 
					
						
							|  |  |  |       Dir.chdir(tmpdir) { yield self } | 
					
						
							|  |  |  |     ensure | 
					
						
							| 
									
										
										
										
											2021-03-27 16:14:36 +00:00
										 |  |  |       ignore_interrupts { chmod_rm_rf(tmpdir) } unless retain? | 
					
						
							| 
									
										
										
										
											2018-07-13 14:42:49 +01:00
										 |  |  |     end | 
					
						
							|  |  |  |   ensure | 
					
						
							| 
									
										
										
										
											2020-07-06 15:30:57 -04:00
										 |  |  |     ohai "Temporary files retained at:", @tmpdir.to_s if retain? && !@tmpdir.nil? && !@quiet | 
					
						
							| 
									
										
										
										
											2018-07-13 14:42:49 +01:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2021-03-27 16:14:36 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   private | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def chmod_rm_rf(path) | 
					
						
							|  |  |  |     if path.directory? && !path.symlink? | 
					
						
							|  |  |  |       chmod("u+rw", path) if path.owned? # Need permissions in order to see the contents | 
					
						
							|  |  |  |       path.children.each { |child| chmod_rm_rf(child) } | 
					
						
							|  |  |  |       rmdir(path) | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |       rm_f(path) | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   rescue | 
					
						
							|  |  |  |     nil # Just skip this directory. | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2018-07-13 14:42:49 +01:00
										 |  |  | end |