mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00

* [ruby/irb] Stub a screen size for tests6663057083
* [ruby/irb] Support GitHub Actions8e9e6c4037
* [ruby/irb] Stub a screen size for test_context http://ci.rvm.jp/logfiles/brlog.trunk-random1.20210119-074232ea87592d4a
* [ruby/irb] Use a real screen size for pp by default9b9300dec2
* [ruby/irb] Rescue Errno::EINVAL on IRB pp20210119
T070008Z.log.html.gz is caused by: /export/home/chkbuild/chkbuild-gcc/tmp/build/20210119T150010Z/ruby/lib/reline/ansi.rb:157:in `winsize': Invalid argument - <STDIN> (Errno::EINVAL) from /export/home/chkbuild/chkbuild-gcc/tmp/build/20210119T150010Z/ruby/lib/reline/ansi.rb:157:in `get_screen_size' from /export/home/chkbuild/chkbuild-gcc/tmp/build/20210119T150010Z/ruby/lib/reline.rb:168:in `get_screen_size' from /export/home/chkbuild/chkbuild-gcc/tmp/build/20210119T150010Z/ruby/lib/forwardable.rb:238:in `get_screen_size' from /export/home/chkbuild/chkbuild-gcc/tmp/build/20210119T150010Z/ruby/lib/irb/color_printer.rb:7:in `pp' from -e:1:in `<main>'1719514598
* [ruby/irb] Split test files for IRB::Color and IRB::ColorPrinterd95e8daab3
* [ruby/irb] Undefine unused constantseea9c16804
* [ruby/irb] Remove pp-specific stub from TestColor because it was for TestColorPrinter7569206fd4
* [ruby/irb] Delete a doodle-level memo comment...fc3e1d9e0c
* [ruby/irb] Indent correctly with keyword "for" and "in"47c83ea724
* [ruby/irb] Indent correctly with method calling with receivere7c68e74a0
* [ruby/irb] add `IRB::FileInputMethod.open` to ensure closing associated File * tweak some methods not to raise exception after `#close` * use it in `IRB::IrbLoader#{source_file,load_file}ec2947acbd
* [ruby/irb] use `RubyLex::TerminateLineInput` appropriately [Bug #17564] * using the appropriciate exception instead of `break` so that the session can be continue after the `irb_source` and `irb_load` commands * suppress extra new line due to one more `#prompt` callbdefaa7cfd
* [ruby/irb] specify the `VERBOSE` to `false` and fix tests to fit502c590925
* In test, need to pass a context to IRB::WorkSpace.new explicitly * Fix absolute path predicate on Windows A path starts with '/' is not an absolute path on Windows, because of drive letter or UNC. * [ruby/irb] follow up the actual line number7aed8fe3b1
* [ruby/irb] Add info.rb to gemspecadbba19adf
* [ruby/irb] Allow "measure" command to take block20f1ca23e9
* [ruby/irb] Enable to reassign a new block with "measure" commandb444573aa2
* [ruby/reline] Cache pasting state in processing a key Because it's too slow. The rendering time in IRB has been reduced as follows: start = Time.now def each_top_level_statement initialize_input catch(:TERM_INPUT) do loop do begin prompt unless l = lex throw :TERM_INPUT if @line == '' else @line_no += l.count("\n") next if l == "\n" @line.concat l if @code_block_open or @ltype or @continue or @indent > 0 next end end if @line != "\n" @line.force_encoding(@io.encoding) yield @line, @exp_line_no end break if @io.eof? @line = '' @exp_line_no = @line_no @indent = 0 rescue TerminateLineInput initialize_input prompt end end end end puts "Duration: #{Time.now - start} seconds" 0.22sec -> 0.14secb8b3dd52c0
* [ruby/reline] Initialize uninitialized variables in tests25af4bb64b
* [ruby/reline] Remove an unused variable123ea51166
* [ruby/reline] Scroll down when ^C is pressed6877a7e3f5
* [ruby/reline] Show all lines higher than the screen when finished On Unix-like OSes, logs prior to the screen are not editable. When the code is higher than the screen, the code is only shown on the screen until input is finished, but when it is finished, all lines are outputted.8cd9132a39
* [ruby/reline] Handle past logs correctly when the code is higher than the screenf197139b4a
* [ruby/reline] Update cursor info by inserting newline even if not in pasting92d314f514
* [ruby/reline] Move cursor just after the last line when finishedba06e4c480
* [ruby/reline] The vi_histedit supports multiline This closes ruby/reline#253.f131f86d71
* [ruby/reline] Autowrap correctly when inserting chars in the middle of a lineebaf37255f
* [ruby/reline] Terminate correctly in the middle of lines higher than the screene1d9240ada
* [ruby/irb] Version 1.3.34c87035b7c
* [ruby/reline] Version 0.2.3b26c7d60c8
Co-authored-by: Takashi Kokubun <takashikkbn@gmail.com> Co-authored-by: Nobuhiro IMAI <nov@yo.rim.or.jp> Co-authored-by: Nobuyoshi Nakada <nobu@ruby-lang.org> Co-authored-by: ima1zumi <mariimaizumi5@gmail.com>
155 lines
3.8 KiB
Ruby
155 lines
3.8 KiB
Ruby
# frozen_string_literal: false
|
|
#
|
|
# loader.rb -
|
|
# $Release Version: 0.9.6$
|
|
# $Revision$
|
|
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
|
|
#
|
|
# --
|
|
#
|
|
#
|
|
#
|
|
|
|
|
|
module IRB # :nodoc:
|
|
# Raised in the event of an exception in a file loaded from an Irb session
|
|
class LoadAbort < Exception;end
|
|
|
|
# Provides a few commands for loading files within an irb session.
|
|
#
|
|
# See ExtendCommandBundle for more information.
|
|
module IrbLoader
|
|
|
|
alias ruby_load load
|
|
alias ruby_require require
|
|
|
|
# Loads the given file similarly to Kernel#load
|
|
def irb_load(fn, priv = nil)
|
|
path = search_file_from_ruby_path(fn)
|
|
raise LoadError, "No such file to load -- #{fn}" unless path
|
|
|
|
load_file(path, priv)
|
|
end
|
|
|
|
if File.respond_to?(:absolute_path?)
|
|
def absolute_path?(path)
|
|
File.absolute_path?(path)
|
|
end
|
|
else
|
|
separator =
|
|
if File::ALT_SEPARATOR
|
|
File::SEPARATOR
|
|
else
|
|
"[#{Regexp.quote(File::SEPARATOR + File::ALT_SEPARATOR)}]"
|
|
end
|
|
ABSOLUTE_PATH_PATTERN = # :nodoc:
|
|
case Dir.pwd
|
|
when /\A\w:/, /\A#{separator}{2}/
|
|
/\A(?:\w:|#{separator})#{separator}/
|
|
else
|
|
/\A#{separator}/
|
|
end
|
|
def absolute_path?(path)
|
|
ABSOLUTE_PATH_PATTERN =~ path
|
|
end
|
|
end
|
|
|
|
def search_file_from_ruby_path(fn) # :nodoc:
|
|
if absolute_path?(fn)
|
|
return fn if File.exist?(fn)
|
|
return nil
|
|
end
|
|
|
|
for path in $:
|
|
if File.exist?(f = File.join(path, fn))
|
|
return f
|
|
end
|
|
end
|
|
return nil
|
|
end
|
|
|
|
# Loads a given file in the current session and displays the source lines
|
|
#
|
|
# See Irb#suspend_input_method for more information.
|
|
def source_file(path)
|
|
irb.suspend_name(path, File.basename(path)) do
|
|
FileInputMethod.open(path) do |io|
|
|
irb.suspend_input_method(io) do
|
|
|back_io|
|
|
irb.signal_status(:IN_LOAD) do
|
|
if back_io.kind_of?(FileInputMethod)
|
|
irb.eval_input
|
|
else
|
|
begin
|
|
irb.eval_input
|
|
rescue LoadAbort
|
|
print "load abort!!\n"
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
# Loads the given file in the current session's context and evaluates it.
|
|
#
|
|
# See Irb#suspend_input_method for more information.
|
|
def load_file(path, priv = nil)
|
|
irb.suspend_name(path, File.basename(path)) do
|
|
|
|
if priv
|
|
ws = WorkSpace.new(Module.new)
|
|
else
|
|
ws = WorkSpace.new
|
|
end
|
|
irb.suspend_workspace(ws) do
|
|
FileInputMethod.open(path) do |io|
|
|
irb.suspend_input_method(io) do
|
|
|back_io|
|
|
irb.signal_status(:IN_LOAD) do
|
|
if back_io.kind_of?(FileInputMethod)
|
|
irb.eval_input
|
|
else
|
|
begin
|
|
irb.eval_input
|
|
rescue LoadAbort
|
|
print "load abort!!\n"
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
def old # :nodoc:
|
|
back_io = @io
|
|
back_path = @irb_path
|
|
back_name = @irb_name
|
|
back_scanner = @irb.scanner
|
|
begin
|
|
@io = FileInputMethod.new(path)
|
|
@irb_name = File.basename(path)
|
|
@irb_path = path
|
|
@irb.signal_status(:IN_LOAD) do
|
|
if back_io.kind_of?(FileInputMethod)
|
|
@irb.eval_input
|
|
else
|
|
begin
|
|
@irb.eval_input
|
|
rescue LoadAbort
|
|
print "load abort!!\n"
|
|
end
|
|
end
|
|
end
|
|
ensure
|
|
@io = back_io
|
|
@irb_name = back_name
|
|
@irb_path = back_path
|
|
@irb.scanner = back_scanner
|
|
end
|
|
end
|
|
end
|
|
end
|