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
|
1999-01-20 07:59:39 +03:00
|
|
|
#
|
2005-10-05 20:15:16 +04:00
|
|
|
# == Introduction
|
1999-01-20 07:59:39 +03: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
|
|
|
|
# yourself needing this control, have a look at _forwardable_, also in the
|
|
|
|
# standard library. It may suit your needs better.)
|
|
|
|
#
|
|
|
|
# == Notes
|
|
|
|
#
|
|
|
|
# Be advised, RDoc will not detect delegated methods.
|
|
|
|
#
|
|
|
|
# <b>delegate.rb provides full-class delegation via the
|
|
|
|
# DelegateClass() method. For single-method delegation via
|
|
|
|
# def_delegator(), see forwardable.rb.</b>
|
|
|
|
#
|
|
|
|
# == Examples
|
|
|
|
#
|
|
|
|
# === SimpleDelegator
|
|
|
|
#
|
|
|
|
# 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])
|
|
|
|
#
|
|
|
|
# <i>Prints:</i>
|
|
|
|
#
|
|
|
|
# Elements: 4
|
|
|
|
# Non-Nil: 4
|
|
|
|
# Unique: 4
|
|
|
|
#
|
|
|
|
# Elements: 8
|
|
|
|
# Non-Nil: 7
|
|
|
|
# Unique: 6
|
|
|
|
#
|
|
|
|
# === DelegateClass()
|
|
|
|
#
|
|
|
|
# Here's a sample of use from <i>tempfile.rb</i>.
|
|
|
|
#
|
|
|
|
# A _Tempfile_ object is really just a _File_ object with a few special rules
|
|
|
|
# about storage location and/or 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
|
|
|
|
#
|
|
|
|
# === Delegator
|
|
|
|
#
|
|
|
|
# SimpleDelegator's implementation serves as a nice example here.
|
|
|
|
#
|
|
|
|
# class SimpleDelegator < Delegator
|
|
|
|
# def initialize(obj)
|
|
|
|
# super # pass obj to Delegator constructor, required
|
2007-02-14 19:50:16 +03:00
|
|
|
# @delegate_sd_obj = obj # store obj for future use
|
2005-10-05 20:15:16 +04:00
|
|
|
# end
|
|
|
|
#
|
|
|
|
# def __getobj__
|
2007-02-14 19:50:16 +03:00
|
|
|
# @delegate_sd_obj # return object we are delegating to, required
|
2005-10-05 20:15:16 +04:00
|
|
|
# end
|
|
|
|
#
|
|
|
|
# def __setobj__(obj)
|
2007-02-14 19:50:16 +03:00
|
|
|
# @delegate_sd_obj = obj # change delegation object, a feature we're providing
|
2005-10-05 20:15:16 +04:00
|
|
|
# end
|
|
|
|
#
|
|
|
|
# # ...
|
|
|
|
# end
|
1998-01-16 15:19:09 +03:00
|
|
|
|
2005-10-05 20:15:16 +04:00
|
|
|
#
|
|
|
|
# Delegator is an abstract class used to build delegator pattern objects from
|
|
|
|
# subclasses. Subclasses should redefine \_\_getobj\_\_. For a concrete
|
|
|
|
# implementation, see SimpleDelegator.
|
|
|
|
#
|
2005-05-12 06:24:41 +04:00
|
|
|
class Delegator
|
2008-02-04 08:01:00 +03:00
|
|
|
preserved = [
|
|
|
|
:__id__, :object_id, :__send__, :public_send, :respond_to?, :send,
|
|
|
|
:instance_eval, :instance_exec, :extend,
|
|
|
|
]
|
2005-08-12 11:17:36 +04:00
|
|
|
instance_methods.each do |m|
|
|
|
|
next if preserved.include?(m)
|
|
|
|
undef_method m
|
|
|
|
end
|
1998-01-16 15:19:09 +03:00
|
|
|
|
2005-12-29 15:05:16 +03:00
|
|
|
module MethodDelegation
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
2005-12-29 15:05:16 +03:00
|
|
|
# Handles the magic of delegation through \_\_getobj\_\_.
|
|
|
|
def method_missing(m, *args, &block)
|
|
|
|
begin
|
|
|
|
target = self.__getobj__
|
|
|
|
unless target.respond_to?(m)
|
|
|
|
super(m, *args, &block)
|
|
|
|
else
|
2007-11-04 23:36:20 +03:00
|
|
|
target.__send__(m, *args, &block)
|
2005-12-29 15:05:16 +03:00
|
|
|
end
|
|
|
|
rescue Exception
|
2008-02-04 15:52:08 +03:00
|
|
|
$@.delete_if{|s| %r"\A#{__FILE__}:\d+:in `method_missing'\z"o =~ s}
|
2005-12-29 15:05:16 +03:00
|
|
|
::Kernel::raise
|
2005-08-12 11:17:36 +04:00
|
|
|
end
|
2005-06-30 10:20:09 +04:00
|
|
|
end
|
|
|
|
|
2005-12-29 15:05:16 +03:00
|
|
|
#
|
|
|
|
# Checks for a method provided by this the delegate object by fowarding the
|
|
|
|
# call through \_\_getobj\_\_.
|
|
|
|
#
|
|
|
|
def respond_to?(m)
|
|
|
|
return true if super
|
|
|
|
return self.__getobj__.respond_to?(m)
|
|
|
|
end
|
2005-06-30 19:22:00 +04:00
|
|
|
|
2005-12-29 15:05:16 +03:00
|
|
|
#
|
|
|
|
# Returns true if two objects are considered same.
|
|
|
|
#
|
|
|
|
def ==(obj)
|
|
|
|
return true if obj.equal?(self)
|
|
|
|
self.__getobj__ == obj
|
|
|
|
end
|
1998-01-16 15:19:09 +03:00
|
|
|
|
2005-12-29 15:05:16 +03:00
|
|
|
#
|
|
|
|
# Returns true only if two objects are identical.
|
|
|
|
#
|
|
|
|
def equal?(obj)
|
|
|
|
self.object_id == obj.object_id
|
|
|
|
end
|
2005-08-12 11:17:36 +04:00
|
|
|
|
2005-12-29 15:05:16 +03:00
|
|
|
#
|
|
|
|
# This method must be overridden by subclasses and should return the object
|
|
|
|
# method calls are being delegated to.
|
|
|
|
#
|
|
|
|
def __getobj__
|
|
|
|
raise NotImplementedError, "need to define `__getobj__'"
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# This method must be overridden by subclasses and change the object delegate
|
|
|
|
# to _obj_.
|
|
|
|
#
|
|
|
|
def __setobj__(obj)
|
|
|
|
raise NotImplementedError, "need to define `__setobj__'"
|
|
|
|
end
|
|
|
|
|
|
|
|
# Serialization support for the object returned by \_\_getobj\_\_.
|
|
|
|
def marshal_dump
|
|
|
|
__getobj__
|
|
|
|
end
|
|
|
|
# Reinitializes delegation from a serialized object.
|
|
|
|
def marshal_load(obj)
|
|
|
|
__setobj__(obj)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Clone support for the object returned by \_\_getobj\_\_.
|
|
|
|
def clone
|
|
|
|
new = super
|
|
|
|
new.__setobj__(__getobj__.clone)
|
|
|
|
new
|
|
|
|
end
|
|
|
|
# Duplication support for the object returned by \_\_getobj\_\_.
|
|
|
|
def dup
|
|
|
|
new = super
|
|
|
|
new.__setobj__(__getobj__.dup)
|
|
|
|
new
|
|
|
|
end
|
2003-08-04 16:45:03 +04:00
|
|
|
end
|
2005-12-29 15:05:16 +03:00
|
|
|
include MethodDelegation
|
1998-01-16 15:19:09 +03:00
|
|
|
end
|
|
|
|
|
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
|
|
|
|
# \_\_setobj\_\_ .
|
|
|
|
#
|
1999-01-20 07:59:39 +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__
|
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)
|
2005-06-12 20:56:06 +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
|
|
|
|
|
2005-10-05 20:15:16 +04:00
|
|
|
# :stopdoc:
|
2008-02-04 15:52:08 +03:00
|
|
|
def Delegator.delegating_block(mid)
|
|
|
|
lambda do |*args, &block|
|
|
|
|
begin
|
|
|
|
@delegate_dc_obj.__send__(mid, *args, &block)
|
|
|
|
rescue
|
|
|
|
re = /\A#{Regexp.quote(__FILE__)}:#{__LINE__-2}:/o
|
|
|
|
$!.backtrace.delete_if {|t| re =~ t}
|
|
|
|
raise
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2005-10-05 20:15:16 +04:00
|
|
|
# :startdoc:
|
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.
|
|
|
|
#
|
|
|
|
# class MyClass < DelegateClass( ClassToDelegateTo ) # Step 1
|
|
|
|
# def initiaize
|
|
|
|
# super(obj_of_ClassToDelegateTo) # Step 2
|
|
|
|
# end
|
|
|
|
# end
|
1999-01-20 07:59:39 +03:00
|
|
|
#
|
|
|
|
def DelegateClass(superclass)
|
|
|
|
klass = Class.new
|
2002-11-14 09:18:59 +03:00
|
|
|
methods = superclass.public_instance_methods(true)
|
2005-08-12 11:17:36 +04:00
|
|
|
methods -= [
|
2007-12-10 08:34:50 +03:00
|
|
|
:__id__, :object_id, :__send__, :public_send, :respond_to?, :send,
|
2006-09-20 08:18:25 +04:00
|
|
|
:==, :equal?, :initialize, :method_missing, :__getobj__, :__setobj__,
|
2008-01-04 19:51:16 +03:00
|
|
|
:clone, :dup, :marshal_dump, :marshal_load, :instance_eval, :instance_exec,
|
2008-02-04 08:01:00 +03:00
|
|
|
:extend,
|
2005-08-12 11:17:36 +04:00
|
|
|
]
|
2004-05-07 12:44:24 +04:00
|
|
|
klass.module_eval {
|
2005-12-29 15:05:16 +03:00
|
|
|
include Delegator::MethodDelegation
|
2005-10-05 20:15:16 +04:00
|
|
|
def __getobj__ # :nodoc:
|
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:
|
2005-06-12 20:56:06 +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
|
|
|
klass.module_eval do
|
|
|
|
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
|
2004-03-31 06:52:44 +04:00
|
|
|
return klass
|
2001-11-13 11:14:27 +03:00
|
|
|
end
|
1999-01-20 07:59:39 +03:00
|
|
|
|
2005-10-05 20:15:16 +04:00
|
|
|
# :enddoc:
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
if __FILE__ == $0
|
|
|
|
class ExtArray<DelegateClass(Array)
|
|
|
|
def initialize()
|
|
|
|
super([])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
ary = ExtArray.new
|
2002-10-02 19:32:45 +04:00
|
|
|
p ary.class
|
1999-01-20 07:59:39 +03:00
|
|
|
ary.push 25
|
|
|
|
p ary
|
2005-12-29 15:05:16 +03:00
|
|
|
ary.push 42
|
|
|
|
ary.each {|x| p x}
|
1999-01-20 07:59:39 +03:00
|
|
|
|
|
|
|
foo = Object.new
|
|
|
|
def foo.test
|
|
|
|
25
|
|
|
|
end
|
2005-12-29 15:05:16 +03:00
|
|
|
def foo.iter
|
|
|
|
yield self
|
|
|
|
end
|
1999-01-20 07:59:39 +03:00
|
|
|
def foo.error
|
|
|
|
raise 'this is OK'
|
|
|
|
end
|
|
|
|
foo2 = SimpleDelegator.new(foo)
|
2005-12-29 15:05:16 +03:00
|
|
|
p foo2
|
|
|
|
foo2.instance_eval{print "foo\n"}
|
1999-01-20 07:59:39 +03:00
|
|
|
p foo.test == foo2.test # => true
|
2005-12-29 15:05:16 +03:00
|
|
|
p foo2.iter{[55,true]} # => true
|
1999-01-20 07:59:39 +03:00
|
|
|
foo2.error # raise error!
|
1998-01-16 15:19:09 +03:00
|
|
|
end
|