mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
51e6d9061d
strings. [ruby-dev:22695] * lib/weakref.rb (WeakRef::initialize): set up @__id before calling "super". * lib/delegate.rb (Delegator::initialize): preserve singleton_method_added method [ruby-dev:22685] * lib/delegate.rb (Delegator::initialize): use Kernel::raise instead of mere raise. [ruby-dev:22681] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5565 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
139 lines
2.9 KiB
Ruby
139 lines
2.9 KiB
Ruby
# Delegation class that delegates even methods defined in super class,
|
|
# which can not be covered with normal method_missing hack.
|
|
#
|
|
# Delegator is the abstract delegation class. Need to redefine
|
|
# `__getobj__' method in the subclass. SimpleDelegator is the
|
|
# concrete subclass for simple delegation.
|
|
#
|
|
# Usage:
|
|
# foo = Object.new
|
|
# foo2 = SimpleDelegator.new(foo)
|
|
# foo.hash == foo2.hash # => false
|
|
#
|
|
# Foo = DelegateClass(Array)
|
|
#
|
|
# class ExtArray<DelegateClass(Array)
|
|
# ...
|
|
# end
|
|
|
|
class Delegator
|
|
|
|
def initialize(obj)
|
|
preserved = ::Kernel.public_instance_methods(false)
|
|
preserved -= ["to_s","to_a","inspect","==","=~","==="]
|
|
for t in self.class.ancestors
|
|
preserved |= t.public_instance_methods(false)
|
|
preserved |= t.private_instance_methods(false)
|
|
preserved |= t.protected_instance_methods(false)
|
|
break if t == Delegator
|
|
end
|
|
preserved << "singleton_method_added"
|
|
for method in obj.methods
|
|
next if preserved.include? method
|
|
begin
|
|
eval <<-EOS
|
|
def self.#{method}(*args, &block)
|
|
begin
|
|
__getobj__.__send__(:#{method}, *args, &block)
|
|
rescue Exception
|
|
$@.delete_if{|s| /:in `__getobj__'$/ =~ s} #`
|
|
$@.delete_if{|s| /^\\(eval\\):/ =~ s}
|
|
::Kernel::raise
|
|
end
|
|
end
|
|
EOS
|
|
rescue SyntaxError
|
|
raise NameError, "invalid identifier %s" % method, caller(4)
|
|
end
|
|
end
|
|
end
|
|
alias initialize_methods initialize
|
|
|
|
def __getobj__
|
|
raise NotImplementedError, "need to define `__getobj__'"
|
|
end
|
|
|
|
def marshal_dump
|
|
__getobj__
|
|
end
|
|
def marshal_load(obj)
|
|
initialize_methods(obj)
|
|
end
|
|
end
|
|
|
|
class SimpleDelegator<Delegator
|
|
|
|
def initialize(obj)
|
|
super
|
|
@_sd_obj = obj
|
|
end
|
|
|
|
def __getobj__
|
|
@_sd_obj
|
|
end
|
|
|
|
def __setobj__(obj)
|
|
@_sd_obj = obj
|
|
end
|
|
end
|
|
|
|
# backward compatibility ^_^;;;
|
|
Delegater = Delegator
|
|
SimpleDelegater = SimpleDelegator
|
|
|
|
#
|
|
def DelegateClass(superclass)
|
|
klass = Class.new
|
|
methods = superclass.public_instance_methods(true)
|
|
methods -= ::Kernel.public_instance_methods(false)
|
|
methods |= ["to_s","to_a","inspect","==","=~","==="]
|
|
klass.module_eval <<-EOS
|
|
def initialize(obj)
|
|
@_dc_obj = obj
|
|
end
|
|
EOS
|
|
for method in methods
|
|
begin
|
|
klass.module_eval <<-EOS
|
|
def #{method}(*args, &block)
|
|
begin
|
|
@_dc_obj.__send__(:#{method}, *args, &block)
|
|
rescue
|
|
$@[0,2] = nil
|
|
raise
|
|
end
|
|
end
|
|
EOS
|
|
rescue SyntaxError
|
|
raise NameError, "invalid identifier %s" % method, caller(3)
|
|
end
|
|
end
|
|
def __getobj__
|
|
@_dc_obj
|
|
end
|
|
return klass;
|
|
end
|
|
|
|
if __FILE__ == $0
|
|
class ExtArray<DelegateClass(Array)
|
|
def initialize()
|
|
super([])
|
|
end
|
|
end
|
|
|
|
ary = ExtArray.new
|
|
p ary.class
|
|
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!
|
|
end
|