1998-01-16 15:19:09 +03:00
|
|
|
# Delegation class that delegates even methods defined in super class,
|
|
|
|
# which can not be covered with normal method_missing hack.
|
|
|
|
#
|
1999-01-20 07:59:39 +03:00
|
|
|
# Delegator is the abstract delegation class. Need to redefine
|
|
|
|
# `__getobj__' method in the subclass. SimpleDelegator is the
|
1998-01-16 15:19:09 +03:00
|
|
|
# concrete subclass for simple delegation.
|
|
|
|
#
|
|
|
|
# Usage:
|
|
|
|
# foo = Object.new
|
1999-01-20 07:59:39 +03:00
|
|
|
# foo2 = SimpleDelegator.new(foo)
|
|
|
|
# foo.hash == foo2.hash # => true
|
|
|
|
#
|
|
|
|
# Foo = DelegateClass(Array)
|
|
|
|
#
|
|
|
|
# class ExtArray<DelegateClass(Array)
|
|
|
|
# ...
|
|
|
|
# end
|
1998-01-16 15:19:09 +03:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
class Delegator
|
1998-01-16 15:19:09 +03:00
|
|
|
|
|
|
|
def initialize(obj)
|
1999-01-20 07:59:39 +03:00
|
|
|
preserved = ::Kernel.instance_methods
|
|
|
|
preserved -= ["to_s","to_a","inspect","==","=~","==="]
|
1998-01-16 15:19:09 +03:00
|
|
|
for t in self.type.ancestors
|
|
|
|
preserved |= t.instance_methods
|
1999-01-20 07:59:39 +03:00
|
|
|
preserved |= t.private_instance_methods
|
|
|
|
preserved |= t.protected_instance_methods
|
|
|
|
break if t == Delegator
|
1998-01-16 15:19:09 +03:00
|
|
|
end
|
|
|
|
for method in obj.methods
|
|
|
|
next if preserved.include? method
|
1999-01-20 07:59:39 +03:00
|
|
|
eval <<-EOS
|
|
|
|
def self.#{method}(*args, &block)
|
|
|
|
begin
|
|
|
|
__getobj__.__send__(:#{method}, *args, &block)
|
|
|
|
rescue Exception
|
1999-08-13 09:45:20 +04:00
|
|
|
$@.delete_if{|s| /:in `__getobj__'$/ =~ s} #`
|
|
|
|
$@.delete_if{|s| /^\\(eval\\):/ =~ s}
|
1999-01-20 07:59:39 +03:00
|
|
|
raise
|
|
|
|
end
|
|
|
|
end
|
|
|
|
EOS
|
1998-01-16 15:19:09 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def __getobj__
|
|
|
|
raise NotImplementError, "need to define `__getobj__'"
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
class SimpleDelegator<Delegator
|
1998-01-16 15:19:09 +03:00
|
|
|
|
|
|
|
def initialize(obj)
|
|
|
|
super
|
|
|
|
@obj = obj
|
|
|
|
end
|
|
|
|
|
|
|
|
def __getobj__
|
|
|
|
@obj
|
|
|
|
end
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
def __setobj__(obj)
|
|
|
|
@obj = obj
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# backward compatibility ^_^;;;
|
|
|
|
Delegater = Delegator
|
|
|
|
SimpleDelegater = SimpleDelegator
|
|
|
|
|
|
|
|
#
|
|
|
|
def DelegateClass(superclass)
|
|
|
|
klass = Class.new
|
|
|
|
methods = superclass.instance_methods
|
|
|
|
methods -= ::Kernel.instance_methods
|
|
|
|
methods |= ["to_s","to_a","inspect","==","=~","==="]
|
|
|
|
klass.module_eval <<-EOS
|
|
|
|
def initialize(obj)
|
|
|
|
@obj = obj
|
|
|
|
end
|
|
|
|
EOS
|
|
|
|
for method in methods
|
|
|
|
klass.module_eval <<-EOS
|
|
|
|
def #{method}(*args, &block)
|
|
|
|
begin
|
|
|
|
@obj.__send__(:#{method}, *args, &block)
|
|
|
|
rescue
|
|
|
|
$@[0,2] = nil
|
|
|
|
raise
|
|
|
|
end
|
|
|
|
end
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
return klass;
|
|
|
|
end
|
|
|
|
|
|
|
|
if __FILE__ == $0
|
|
|
|
class ExtArray<DelegateClass(Array)
|
|
|
|
def initialize()
|
|
|
|
super([])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
ary = ExtArray.new
|
|
|
|
p ary.type
|
|
|
|
ary.push 25
|
|
|
|
p ary
|
|
|
|
|
|
|
|
foo = Object.new
|
|
|
|
def foo.test
|
|
|
|
25
|
|
|
|
end
|
|
|
|
def foo.error
|
|
|
|
raise 'this is OK'
|
|
|
|
end
|
|
|
|
foo2 = SimpleDelegator.new(foo)
|
|
|
|
p foo.test == foo2.test # => true
|
|
|
|
foo2.error # raise error!
|
1998-01-16 15:19:09 +03:00
|
|
|
end
|