class DEBUGGER__::ThreadClient::Recorder
Attributes
Public Class Methods
Source
# File bundled-src/debug-1.11.1/lib/debug/thread_client.rb, line 1293 def initialize @log = [] @index = 0 @backup_frames = nil thread = Thread.current @tp_recorder ||= TracePoint.new(:line){|tp| next unless Thread.current == thread # can't be replaced by skip_location next if skip_internal_path?(tp.path) loc = caller_locations(1, 1).first next if skip_location?(loc) frames = DEBUGGER__.capture_frames(__dir__) frames.each{|frame| if b = frame.binding frame.binding = nil frame._local_variables = b.local_variables.map{|name| [name, b.local_variable_get(name)] }.to_h frame._callee = b.eval('::Kernel.__callee__') end } append(frames) } end
Public Instance Methods
Source
# File bundled-src/debug-1.11.1/lib/debug/thread_client.rb, line 1320 def append frames @log << frames end
Source
# File bundled-src/debug-1.11.1/lib/debug/thread_client.rb, line 1365 def can_step_back? log.size > @index end
Source
# File bundled-src/debug-1.11.1/lib/debug/thread_client.rb, line 1373 def current_frame if @index == 0 f = @backup_frames @backup_frames = nil f else frames = @log[log_index] frames end end
Source
# File bundled-src/debug-1.11.1/lib/debug/thread_client.rb, line 1385 def current_position puts "INDEX: #{@index}" li = log_index @log.each_with_index{|frame, i| loc = frame.first&.location prefix = i == li ? "=> " : ' ' puts "#{prefix} #{loc}" } end
for debugging
Source
# File bundled-src/debug-1.11.1/lib/debug/thread_client.rb, line 1331 def disable if @tp_recorder.enabled? @log.clear @tp_recorder.disable end end
Source
# File bundled-src/debug-1.11.1/lib/debug/thread_client.rb, line 1324 def enable unless @tp_recorder.enabled? @log.clear @tp_recorder.enable end end
Source
# File bundled-src/debug-1.11.1/lib/debug/thread_client.rb, line 1338 def enabled? @tp_recorder.enabled? end
Source
# File bundled-src/debug-1.11.1/lib/debug/thread_client.rb, line 1369 def log_index @log.size - @index end
Source
# File bundled-src/debug-1.11.1/lib/debug/thread_client.rb, line 1361 def replaying? @index > 0 end
Source
# File bundled-src/debug-1.11.1/lib/debug/thread_client.rb, line 1342 def step_back iter @index += iter if @index > @log.size @index = @log.size end end
Source
# File bundled-src/debug-1.11.1/lib/debug/thread_client.rb, line 1349 def step_forward iter @index -= iter if @index < 0 @index = 0 end end
Source
# File bundled-src/debug-1.11.1/lib/debug/thread_client.rb, line 1356 def step_reset @index = 0 @backup_frames = nil end