2001-04-30 13:38:21 -04:00
|
|
|
#
|
|
|
|
# irb/workspace-binding.rb -
|
2005-04-13 11:27:09 -04:00
|
|
|
# $Release Version: 0.9.5$
|
2001-04-30 13:38:21 -04:00
|
|
|
# $Revision$
|
2005-04-13 11:27:09 -04:00
|
|
|
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
|
2001-04-30 13:38:21 -04:00
|
|
|
#
|
|
|
|
# --
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
module IRB
|
|
|
|
class WorkSpace
|
2002-07-09 07:17:17 -04:00
|
|
|
# create new workspace. set self to main if specified, otherwise
|
|
|
|
# inherit main from TOPLEVEL_BINDING.
|
2001-04-30 13:38:21 -04:00
|
|
|
def initialize(*main)
|
2002-07-09 07:17:17 -04:00
|
|
|
if main[0].kind_of?(Binding)
|
|
|
|
@binding = main.shift
|
|
|
|
elsif IRB.conf[:SINGLE_IRB]
|
2001-04-30 13:38:21 -04:00
|
|
|
@binding = TOPLEVEL_BINDING
|
|
|
|
else
|
|
|
|
case IRB.conf[:CONTEXT_MODE]
|
|
|
|
when 0 # binding in proc on TOPLEVEL_BINDING
|
|
|
|
@binding = eval("proc{binding}.call",
|
|
|
|
TOPLEVEL_BINDING,
|
|
|
|
__FILE__,
|
|
|
|
__LINE__)
|
|
|
|
when 1 # binding in loaded file
|
|
|
|
require "tempfile"
|
|
|
|
f = Tempfile.open("irb-binding")
|
|
|
|
f.print <<EOF
|
|
|
|
$binding = binding
|
|
|
|
EOF
|
|
|
|
f.close
|
|
|
|
load f.path
|
|
|
|
@binding = $binding
|
|
|
|
|
|
|
|
when 2 # binding in loaded file(thread use)
|
|
|
|
unless defined? BINDING_QUEUE
|
|
|
|
require "thread"
|
|
|
|
|
|
|
|
IRB.const_set("BINDING_QUEUE", SizedQueue.new(1))
|
|
|
|
Thread.abort_on_exception = true
|
|
|
|
Thread.start do
|
|
|
|
eval "require \"irb/ws-for-case-2\"", TOPLEVEL_BINDING, __FILE__, __LINE__
|
|
|
|
end
|
|
|
|
Thread.pass
|
|
|
|
end
|
|
|
|
@binding = BINDING_QUEUE.pop
|
|
|
|
|
|
|
|
when 3 # binging in function on TOPLEVEL_BINDING(default)
|
|
|
|
@binding = eval("def irb_binding; binding; end; irb_binding",
|
|
|
|
TOPLEVEL_BINDING,
|
|
|
|
__FILE__,
|
|
|
|
__LINE__ - 3)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if main.empty?
|
2003-10-16 13:47:19 -04:00
|
|
|
@main = eval("self", @binding)
|
2001-04-30 13:38:21 -04:00
|
|
|
else
|
|
|
|
@main = main[0]
|
|
|
|
IRB.conf[:__MAIN__] = @main
|
|
|
|
case @main
|
|
|
|
when Module
|
|
|
|
@binding = eval("IRB.conf[:__MAIN__].module_eval('binding', __FILE__, __LINE__)", @binding, __FILE__, __LINE__)
|
|
|
|
else
|
|
|
|
begin
|
|
|
|
@binding = eval("IRB.conf[:__MAIN__].instance_eval('binding', __FILE__, __LINE__)", @binding, __FILE__, __LINE__)
|
|
|
|
rescue TypeError
|
2003-02-07 14:00:21 -05:00
|
|
|
IRB.fail CantChangeBinding, @main.inspect
|
2001-04-30 13:38:21 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
eval("_=nil", @binding)
|
|
|
|
end
|
|
|
|
|
|
|
|
attr_reader :binding
|
|
|
|
attr_reader :main
|
|
|
|
|
2002-07-09 07:17:17 -04:00
|
|
|
def evaluate(context, statements, file = __FILE__, line = __LINE__)
|
|
|
|
eval(statements, @binding, file, line)
|
2001-04-30 13:38:21 -04:00
|
|
|
end
|
2002-07-09 07:17:17 -04:00
|
|
|
|
* dln.c, io.c, pack.c, lib/benchmark.rb, lib/cgi.rb, lib/csv.rb,
lib/date.rb, lib/ftools.rb, lib/getoptlong.rb, lib/logger.rb,
lib/matrix.rb, lib/monitor.rb, lib/set.rb, lib/thwait.rb,
lib/timeout.rb, lib/yaml.rb, lib/drb/drb.rb, lib/irb/workspace.rb,
lib/net/ftp.rb, lib/net/http.rb, lib/net/imap.rb, lib/net/pop.rb,
lib/net/telnet.rb, lib/racc/parser.rb, lib/rinda/rinda.rb,
lib/rinda/tuplespace.rb, lib/shell/command-processor.rb,
lib/soap/rpc/soaplet.rb, lib/test/unit/testcase.rb,
lib/test/unit/testsuite.rb: typo fix.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6178 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-04-18 19:19:47 -04:00
|
|
|
# error message manipulator
|
2001-04-30 13:38:21 -04:00
|
|
|
def filter_backtrace(bt)
|
|
|
|
case IRB.conf[:CONTEXT_MODE]
|
|
|
|
when 0
|
|
|
|
return nil if bt =~ /\(irb_local_binding\)/
|
|
|
|
when 1
|
|
|
|
if(bt =~ %r!/tmp/irb-binding! or
|
|
|
|
bt =~ %r!irb/.*\.rb! or
|
|
|
|
bt =~ /irb\.rb/)
|
|
|
|
return nil
|
|
|
|
end
|
|
|
|
when 2
|
|
|
|
return nil if bt =~ /irb\/.*\.rb/
|
|
|
|
when 3
|
|
|
|
return nil if bt =~ /irb\/.*\.rb/
|
* ext/json/lib/json/pure/generator.rb,
ext/json/lib/json/pure/parser.rb, ext/openssl/lib/openssl/x509.rb,
ext/win32ole/sample/olegen.rb, lib/date/format.rb, lib/irb/context.rb,
lib/irb/workspace.rb, lib/net/http.rb, lib/net/imap.rb,
lib/rdoc/generator.rb, lib/rdoc/markup/to_html.rb,
lib/rdoc/markup/to_latex.rb, lib/rdoc/parsers/parse_c.rb,
lib/rdoc/ri/formatter.rb, lib/rexml/parsers/baseparser.rb,
lib/rexml/quickpath.rb, lib/rexml/text.rb, lib/rss/parser.rb,
lib/uri/common.rb, lib/uri/generic.rb, lib/webrick/httpresponse.rb,
lib/webrick/httpservlet/filehandler.rb, lib/yaml/baseemitter.rb,
lib/yaml/encoding.rb: performance tuning arround String#gsub.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15442 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-02-12 01:18:06 -05:00
|
|
|
bt.sub!(/:\s*in `irb_binding'/, '')
|
2001-04-30 13:38:21 -04:00
|
|
|
end
|
|
|
|
bt
|
|
|
|
end
|
|
|
|
|
|
|
|
def IRB.delete_caller
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|