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
|
2017-06-24 06:35:29 +03:00
|
|
|
[:to_s, :inspect, :=~, :!~, :===, :<=>, :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|
|
2019-05-10 06:21:25 +03:00
|
|
|
if /\Ablock_given\?\z|\Aiterator\?\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
|
2019-06-01 18:34:02 +03:00
|
|
|
# Use #__raise__ if your Delegator does not have a object to delegate the
|
|
|
|
# #raise method call.
|
2014-05-30 22:52:30 +04:00
|
|
|
#
|
|
|
|
|
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
|
|
|
#
|
Add Module#ruby2_keywords for passing keywords through regular argument splats
This approach uses a flag bit on the final hash object in the regular splat,
as opposed to a previous approach that used a VM frame flag. The hash flag
approach is less invasive, and handles some cases that the VM frame flag
approach does not, such as saving the argument splat array and splatting it
later:
ruby2_keywords def foo(*args)
@args = args
bar
end
def bar
baz(*@args)
end
def baz(*args, **kw)
[args, kw]
end
foo(a:1) #=> [[], {a: 1}]
foo({a: 1}, **{}) #=> [[{a: 1}], {}]
foo({a: 1}) #=> 2.7: [[], {a: 1}] # and warning
foo({a: 1}) #=> 3.0: [[{a: 1}], {}]
It doesn't handle some cases that the VM frame flag handles, such as when
the final hash object is replaced using Hash#merge, but those cases are
probably less common and are unlikely to properly support keyword
argument separation.
Use ruby2_keywords to handle argument delegation in the delegate library.
2019-09-21 19:03:36 +03:00
|
|
|
ruby2_keywords 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
|
|
|
|
2019-08-25 10:04:14 +03:00
|
|
|
if r && target_respond_to?(target, m, false)
|
2015-09-09 05:12:52 +03:00
|
|
|
target.__send__(m, *args, &block)
|
2016-08-30 20:29:07 +03:00
|
|
|
elsif ::Kernel.method_defined?(m) || ::Kernel.private_method_defined?(m)
|
2019-08-25 10:04:14 +03:00
|
|
|
::Kernel.instance_method(m).bind_call(self, *args, &block)
|
2015-09-09 05:12:52 +03:00
|
|
|
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}
|
2019-08-25 10:04:14 +03:00
|
|
|
r &&= target_respond_to?(target, m, include_private)
|
|
|
|
if r && include_private && !target_respond_to?(target, m, false)
|
2017-12-12 14:56:25 +03:00
|
|
|
warn "delegator does not forward private method \##{m}", uplevel: 3
|
2009-10-17 08:22:58 +04:00
|
|
|
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
|
|
|
|
2020-02-03 14:29:37 +03:00
|
|
|
KERNEL_RESPOND_TO = ::Kernel.instance_method(:respond_to?)
|
|
|
|
private_constant :KERNEL_RESPOND_TO
|
|
|
|
|
2019-08-25 10:04:14 +03:00
|
|
|
# Handle BasicObject instances
|
|
|
|
private def target_respond_to?(target, m, include_private)
|
|
|
|
case target
|
|
|
|
when Object
|
|
|
|
target.respond_to?(m, include_private)
|
|
|
|
else
|
2020-02-03 14:29:37 +03:00
|
|
|
if KERNEL_RESPOND_TO.bind_call(target, :respond_to?)
|
|
|
|
target.respond_to?(m, include_private)
|
|
|
|
else
|
|
|
|
KERNEL_RESPOND_TO.bind_call(target, m, include_private)
|
|
|
|
end
|
2019-08-25 10:04:14 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
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
|
|
|
|
|
2017-06-24 06:35:29 +03:00
|
|
|
#
|
|
|
|
# Returns true if two objects are considered of equal value.
|
|
|
|
#
|
|
|
|
def eql?(obj)
|
|
|
|
return true if obj.equal?(self)
|
|
|
|
obj.eql?(__getobj__)
|
|
|
|
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
|
|
|
|
2019-08-26 07:11:46 +03:00
|
|
|
def initialize_clone(obj, freeze: true) # :nodoc:
|
|
|
|
self.__setobj__(obj.__getobj__.clone(freeze: freeze))
|
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: freeze
|
|
|
|
# Freeze both the object returned by \_\_getobj\_\_ and self.
|
|
|
|
#
|
2019-09-25 06:59:12 +03:00
|
|
|
def freeze
|
|
|
|
__getobj__.freeze
|
|
|
|
super()
|
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)
|
2020-01-21 05:47:04 +03:00
|
|
|
end.ruby2_keywords
|
2008-02-04 15:52:08 +03:00
|
|
|
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
|
|
|
#
|
2019-05-12 02:32:00 +03:00
|
|
|
# or:
|
|
|
|
#
|
|
|
|
# MyClass = DelegateClass(ClassToDelegateTo) do # Step 1
|
|
|
|
# def initialize
|
|
|
|
# super(obj_of_ClassToDelegateTo) # Step 2
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
#
|
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
|
|
|
|
#
|
2019-05-12 02:32:00 +03:00
|
|
|
def DelegateClass(superclass, &block)
|
2008-10-15 18:12:15 +04:00
|
|
|
klass = Class.new(Delegator)
|
2019-05-24 07:10:40 +03:00
|
|
|
ignores = [*::Delegator.public_api, :to_s, :inspect, :=~, :!~, :===]
|
|
|
|
protected_instance_methods = superclass.protected_instance_methods
|
|
|
|
protected_instance_methods -= ignores
|
|
|
|
public_instance_methods = superclass.public_instance_methods
|
|
|
|
public_instance_methods -= ignores
|
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
|
2019-05-24 07:10:40 +03:00
|
|
|
protected_instance_methods.each do |method|
|
|
|
|
define_method(method, Delegator.delegating_block(method))
|
|
|
|
protected method
|
|
|
|
end
|
|
|
|
public_instance_methods.each do |method|
|
2008-02-04 15:52:08 +03:00
|
|
|
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|
|
2019-05-24 07:10:40 +03:00
|
|
|
super(all) | superclass.public_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
|
2019-05-12 02:32:00 +03:00
|
|
|
klass.module_eval(&block) if block
|
2004-03-31 06:52:44 +04:00
|
|
|
return klass
|
2001-11-13 11:14:27 +03:00
|
|
|
end
|