Skip to content

Commit 0d291b5

Browse files
viuginick1valich
authored andcommitted
set alias for Thread during eval execution
(cherry picked from commit 56e1a3f)
1 parent 2849d3f commit 0d291b5

File tree

5 files changed

+34
-1
lines changed

5 files changed

+34
-1
lines changed

bin/rdebug-ide

+8
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,14 @@ else
131131
Debugger::PROG_SCRIPT = $0
132132
end
133133

134+
if RUBY_VERSION < "1.9"
135+
lib_path = File.expand_path(File.dirname(__FILE__) + "/../lib/")
136+
$: << lib_path unless $:.include? lib_path
137+
require 'ruby-debug-ide/thread_alias.rb'
138+
else
139+
require_relative '../lib/ruby-debug-ide/thread_alias'
140+
end
141+
134142
if options.dispatcher_port != -1
135143
ENV['IDE_PROCESS_DISPATCHER'] = options.dispatcher_port.to_s
136144
if RUBY_VERSION < "1.9"

lib/ruby-debug-ide/command.rb

+10-1
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,18 @@ def debug_eval(str, b = get_binding)
128128
to_inspect = Command.unescape_incoming(str)
129129
max_time = Debugger.evaluation_timeout
130130
@printer.print_debug("Evaluating %s with timeout after %i sec", str, max_time)
131+
132+
Debugger::TimeoutHandler.do_thread_alias
133+
134+
eval_result = nil
135+
131136
timeout(max_time) do
132-
eval(to_inspect, b)
137+
eval_result = eval(to_inspect, b)
133138
end
139+
140+
Debugger::TimeoutHandler.undo_thread_alias
141+
142+
return eval_result
134143
rescue StandardError, ScriptError => e
135144
@printer.print_exception(e, @state.binding)
136145
throw :debug_error
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
OldThread = Thread
2+
Thread = Debugger::DebugThread
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Thread = OldThread

lib/ruby-debug-ide/thread_alias.rb

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
module Debugger
2+
module TimeoutHandler
3+
class << self
4+
def do_thread_alias
5+
load File.expand_path(File.dirname(__FILE__) + '/thread-alias/alias_thread.rb')
6+
end
7+
8+
def undo_thread_alias
9+
load File.expand_path(File.dirname(__FILE__) + '/thread-alias/unalias_thread.rb')
10+
end
11+
end
12+
end
13+
end

0 commit comments

Comments
 (0)