Class: DEBUGGER__::LineBreakpoint
Relationships & Source Files | |
Namespace Children | |
Classes:
| |
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
self,
Breakpoint
|
|
Instance Chain:
|
|
Inherits: |
DEBUGGER__::Breakpoint
|
Defined in: | lib/debug/breakpoint.rb |
Class Method Summary
- .copy(bp, root_iseq)
- .new(path, line, cond: nil, oneshot: false, hook_call: true, command: nil, skip_activate: false, skip_src: false) ⇒ LineBreakpoint constructor
Breakpoint
- Inherited
Instance Attribute Summary
- #command readonly
- #cond readonly
- #duplicable? ⇒ Boolean readonly
- #hook_call readonly
- #iseq readonly
- #line readonly
- #oneshot readonly
- #path readonly
- #pending_until_load? ⇒ Boolean readonly
Breakpoint
- Inherited
Instance Method Summary
- #activate(iseq, event, line)
- #activate_exact(iseq, events, line)
- #enable
- #inspect
- #iterate_iseq(root_iseq)
- #setup
- #to_s
- #try_activate(root_iseq = nil)
Breakpoint
- Inherited
#delete, #description, #disable, #enable, #generate_label, #safe_eval, #setup, #skip_path?, #suspend, #to_s |
Color
- Included
#color_pp | See additional method definition at line 50. |
#colored_inspect, | |
#colorize | See additional method definition at line 36. |
#colorize_blue, | |
#colorize_code | See additional method definition at line 79. |
#colorize_cyan, #colorize_dim, #colorize_magenta, | |
#irb_colorize | See additional method definition at line 27. |
#with_inspection_error_guard |
SkipPathHelper
- Included
Constructor Details
.new(path, line, cond: nil, oneshot: false, hook_call: true, command: nil, skip_activate: false, skip_src: false) ⇒ LineBreakpoint
# File 'lib/debug/breakpoint.rb', line 148
def initialize path, line, cond: nil, oneshot: false, hook_call: true, command: nil, skip_activate: false, skip_src: false @line = line @oneshot = oneshot @hook_call = hook_call @skip_src = skip_src @pending = false @iseq = nil @type = nil @key = [path, @line].freeze super(cond, command, path) try_activate unless skip_activate @pending = !@iseq end
Class Method Details
.copy(bp, root_iseq)
[ GitHub ]Instance Attribute Details
#command (readonly)
[ GitHub ]#cond (readonly)
[ GitHub ]
#duplicable? ⇒ Boolean
(readonly)
[ GitHub ]
# File 'lib/debug/breakpoint.rb', line 230
def duplicable? @oneshot end
#hook_call (readonly)
[ GitHub ]#iseq (readonly)
[ GitHub ]#line (readonly)
[ GitHub ]#oneshot (readonly)
[ GitHub ]#path (readonly)
[ GitHub ]
#pending_until_load? ⇒ Boolean
(readonly)
[ GitHub ]
# File 'lib/debug/breakpoint.rb', line 166
def pending_until_load? @pending end
Instance Method Details
#activate(iseq, event, line)
[ GitHub ]#activate_exact(iseq, events, line)
[ GitHub ]# File 'lib/debug/breakpoint.rb', line 212
def activate_exact iseq, events, line case when events.include?(:RUBY_EVENT_CALL) # "def foo" line set bp on the beginning of method foo activate(iseq, :call, line) when events.include?(:RUBY_EVENT_LINE) activate(iseq, :line, line) when events.include?(:RUBY_EVENT_RETURN) activate(iseq, :return, line) when events.include?(:RUBY_EVENT_B_RETURN) activate(iseq, :b_return, line) when events.include?(:RUBY_EVENT_END) activate(iseq, :end, line) else # not activated end end
#enable
[ GitHub ]# File 'lib/debug/breakpoint.rb', line 182
def enable return unless @iseq if @type == :line @tp.enable(target: @iseq, target_line: @line) else @tp.enable(target: @iseq) end rescue ArgumentError puts @iseq.disasm # for debug raise end
#inspect
[ GitHub ]# File 'lib/debug/breakpoint.rb', line 299
def inspect "<#{self.class.name} #{self.to_s}>" end
#iterate_iseq(root_iseq)
[ GitHub ]# File 'lib/debug/breakpoint.rb', line 236
def iterate_iseq root_iseq if root_iseq is = [root_iseq] while iseq = is.pop yield iseq iseq.each_child do |child_iseq| is << child_iseq end end else ObjectSpace.each_iseq do |iseq| if DEBUGGER__.compare_path((iseq.absolute_path || iseq.path), self.path) && iseq.first_lineno <= self.line && iseq.type != :ensure # ensure iseq is copied (duplicated) yield iseq end end end end
#setup
[ GitHub ]# File 'lib/debug/breakpoint.rb', line 170
def setup return unless @type @tp = TracePoint.new(@type) do |tp| if @cond next unless safe_eval tp.binding, @cond end delete if @oneshot suspend end end
#to_s
[ GitHub ]#try_activate(root_iseq = nil)
[ GitHub ]# File 'lib/debug/breakpoint.rb', line 256
def try_activate root_iseq = nil nearest = nil # NearestISeq iterate_iseq root_iseq do |iseq| iseq.traceable_lines_norec(line_events = {}) lines = line_events.keys.sort if !lines.empty? && lines.last >= line nline = lines.bsearch{|l| line <= l} events = line_events[nline] next if events == [:RUBY_EVENT_B_CALL] if @hook_call && events.include?(:RUBY_EVENT_CALL) && self.line == iseq.first_lineno nline = iseq.first_lineno end if !nearest || ((line - nline).abs < (line - nearest.line).abs) nearest = NearestISeq.new(iseq, nline, events) elsif @hook_call && nearest.line == iseq.first_line && events.include?(:RUBY_EVENT_CALL) nearest = NearestISeq.new(iseq, nline, events) end end end if nearest activate_exact nearest.iseq, nearest.events, nearest.line end end