2020-10-10 14:16:11 +02:00
|
|
|
# typed: false
|
2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-03-24 09:04:49 +01:00
|
|
|
require "time"
|
|
|
|
|
2016-10-02 04:11:43 +02:00
|
|
|
require "utils/analytics"
|
|
|
|
require "utils/curl"
|
|
|
|
require "utils/fork"
|
2016-08-30 21:38:13 +02:00
|
|
|
require "utils/formatter"
|
2019-02-20 12:28:59 +00:00
|
|
|
require "utils/gems"
|
2016-10-02 04:11:43 +02:00
|
|
|
require "utils/git"
|
2021-01-06 21:25:57 -08:00
|
|
|
require "utils/git_repository"
|
2016-10-02 04:11:43 +02:00
|
|
|
require "utils/github"
|
2023-01-06 22:58:53 -05:00
|
|
|
require "utils/gzip"
|
2015-08-03 13:09:07 +01:00
|
|
|
require "utils/inreplace"
|
2016-09-30 18:22:53 -05:00
|
|
|
require "utils/link"
|
2015-08-03 13:09:07 +01:00
|
|
|
require "utils/popen"
|
2020-07-06 03:32:18 +00:00
|
|
|
require "utils/repology"
|
2016-12-10 14:20:47 +00:00
|
|
|
require "utils/svn"
|
2016-08-26 16:04:47 +02:00
|
|
|
require "utils/tty"
|
2018-08-15 12:13:21 +02:00
|
|
|
require "tap_constants"
|
2009-10-15 14:42:19 +01:00
|
|
|
|
2010-01-13 09:00:51 +00:00
|
|
|
module Homebrew
|
2020-08-02 14:32:31 +02:00
|
|
|
extend Context
|
|
|
|
|
2016-09-26 01:44:51 +02:00
|
|
|
module_function
|
|
|
|
|
2018-05-21 01:43:42 +02:00
|
|
|
def _system(cmd, *args, **options)
|
2014-03-29 02:24:01 -05:00
|
|
|
pid = fork do
|
2010-01-13 09:00:51 +00:00
|
|
|
yield if block_given?
|
2018-09-02 20:14:54 +01:00
|
|
|
args.map!(&:to_s)
|
2016-09-11 17:47:04 +01:00
|
|
|
begin
|
2018-05-21 01:43:42 +02:00
|
|
|
exec(cmd, *args, **options)
|
2016-09-11 17:47:04 +01:00
|
|
|
rescue
|
|
|
|
nil
|
|
|
|
end
|
2010-01-13 09:00:51 +00:00
|
|
|
exit! 1 # never gets here unless exec failed
|
|
|
|
end
|
2020-11-23 18:15:48 +01:00
|
|
|
Process.wait(T.must(pid))
|
2017-06-10 20:12:55 +03:00
|
|
|
$CHILD_STATUS.success?
|
2010-01-13 09:00:51 +00:00
|
|
|
end
|
2014-06-30 19:15:03 -05:00
|
|
|
|
2018-05-21 01:43:42 +02:00
|
|
|
def system(cmd, *args, **options)
|
2020-08-02 14:32:31 +02:00
|
|
|
if verbose?
|
2019-11-06 14:59:27 +00:00
|
|
|
puts "#{cmd} #{args * " "}".gsub(RUBY_PATH, "ruby")
|
|
|
|
.gsub($LOAD_PATH.join(File::PATH_SEPARATOR).to_s, "$LOAD_PATH")
|
|
|
|
end
|
2018-05-21 01:43:42 +02:00
|
|
|
_system(cmd, *args, **options)
|
2015-09-08 16:06:39 +08:00
|
|
|
end
|
|
|
|
|
2017-10-07 00:31:28 +02:00
|
|
|
# rubocop:disable Style/GlobalVars
|
2016-04-18 17:39:21 -04:00
|
|
|
def inject_dump_stats!(the_module, pattern)
|
2017-10-07 00:31:28 +02:00
|
|
|
@injected_dump_stat_modules ||= {}
|
2016-09-26 01:44:51 +02:00
|
|
|
@injected_dump_stat_modules[the_module] ||= []
|
|
|
|
injected_methods = @injected_dump_stat_modules[the_module]
|
2016-04-18 17:39:21 -04:00
|
|
|
the_module.module_eval do
|
|
|
|
instance_methods.grep(pattern).each do |name|
|
|
|
|
next if injected_methods.include? name
|
2018-09-17 02:45:00 +02:00
|
|
|
|
2016-04-18 17:39:21 -04:00
|
|
|
method = instance_method(name)
|
|
|
|
define_method(name) do |*args, &block|
|
2019-10-13 10:03:26 +01:00
|
|
|
time = Time.now
|
2020-11-23 18:15:48 +01:00
|
|
|
|
|
|
|
begin
|
|
|
|
method.bind(self).call(*args, &block)
|
|
|
|
ensure
|
|
|
|
$times[name] ||= 0
|
|
|
|
$times[name] += Time.now - time
|
|
|
|
end
|
2016-04-18 17:39:21 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-09-23 22:02:23 +02:00
|
|
|
return unless $times.nil?
|
2018-09-17 02:45:00 +02:00
|
|
|
|
2016-09-23 22:02:23 +02:00
|
|
|
$times = {}
|
|
|
|
at_exit do
|
2019-01-22 14:20:24 +00:00
|
|
|
col_width = [$times.keys.map(&:size).max.to_i + 2, 15].max
|
2016-09-23 22:02:23 +02:00
|
|
|
$times.sort_by { |_k, v| v }.each do |method, time|
|
2019-10-03 08:50:45 +02:00
|
|
|
puts format("%<method>-#{col_width}s %<time>0.4f sec", method: "#{method}:", time: time)
|
2016-04-18 17:39:21 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-10-07 00:31:28 +02:00
|
|
|
# rubocop:enable Style/GlobalVars
|
2010-01-13 09:00:51 +00:00
|
|
|
end
|
|
|
|
|
2019-08-15 09:12:21 +02:00
|
|
|
module Kernel
|
2020-10-20 12:03:48 +02:00
|
|
|
extend T::Sig
|
|
|
|
|
2019-08-15 09:12:21 +02:00
|
|
|
def require?(path)
|
|
|
|
return false if path.nil?
|
|
|
|
|
|
|
|
require path
|
|
|
|
true
|
|
|
|
rescue LoadError => e
|
|
|
|
# we should raise on syntax errors but not if the file doesn't exist.
|
|
|
|
raise unless e.message.include?(path)
|
2017-10-29 14:44:43 +00:00
|
|
|
end
|
2017-06-01 17:45:07 -07:00
|
|
|
|
2019-08-15 09:12:21 +02:00
|
|
|
def ohai_title(title)
|
2020-08-02 03:22:22 +02:00
|
|
|
verbose = if respond_to?(:verbose?)
|
|
|
|
verbose?
|
|
|
|
else
|
2020-08-02 14:32:31 +02:00
|
|
|
Context.current.verbose?
|
2020-08-02 03:22:22 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
title = Tty.truncate(title) if $stdout.tty? && !verbose
|
2019-08-15 09:12:21 +02:00
|
|
|
Formatter.headline(title, color: :blue)
|
2017-10-29 14:44:43 +00:00
|
|
|
end
|
2016-08-01 04:07:59 +01:00
|
|
|
|
2019-08-15 09:12:21 +02:00
|
|
|
def ohai(title, *sput)
|
|
|
|
puts ohai_title(title)
|
|
|
|
puts sput
|
|
|
|
end
|
2018-09-17 02:45:00 +02:00
|
|
|
|
2020-08-02 03:22:22 +02:00
|
|
|
def odebug(title, *sput, always_display: false)
|
2020-08-02 14:32:31 +02:00
|
|
|
debug = if respond_to?(:debug)
|
2020-08-02 03:22:22 +02:00
|
|
|
debug?
|
|
|
|
else
|
2020-08-02 14:32:31 +02:00
|
|
|
Context.current.debug?
|
2020-08-02 03:22:22 +02:00
|
|
|
end
|
|
|
|
|
2021-01-07 13:49:05 -08:00
|
|
|
return if !debug && !always_display
|
2010-01-13 09:00:51 +00:00
|
|
|
|
2019-08-15 09:12:21 +02:00
|
|
|
puts Formatter.headline(title, color: :magenta)
|
|
|
|
puts sput unless sput.empty?
|
2009-11-09 17:44:29 +00:00
|
|
|
end
|
2009-08-11 12:20:55 -07:00
|
|
|
|
2022-08-12 23:44:45 -07:00
|
|
|
def oh1_title(title, truncate: :auto)
|
2020-08-02 03:22:22 +02:00
|
|
|
verbose = if respond_to?(:verbose?)
|
|
|
|
verbose?
|
|
|
|
else
|
2020-08-02 14:32:31 +02:00
|
|
|
Context.current.verbose?
|
2020-08-02 03:22:22 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
title = Tty.truncate(title) if $stdout.tty? && !verbose && truncate == :auto
|
2022-08-12 23:44:45 -07:00
|
|
|
Formatter.headline(title, color: :green)
|
|
|
|
end
|
|
|
|
|
|
|
|
def oh1(title, truncate: :auto)
|
|
|
|
puts oh1_title(title, truncate: truncate)
|
2014-03-16 11:52:11 -07:00
|
|
|
end
|
2012-03-03 15:50:24 -08:00
|
|
|
|
2020-11-05 17:17:03 -05:00
|
|
|
# Print a message prefixed with "Warning" (do this rarely).
|
2019-08-15 09:12:21 +02:00
|
|
|
def opoo(message)
|
2020-09-17 04:18:13 +05:30
|
|
|
Tty.with($stderr) do |stderr|
|
|
|
|
stderr.puts Formatter.warning(message, label: "Warning")
|
|
|
|
end
|
2019-08-15 09:12:21 +02:00
|
|
|
end
|
|
|
|
|
2020-11-05 17:17:03 -05:00
|
|
|
# Print a message prefixed with "Error".
|
2019-08-15 09:12:21 +02:00
|
|
|
def onoe(message)
|
2020-09-17 04:18:13 +05:30
|
|
|
Tty.with($stderr) do |stderr|
|
|
|
|
stderr.puts Formatter.error(message, label: "Error")
|
|
|
|
end
|
2019-08-15 09:12:21 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def ofail(error)
|
|
|
|
onoe error
|
|
|
|
Homebrew.failed = true
|
|
|
|
end
|
|
|
|
|
|
|
|
def odie(error)
|
|
|
|
onoe error
|
|
|
|
exit 1
|
|
|
|
end
|
|
|
|
|
2022-04-18 16:41:39 +01:00
|
|
|
def odeprecated(method, replacement = nil,
|
|
|
|
disable: false,
|
|
|
|
disable_on: nil,
|
|
|
|
disable_for_developers: true,
|
|
|
|
caller: send(:caller))
|
2019-08-15 09:12:21 +02:00
|
|
|
replacement_message = if replacement
|
|
|
|
"Use #{replacement} instead."
|
|
|
|
else
|
|
|
|
"There is no replacement."
|
|
|
|
end
|
|
|
|
|
|
|
|
unless disable_on.nil?
|
|
|
|
if disable_on > Time.now
|
|
|
|
will_be_disabled_message = " and will be disabled on #{disable_on.strftime("%Y-%m-%d")}"
|
|
|
|
else
|
|
|
|
disable = true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
verb = if disable
|
|
|
|
"disabled"
|
|
|
|
else
|
|
|
|
"deprecated#{will_be_disabled_message}"
|
|
|
|
end
|
|
|
|
|
|
|
|
# Try to show the most relevant location in message, i.e. (if applicable):
|
|
|
|
# - Location in a formula.
|
|
|
|
# - Location outside of 'compat/'.
|
|
|
|
# - Location of caller of deprecated method (if all else fails).
|
|
|
|
backtrace = caller
|
|
|
|
|
|
|
|
# Don't throw deprecations at all for cached, .brew or .metadata files.
|
|
|
|
return if backtrace.any? do |line|
|
2021-03-24 09:04:49 +01:00
|
|
|
next true if line.include?(HOMEBREW_CACHE.to_s)
|
2020-12-15 12:04:28 +00:00
|
|
|
next true if line.include?("/.brew/")
|
|
|
|
next true if line.include?("/.metadata/")
|
|
|
|
|
|
|
|
next false unless line.match?(HOMEBREW_TAP_PATH_REGEX)
|
|
|
|
|
|
|
|
path = Pathname(line.split(":", 2).first)
|
|
|
|
next false unless path.file?
|
|
|
|
next false unless path.readable?
|
|
|
|
|
|
|
|
formula_contents = path.read
|
|
|
|
formula_contents.include?(" deprecate! ") || formula_contents.include?(" disable! ")
|
2019-08-15 09:12:21 +02:00
|
|
|
end
|
|
|
|
|
2020-11-23 18:15:48 +01:00
|
|
|
tap_message = T.let(nil, T.nilable(String))
|
2019-08-15 09:12:21 +02:00
|
|
|
|
|
|
|
backtrace.each do |line|
|
2021-02-12 18:33:37 +05:30
|
|
|
next unless (match = line.match(HOMEBREW_TAP_PATH_REGEX))
|
2019-08-15 09:12:21 +02:00
|
|
|
|
|
|
|
tap = Tap.fetch(match[:user], match[:repo])
|
2023-02-10 23:15:40 -05:00
|
|
|
tap_message = +"\nPlease report this issue to the #{tap} tap (not Homebrew/brew or Homebrew/homebrew-core)"
|
2019-08-15 09:12:21 +02:00
|
|
|
tap_message += ", or even better, submit a PR to fix it" if replacement
|
2020-06-02 09:49:23 +01:00
|
|
|
tap_message << ":\n #{line.sub(/^(.*:\d+):.*$/, '\1')}\n\n"
|
2019-08-15 09:12:21 +02:00
|
|
|
break
|
2016-01-02 23:08:51 +08:00
|
|
|
end
|
|
|
|
|
2019-08-15 09:12:21 +02:00
|
|
|
message = +"Calling #{method} is #{verb}! #{replacement_message}"
|
|
|
|
message << tap_message if tap_message
|
|
|
|
message.freeze
|
2017-06-07 16:07:40 +01:00
|
|
|
|
2022-04-18 16:41:39 +01:00
|
|
|
disable = true if disable_for_developers && Homebrew::EnvConfig.developer?
|
|
|
|
if disable || Homebrew.raise_deprecation_exceptions?
|
2019-08-15 09:12:21 +02:00
|
|
|
exception = MethodDeprecatedError.new(message)
|
|
|
|
exception.set_backtrace(backtrace)
|
|
|
|
raise exception
|
|
|
|
elsif !Homebrew.auditing?
|
|
|
|
opoo message
|
|
|
|
end
|
2017-04-24 08:49:11 +01:00
|
|
|
end
|
2015-01-05 15:23:35 -05:00
|
|
|
|
2019-08-15 09:12:21 +02:00
|
|
|
def odisabled(method, replacement = nil, options = {})
|
|
|
|
options = { disable: true, caller: caller }.merge(options)
|
|
|
|
odeprecated(method, replacement, options)
|
|
|
|
end
|
2015-01-05 15:23:35 -05:00
|
|
|
|
2019-08-15 09:12:21 +02:00
|
|
|
def pretty_installed(f)
|
|
|
|
if !$stdout.tty?
|
|
|
|
f.to_s
|
2020-04-05 15:44:50 +01:00
|
|
|
elsif Homebrew::EnvConfig.no_emoji?
|
2019-08-15 09:12:21 +02:00
|
|
|
Formatter.success("#{Tty.bold}#{f} (installed)#{Tty.reset}")
|
2020-04-05 15:44:50 +01:00
|
|
|
else
|
|
|
|
"#{Tty.bold}#{f} #{Formatter.success("✔")}#{Tty.reset}"
|
2019-08-15 09:12:21 +02:00
|
|
|
end
|
|
|
|
end
|
2011-12-16 14:27:58 -08:00
|
|
|
|
2022-06-03 19:16:15 +01:00
|
|
|
def pretty_outdated(f)
|
|
|
|
if !$stdout.tty?
|
|
|
|
f.to_s
|
|
|
|
elsif Homebrew::EnvConfig.no_emoji?
|
|
|
|
Formatter.error("#{Tty.bold}#{f} (outdated)#{Tty.reset}")
|
|
|
|
else
|
|
|
|
"#{Tty.bold}#{f} #{Formatter.warning("⚠")}#{Tty.reset}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-08-15 09:12:21 +02:00
|
|
|
def pretty_uninstalled(f)
|
|
|
|
if !$stdout.tty?
|
|
|
|
f.to_s
|
2020-04-05 15:44:50 +01:00
|
|
|
elsif Homebrew::EnvConfig.no_emoji?
|
2019-08-15 09:12:21 +02:00
|
|
|
Formatter.error("#{Tty.bold}#{f} (uninstalled)#{Tty.reset}")
|
2020-04-05 15:44:50 +01:00
|
|
|
else
|
|
|
|
"#{Tty.bold}#{f} #{Formatter.error("✘")}#{Tty.reset}"
|
2019-08-15 09:12:21 +02:00
|
|
|
end
|
|
|
|
end
|
2012-12-27 23:34:29 -06:00
|
|
|
|
2019-08-15 09:12:21 +02:00
|
|
|
def pretty_duration(s)
|
|
|
|
s = s.to_i
|
|
|
|
res = +""
|
2018-09-17 02:45:00 +02:00
|
|
|
|
2019-08-15 09:12:21 +02:00
|
|
|
if s > 59
|
|
|
|
m = s / 60
|
|
|
|
s %= 60
|
|
|
|
res = +"#{m} #{"minute".pluralize(m)}"
|
|
|
|
return res.freeze if s.zero?
|
2019-02-10 23:30:54 -08:00
|
|
|
|
2019-08-15 09:12:21 +02:00
|
|
|
res << " "
|
|
|
|
end
|
2009-09-08 15:31:28 -07:00
|
|
|
|
2019-08-15 09:12:21 +02:00
|
|
|
res << "#{s} #{"second".pluralize(s)}"
|
|
|
|
res.freeze
|
2010-09-12 22:55:52 +02:00
|
|
|
end
|
2010-01-29 10:15:33 -08:00
|
|
|
|
2019-08-15 09:12:21 +02:00
|
|
|
def interactive_shell(f = nil)
|
|
|
|
unless f.nil?
|
|
|
|
ENV["HOMEBREW_DEBUG_PREFIX"] = f.prefix
|
|
|
|
ENV["HOMEBREW_DEBUG_INSTALL"] = f.full_name
|
|
|
|
end
|
|
|
|
|
2022-05-30 05:07:42 +01:00
|
|
|
if Utils::Shell.preferred == :zsh && (home = Dir.home).start_with?(HOMEBREW_TEMP.resolved_path.to_s)
|
2020-11-23 18:15:48 +01:00
|
|
|
FileUtils.mkdir_p home
|
|
|
|
FileUtils.touch "#{home}/.zshrc"
|
2019-08-15 09:12:21 +02:00
|
|
|
end
|
|
|
|
|
2022-05-30 05:07:42 +01:00
|
|
|
Process.wait fork { exec preferred_shell }
|
2009-10-15 12:36:09 +01:00
|
|
|
|
2019-08-15 09:12:21 +02:00
|
|
|
return if $CHILD_STATUS.success?
|
|
|
|
raise "Aborted due to non-zero exit status (#{$CHILD_STATUS.exitstatus})" if $CHILD_STATUS.exited?
|
|
|
|
|
|
|
|
raise $CHILD_STATUS.inspect
|
2012-09-11 20:59:59 -04:00
|
|
|
end
|
2009-11-09 18:24:36 +00:00
|
|
|
|
2020-08-19 17:12:32 +01:00
|
|
|
def with_homebrew_path(&block)
|
2022-06-15 05:40:43 +01:00
|
|
|
with_env(PATH: PATH.new(ORIGINAL_PATHS), &block)
|
2019-08-15 09:12:21 +02:00
|
|
|
end
|
2016-11-11 20:08:26 +00:00
|
|
|
|
2020-08-19 17:12:32 +01:00
|
|
|
def with_custom_locale(locale, &block)
|
|
|
|
with_env(LC_ALL: locale, &block)
|
2009-11-09 18:24:36 +00:00
|
|
|
end
|
2010-04-07 21:01:12 -07:00
|
|
|
|
2020-11-05 17:17:03 -05:00
|
|
|
# Kernel.system but with exceptions.
|
2019-08-15 09:12:21 +02:00
|
|
|
def safe_system(cmd, *args, **options)
|
|
|
|
return if Homebrew.system(cmd, *args, **options)
|
|
|
|
|
|
|
|
raise ErrorDuringExecution.new([cmd, *args], status: $CHILD_STATUS)
|
|
|
|
end
|
|
|
|
|
2020-11-05 17:17:03 -05:00
|
|
|
# Prints no output.
|
2019-08-15 09:12:21 +02:00
|
|
|
def quiet_system(cmd, *args)
|
|
|
|
Homebrew._system(cmd, *args) do
|
|
|
|
# Redirect output streams to `/dev/null` instead of closing as some programs
|
|
|
|
# will fail to execute if they can't write to an open stream.
|
|
|
|
$stdout.reopen("/dev/null")
|
|
|
|
$stderr.reopen("/dev/null")
|
2013-09-15 20:11:17 -07:00
|
|
|
end
|
2019-08-15 09:12:21 +02:00
|
|
|
end
|
2013-09-15 20:11:17 -07:00
|
|
|
|
2022-06-15 05:40:43 +01:00
|
|
|
def which(cmd, path = ENV.fetch("PATH"))
|
2019-08-15 09:12:21 +02:00
|
|
|
PATH.new(path).each do |p|
|
|
|
|
begin
|
|
|
|
pcmd = File.expand_path(cmd, p)
|
|
|
|
rescue ArgumentError
|
|
|
|
# File.expand_path will raise an ArgumentError if the path is malformed.
|
|
|
|
# See https://github.com/Homebrew/legacy-homebrew/issues/32789
|
|
|
|
next
|
|
|
|
end
|
|
|
|
return Pathname.new(pcmd) if File.file?(pcmd) && File.executable?(pcmd)
|
|
|
|
end
|
|
|
|
nil
|
2015-11-17 16:12:31 +05:30
|
|
|
end
|
|
|
|
|
2022-06-15 05:40:43 +01:00
|
|
|
def which_all(cmd, path = ENV.fetch("PATH"))
|
2019-08-15 09:12:21 +02:00
|
|
|
PATH.new(path).map do |p|
|
|
|
|
begin
|
|
|
|
pcmd = File.expand_path(cmd, p)
|
|
|
|
rescue ArgumentError
|
|
|
|
# File.expand_path will raise an ArgumentError if the path is malformed.
|
|
|
|
# See https://github.com/Homebrew/legacy-homebrew/issues/32789
|
|
|
|
next
|
|
|
|
end
|
|
|
|
Pathname.new(pcmd) if File.file?(pcmd) && File.executable?(pcmd)
|
|
|
|
end.compact.uniq
|
|
|
|
end
|
2016-07-05 08:45:17 -04:00
|
|
|
|
2019-08-15 09:12:21 +02:00
|
|
|
def which_editor
|
2020-04-05 15:44:50 +01:00
|
|
|
editor = Homebrew::EnvConfig.editor
|
2019-08-15 09:12:21 +02:00
|
|
|
return editor if editor
|
2016-08-24 11:06:20 +01:00
|
|
|
|
2022-08-31 15:26:58 -04:00
|
|
|
# Find Atom, Sublime Text, VS Code, Textmate, BBEdit, or vim
|
|
|
|
editor = %w[atom subl code mate bbedit vim].find do |candidate|
|
2022-06-15 05:40:43 +01:00
|
|
|
candidate if which(candidate, ORIGINAL_PATHS)
|
2017-07-13 17:14:21 -07:00
|
|
|
end
|
2019-08-15 09:12:21 +02:00
|
|
|
editor ||= "vim"
|
|
|
|
|
|
|
|
opoo <<~EOS
|
|
|
|
Using #{editor} because no editor was set in the environment.
|
|
|
|
This may change in the future, so we recommend setting EDITOR,
|
|
|
|
or HOMEBREW_EDITOR to your preferred text editor.
|
|
|
|
EOS
|
|
|
|
|
|
|
|
editor
|
|
|
|
end
|
|
|
|
|
|
|
|
def exec_editor(*args)
|
|
|
|
puts "Editing #{args.join "\n"}"
|
|
|
|
with_homebrew_path { safe_system(*which_editor.shellsplit, *args) }
|
|
|
|
end
|
|
|
|
|
|
|
|
def exec_browser(*args)
|
2020-04-05 15:44:50 +01:00
|
|
|
browser = Homebrew::EnvConfig.browser
|
2019-08-15 09:12:21 +02:00
|
|
|
browser ||= OS::PATH_OPEN if defined?(OS::PATH_OPEN)
|
|
|
|
return unless browser
|
|
|
|
|
2020-04-05 15:44:50 +01:00
|
|
|
ENV["DISPLAY"] = Homebrew::EnvConfig.display
|
2017-07-13 17:14:21 -07:00
|
|
|
|
2022-05-30 04:37:09 +01:00
|
|
|
with_env(DBUS_SESSION_BUS_ADDRESS: ENV.fetch("HOMEBREW_DBUS_SESSION_BUS_ADDRESS", nil)) do
|
2022-02-17 11:55:04 +08:00
|
|
|
safe_system(browser, *args)
|
|
|
|
end
|
2019-08-15 09:12:21 +02:00
|
|
|
end
|
|
|
|
|
2020-11-05 17:17:03 -05:00
|
|
|
# GZips the given paths, and returns the gzipped paths.
|
2019-08-15 09:12:21 +02:00
|
|
|
def gzip(*paths)
|
2023-02-07 19:25:51 +01:00
|
|
|
odeprecated "Utils.gzip", "Utils::Gzip.compress"
|
2023-01-06 22:58:53 -05:00
|
|
|
Utils::Gzip.compress(*paths)
|
2019-08-15 09:12:21 +02:00
|
|
|
end
|
|
|
|
|
2020-12-17 15:45:50 +01:00
|
|
|
def ignore_interrupts(_opt = nil)
|
|
|
|
# rubocop:disable Style/GlobalVars
|
|
|
|
$ignore_interrupts_nesting_level = 0 unless defined?($ignore_interrupts_nesting_level)
|
|
|
|
$ignore_interrupts_nesting_level += 1
|
|
|
|
|
|
|
|
$ignore_interrupts_interrupted = false unless defined?($ignore_interrupts_interrupted)
|
|
|
|
old_sigint_handler = trap(:INT) do
|
|
|
|
$ignore_interrupts_interrupted = true
|
|
|
|
$stderr.print "\n"
|
|
|
|
$stderr.puts "One sec, cleaning up..."
|
2019-08-15 09:12:21 +02:00
|
|
|
end
|
2020-12-17 15:45:50 +01:00
|
|
|
|
|
|
|
begin
|
|
|
|
yield
|
|
|
|
ensure
|
|
|
|
trap(:INT, old_sigint_handler)
|
|
|
|
|
|
|
|
$ignore_interrupts_nesting_level -= 1
|
|
|
|
if $ignore_interrupts_nesting_level == 0 && $ignore_interrupts_interrupted
|
|
|
|
$ignore_interrupts_interrupted = false
|
|
|
|
raise Interrupt
|
|
|
|
end
|
|
|
|
end
|
|
|
|
# rubocop:enable Style/GlobalVars
|
2017-07-13 17:14:21 -07:00
|
|
|
end
|
2017-07-14 17:03:33 +01:00
|
|
|
|
2020-10-20 12:03:48 +02:00
|
|
|
sig { returns(String) }
|
2019-08-15 09:12:21 +02:00
|
|
|
def capture_stderr
|
|
|
|
old = $stderr
|
|
|
|
$stderr = StringIO.new
|
|
|
|
yield
|
|
|
|
$stderr.string
|
|
|
|
ensure
|
|
|
|
$stderr = old
|
|
|
|
end
|
2017-07-08 19:33:44 -07:00
|
|
|
|
2021-11-23 00:24:15 +08:00
|
|
|
def nostdout(&block)
|
2020-08-02 14:32:31 +02:00
|
|
|
if verbose?
|
2019-08-15 09:12:21 +02:00
|
|
|
yield
|
2017-07-08 19:33:44 -07:00
|
|
|
else
|
2021-11-23 00:24:15 +08:00
|
|
|
redirect_stdout(File::NULL, &block)
|
2017-07-08 19:33:44 -07:00
|
|
|
end
|
|
|
|
end
|
2018-03-15 16:25:14 +00:00
|
|
|
|
2021-11-23 00:24:15 +08:00
|
|
|
def redirect_stdout(file)
|
|
|
|
out = $stdout.dup
|
|
|
|
$stdout.reopen(file)
|
|
|
|
yield
|
|
|
|
ensure
|
|
|
|
$stdout.reopen(out)
|
|
|
|
out.close
|
|
|
|
end
|
|
|
|
|
2021-11-23 22:48:39 +08:00
|
|
|
# Ensure the given formula is installed
|
|
|
|
# This is useful for installing a utility formula (e.g. `shellcheck` for `brew style`)
|
2021-11-24 00:46:02 +08:00
|
|
|
def ensure_formula_installed!(formula_or_name, reason: "", latest: false,
|
2021-11-23 23:09:42 +08:00
|
|
|
output_to_stderr: true, quiet: false)
|
2021-11-23 22:48:39 +08:00
|
|
|
if output_to_stderr || quiet
|
|
|
|
file = if quiet
|
|
|
|
File::NULL
|
|
|
|
else
|
|
|
|
$stderr
|
|
|
|
end
|
|
|
|
# Call this method itself with redirected stdout
|
|
|
|
redirect_stdout(file) do
|
2021-11-23 23:25:32 +08:00
|
|
|
return ensure_formula_installed!(formula_or_name, latest: latest,
|
|
|
|
reason: reason, output_to_stderr: false)
|
2021-11-23 22:48:39 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
require "formula"
|
|
|
|
|
|
|
|
formula = if formula_or_name.is_a?(Formula)
|
|
|
|
formula_or_name
|
|
|
|
else
|
|
|
|
Formula[formula_or_name]
|
|
|
|
end
|
|
|
|
|
2021-11-23 23:59:09 +08:00
|
|
|
reason = " for #{reason}" if reason.present?
|
2021-11-23 22:48:39 +08:00
|
|
|
|
|
|
|
unless formula.any_version_installed?
|
|
|
|
ohai "Installing `#{formula.name}`#{reason}..."
|
|
|
|
safe_system HOMEBREW_BREW_FILE, "install", "--formula", formula.full_name
|
|
|
|
end
|
|
|
|
|
|
|
|
if latest && !formula.latest_version_installed?
|
|
|
|
ohai "Upgrading `#{formula.name}`#{reason}..."
|
|
|
|
safe_system HOMEBREW_BREW_FILE, "upgrade", "--formula", formula.full_name
|
|
|
|
end
|
|
|
|
|
|
|
|
formula
|
|
|
|
end
|
|
|
|
|
2021-11-23 23:29:05 +08:00
|
|
|
# Ensure the given executable is exist otherwise install the brewed version
|
|
|
|
def ensure_executable!(name, formula_name = nil, reason: "")
|
|
|
|
formula_name ||= name
|
|
|
|
|
|
|
|
executable = [
|
|
|
|
which(name),
|
2022-06-15 05:40:43 +01:00
|
|
|
which(name, ORIGINAL_PATHS),
|
2021-11-23 23:29:05 +08:00
|
|
|
HOMEBREW_PREFIX/"bin/#{name}",
|
|
|
|
].compact.first
|
|
|
|
return executable if executable.exist?
|
|
|
|
|
|
|
|
ensure_formula_installed!(formula_name, reason: reason).opt_bin/name
|
|
|
|
end
|
|
|
|
|
2019-08-15 09:12:21 +02:00
|
|
|
def paths
|
2022-06-15 05:40:43 +01:00
|
|
|
@paths ||= ORIGINAL_PATHS.uniq.map(&:to_s)
|
2019-08-15 09:12:21 +02:00
|
|
|
end
|
2019-06-28 14:50:38 +08:00
|
|
|
|
2021-04-01 16:23:39 +05:30
|
|
|
def parse_author!(author)
|
|
|
|
/^(?<name>[^<]+?)[ \t]*<(?<email>[^>]+?)>$/ =~ author
|
2021-04-01 22:21:30 +05:30
|
|
|
raise UsageError, "Unable to parse name and email." if name.blank? && email.blank?
|
2021-04-01 16:23:39 +05:30
|
|
|
|
|
|
|
{ name: name, email: email }
|
|
|
|
end
|
|
|
|
|
2019-08-15 09:12:21 +02:00
|
|
|
def disk_usage_readable(size_in_bytes)
|
|
|
|
if size_in_bytes >= 1_073_741_824
|
|
|
|
size = size_in_bytes.to_f / 1_073_741_824
|
|
|
|
unit = "GB"
|
|
|
|
elsif size_in_bytes >= 1_048_576
|
|
|
|
size = size_in_bytes.to_f / 1_048_576
|
|
|
|
unit = "MB"
|
|
|
|
elsif size_in_bytes >= 1_024
|
|
|
|
size = size_in_bytes.to_f / 1_024
|
|
|
|
unit = "KB"
|
|
|
|
else
|
|
|
|
size = size_in_bytes
|
|
|
|
unit = "B"
|
|
|
|
end
|
|
|
|
|
|
|
|
# avoid trailing zero after decimal point
|
|
|
|
if ((size * 10).to_i % 10).zero?
|
|
|
|
"#{size.to_i}#{unit}"
|
|
|
|
else
|
2019-10-03 08:50:45 +02:00
|
|
|
"#{format("%<size>.1f", size: size)}#{unit}"
|
2019-08-15 09:12:21 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def number_readable(number)
|
|
|
|
numstr = number.to_i.to_s
|
|
|
|
(numstr.size - 3).step(1, -3) { |i| numstr.insert(i, ",") }
|
|
|
|
numstr
|
|
|
|
end
|
|
|
|
|
|
|
|
# Truncates a text string to fit within a byte size constraint,
|
|
|
|
# preserving character encoding validity. The returned string will
|
|
|
|
# be not much longer than the specified max_bytes, though the exact
|
|
|
|
# shortfall or overrun may vary.
|
|
|
|
def truncate_text_to_approximate_size(s, max_bytes, options = {})
|
|
|
|
front_weight = options.fetch(:front_weight, 0.5)
|
|
|
|
raise "opts[:front_weight] must be between 0.0 and 1.0" if front_weight < 0.0 || front_weight > 1.0
|
|
|
|
return s if s.bytesize <= max_bytes
|
|
|
|
|
|
|
|
glue = "\n[...snip...]\n"
|
|
|
|
max_bytes_in = [max_bytes - glue.bytesize, 1].max
|
|
|
|
bytes = s.dup.force_encoding("BINARY")
|
|
|
|
glue_bytes = glue.encode("BINARY")
|
|
|
|
n_front_bytes = (max_bytes_in * front_weight).floor
|
|
|
|
n_back_bytes = max_bytes_in - n_front_bytes
|
|
|
|
if n_front_bytes.zero?
|
|
|
|
front = bytes[1..0]
|
2020-05-21 10:15:34 +01:00
|
|
|
back = bytes[-max_bytes_in..]
|
2019-08-15 09:12:21 +02:00
|
|
|
elsif n_back_bytes.zero?
|
|
|
|
front = bytes[0..(max_bytes_in - 1)]
|
|
|
|
back = bytes[1..0]
|
|
|
|
else
|
|
|
|
front = bytes[0..(n_front_bytes - 1)]
|
2020-05-21 10:15:34 +01:00
|
|
|
back = bytes[-n_back_bytes..]
|
2019-08-15 09:12:21 +02:00
|
|
|
end
|
|
|
|
out = front + glue_bytes + back
|
|
|
|
out.force_encoding("UTF-8")
|
|
|
|
out.encode!("UTF-16", invalid: :replace)
|
|
|
|
out.encode!("UTF-8")
|
|
|
|
out
|
|
|
|
end
|
|
|
|
|
|
|
|
# Calls the given block with the passed environment variables
|
|
|
|
# added to ENV, then restores ENV afterwards.
|
|
|
|
# <pre>with_env(PATH: "/bin") do
|
|
|
|
# system "echo $PATH"
|
|
|
|
# end</pre>
|
|
|
|
#
|
2020-11-05 15:19:56 -05:00
|
|
|
# @note This method is *not* thread-safe - other threads
|
|
|
|
# which happen to be scheduled during the block will also
|
|
|
|
# see these environment variables.
|
2020-11-26 16:11:33 -08:00
|
|
|
# @api public
|
2019-08-15 09:12:21 +02:00
|
|
|
def with_env(hash)
|
|
|
|
old_values = {}
|
|
|
|
begin
|
|
|
|
hash.each do |key, value|
|
|
|
|
key = key.to_s
|
|
|
|
old_values[key] = ENV.delete(key)
|
|
|
|
ENV[key] = value
|
|
|
|
end
|
|
|
|
|
|
|
|
yield if block_given?
|
|
|
|
ensure
|
|
|
|
ENV.update(old_values)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-05-30 05:07:42 +01:00
|
|
|
sig { returns(String) }
|
|
|
|
def preferred_shell
|
|
|
|
ENV.fetch("SHELL", "/bin/sh")
|
|
|
|
end
|
|
|
|
|
2020-10-20 12:03:48 +02:00
|
|
|
sig { returns(String) }
|
2019-08-15 09:12:21 +02:00
|
|
|
def shell_profile
|
|
|
|
Utils::Shell.profile
|
|
|
|
end
|
|
|
|
|
|
|
|
def tap_and_name_comparison
|
|
|
|
proc do |a, b|
|
2020-12-01 17:04:59 +00:00
|
|
|
if a.include?("/") && b.exclude?("/")
|
2019-08-15 09:12:21 +02:00
|
|
|
1
|
2020-12-01 17:04:59 +00:00
|
|
|
elsif a.exclude?("/") && b.include?("/")
|
2019-08-15 09:12:21 +02:00
|
|
|
-1
|
|
|
|
else
|
|
|
|
a <=> b
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def redact_secrets(input, secrets)
|
|
|
|
secrets.compact
|
|
|
|
.reduce(input) { |str, secret| str.gsub secret, "******" }
|
|
|
|
.freeze
|
|
|
|
end
|
2019-06-28 14:50:38 +08:00
|
|
|
end
|