mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
Allow use of hash-based hooks, but show warning.
* Shows a deprecation warning when used with a link to the new `Pry::Hooks` documentation. * When hash-based hooks are used they create anonymous hooks for the associated event. i.e Pry.hooks = { :before_session => proc { puts 'hi' } }, the 'name' of that hook is `nil`. * Anonymous hooks (nil-named) are different to ordinary hooks in that they dont raise an exception when user attempts to define another of the same name, they just silently overwrite previous one. This is to mimic the old hash-based behaviour. * Pry::Hooks[] and Pry::Hooks[]= are defined too, and they get and set the anonymous hook for the given event, i.e hooks[:before_session] = proc { "hi" } is equivalent to: hook.add_hook(:before_session, nil, proc { "hi" }) * Proc::Hook#[] and Pry::Hooks#[]= also display deprecation warnings.
This commit is contained in:
parent
7b2b4d6031
commit
3a4041cb24
4 changed files with 116 additions and 44 deletions
|
@ -49,11 +49,12 @@ class Pry
|
|||
# @param [Pry::Hooks] v Only accept `Pry::Hooks` now!
|
||||
def hooks=(v)
|
||||
if v.is_a?(Hash)
|
||||
raise ObsoleteError, "Hash is now obsolete! Use a Pry::Hooks object instead! http://rubydoc.info/github/pry/pry/master/Pry/Hooks"
|
||||
end
|
||||
|
||||
warn "Hash-based hooks are now deprecated! Use a `Pry::Hooks` object instead! http://rubydoc.info/github/pry/pry/master/Pry/Hooks"
|
||||
@hooks = Pry::Hooks.from_hash(v)
|
||||
else
|
||||
@hooks = v
|
||||
end
|
||||
end
|
||||
|
||||
# Get/Set the stack of input objects that a Pry instance switches
|
||||
# to when its current input object encounters EOF.
|
||||
|
|
|
@ -1,6 +1,31 @@
|
|||
class Pry
|
||||
|
||||
# Implements a hooks system for Pry. A hook is a callable that is
|
||||
# associated with an event. A number of events are currently
|
||||
# provided by Pry, these include: `:when_started`, `:before_session`, `:after_session`.
|
||||
# A hook must have a name, and is connected with an event by the
|
||||
# `Pry::Hooks#add_hook` method.
|
||||
# @example Adding a hook for the `:before_session` event.
|
||||
# Pry.config.hooks.add_hook(:before_session, :say_hi) do
|
||||
# puts "hello"
|
||||
# end
|
||||
class Hooks
|
||||
|
||||
# Converts a hash to a `Pry::Hooks` instance. All hooks defined
|
||||
# this way are anonymous. This functionality is primarily to
|
||||
# provide backwards-compatibility with the old hash-based hook
|
||||
# system in Pry versions < 0.9.8
|
||||
# @param [Hash] hash The hash to convert to `Pry::Hooks`.
|
||||
# @return [Pry::Hooks] The resulting `Pry::Hooks` instance.
|
||||
def self.from_hash(hash)
|
||||
instance = new
|
||||
hash.each do |k, v|
|
||||
instance.add_hook(k, nil, v)
|
||||
end
|
||||
|
||||
instance
|
||||
end
|
||||
|
||||
def initialize
|
||||
@hooks = {}
|
||||
end
|
||||
|
@ -26,14 +51,18 @@ class Pry
|
|||
|
||||
# FIXME:
|
||||
# This is a hack to alert people of the new API.
|
||||
def [](*)
|
||||
raise ObsoleteError, "`Pry.hooks[]` is no longer supported. Please use the new Pry::Hooks API! http://rubydoc.info/github/pry/pry/master/Pry/Hooks"
|
||||
def [](event_name)
|
||||
warn "`Pry.hooks[]` is deprecated! Please use the new `Pry::Hooks` API! http://rubydoc.info/github/pry/pry/master/Pry/Hooks"
|
||||
|
||||
get_hook(event_name, nil)
|
||||
end
|
||||
|
||||
# FIXME:
|
||||
# This is a hack to alert people of the new API.
|
||||
def []=(*)
|
||||
raise ObsoleteError, "`Pry.hooks[]=` is no longer supported. Please use the new Pry::Hooks API! http://rubydoc.info/github/pry/pry/master/Pry/Hooks"
|
||||
def []=(event_name, callable)
|
||||
warn "`Pry.hooks[]=` is deprecated! Please use the new `Pry::Hooks` API! http://rubydoc.info/github/pry/pry/master/Pry/Hooks"
|
||||
|
||||
add_hook(event_name, nil, callable)
|
||||
end
|
||||
|
||||
# Destructively merge the contents of two `Pry:Hooks` instances.
|
||||
|
@ -85,15 +114,23 @@ class Pry
|
|||
def add_hook(event_name, hook_name, callable=nil, &block)
|
||||
@hooks[event_name] ||= []
|
||||
|
||||
# do not allow duplicates
|
||||
raise ArgumentError, "Hook with name '#{hook_name}' already defined!" if hook_exists?(event_name, hook_name)
|
||||
# do not allow duplicates, but allow multiple `nil` hooks
|
||||
# (anonymous hooks)
|
||||
if hook_exists?(event_name, hook_name) && !hook_name.nil?
|
||||
raise ArgumentError, "Hook with name '#{hook_name}' already defined!"
|
||||
end
|
||||
|
||||
if !block && !callable
|
||||
raise ArgumentError, "Must provide a block or callable."
|
||||
end
|
||||
|
||||
# ensure we only have one anonymous hook
|
||||
@hooks[event_name].delete_if { |h, k| h.nil? } if hook_name.nil?
|
||||
|
||||
if block
|
||||
@hooks[event_name] << [hook_name, block]
|
||||
elsif callable
|
||||
@hooks[event_name] << [hook_name, callable]
|
||||
else
|
||||
raise ArgumentError, "Must provide a block or callable."
|
||||
end
|
||||
|
||||
self
|
||||
|
@ -194,6 +231,15 @@ class Pry
|
|||
|
||||
alias_method :clear, :delete_hooks
|
||||
|
||||
# Remove all events and hooks, clearing out the Pry::Hooks
|
||||
# instance completely.
|
||||
# @example
|
||||
# my_hooks = Pry::Hooks.new.add_hook(:before_session, :say_hi) { puts "hi!" }
|
||||
# my_hooks.clear_all
|
||||
def clear_all
|
||||
@hooks = {}
|
||||
end
|
||||
|
||||
# @param [Symbol] event_name Name of the event.
|
||||
# @param [Symbol] hook_name Name of the hook.
|
||||
# @return [Boolean] Whether the hook by the name `hook_name`
|
||||
|
|
|
@ -33,11 +33,12 @@ class Pry
|
|||
# @param [Pry::Hooks] v Only accept `Pry::Hooks` now!
|
||||
def hooks=(v)
|
||||
if v.is_a?(Hash)
|
||||
raise ObsoleteError, "Error: Hash is now obsolete! Use a Pry::Hooks object instead! http://rubydoc.info/github/pry/pry/master/Pry/Hooks"
|
||||
end
|
||||
|
||||
warn "Hash-based hooks are now deprecated! Use a `Pry::Hooks` object instead! http://rubydoc.info/github/pry/pry/master/Pry/Hooks"
|
||||
@hooks = Pry::Hooks.from_hash(v)
|
||||
else
|
||||
@hooks = v
|
||||
end
|
||||
end
|
||||
|
||||
# Create a new `Pry` object.
|
||||
# @param [Hash] options The optional configuration parameters.
|
||||
|
|
|
@ -417,50 +417,74 @@ describe Pry::Hooks do
|
|||
end
|
||||
end
|
||||
|
||||
describe "obsolete API" do
|
||||
describe "Pry.config.hooks" do
|
||||
it 'should raise a Pry::ObsoleteError when assigning a hash' do
|
||||
begin
|
||||
Pry.config.hooks = {}
|
||||
rescue => ex
|
||||
describe "anonymous hooks" do
|
||||
it 'should allow adding of hook without a name' do
|
||||
@hooks.add_hook(:test_hook, nil) {}
|
||||
@hooks.hook_count(:test_hook).should == 1
|
||||
end
|
||||
|
||||
ex.is_a?(Pry::ObsoleteError).should == true
|
||||
it 'should only allow one anonymous hook to exist' do
|
||||
@hooks.add_hook(:test_hook, nil) { }
|
||||
@hooks.add_hook(:test_hook, nil) { }
|
||||
@hooks.hook_count(:test_hook).should == 1
|
||||
end
|
||||
|
||||
it 'should execute most recently added anonymous hook' do
|
||||
x = nil
|
||||
y = nil
|
||||
@hooks.add_hook(:test_hook, nil) { y = 1 }
|
||||
@hooks.add_hook(:test_hook, nil) { x = 2 }
|
||||
@hooks.exec_hook(:test_hook)
|
||||
y.should == nil
|
||||
x.should == 2
|
||||
end
|
||||
end
|
||||
|
||||
describe "deprecated hash-based API" do
|
||||
after do
|
||||
Pry.config.hooks.clear_all if Pry.config.hooks
|
||||
end
|
||||
|
||||
describe "Pry.config.hooks" do
|
||||
it 'should allow a hash-assignment' do
|
||||
Pry.config.hooks = { :before_session => proc { :hello } }
|
||||
Pry.config.hooks.get_hook(:before_session, nil).call.should == :hello
|
||||
end
|
||||
|
||||
describe "Pry.config.hooks[]" do
|
||||
it 'should raise a Pry::ObsoleteError when accessing it in a hash style, Pry.config.hooks[]' do
|
||||
begin
|
||||
Pry.config.hooks[:before_session]
|
||||
rescue => ex
|
||||
it 'should return the only anonymous hook' do
|
||||
Pry.config.hooks = { :before_session => proc { :hello } }
|
||||
Pry.config.hooks[:before_session].call.should == :hello
|
||||
end
|
||||
|
||||
ex.is_a?(Pry::ObsoleteError).should == true
|
||||
it 'should add an anonymous hook when using Pry.config.hooks[]=' do
|
||||
Pry.config.hooks[:before_session] = proc { :bing }
|
||||
Pry.config.hooks.hook_count(:before_session).should == 1
|
||||
end
|
||||
|
||||
it 'should raise a Pry::ObsoleteError when accessing it in a hash style, Pry.config.hooks[]=' do
|
||||
begin
|
||||
Pry.config.hooks[:before_session]
|
||||
rescue => ex
|
||||
end
|
||||
it 'should add overwrite previous anonymous hooks with new one when calling Pry.config.hooks[]= multiple times' do
|
||||
x = nil
|
||||
Pry.config.hooks[:before_session] = proc { x = 1 }
|
||||
Pry.config.hooks[:before_session] = proc { x = 2 }
|
||||
|
||||
ex.is_a?(Pry::ObsoleteError).should == true
|
||||
Pry.config.hooks.exec_hook(:before_session)
|
||||
Pry.config.hooks.hook_count(:before_session).should == 1
|
||||
x.should == 2
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
describe "Pry.start" do
|
||||
it 'should raise a Pry::ObsoleteError when passing in a :hooks option with a hash' do
|
||||
begin
|
||||
Pry.start binding, :hooks => { :before_session => proc { puts 'yo' } }
|
||||
rescue => ex
|
||||
it 'should accept a hash for :hooks parameter' do
|
||||
|
||||
redirect_pry_io(InputTester.new("exit-all"), out=StringIO.new) do
|
||||
Pry.start binding, :hooks => { :before_session => proc { |output, _, _| output.puts 'hello friend' } }
|
||||
end
|
||||
|
||||
ex.is_a?(Pry::ObsoleteError).should == true
|
||||
out.string.should =~ /hello friend/
|
||||
end
|
||||
|
||||
end
|
||||
end
|
||||
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue