| 
									
										
										
										
											2022-09-05 13:57:22 +01:00
										 |  |  | # typed: true | 
					
						
							| 
									
										
										
										
											2019-04-19 15:38:03 +09:00
										 |  |  | # frozen_string_literal: true | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-09 13:51:19 +01:00
										 |  |  | require "formula" | 
					
						
							| 
									
										
										
										
											2020-06-16 20:35:40 +02:00
										 |  |  | require "cask/cask_loader" | 
					
						
							| 
									
										
										
										
											2016-07-09 13:51:19 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-18 02:39:52 +02:00
										 |  |  | # Helper module for validating syntax in taps. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # @api private | 
					
						
							| 
									
										
										
										
											2016-07-09 13:51:19 +01:00
										 |  |  | module Readall | 
					
						
							|  |  |  |   class << self | 
					
						
							|  |  |  |     def valid_ruby_syntax?(ruby_files) | 
					
						
							| 
									
										
										
										
											2020-11-23 18:15:48 +01:00
										 |  |  |       failed = T.let(false, T::Boolean) | 
					
						
							| 
									
										
										
										
											2019-04-18 14:46:40 +09:00
										 |  |  |       ruby_files.each do |ruby_file| | 
					
						
							|  |  |  |         # As a side effect, print syntax errors/warnings to `$stderr`. | 
					
						
							|  |  |  |         failed = true if syntax_errors_or_warnings?(ruby_file) | 
					
						
							| 
									
										
										
										
											2016-07-09 13:51:19 +01:00
										 |  |  |       end | 
					
						
							|  |  |  |       !failed | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-22 17:08:36 +01:00
										 |  |  |     def valid_aliases?(alias_dir, formula_dir) | 
					
						
							| 
									
										
										
										
											2017-04-22 21:43:45 +01:00
										 |  |  |       return true unless alias_dir.directory? | 
					
						
							| 
									
										
										
										
											2017-04-22 17:08:36 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-23 18:15:48 +01:00
										 |  |  |       failed = T.let(false, T::Boolean) | 
					
						
							| 
									
										
										
										
											2017-04-22 17:08:36 +01:00
										 |  |  |       alias_dir.each_child do |f| | 
					
						
							|  |  |  |         if !f.symlink? | 
					
						
							|  |  |  |           onoe "Non-symlink alias: #{f}" | 
					
						
							|  |  |  |           failed = true | 
					
						
							|  |  |  |         elsif !f.file? | 
					
						
							|  |  |  |           onoe "Non-file alias: #{f}" | 
					
						
							|  |  |  |           failed = true | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (formula_dir/"#{f.basename}.rb").exist? | 
					
						
							|  |  |  |           onoe "Formula duplicating alias: #{f}" | 
					
						
							| 
									
										
										
										
											2017-02-21 11:31:18 -08:00
										 |  |  |           failed = true | 
					
						
							|  |  |  |         end | 
					
						
							| 
									
										
										
										
											2016-07-09 13:51:19 +01:00
										 |  |  |       end | 
					
						
							|  |  |  |       !failed | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-10 22:59:07 -04:00
										 |  |  |     def valid_formulae?(formulae, bottle_tag: nil) | 
					
						
							| 
									
										
										
										
											2020-11-23 18:15:48 +01:00
										 |  |  |       success = T.let(true, T::Boolean) | 
					
						
							| 
									
										
										
										
											2016-07-09 13:51:19 +01:00
										 |  |  |       formulae.each do |file| | 
					
						
							| 
									
										
										
										
											2022-10-10 22:59:07 -04:00
										 |  |  |         base = Formulary.factory(file) | 
					
						
							|  |  |  |         next if bottle_tag.blank? || !base.path.exist? || !base.class.on_system_blocks_exist? | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         formula_contents = base.path.read | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         readall_namespace = Formulary.class_s("Readall#{bottle_tag.to_sym.capitalize}") | 
					
						
							|  |  |  |         readall_formula_class = Formulary.load_formula(base.name, base.path, formula_contents, readall_namespace, | 
					
						
							|  |  |  |                                                        flags: base.class.build_flags, ignore_errors: true) | 
					
						
							|  |  |  |         readall_formula_class.new(base.name, base.path, :stable, | 
					
						
							|  |  |  |                                   alias_path: base.alias_path, force_bottle: base.force_bottle) | 
					
						
							| 
									
										
										
										
											2019-10-13 10:03:26 +01:00
										 |  |  |       rescue Interrupt | 
					
						
							|  |  |  |         raise | 
					
						
							|  |  |  |       rescue Exception => e # rubocop:disable Lint/RescueException | 
					
						
							| 
									
										
										
										
											2022-10-10 22:59:07 -04:00
										 |  |  |         onoe "Invalid formula (#{bottle_tag}): #{file}" | 
					
						
							| 
									
										
										
										
											2020-06-16 20:35:40 +02:00
										 |  |  |         $stderr.puts e | 
					
						
							|  |  |  |         success = false | 
					
						
							| 
									
										
										
										
											2016-07-09 13:51:19 +01:00
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2020-06-16 20:35:40 +02:00
										 |  |  |       success | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-24 22:02:00 -07:00
										 |  |  |     def valid_casks?(_casks, os_name: nil, arch: nil) | 
					
						
							|  |  |  |       true | 
					
						
							| 
									
										
										
										
											2016-07-09 13:51:19 +01:00
										 |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def valid_tap?(tap, options = {}) | 
					
						
							| 
									
										
										
										
											2020-06-16 20:35:40 +02:00
										 |  |  |       success = true | 
					
						
							| 
									
										
										
										
											2023-05-13 22:35:08 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-09 13:51:19 +01:00
										 |  |  |       if options[:aliases] | 
					
						
							| 
									
										
										
										
											2017-04-22 17:08:36 +01:00
										 |  |  |         valid_aliases = valid_aliases?(tap.alias_dir, tap.formula_dir) | 
					
						
							| 
									
										
										
										
											2020-06-16 20:35:40 +02:00
										 |  |  |         success = false unless valid_aliases | 
					
						
							| 
									
										
										
										
											2016-07-09 13:51:19 +01:00
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2022-10-10 22:59:07 -04:00
										 |  |  |       if options[:no_simulate] | 
					
						
							|  |  |  |         success = false unless valid_formulae?(tap.formula_files) | 
					
						
							|  |  |  |         success = false unless valid_casks?(tap.cask_files) | 
					
						
							|  |  |  |       else | 
					
						
							| 
									
										
										
										
											2023-05-09 02:15:28 +02:00
										 |  |  |         os_names = [*MacOSVersion::SYMBOLS.keys, :linux] | 
					
						
							| 
									
										
										
										
											2023-05-13 22:35:08 +02:00
										 |  |  |         os_names.product(OnSystem::ARCH_OPTIONS).each do |os, arch| | 
					
						
							|  |  |  |           bottle_tag = Utils::Bottles::Tag.new(system: os, arch: arch) | 
					
						
							|  |  |  |           next unless bottle_tag.valid_combination? | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           Homebrew::SimulateSystem.with os: os, arch: arch do | 
					
						
							|  |  |  |             success = false unless valid_formulae?(tap.formula_files, bottle_tag: bottle_tag) | 
					
						
							|  |  |  |             success = false unless valid_casks?(tap.cask_files, os_name: os, arch: arch) | 
					
						
							| 
									
										
										
										
											2022-10-10 22:59:07 -04:00
										 |  |  |           end | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |       end | 
					
						
							| 
									
										
										
										
											2023-05-13 22:35:08 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-16 20:35:40 +02:00
										 |  |  |       success | 
					
						
							| 
									
										
										
										
											2016-07-09 13:51:19 +01:00
										 |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     private | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-07 23:48:52 +00:00
										 |  |  |     def syntax_errors_or_warnings?(filename) | 
					
						
							| 
									
										
										
										
											2018-08-29 19:56:32 +02:00
										 |  |  |       # Retrieve messages about syntax errors/warnings printed to `$stderr`. | 
					
						
							| 
									
										
										
										
											2023-03-07 23:48:52 +00:00
										 |  |  |       _, err, status = system_command(RUBY_PATH, args: ["-c", "-w", filename], print_stderr: false) | 
					
						
							| 
									
										
										
										
											2018-07-19 23:56:51 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |       # Ignore unnecessary warning about named capture conflicts. | 
					
						
							|  |  |  |       # See https://bugs.ruby-lang.org/issues/12359. | 
					
						
							| 
									
										
										
										
											2018-08-29 19:56:32 +02:00
										 |  |  |       messages = err.lines | 
					
						
							|  |  |  |                     .grep_v(/named capture conflicts a local variable/) | 
					
						
							|  |  |  |                     .join | 
					
						
							| 
									
										
										
										
											2018-07-19 23:56:51 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-09 13:51:19 +01:00
										 |  |  |       $stderr.print messages | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       # Only syntax errors result in a non-zero status code. To detect syntax | 
					
						
							|  |  |  |       # warnings we also need to inspect the output to `$stderr`. | 
					
						
							| 
									
										
										
										
											2018-08-29 19:56:32 +02:00
										 |  |  |       !status.success? || !messages.chomp.empty? | 
					
						
							| 
									
										
										
										
											2016-07-09 13:51:19 +01:00
										 |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | end | 
					
						
							| 
									
										
										
										
											2020-06-16 20:35:40 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | require "extend/os/readall" |