2017-01-06 05:05:35 +03:00
|
|
|
# frozen_string_literal: true
|
2005-10-05 20:15:16 +04:00
|
|
|
# = delegate -- Support for the Delegation Pattern
|
1998-01-16 15:19:09 +03:00
|
|
|
#
|
2005-10-05 20:15:16 +04:00
|
|
|
# Documentation by James Edward Gray II and Gavin Sinclair
|
2011-07-27 23:53:44 +04:00
|
|
|
|
|
|
|
##
|
2005-10-05 20:15:16 +04:00
|
|
|
# This library provides three different ways to delegate method calls to an
|
|
|
|
# object. The easiest to use is SimpleDelegator. Pass an object to the
|
|
|
|
# constructor and all methods supported by the object will be delegated. This
|
|
|
|
# object can be changed later.
|
|
|
|
#
|
|
|
|
# Going a step further, the top level DelegateClass method allows you to easily
|
|
|
|
# setup delegation through class inheritance. This is considerably more
|
|
|
|
# flexible and thus probably the most common use for this library.
|
|
|
|
#
|
|
|
|
# Finally, if you need full control over the delegation scheme, you can inherit
|
|
|
|
# from the abstract class Delegator and customize as needed. (If you find
|
2011-07-27 23:53:44 +04:00
|
|
|
# yourself needing this control, have a look at Forwardable which is also in
|
|
|
|
# the standard library. It may suit your needs better.)
|
2005-10-05 20:15:16 +04:00
|
|
|
#
|
2015-04-23 04:01:44 +03:00
|
|
|
# SimpleDelegator's implementation serves as a nice example of the use of
|
2011-07-27 23:53:44 +04:00
|
|
|
# Delegator:
|
2005-10-05 20:15:16 +04:00
|
|
|
#
|
2011-07-27 23:53:44 +04:00
|
|
|
# class SimpleDelegator < Delegator
|
|
|
|
# def __getobj__
|
|
|
|
# @delegate_sd_obj # return object we are delegating to, required
|
2005-10-05 20:15:16 +04:00
|
|
|
# end
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2011-07-27 23:53:44 +04:00
|
|
|
# def __setobj__(obj)
|
|
|
|
# @delegate_sd_obj = obj # change delegation object,
|
|
|
|
# # a feature we're providing
|
2005-10-05 20:15:16 +04:00
|
|
|
# end
|
|
|
|
# end
|
|
|
|
#
|
2011-07-27 23:53:44 +04:00
|
|
|
# == Notes
|
2005-10-05 20:15:16 +04:00
|
|
|
#
|
2011-07-27 23:53:44 +04:00
|
|
|
# Be advised, RDoc will not detect delegated methods.
|
2005-10-05 20:15:16 +04:00
|
|
|
#
|
2010-02-04 02:15:55 +03:00
|
|
|
class Delegator < BasicObject
|
2010-02-05 10:38:10 +03:00
|
|
|
kernel = ::Kernel.dup
|
|
|
|
kernel.class_eval do
|
2013-11-21 13:47:31 +04:00
|
|
|
alias __raise__ raise
|
2016-10-05 05:36:28 +03:00
|
|
|
[:to_s, :inspect, :=~, :!~, :===, :<=>, :eql?, :hash].each do |m|
|
2010-02-05 10:38:10 +03:00
|
|
|
undef_method m
|
|
|
|
end
|
2013-11-21 11:33:01 +04:00
|
|
|
private_instance_methods.each do |m|
|
2014-01-17 15:05:03 +04:00
|
|
|
if /\Ablock_given\?\z|iterator\?\z|\A__.*__\z/ =~ m
|
2013-11-21 13:47:31 +04:00
|
|
|
next
|
|
|
|
end
|
2013-11-21 11:33:01 +04:00
|
|
|
undef_method m
|
|
|
|
end
|
2010-02-04 02:15:55 +03:00
|
|
|
end
|
2010-02-05 10:38:10 +03:00
|
|
|
include kernel
|
2010-02-04 02:15:55 +03:00
|
|
|
|
2010-02-05 10:38:10 +03:00
|
|
|
# :stopdoc:
|
2010-02-04 02:15:55 +03:00
|
|
|
def self.const_missing(n)
|
|
|
|
::Object.const_get(n)
|
|
|
|
end
|
|
|
|
# :startdoc:
|
|
|
|
|
2014-05-30 22:52:30 +04:00
|
|
|
##
|
|
|
|
# :method: raise
|
|
|
|
# Use __raise__ if your Delegator does not have a object to delegate the
|
|
|
|
# raise method call.
|
|
|
|
#
|
|
|
|
|
2008-10-15 18:12:15 +04:00
|
|
|
#
|
|
|
|
# Pass in the _obj_ to delegate method calls to. All methods supported by
|
|
|
|
# _obj_ will be delegated to.
|
|
|
|
#
|
|
|
|
def initialize(obj)
|
|
|
|
__setobj__(obj)
|
|
|
|
end
|
1998-01-16 15:19:09 +03:00
|
|
|
|
2010-06-22 08:23:59 +04:00
|
|
|
#
|
2008-10-15 18:12:15 +04:00
|
|
|
# Handles the magic of delegation through \_\_getobj\_\_.
|
2010-06-22 08:23:59 +04:00
|
|
|
#
|
2008-10-15 18:12:15 +04:00
|
|
|
def method_missing(m, *args, &block)
|
2013-12-04 07:47:57 +04:00
|
|
|
r = true
|
|
|
|
target = self.__getobj__ {r = false}
|
2015-09-09 05:12:52 +03:00
|
|
|
|
|
|
|
if r && target.respond_to?(m)
|
|
|
|
target.__send__(m, *args, &block)
|
|
|
|
elsif ::Kernel.respond_to?(m, true)
|
|
|
|
::Kernel.instance_method(m).bind(self).(*args, &block)
|
|
|
|
else
|
|
|
|
super(m, *args, &block)
|
2013-11-19 20:27:40 +04:00
|
|
|
end
|
|
|
|
end
|
2005-06-30 10:20:09 +04:00
|
|
|
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2009-10-16 23:20:35 +04:00
|
|
|
# Checks for a method provided by this the delegate object by forwarding the
|
2008-10-15 18:12:15 +04:00
|
|
|
# call through \_\_getobj\_\_.
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2009-10-17 09:34:51 +04:00
|
|
|
def respond_to_missing?(m, include_private)
|
2013-12-04 07:47:57 +04:00
|
|
|
r = true
|
|
|
|
target = self.__getobj__ {r = false}
|
|
|
|
r &&= target.respond_to?(m, include_private)
|
|
|
|
if r && include_private && !target.respond_to?(m, false)
|
2009-10-17 08:22:58 +04:00
|
|
|
warn "#{caller(3)[0]}: delegator does not forward private method \##{m}"
|
|
|
|
return false
|
2009-10-16 15:04:15 +04:00
|
|
|
end
|
2009-10-17 08:22:58 +04:00
|
|
|
r
|
2008-10-15 18:12:15 +04:00
|
|
|
end
|
2005-06-30 19:22:00 +04:00
|
|
|
|
2010-05-30 20:43:52 +04:00
|
|
|
#
|
|
|
|
# Returns the methods available to this delegate object as the union
|
|
|
|
# of this object's and \_\_getobj\_\_ methods.
|
|
|
|
#
|
2011-12-04 07:05:03 +04:00
|
|
|
def methods(all=true)
|
|
|
|
__getobj__.methods(all) | super
|
2010-05-30 20:43:52 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Returns the methods available to this delegate object as the union
|
|
|
|
# of this object's and \_\_getobj\_\_ public methods.
|
|
|
|
#
|
|
|
|
def public_methods(all=true)
|
|
|
|
__getobj__.public_methods(all) | super
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Returns the methods available to this delegate object as the union
|
|
|
|
# of this object's and \_\_getobj\_\_ protected methods.
|
|
|
|
#
|
|
|
|
def protected_methods(all=true)
|
|
|
|
__getobj__.protected_methods(all) | super
|
|
|
|
end
|
|
|
|
|
|
|
|
# Note: no need to specialize private_methods, since they are not forwarded
|
|
|
|
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2010-06-12 23:25:03 +04:00
|
|
|
# Returns true if two objects are considered of equal value.
|
2009-03-06 06:56:38 +03:00
|
|
|
#
|
2008-10-15 18:12:15 +04:00
|
|
|
def ==(obj)
|
|
|
|
return true if obj.equal?(self)
|
|
|
|
self.__getobj__ == obj
|
|
|
|
end
|
1998-01-16 15:19:09 +03:00
|
|
|
|
2010-06-12 23:25:03 +04:00
|
|
|
#
|
|
|
|
# Returns true if two objects are not considered of equal value.
|
|
|
|
#
|
|
|
|
def !=(obj)
|
|
|
|
return false if obj.equal?(self)
|
|
|
|
__getobj__ != obj
|
|
|
|
end
|
|
|
|
|
2012-06-09 02:46:49 +04:00
|
|
|
#
|
|
|
|
# Delegates ! to the \_\_getobj\_\_
|
|
|
|
#
|
2010-06-12 23:25:03 +04:00
|
|
|
def !
|
|
|
|
!__getobj__
|
|
|
|
end
|
|
|
|
|
2008-10-15 18:12:15 +04:00
|
|
|
#
|
|
|
|
# This method must be overridden by subclasses and should return the object
|
|
|
|
# method calls are being delegated to.
|
|
|
|
#
|
|
|
|
def __getobj__
|
2013-11-21 13:47:31 +04:00
|
|
|
__raise__ ::NotImplementedError, "need to define `__getobj__'"
|
2008-10-15 18:12:15 +04:00
|
|
|
end
|
2005-12-29 15:05:16 +03:00
|
|
|
|
2008-10-15 18:12:15 +04:00
|
|
|
#
|
|
|
|
# This method must be overridden by subclasses and change the object delegate
|
|
|
|
# to _obj_.
|
|
|
|
#
|
|
|
|
def __setobj__(obj)
|
2013-11-21 13:47:31 +04:00
|
|
|
__raise__ ::NotImplementedError, "need to define `__setobj__'"
|
2008-10-15 18:12:15 +04:00
|
|
|
end
|
2005-12-29 15:05:16 +03:00
|
|
|
|
2010-06-22 08:23:59 +04:00
|
|
|
#
|
2008-10-15 18:12:15 +04:00
|
|
|
# Serialization support for the object returned by \_\_getobj\_\_.
|
2010-06-22 08:23:59 +04:00
|
|
|
#
|
2008-10-15 18:12:15 +04:00
|
|
|
def marshal_dump
|
2010-02-02 05:14:00 +03:00
|
|
|
ivars = instance_variables.reject {|var| /\A@delegate_/ =~ var}
|
2009-12-24 06:08:15 +03:00
|
|
|
[
|
2009-12-29 04:56:55 +03:00
|
|
|
:__v2__,
|
2016-10-05 05:36:28 +03:00
|
|
|
ivars, ivars.map {|var| instance_variable_get(var)},
|
2009-12-24 06:08:15 +03:00
|
|
|
__getobj__
|
|
|
|
]
|
2008-10-15 18:12:15 +04:00
|
|
|
end
|
2010-06-22 08:23:59 +04:00
|
|
|
|
|
|
|
#
|
2008-10-15 18:12:15 +04:00
|
|
|
# Reinitializes delegation from a serialized object.
|
2010-06-22 08:23:59 +04:00
|
|
|
#
|
2009-12-29 04:56:55 +03:00
|
|
|
def marshal_load(data)
|
|
|
|
version, vars, values, obj = data
|
|
|
|
if version == :__v2__
|
2016-10-05 05:36:28 +03:00
|
|
|
vars.each_with_index {|var, i| instance_variable_set(var, values[i])}
|
2009-12-29 04:56:55 +03:00
|
|
|
__setobj__(obj)
|
|
|
|
else
|
|
|
|
__setobj__(data)
|
|
|
|
end
|
2008-10-15 18:12:15 +04:00
|
|
|
end
|
2005-12-29 15:05:16 +03:00
|
|
|
|
2010-04-11 02:09:09 +04:00
|
|
|
def initialize_clone(obj) # :nodoc:
|
2010-02-08 10:43:54 +03:00
|
|
|
self.__setobj__(obj.__getobj__.clone)
|
2010-02-05 10:38:10 +03:00
|
|
|
end
|
2010-04-11 02:09:09 +04:00
|
|
|
def initialize_dup(obj) # :nodoc:
|
2010-02-08 10:43:54 +03:00
|
|
|
self.__setobj__(obj.__getobj__.dup)
|
2003-08-04 16:45:03 +04:00
|
|
|
end
|
2010-02-08 10:43:54 +03:00
|
|
|
private :initialize_clone, :initialize_dup
|
2009-10-06 17:07:12 +04:00
|
|
|
|
2010-06-22 08:23:59 +04:00
|
|
|
##
|
|
|
|
# :method: trust
|
|
|
|
# Trust both the object returned by \_\_getobj\_\_ and self.
|
|
|
|
#
|
|
|
|
|
|
|
|
##
|
|
|
|
# :method: untrust
|
|
|
|
# Untrust both the object returned by \_\_getobj\_\_ and self.
|
|
|
|
#
|
|
|
|
|
|
|
|
##
|
|
|
|
# :method: taint
|
|
|
|
# Taint both the object returned by \_\_getobj\_\_ and self.
|
|
|
|
#
|
|
|
|
|
|
|
|
##
|
|
|
|
# :method: untaint
|
|
|
|
# Untaint both the object returned by \_\_getobj\_\_ and self.
|
|
|
|
#
|
|
|
|
|
|
|
|
##
|
|
|
|
# :method: freeze
|
|
|
|
# Freeze both the object returned by \_\_getobj\_\_ and self.
|
|
|
|
#
|
|
|
|
|
|
|
|
[:trust, :untrust, :taint, :untaint, :freeze].each do |method|
|
|
|
|
define_method method do
|
|
|
|
__getobj__.send(method)
|
|
|
|
super()
|
|
|
|
end
|
2009-10-16 15:11:00 +04:00
|
|
|
end
|
|
|
|
|
2009-10-06 17:07:12 +04:00
|
|
|
@delegator_api = self.public_instance_methods
|
2016-10-05 05:36:28 +03:00
|
|
|
def self.public_api # :nodoc:
|
2009-10-06 17:07:12 +04:00
|
|
|
@delegator_api
|
|
|
|
end
|
1998-01-16 15:19:09 +03:00
|
|
|
end
|
|
|
|
|
2011-07-27 23:53:44 +04:00
|
|
|
##
|
2005-10-05 20:15:16 +04:00
|
|
|
# A concrete implementation of Delegator, this class provides the means to
|
|
|
|
# delegate all supported method calls to the object passed into the constructor
|
|
|
|
# and even to change the object being delegated to at a later time with
|
2011-07-27 23:53:44 +04:00
|
|
|
# #__setobj__.
|
|
|
|
#
|
2013-07-10 19:50:23 +04:00
|
|
|
# class User
|
|
|
|
# def born_on
|
2014-05-08 23:02:36 +04:00
|
|
|
# Date.new(1989, 9, 10)
|
2013-07-10 19:50:23 +04:00
|
|
|
# end
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# class UserDecorator < SimpleDelegator
|
|
|
|
# def birth_year
|
|
|
|
# born_on.year
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# decorated_user = UserDecorator.new(User.new)
|
|
|
|
# decorated_user.birth_year #=> 1989
|
|
|
|
# decorated_user.__getobj__ #=> #<User: ...>
|
|
|
|
#
|
|
|
|
# A SimpleDelegator instance can take advantage of the fact that SimpleDelegator
|
|
|
|
# is a subclass of +Delegator+ to call <tt>super</tt> to have methods called on
|
|
|
|
# the object being delegated to.
|
|
|
|
#
|
|
|
|
# class SuperArray < SimpleDelegator
|
|
|
|
# def [](*args)
|
|
|
|
# super + 1
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# SuperArray.new([1])[0] #=> 2
|
|
|
|
#
|
2011-07-27 23:53:44 +04:00
|
|
|
# Here's a simple example that takes advantage of the fact that
|
|
|
|
# SimpleDelegator's delegation object can be changed at any time.
|
|
|
|
#
|
|
|
|
# class Stats
|
|
|
|
# def initialize
|
|
|
|
# @source = SimpleDelegator.new([])
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# def stats(records)
|
|
|
|
# @source.__setobj__(records)
|
|
|
|
#
|
|
|
|
# "Elements: #{@source.size}\n" +
|
|
|
|
# " Non-Nil: #{@source.compact.size}\n" +
|
|
|
|
# " Unique: #{@source.uniq.size}\n"
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# s = Stats.new
|
|
|
|
# puts s.stats(%w{James Edward Gray II})
|
|
|
|
# puts
|
|
|
|
# puts s.stats([1, 2, 3, nil, 4, 5, 1, 2])
|
|
|
|
#
|
|
|
|
# Prints:
|
|
|
|
#
|
|
|
|
# Elements: 4
|
|
|
|
# Non-Nil: 4
|
|
|
|
# Unique: 4
|
|
|
|
#
|
|
|
|
# Elements: 8
|
|
|
|
# Non-Nil: 7
|
|
|
|
# Unique: 6
|
2005-10-05 20:15:16 +04:00
|
|
|
#
|
2016-10-05 05:36:28 +03:00
|
|
|
class SimpleDelegator < Delegator
|
2005-10-05 20:15:16 +04:00
|
|
|
# Returns the current object method calls are being delegated to.
|
1998-01-16 15:19:09 +03:00
|
|
|
def __getobj__
|
2013-12-04 07:47:57 +04:00
|
|
|
unless defined?(@delegate_sd_obj)
|
|
|
|
return yield if block_given?
|
|
|
|
__raise__ ::ArgumentError, "not delegated"
|
|
|
|
end
|
2007-02-14 19:50:16 +03:00
|
|
|
@delegate_sd_obj
|
1998-01-16 15:19:09 +03:00
|
|
|
end
|
|
|
|
|
2005-10-05 20:15:16 +04:00
|
|
|
#
|
|
|
|
# Changes the delegate object to _obj_.
|
|
|
|
#
|
|
|
|
# It's important to note that this does *not* cause SimpleDelegator's methods
|
|
|
|
# to change. Because of this, you probably only want to change delegation
|
|
|
|
# to objects of the same type as the original delegate.
|
|
|
|
#
|
|
|
|
# Here's an example of changing the delegation object.
|
|
|
|
#
|
|
|
|
# names = SimpleDelegator.new(%w{James Edward Gray II})
|
|
|
|
# puts names[1] # => Edward
|
|
|
|
# names.__setobj__(%w{Gavin Sinclair})
|
|
|
|
# puts names[1] # => Sinclair
|
|
|
|
#
|
1999-01-20 07:59:39 +03:00
|
|
|
def __setobj__(obj)
|
2013-11-21 13:47:31 +04:00
|
|
|
__raise__ ::ArgumentError, "cannot delegate to self" if self.equal?(obj)
|
2007-02-14 19:50:16 +03:00
|
|
|
@delegate_sd_obj = obj
|
1999-01-20 07:59:39 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-06-09 02:46:49 +04:00
|
|
|
def Delegator.delegating_block(mid) # :nodoc:
|
2008-02-04 15:52:08 +03:00
|
|
|
lambda do |*args, &block|
|
2011-05-19 04:07:25 +04:00
|
|
|
target = self.__getobj__
|
2015-09-09 05:12:52 +03:00
|
|
|
target.__send__(mid, *args, &block)
|
2008-02-04 15:52:08 +03:00
|
|
|
end
|
|
|
|
end
|
1999-01-20 07:59:39 +03:00
|
|
|
|
2005-10-05 20:15:16 +04:00
|
|
|
#
|
|
|
|
# The primary interface to this library. Use to setup delegation when defining
|
|
|
|
# your class.
|
|
|
|
#
|
2011-07-27 23:53:44 +04:00
|
|
|
# class MyClass < DelegateClass(ClassToDelegateTo) # Step 1
|
2008-06-04 13:37:38 +04:00
|
|
|
# def initialize
|
2011-07-27 23:53:44 +04:00
|
|
|
# super(obj_of_ClassToDelegateTo) # Step 2
|
2005-10-05 20:15:16 +04:00
|
|
|
# end
|
|
|
|
# end
|
1999-01-20 07:59:39 +03:00
|
|
|
#
|
2011-07-27 23:53:44 +04:00
|
|
|
# Here's a sample of use from Tempfile which is really a File object with a
|
|
|
|
# few special rules about storage location and when the File should be
|
|
|
|
# deleted. That makes for an almost textbook perfect example of how to use
|
|
|
|
# delegation.
|
|
|
|
#
|
|
|
|
# class Tempfile < DelegateClass(File)
|
|
|
|
# # constant and class member data initialization...
|
|
|
|
#
|
|
|
|
# def initialize(basename, tmpdir=Dir::tmpdir)
|
|
|
|
# # build up file path/name in var tmpname...
|
|
|
|
#
|
|
|
|
# @tmpfile = File.open(tmpname, File::RDWR|File::CREAT|File::EXCL, 0600)
|
|
|
|
#
|
|
|
|
# # ...
|
|
|
|
#
|
|
|
|
# super(@tmpfile)
|
|
|
|
#
|
|
|
|
# # below this point, all methods of File are supported...
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# # ...
|
|
|
|
# end
|
|
|
|
#
|
1999-01-20 07:59:39 +03:00
|
|
|
def DelegateClass(superclass)
|
2008-10-15 18:12:15 +04:00
|
|
|
klass = Class.new(Delegator)
|
2010-05-30 20:43:52 +04:00
|
|
|
methods = superclass.instance_methods
|
2009-10-06 17:07:12 +04:00
|
|
|
methods -= ::Delegator.public_api
|
2016-10-05 05:36:28 +03:00
|
|
|
methods -= [:to_s, :inspect, :=~, :!~, :===]
|
2010-05-30 20:43:52 +04:00
|
|
|
klass.module_eval do
|
2016-10-05 05:36:28 +03:00
|
|
|
def __getobj__ # :nodoc:
|
2013-12-04 07:47:57 +04:00
|
|
|
unless defined?(@delegate_dc_obj)
|
|
|
|
return yield if block_given?
|
|
|
|
__raise__ ::ArgumentError, "not delegated"
|
|
|
|
end
|
2007-02-14 19:50:16 +03:00
|
|
|
@delegate_dc_obj
|
2004-05-07 12:44:24 +04:00
|
|
|
end
|
2005-10-05 20:15:16 +04:00
|
|
|
def __setobj__(obj) # :nodoc:
|
2013-11-21 13:47:31 +04:00
|
|
|
__raise__ ::ArgumentError, "cannot delegate to self" if self.equal?(obj)
|
2007-02-14 19:50:16 +03:00
|
|
|
@delegate_dc_obj = obj
|
2004-05-07 12:44:24 +04:00
|
|
|
end
|
2008-02-04 15:52:08 +03:00
|
|
|
methods.each do |method|
|
|
|
|
define_method(method, Delegator.delegating_block(method))
|
2001-11-13 11:14:27 +03:00
|
|
|
end
|
1999-01-20 07:59:39 +03:00
|
|
|
end
|
2010-05-30 20:43:52 +04:00
|
|
|
klass.define_singleton_method :public_instance_methods do |all=true|
|
2011-05-19 04:07:25 +04:00
|
|
|
super(all) - superclass.protected_instance_methods
|
2010-05-30 20:43:52 +04:00
|
|
|
end
|
|
|
|
klass.define_singleton_method :protected_instance_methods do |all=true|
|
2011-05-19 04:07:25 +04:00
|
|
|
super(all) | superclass.protected_instance_methods
|
2010-05-30 20:43:52 +04:00
|
|
|
end
|
2004-03-31 06:52:44 +04:00
|
|
|
return klass
|
2001-11-13 11:14:27 +03:00
|
|
|
end
|