pry--pry/lib/pry/default_commands/shell.rb

240 lines
7.9 KiB
Ruby
Raw Normal View History

class Pry
module DefaultCommands
2011-05-07 05:32:05 +00:00
Shell = Pry::CommandSet.new do
command(/\.(.*)/, "All text following a '.' is forwarded to the shell.", :listing => ".<shell command>", :use_prefix => false) do |cmd|
if cmd =~ /^cd\s+(.+)/i
dest = $1
begin
Dir.chdir File.expand_path(dest)
rescue Errno::ENOENT
raise CommandError, "No such directory: #{dest}"
end
else
Pry.config.system.call(output, cmd, _pry_)
end
end
command "shell-mode", "Toggle shell mode. Bring in pwd prompt and file completion." do
case _pry_.prompt
when Pry::SHELL_PROMPT
_pry_.pop_prompt
_pry_.custom_completions = Pry::DEFAULT_CUSTOM_COMPLETIONS
else
_pry_.push_prompt Pry::SHELL_PROMPT
_pry_.custom_completions = Pry::FILE_COMPLETIONS
Readline.completion_proc = Pry::InputCompleter.build_completion_proc target,
_pry_.instance_eval(&Pry::FILE_COMPLETIONS)
end
end
alias_command "file-mode", "shell-mode"
create_command "save-file", "Export to a file using content from the REPL." do
2012-01-21 14:54:45 +00:00
banner <<-USAGE
2012-01-23 03:40:40 +00:00
Usage: save-file [OPTIONS] [FILE]
2012-01-21 14:54:45 +00:00
Save REPL content to a file.
e.g: save-file -m my_method -m my_method2 ./hello.rb
e.g: save-file -i 1..10 ./hello.rb --append
2012-01-21 14:54:45 +00:00
e.g: save-file -c show-method ./my_command.rb
e.g: save-file -f sample_file --lines 2..10 ./output_file.rb
USAGE
attr_accessor :content
attr_accessor :file_name
def setup
self.content = ""
end
def options(opt)
opt.on :m, :method, "Save a method's source.", true do |meth_name|
meth = get_method_or_raise(meth_name, target, {})
self.content << meth.source
end
opt.on :c, :command, "Save a command's source.", true do |command_name|
command = find_command(command_name)
block = Pry::Method.new(find_command(command_name).block)
2012-01-23 05:06:33 +00:00
self.content << block.source
end
opt.on :f, :file, "Save a file.", true do |file|
self.content << File.read(File.expand_path(file))
end
2012-01-21 14:54:45 +00:00
opt.on :l, :lines, "Only save a subset of lines.", :optional => true, :as => Range, :default => 1..-1
opt.on :i, :in, "Save entries from Pry's input expression history. Takes an index or range.", :optional => true,
:as => Range, :default => -5..-1 do |range|
input_expressions = _pry_.input_array[range] || []
Array(input_expressions).each { |v| self.content << v }
end
opt.on :a, :append, "Append to the given file instead of overwriting it."
end
def process
if args.empty?
raise CommandError, "Must specify a file name."
end
self.file_name = File.expand_path(args.first)
save_file
end
def save_file
if self.content.empty?
raise CommandError, "Found no code to save."
end
File.open(file_name, mode) do |f|
if opts.present?(:lines)
f.puts restrict_to_lines(content, opts[:l])
else
f.puts content
end
end
end
def mode
if opts.present?(:append)
"a"
else
"w"
end
end
end
create_command "cat", "Show code from a file, Pry's input buffer, or the last exception." do
2012-01-08 06:01:15 +00:00
banner <<-USAGE
Usage: cat FILE
cat --ex [STACK_INDEX]
cat --in [INPUT_INDEX_OR_RANGE]
2012-01-08 06:01:15 +00:00
cat is capable of showing part or all of a source file, the context of the
last exception, or an expression from Pry's input history.
2012-01-08 06:01:15 +00:00
cat --ex defaults to showing the lines surrounding the location of the last
exception. Invoking it more than once travels up the exception's backtrace,
and providing a number shows the context of the given index of the backtrace.
USAGE
2012-01-08 06:01:15 +00:00
def options(opt)
opt.on :ex, "Show the context of the last exception.", :optional => true, :as => Integer
opt.on :i, :in, "Show one or more entries from Pry's expression history.", :optional => true, :as => Range, :default => -5..-1
opt.on :s, :start, "Starting line (defaults to the first line).", :optional => true, :as => Integer
opt.on :e, :end, "Ending line (defaults to the last line).", :optional => true, :as => Integer
opt.on :l, :'line-numbers', "Show line numbers."
opt.on :t, :type, "The file type for syntax highlighting (e.g., 'ruby' or 'python').", true, :as => Symbol
opt.on :f, :flood, "Do not use a pager to view text longer than one screen."
end
def process
handler = case
when opts.present?(:ex)
method :process_ex
when opts.present?(:in)
method :process_in
else
2012-01-08 06:01:15 +00:00
method :process_file
end
output = handler.call do |code|
2012-01-08 06:01:15 +00:00
code.code_type = opts[:type] || :ruby
2011-11-06 07:59:49 +00:00
code.between(opts[:start] || 1, opts[:end] || -1).
2012-01-08 06:01:15 +00:00
with_line_numbers(opts.present?(:'line-numbers') || opts.present?(:ex))
end
render_output(output, opts)
end
2012-01-08 06:01:15 +00:00
def process_ex
window_size = Pry.config.default_window_size || 5
2012-01-08 06:01:15 +00:00
ex = _pry_.last_exception
2012-01-08 06:01:15 +00:00
raise CommandError, "No exception found." unless ex
if opts[:ex].nil?
bt_index = ex.bt_index
ex.inc_bt_index
else
bt_index = opts[:ex]
end
2012-01-08 06:01:15 +00:00
ex_file, ex_line = ex.bt_source_location_for(bt_index)
raise CommandError, "The given backtrace level is out of bounds." unless ex_file
if RbxPath.is_core_path?(ex_file)
ex_file = RbxPath.convert_path_to_full(ex_file)
end
2012-01-22 00:34:43 +00:00
set_file_and_dir_locals(ex_file)
2012-01-08 06:01:15 +00:00
start_line = ex_line - window_size
start_line = 1 if start_line < 1
end_line = ex_line + window_size
header = unindent <<-HEADER
#{text.bold 'Exception:'} #{ex.class}: #{ex.message}
--
#{text.bold('From:')} #{ex_file} @ line #{ex_line} @ #{text.bold("level: #{bt_index}")} of backtrace (of #{ex.backtrace.size - 1}).
HEADER
code = yield(Pry::Code.from_file(ex_file).
between(start_line, end_line).
with_marker(ex_line))
"#{header}#{code}"
end
2012-01-08 06:01:15 +00:00
def process_in
2011-11-06 07:59:49 +00:00
normalized_range = absolute_index_range(opts[:i], _pry_.input_array.length)
input_items = _pry_.input_array[normalized_range] || []
zipped_items = normalized_range.zip(input_items).reject { |_, s| s.nil? || s == "" }
unless zipped_items.length > 0
raise CommandError, "No expressions found."
end
2012-01-08 06:01:15 +00:00
if zipped_items.length > 1
2011-11-06 07:59:49 +00:00
contents = ""
zipped_items.each do |i, s|
contents << "#{text.bold(i.to_s)}:\n"
2012-01-08 06:01:15 +00:00
contents << yield(Pry::Code(s).with_indentation(2)).to_s
2011-11-06 07:59:49 +00:00
end
else
2012-01-08 06:01:15 +00:00
contents = yield(Pry::Code(zipped_items.first.last))
2011-11-06 07:59:49 +00:00
end
contents
end
2012-01-08 06:01:15 +00:00
def process_file
file_name = args.shift
2012-01-08 06:01:15 +00:00
unless file_name
raise CommandError, "Must provide a filename, --in, or --ex."
end
file_name, line_num = file_name.split(':')
set_file_and_dir_locals(file_name)
2012-01-08 06:01:15 +00:00
code = yield(Pry::Code.from_file(file_name))
if line_num
code = code.around(line_num.to_i,
Pry.config.default_window_size || 7)
end
code
end
end
end
end
end