1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/delegate.rb: Move file-level documentation to the appropriate

classes.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32713 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
drbrain 2011-07-27 19:53:44 +00:00
parent 9f3914aba6
commit cfb37052cb
2 changed files with 87 additions and 101 deletions

View file

@ -1,3 +1,8 @@
Thu Jul 28 04:53:31 2011 Eric Hodel <drbrain@segment7.net>
* lib/delegate.rb: Move file-level documentation to the appropriate
classes.
Thu Jul 28 02:15:04 2011 Nobuyoshi Nakada <nobu@ruby-lang.org> Thu Jul 28 02:15:04 2011 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ext/dl/cfunc.c (dlcfunc_mark), ext/dl/cptr.c (dlptr_mark): * ext/dl/cfunc.c (dlcfunc_mark), ext/dl/cptr.c (dlptr_mark):

View file

@ -1,9 +1,8 @@
# = delegate -- Support for the Delegation Pattern # = delegate -- Support for the Delegation Pattern
# #
# Documentation by James Edward Gray II and Gavin Sinclair # Documentation by James Edward Gray II and Gavin Sinclair
#
# == Introduction ##
#
# This library provides three different ways to delegate method calls to an # This library provides three different ways to delegate method calls to an
# object. The easiest to use is SimpleDelegator. Pass an object to the # object. The easiest to use is SimpleDelegator. Pass an object to the
# constructor and all methods supported by the object will be delegated. This # constructor and all methods supported by the object will be delegated. This
@ -15,82 +14,11 @@
# #
# Finally, if you need full control over the delegation scheme, you can inherit # 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 # from the abstract class Delegator and customize as needed. (If you find
# yourself needing this control, have a look at _forwardable_, also in the # yourself needing this control, have a look at Forwardable which is also in
# standard library. It may suit your needs better.) # the standard library. It may suit your needs better.)
# #
# == Notes # SimpleDelegator's implementation serves as a nice example if the use of
# # Delegator:
# 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 # class SimpleDelegator < Delegator
# def initialize(obj) # def initialize(obj)
@ -103,16 +31,14 @@
# end # end
# #
# def __setobj__(obj) # def __setobj__(obj)
# @delegate_sd_obj = obj # change delegation object, a feature we're providing # @delegate_sd_obj = obj # change delegation object,
# # a feature we're providing
# end
# end # end
# #
# # ... # == Notes
# end
# #
# Delegator is an abstract class used to build delegator pattern objects from # Be advised, RDoc will not detect delegated methods.
# subclasses. Subclasses should redefine \_\_getobj\_\_. For a concrete
# implementation, see SimpleDelegator.
# #
class Delegator < BasicObject class Delegator < BasicObject
kernel = ::Kernel.dup kernel = ::Kernel.dup
@ -295,11 +221,43 @@ class Delegator < BasicObject
end end
end end
# ##
# A concrete implementation of Delegator, this class provides the means to # A concrete implementation of Delegator, this class provides the means to
# delegate all supported method calls to the object passed into the constructor # 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 # and even to change the object being delegated to at a later time with
# \_\_setobj\_\_ . # #__setobj__.
#
# 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
# #
class SimpleDelegator<Delegator class SimpleDelegator<Delegator
# Returns the current object method calls are being delegated to. # Returns the current object method calls are being delegated to.
@ -344,12 +302,35 @@ end
# The primary interface to this library. Use to setup delegation when defining # The primary interface to this library. Use to setup delegation when defining
# your class. # your class.
# #
# class MyClass < DelegateClass( ClassToDelegateTo ) # Step 1 # class MyClass < DelegateClass(ClassToDelegateTo) # Step 1
# def initialize # def initialize
# super(obj_of_ClassToDelegateTo) # Step 2 # super(obj_of_ClassToDelegateTo) # Step 2
# end # end
# end # end
# #
# 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
#
def DelegateClass(superclass) def DelegateClass(superclass)
klass = Class.new(Delegator) klass = Class.new(Delegator)
methods = superclass.instance_methods methods = superclass.instance_methods