Module: Debrew Private
- Defined in:
- debrew.rb
Overview
This module is part of a private API. This module may only be used in the Homebrew/brew repository. Third parties should avoid using this module if possible, as it may be removed or changed without warning.
Helper module for debugging formulae.
Defined Under Namespace
Modules: Formula Classes: Menu, self
Class Attribute Summary collapse
- .debugged_exceptions ⇒ Set<Exception> readonly private
Class Method Summary collapse
- .active? ⇒ Boolean private
- .debrew(&block) ⇒ T.type_parameter(:U) private
- .debug(exception) ⇒ Symbol private
Class Attribute Details
.debugged_exceptions ⇒ Set<Exception> (readonly)
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
92 93 94 |
# File 'debrew.rb', line 92 def debugged_exceptions @debugged_exceptions end |
Class Method Details
.active? ⇒ Boolean
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
95 |
# File 'debrew.rb', line 95 def active? = !@mutex.nil? |
.debrew(&block) ⇒ T.type_parameter(:U)
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
103 104 105 106 107 108 |
# File 'debrew.rb', line 103 def self.debrew(&block) @mutex = Mutex.new Ignorable.hook_raise(on_ignorable: ->(e) { e.is_a?(SystemExit) ? :raise : debug(e) }, &block) ensure @mutex = nil end |
.debug(exception) ⇒ Symbol
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 |
# File 'debrew.rb', line 111 def self.debug(exception) raise(exception) if !active? || !debugged_exceptions.add?(exception) || !@mutex&.try_lock begin puts exception.backtrace&.first puts Formatter.error(exception, label: exception.class.name) loop do Menu.choose do || .prompt = "Choose an action: " .choice(:raise) { raise(exception) } .choice(:ignore) { return :ignore } if exception.is_a?(Ignorable::ExceptionMixin) .choice(:backtrace) { puts exception.backtrace } if exception.is_a?(Ignorable::ExceptionMixin) .choice(:irb) do puts "When you exit this IRB session, execution will continue." set_trace_func proc { |event, _, _, id, binding, klass| if klass == Object && id == :raise && event == "return" set_trace_func(nil) @mutex.synchronize do require "debrew/irb" IRB.start_within(binding) end end } return :ignore end end .choice(:shell) do puts "When you exit this shell, you will return to the menu." Utils::Shell.interactive end end end ensure @mutex.unlock end end |