brew/Library/Homebrew/debrew.rb

144 lines
3.1 KiB
Ruby
Raw Normal View History

require "mutex_m"
2015-01-01 01:21:59 -05:00
require "debrew/irb"
module Debrew
extend Mutex_m
2019-04-19 21:46:20 +09:00
Ignorable = Module.new.freeze
module Raise
def raise(*)
super
rescue Exception => e # rubocop:disable Lint/RescueException
e.extend(Ignorable)
super(e) unless Debrew.debug(e) == :ignore
end
2016-09-23 18:13:48 +02:00
alias fail raise
2013-02-07 18:58:41 -06:00
end
module Formula
def install
Debrew.debrew { super }
end
2014-09-18 14:16:07 -05:00
def patch
Debrew.debrew { super }
end
2014-09-18 14:16:07 -05:00
def test
Debrew.debrew { super }
end
end
2013-02-07 18:58:41 -06:00
class Menu
Entry = Struct.new(:name, :action)
attr_accessor :prompt, :entries
def initialize
@entries = []
end
def choice(name, &action)
entries << Entry.new(name.to_s, action)
end
def self.choose
menu = new
yield menu
choice = nil
while choice.nil?
2017-06-01 16:06:51 +02:00
menu.entries.each_with_index { |e, i| puts "#{i + 1}. #{e.name}" }
print menu.prompt unless menu.prompt.nil?
input = $stdin.gets || exit
input.chomp!
i = input.to_i
2017-09-24 20:12:58 +01:00
if i.positive?
2017-06-01 16:06:51 +02:00
choice = menu.entries[i - 1]
else
possible = menu.entries.select { |e| e.name.start_with?(input) }
case possible.size
when 0 then puts "No such option"
when 1 then choice = possible.first
else puts "Multiple options match: #{possible.map(&:name).join(" ")}"
end
end
end
choice[:action].call
end
end
@active = false
@debugged_exceptions = Set.new
class << self
extend Predicable
alias original_raise raise
attr_predicate :active?
attr_reader :debugged_exceptions
end
def self.debrew
@active = true
Object.send(:include, Raise)
begin
yield
rescue SystemExit
original_raise
rescue Exception => e # rubocop:disable Lint/RescueException
debug(e)
ensure
@active = false
end
end
def self.debug(e)
original_raise(e) unless active? &&
debugged_exceptions.add?(e) &&
try_lock
begin
puts e.backtrace.first.to_s
2016-08-26 16:04:47 +02:00
puts Formatter.error(e, label: e.class.name)
loop do
Menu.choose do |menu|
menu.prompt = "Choose an action: "
menu.choice(:raise) { original_raise(e) }
2016-09-20 22:03:08 +02:00
menu.choice(:ignore) { return :ignore } if e.is_a?(Ignorable)
menu.choice(:backtrace) { puts e.backtrace }
2016-09-20 22:03:08 +02:00
if e.is_a?(Ignorable)
menu.choice(:irb) do
puts "When you exit this IRB session, execution will continue."
2018-07-01 01:43:04 +02:00
set_trace_func proc { |event, _, _, id, binding, klass|
2016-09-20 22:03:08 +02:00
if klass == Raise && id == :raise && event == "return"
set_trace_func(nil)
synchronize { IRB.start_within(binding) }
end
}
return :ignore
end
end
menu.choice(:shell) do
puts "When you exit this shell, you will return to the menu."
interactive_shell
end
end
end
ensure
unlock
end
end
end