2012-06-22 11:33:12 -04:00
|
|
|
require 'pry/module_candidate'
|
2012-04-12 10:17:47 -04:00
|
|
|
|
2011-12-02 01:55:48 -05:00
|
|
|
class Pry
|
2012-04-12 08:30:26 -04:00
|
|
|
class << self
|
|
|
|
# If the given object is a `Pry::WrappedModule`, return it unaltered. If it's
|
|
|
|
# anything else, return it wrapped in a `Pry::WrappedModule` instance.
|
|
|
|
def WrappedModule(obj)
|
|
|
|
if obj.is_a? Pry::WrappedModule
|
|
|
|
obj
|
|
|
|
else
|
|
|
|
Pry::WrappedModule.new(obj)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-12-02 01:55:48 -05:00
|
|
|
class WrappedModule
|
|
|
|
attr_reader :wrapped
|
|
|
|
private :wrapped
|
|
|
|
|
2012-04-15 01:33:58 -04:00
|
|
|
# Convert a string to a module.
|
|
|
|
#
|
|
|
|
# @param [String] mod_name
|
2012-04-17 20:12:19 -04:00
|
|
|
# @param [Binding] target The binding where the lookup takes place.
|
2012-04-15 01:33:58 -04:00
|
|
|
# @return [Module, nil] The module or `nil` (if conversion failed).
|
|
|
|
# @example
|
|
|
|
# Pry::WrappedModule.from_str("Pry::Code")
|
2012-04-17 20:12:19 -04:00
|
|
|
def self.from_str(mod_name, target=TOPLEVEL_BINDING)
|
|
|
|
kind = target.eval("defined?(#{mod_name})")
|
|
|
|
|
|
|
|
# if we dont limit it to constants then from_str could end up
|
|
|
|
# executing methods which is not good, i.e `show-source pry`
|
|
|
|
if (kind == "constant" && target.eval(mod_name).is_a?(Module))
|
|
|
|
Pry::WrappedModule.new(target.eval(mod_name))
|
2012-04-17 19:34:07 -04:00
|
|
|
else
|
|
|
|
nil
|
|
|
|
end
|
2012-04-15 01:33:58 -04:00
|
|
|
rescue RescuableException
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
2012-06-27 01:30:00 -04:00
|
|
|
# @raise [ArgumentError] if the argument is not a `Module`
|
|
|
|
# @param [Module] mod
|
2011-12-02 01:55:48 -05:00
|
|
|
def initialize(mod)
|
|
|
|
raise ArgumentError, "Tried to initialize a WrappedModule with a non-module #{mod.inspect}" unless ::Module === mod
|
|
|
|
@wrapped = mod
|
2012-06-22 11:33:12 -04:00
|
|
|
@memoized_candidates = []
|
2012-04-12 08:30:26 -04:00
|
|
|
@host_file_lines = nil
|
|
|
|
@source = nil
|
2012-04-12 10:17:47 -04:00
|
|
|
@source_location = nil
|
|
|
|
@doc = nil
|
2011-12-02 01:55:48 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
# The prefix that would appear before methods defined on this class.
|
|
|
|
#
|
|
|
|
# i.e. the "String." or "String#" in String.new and String#initialize.
|
|
|
|
#
|
|
|
|
# @return String
|
|
|
|
def method_prefix
|
|
|
|
if singleton_class?
|
|
|
|
if Module === singleton_instance
|
2011-12-19 02:04:14 -05:00
|
|
|
"#{WrappedModule.new(singleton_instance).nonblank_name}."
|
2011-12-02 01:55:48 -05:00
|
|
|
else
|
|
|
|
"self."
|
|
|
|
end
|
|
|
|
else
|
2011-12-19 02:04:14 -05:00
|
|
|
"#{nonblank_name}#"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# The name of the Module if it has one, otherwise #<Class:0xf00>.
|
|
|
|
#
|
|
|
|
# @return [String]
|
|
|
|
def nonblank_name
|
|
|
|
if name.to_s == ""
|
|
|
|
wrapped.inspect
|
|
|
|
else
|
|
|
|
name
|
2011-12-02 01:55:48 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Is this a singleton class?
|
|
|
|
# @return [Boolean]
|
|
|
|
def singleton_class?
|
|
|
|
wrapped != wrapped.ancestors.first
|
|
|
|
end
|
|
|
|
|
|
|
|
# Get the instance associated with this singleton class.
|
|
|
|
#
|
|
|
|
# @raise ArgumentError: tried to get instance of non singleton class
|
|
|
|
#
|
|
|
|
# @return [Object]
|
|
|
|
def singleton_instance
|
|
|
|
raise ArgumentError, "tried to get instance of non singleton class" unless singleton_class?
|
|
|
|
|
2011-12-27 17:38:25 -05:00
|
|
|
if Helpers::BaseHelpers.jruby?
|
2011-12-02 01:55:48 -05:00
|
|
|
wrapped.to_java.attached
|
|
|
|
else
|
|
|
|
@singleton_instance ||= ObjectSpace.each_object(wrapped).detect{ |x| (class << x; self; end) == wrapped }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Forward method invocations to the wrapped module
|
|
|
|
def method_missing(method_name, *args, &block)
|
|
|
|
wrapped.send(method_name, *args, &block)
|
|
|
|
end
|
|
|
|
|
|
|
|
def respond_to?(method_name)
|
2012-04-14 16:25:46 -04:00
|
|
|
super || wrapped.respond_to?(method_name)
|
2011-12-02 01:55:48 -05:00
|
|
|
end
|
2012-04-12 08:30:26 -04:00
|
|
|
|
|
|
|
# Retrieve the source location of a module. Return value is in same
|
|
|
|
# format as Method#source_location. If the source location
|
|
|
|
# cannot be found this method returns `nil`.
|
|
|
|
#
|
|
|
|
# @param [Module] mod The module (or class).
|
2012-06-24 12:04:43 -04:00
|
|
|
# @return [Array<String, Fixnum>, nil] The source location of the
|
|
|
|
# module (or class), or `nil` if no source location found.
|
2012-04-12 08:30:26 -04:00
|
|
|
def source_location
|
2012-06-22 11:33:12 -04:00
|
|
|
@source_location ||= primary_candidate.source_location
|
2012-06-24 12:04:43 -04:00
|
|
|
rescue Pry::RescuableException
|
|
|
|
nil
|
2012-04-17 01:14:35 -04:00
|
|
|
end
|
|
|
|
|
2012-06-22 11:33:12 -04:00
|
|
|
# @return [String, nil] The associated file for the module (i.e
|
|
|
|
# the primary candidate: highest ranked monkeypatch).
|
|
|
|
def file
|
|
|
|
Array(source_location).first
|
2012-04-17 01:14:35 -04:00
|
|
|
end
|
2012-06-23 16:09:12 -04:00
|
|
|
alias_method :source_file, :file
|
2012-04-12 10:17:47 -04:00
|
|
|
|
2012-06-22 11:33:12 -04:00
|
|
|
# @return [Fixnum, nil] The associated line for the module (i.e
|
|
|
|
# the primary candidate: highest ranked monkeypatch).
|
|
|
|
def line
|
|
|
|
Array(source_location).last
|
|
|
|
end
|
2012-06-23 16:09:12 -04:00
|
|
|
alias_method :source_line, :line
|
2012-04-12 08:30:26 -04:00
|
|
|
|
2012-06-22 11:33:12 -04:00
|
|
|
# Returns documentation for the module, with preference given to yard docs if
|
|
|
|
# available. This documentation is for the primary candidate, if
|
|
|
|
# you would like documentation for other candidates use
|
|
|
|
# `WrappedModule#candidate` to select the candidate you're
|
|
|
|
# interested in.
|
|
|
|
# @raise [Pry::CommandError] If documentation cannot be found.
|
|
|
|
# @return [String] The documentation for the module.
|
|
|
|
def doc
|
|
|
|
@doc ||= primary_candidate.doc
|
|
|
|
end
|
2012-04-12 08:30:26 -04:00
|
|
|
|
2012-06-22 11:33:12 -04:00
|
|
|
# Returns the source for the module.
|
|
|
|
# This source is for the primary candidate, if
|
|
|
|
# you would like source for other candidates use
|
|
|
|
# `WrappedModule#candidate` to select the candidate you're
|
|
|
|
# interested in.
|
|
|
|
# @raise [Pry::CommandError] If source cannot be found.
|
|
|
|
# @return [String] The source for the module.
|
|
|
|
def source
|
|
|
|
@source ||= primary_candidate.source
|
|
|
|
end
|
2012-04-12 08:30:26 -04:00
|
|
|
|
2012-06-22 11:33:12 -04:00
|
|
|
# @return [String] Return the associated file for the
|
|
|
|
# module from YARD, if one exists.
|
|
|
|
def yard_file
|
|
|
|
YARD::Registry.at(name).file if yard_docs?
|
|
|
|
end
|
2012-04-12 08:30:26 -04:00
|
|
|
|
2012-06-22 11:33:12 -04:00
|
|
|
# @return [Fixnum] Return the associated line for the
|
|
|
|
# module from YARD, if one exists.
|
|
|
|
def yard_line
|
|
|
|
YARD::Registry.at(name).line if yard_docs?
|
2012-04-12 08:30:26 -04:00
|
|
|
end
|
|
|
|
|
2012-06-22 11:33:12 -04:00
|
|
|
# Return a candidate for this module of specified rank. A `rank`
|
|
|
|
# of 0 is equivalent to the 'primary candidate', which is the
|
|
|
|
# module definition with the highest number of methods. A `rank`
|
|
|
|
# of 1 is the module definition with the second highest number of
|
|
|
|
# methods, and so on. Module candidates are necessary as modules
|
|
|
|
# can be reopened multiple times and in multiple places in Ruby,
|
|
|
|
# the candidate API gives you access to the module definition
|
|
|
|
# representing each of those reopenings.
|
|
|
|
# @raise [Pry::CommandError] If the `rank` is out of range. That
|
2012-06-23 04:14:10 -04:00
|
|
|
# is greater than `number_of_candidates - 1`.
|
2012-06-22 11:33:12 -04:00
|
|
|
# @param [Fixnum] rank
|
|
|
|
# @return [Pry::WrappedModule::Candidate]
|
|
|
|
def candidate(rank)
|
|
|
|
@memoized_candidates[rank] ||= Candidate.new(self, rank)
|
2012-04-17 01:14:35 -04:00
|
|
|
end
|
|
|
|
|
2012-04-12 10:17:47 -04:00
|
|
|
|
2012-06-22 11:33:12 -04:00
|
|
|
# @return [Fixnum] The number of candidate definitions for the
|
|
|
|
# current module.
|
|
|
|
def number_of_candidates
|
|
|
|
method_candidates.count
|
2012-04-12 10:17:47 -04:00
|
|
|
end
|
|
|
|
|
2012-06-22 11:33:12 -04:00
|
|
|
# @return [Boolean] Whether YARD docs are available for this module.
|
|
|
|
def yard_docs?
|
|
|
|
!!(defined?(YARD) && YARD::Registry.at(name))
|
2012-04-17 01:14:35 -04:00
|
|
|
end
|
2012-04-12 08:30:26 -04:00
|
|
|
|
2012-06-22 11:33:12 -04:00
|
|
|
private
|
|
|
|
|
|
|
|
# @return [Pry::WrappedModule::Candidate] The candidate of rank 0,
|
|
|
|
# that is the 'monkey patch' of this module with the highest
|
|
|
|
# number of methods. It is considered the 'canonical' definition
|
|
|
|
# for the module.
|
|
|
|
def primary_candidate
|
|
|
|
@primary_candidate ||= candidate(0)
|
2012-04-17 01:14:35 -04:00
|
|
|
end
|
2012-04-12 08:30:26 -04:00
|
|
|
|
2012-06-22 11:33:12 -04:00
|
|
|
# @return [Array<Pry::Method>] The array of `Pry::Method` objects,
|
|
|
|
# there is one associated with each candidate. Each one is the 'base
|
|
|
|
# method' for a candidate and it serves as the start point for
|
|
|
|
# the search in uncovering the module definition.
|
|
|
|
def method_candidates
|
|
|
|
@method_candidates ||= all_source_locations_by_popularity.map do |group|
|
|
|
|
group.last.sort_by(&:source_line).first # best candidate for group
|
|
|
|
end
|
2012-04-17 01:14:35 -04:00
|
|
|
end
|
|
|
|
|
2012-06-22 11:33:12 -04:00
|
|
|
# A helper method.
|
2012-04-17 01:14:35 -04:00
|
|
|
def all_source_locations_by_popularity
|
|
|
|
return @all_source_locations_by_popularity if @all_source_locations_by_popularity
|
|
|
|
|
|
|
|
ims = all_methods_for(wrapped)
|
|
|
|
|
2012-06-28 05:29:05 -04:00
|
|
|
ims = ims.select(&:source_location)
|
2012-04-12 08:30:26 -04:00
|
|
|
|
2012-04-17 01:14:35 -04:00
|
|
|
@all_source_locations_by_popularity = ims.group_by { |v| Array(v.source_location).first }.
|
|
|
|
sort_by { |k, v| -v.size }
|
|
|
|
end
|
|
|
|
|
2012-06-22 11:33:12 -04:00
|
|
|
# Return all methods (instance methods and class methods) for a
|
|
|
|
# given module.
|
|
|
|
def all_methods_for(mod)
|
|
|
|
all_from_common(mod, :instance_method) + all_from_common(mod, :method)
|
2012-04-12 08:30:26 -04:00
|
|
|
end
|
|
|
|
|
2012-06-22 11:33:12 -04:00
|
|
|
# FIXME: a variant of this method is also found in Pry::Method
|
|
|
|
def all_from_common(mod, method_type)
|
|
|
|
%w(public protected private).map do |visibility|
|
|
|
|
safe_send(mod, :"#{visibility}_#{method_type}s", false).select do |method_name|
|
|
|
|
if method_type == :method
|
|
|
|
safe_send(mod, method_type, method_name).owner == class << mod; self; end
|
|
|
|
else
|
|
|
|
safe_send(mod, method_type, method_name).owner == mod
|
|
|
|
end
|
|
|
|
end.map do |method_name|
|
|
|
|
Pry::Method.new(safe_send(mod, method_type, method_name), :visibility => visibility.to_sym)
|
|
|
|
end
|
|
|
|
end.flatten
|
2012-04-12 08:30:26 -04:00
|
|
|
end
|
2012-04-12 10:17:47 -04:00
|
|
|
|
2012-06-22 11:33:12 -04:00
|
|
|
# memoized lines for file
|
|
|
|
def lines_for_file(file)
|
|
|
|
@lines_for_file ||= {}
|
2012-04-17 01:14:35 -04:00
|
|
|
|
2012-06-22 11:33:12 -04:00
|
|
|
if file == Pry.eval_path
|
|
|
|
@lines_for_file[file] ||= Pry.line_buffer.drop(1)
|
|
|
|
else
|
|
|
|
@lines_for_file[file] ||= File.readlines(file)
|
2012-04-17 01:14:35 -04:00
|
|
|
end
|
2012-04-12 10:17:47 -04:00
|
|
|
end
|
|
|
|
|
2012-06-22 11:33:12 -04:00
|
|
|
# FIXME: this method is also found in Pry::Method
|
|
|
|
def safe_send(obj, method, *args, &block)
|
|
|
|
(Module === obj ? Module : Object).instance_method(method).bind(obj).call(*args, &block)
|
|
|
|
end
|
2011-12-02 01:55:48 -05:00
|
|
|
end
|
|
|
|
end
|