2011-02-25 10:32:54 -05:00
|
|
|
direc = File.dirname(__FILE__)
|
|
|
|
|
2011-01-11 20:16:04 -05:00
|
|
|
require 'readline'
|
2011-02-18 12:01:21 -05:00
|
|
|
require 'shellwords'
|
2011-02-25 10:32:54 -05:00
|
|
|
require "#{direc}/prompts"
|
|
|
|
require "#{direc}/hooks"
|
|
|
|
require "#{direc}/print"
|
|
|
|
require "#{direc}/commands"
|
|
|
|
require "#{direc}/core_extensions"
|
|
|
|
require "#{direc}/pry_instance"
|
2011-01-11 20:16:04 -05:00
|
|
|
|
2010-12-29 04:14:12 -05:00
|
|
|
# @author John Mair (banisterfiend)
|
2010-12-25 08:59:37 -05:00
|
|
|
class Pry
|
|
|
|
|
|
|
|
# class accessors
|
|
|
|
class << self
|
2010-12-29 04:14:12 -05:00
|
|
|
|
|
|
|
# Get nesting data.
|
|
|
|
# This method should not need to be accessed directly.
|
|
|
|
# @return [Array] The unparsed nesting information.
|
2010-12-25 08:59:37 -05:00
|
|
|
attr_reader :nesting
|
2010-12-29 04:14:12 -05:00
|
|
|
|
|
|
|
# Get last value evaluated by Pry.
|
|
|
|
# This method should not need to be accessed directly.
|
|
|
|
# @return [Object] The last result.
|
|
|
|
attr_accessor :last_result
|
|
|
|
|
|
|
|
# Get the active Pry instance that manages the active Pry session.
|
|
|
|
# This method should not need to be accessed directly.
|
|
|
|
# @return [Pry] The active Pry instance.
|
|
|
|
attr_accessor :active_instance
|
2011-01-13 09:35:46 -05:00
|
|
|
|
2010-12-30 10:01:11 -05:00
|
|
|
# Get/Set the object to use for input by default by all Pry instances.
|
2011-01-12 08:03:45 -05:00
|
|
|
# @return [#readline] The object to use for input by default by all
|
2010-12-29 04:14:12 -05:00
|
|
|
# Pry instances.
|
|
|
|
attr_accessor :input
|
|
|
|
|
2010-12-30 10:01:11 -05:00
|
|
|
# Get/Set the object to use for output by default by all Pry instances.
|
2010-12-29 04:14:12 -05:00
|
|
|
# @return [#puts] The object to use for output by default by all
|
|
|
|
# Pry instances.
|
|
|
|
attr_accessor :output
|
|
|
|
|
2010-12-30 10:01:11 -05:00
|
|
|
# Get/Set the object to use for commands by default by all Pry instances.
|
2011-01-12 08:03:45 -05:00
|
|
|
# @return [Pry::CommandBase] The object to use for commands by default by all
|
2010-12-29 04:14:12 -05:00
|
|
|
# Pry instances.
|
|
|
|
attr_accessor :commands
|
|
|
|
|
2010-12-30 10:01:11 -05:00
|
|
|
# Get/Set the Proc to use for printing by default by all Pry
|
2010-12-29 04:14:12 -05:00
|
|
|
# instances.
|
2010-12-30 10:01:11 -05:00
|
|
|
# This is the 'print' component of the REPL.
|
2010-12-29 04:14:12 -05:00
|
|
|
# @return [Proc] The Proc to use for printing by default by all
|
|
|
|
# Pry instances.
|
|
|
|
attr_accessor :print
|
|
|
|
|
2010-12-30 10:01:11 -05:00
|
|
|
# Get/Set the Hash that defines Pry hooks used by default by all Pry
|
2010-12-29 04:14:12 -05:00
|
|
|
# instances.
|
|
|
|
# @return [Hash] The hooks used by default by all Pry instances.
|
|
|
|
# @example
|
|
|
|
# Pry.hooks :before_session => proc { puts "hello" },
|
|
|
|
# :after_session => proc { puts "goodbye" }
|
|
|
|
attr_accessor :hooks
|
|
|
|
|
2011-01-07 07:18:09 -05:00
|
|
|
# Get the array of Procs to be used for the prompts by default by
|
2010-12-29 04:14:12 -05:00
|
|
|
# all Pry instances.
|
|
|
|
# @return [Array<Proc>] The array of Procs to be used for the
|
|
|
|
# prompts by default by all Pry instances.
|
2011-01-07 07:18:09 -05:00
|
|
|
attr_accessor :prompt
|
2011-02-25 10:32:54 -05:00
|
|
|
|
|
|
|
attr_accessor :cmd_ret_value
|
2010-12-25 08:59:37 -05:00
|
|
|
end
|
2011-01-13 09:35:46 -05:00
|
|
|
|
2010-12-29 04:14:12 -05:00
|
|
|
# Start a Pry REPL.
|
|
|
|
# @param [Object, Binding] target The receiver of the Pry session
|
2010-12-30 10:01:11 -05:00
|
|
|
# @param [Hash] options
|
|
|
|
# @option options (see Pry#initialize)
|
2010-12-29 04:14:12 -05:00
|
|
|
# @example
|
|
|
|
# Pry.start(Object.new, :input => MyInput.new)
|
2010-12-25 08:59:37 -05:00
|
|
|
def self.start(target=TOPLEVEL_BINDING, options={})
|
|
|
|
new(options).repl(target)
|
|
|
|
end
|
|
|
|
|
2010-12-29 04:14:12 -05:00
|
|
|
# A custom version of `Kernel#inspect`.
|
|
|
|
# This method should not need to be accessed directly.
|
|
|
|
# @param obj The object to view.
|
|
|
|
# @return [String] The string representation of `obj`.
|
2010-12-25 08:59:37 -05:00
|
|
|
def self.view(obj)
|
|
|
|
case obj
|
2010-12-27 07:36:29 -05:00
|
|
|
when String, Hash, Array, Symbol, nil
|
2010-12-25 08:59:37 -05:00
|
|
|
obj.inspect
|
|
|
|
else
|
|
|
|
obj.to_s
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-02-13 10:49:53 -05:00
|
|
|
# A version of `Pry.view` that clips the output to `max_size` chars.
|
|
|
|
# In case of > `max_size` chars the `#<Object...> notation is used.
|
|
|
|
# @param obj The object to view.
|
|
|
|
# @param max_size The maximum number of chars before clipping occurs.
|
|
|
|
# @return [String] The string representation of `obj`.
|
|
|
|
def self.view_clip(obj, max_size=60)
|
|
|
|
if Pry.view(obj).size < max_size
|
|
|
|
Pry.view(obj)
|
|
|
|
else
|
|
|
|
"#<#{obj.class}:%#x>" % (obj.object_id << 1)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-02-18 12:01:21 -05:00
|
|
|
# Run a Pry command from outside a session. The commands available are
|
|
|
|
# those referenced by `Pry.commands` (the default command set).
|
|
|
|
# Command output is suppresed by default, this is because the return
|
|
|
|
# value (if there is one) is likely to be more useful.
|
|
|
|
# @param [String] arg_string The Pry command (including arguments,
|
|
|
|
# if any).
|
|
|
|
# @param [Hash] options Optional named parameters.
|
2011-02-18 13:01:02 -05:00
|
|
|
# @return [Object] The return value of the Pry command.
|
2011-02-18 12:01:21 -05:00
|
|
|
# @option options [Object, Binding] :context The object context to run the
|
|
|
|
# command under. Defaults to `TOPLEVEL_BINDING` (main).
|
|
|
|
# @option options [Boolean] :show_output Whether to show command
|
|
|
|
# output. Defaults to false.
|
|
|
|
# @example Run at top-level with no output.
|
|
|
|
# Pry.run_command "ls"
|
|
|
|
# @example Run under Pry class, returning only public methods.
|
|
|
|
# Pry.run_command "ls -m", :context => Pry
|
|
|
|
# @example Display command output.
|
|
|
|
# Pry.run_command "ls -av", :show_output => true
|
|
|
|
def self.run_command(arg_string, options={})
|
|
|
|
name, arg_string = arg_string.split(/\s+/, 2)
|
|
|
|
arg_string = "" if !arg_string
|
|
|
|
|
|
|
|
options = {
|
|
|
|
:context => TOPLEVEL_BINDING,
|
|
|
|
:show_output => false
|
|
|
|
}.merge!(options)
|
|
|
|
|
|
|
|
null_output = Object.new.tap { |v| v.instance_eval { def puts(*) end } }
|
|
|
|
|
|
|
|
commands = Pry.commands.dup
|
|
|
|
commands.output = options[:show_output] ? Pry.output : null_output
|
|
|
|
commands.target = Pry.binding_for(options[:context])
|
|
|
|
|
|
|
|
cmd = commands.commands[name]
|
|
|
|
if cmd
|
|
|
|
action = cmd[:action]
|
|
|
|
commands.instance_exec(*Shellwords.shellwords(arg_string), &action)
|
|
|
|
else
|
2011-02-20 21:41:49 -05:00
|
|
|
raise "No such Pry command: #{name}"
|
2011-02-18 12:01:21 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-12-29 04:14:12 -05:00
|
|
|
# Set all the configurable options back to their default values
|
2010-12-25 08:59:37 -05:00
|
|
|
def self.reset_defaults
|
2011-01-09 06:51:45 -05:00
|
|
|
@input = Readline
|
|
|
|
@output = $stdout
|
2011-01-17 09:38:09 -05:00
|
|
|
@commands = Pry::Commands
|
2011-01-07 07:18:09 -05:00
|
|
|
@prompt = DEFAULT_PROMPT
|
2010-12-27 05:56:55 -05:00
|
|
|
@print = DEFAULT_PRINT
|
|
|
|
@hooks = DEFAULT_HOOKS
|
2010-12-25 08:59:37 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
self.reset_defaults
|
|
|
|
|
|
|
|
@nesting = []
|
|
|
|
def @nesting.level
|
|
|
|
last.is_a?(Array) ? last.first : nil
|
|
|
|
end
|
2011-01-13 09:35:46 -05:00
|
|
|
|
|
|
|
# Return all active Pry sessions.
|
|
|
|
# @return [Array<Pry>] Active Pry sessions.
|
|
|
|
def self.sessions
|
|
|
|
# last element in nesting array is the pry instance
|
|
|
|
nesting.map(&:last)
|
|
|
|
end
|
2011-02-16 11:27:55 -05:00
|
|
|
|
|
|
|
# Return a `Binding` object for `target` or return `target` if it is
|
|
|
|
# already a `Binding`.
|
|
|
|
# In the case where `target` is top-level then return `TOPLEVEL_BINDING`
|
|
|
|
# @param [Object] target The object to get a `Binding` object for.
|
|
|
|
# @return [Binding] The `Binding` object.
|
|
|
|
def self.binding_for(target)
|
|
|
|
if target.is_a?(Binding)
|
|
|
|
target
|
|
|
|
else
|
|
|
|
if target == TOPLEVEL_BINDING.eval('self')
|
|
|
|
TOPLEVEL_BINDING
|
|
|
|
else
|
|
|
|
target.__binding__
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2010-12-25 08:59:37 -05:00
|
|
|
end
|