Class::Util - Class utility functions |
Class::Util - Class utility functions
Included in OOTools 2.21 distribution.
The latest versions changes are reported in the Changes file in this distribution.
The distribution includes:
Perl version >= 5.6.1
perl -MCPAN -e 'install OOTools'
perl Makefile.PL make make test make install
use Class::Util; use Class::Util qw(load gather blessed); # will require 'Any::Module' from a variable $module = 'Any::Module'; load $module; $_ = 'Any::Module' load; %defaults = gather { %$_ } '%default'; $class = blessed $object or die 'Not a blessed object'
This is a micro-weight module that (right now) exports only a few functions of general utility in Class operations.
This function will require the any_class and will croak on error. If no argument is passed it will use $_ as the argument. It is aware of the classes that have been loaded or declared in other loaded files, so it doesn't croak if the symbol table of the class is already defined, anyway you can check that by checking $@
.
It is useful if you need to load any module from a variable, since it avoids you to do:
eval "require $class"; if ( $@ ) { check_what_error and croak $@ };
The gather
function executes the <CODE> block for each defined $symbol
found in $classes
, setting $_ as the reference to the found symbol and returns the list of results. $symbol
must be a string starting with *&%@$
; $classes may be a reference to an ARRAY of classes, a class name, or a blessed object. If $classes is omitted it uses the classes of the caller; if it is a scalar it consider it as a class and uses the classes of that class.
This function is very useful if you want to implement data inheritance or if you want to implement overrunning, that is running the same method for each package that defines it (see for example Overrunning in the CGI::Builder manpage).
# data inheritance example package RemoteBase; our %default = ( a=>1, b=>2 ); package TheBase; our %default = (a=>10, c=>3); package main; use Class::Util qw(gather); our @ISA = qw(TheBase RemoteBase); our %default = ( d=>5 ); my %defaults = gather { %$_ } '%default' ; print Dumper \%defaults ;
# will print $VAR1 = { 'a' => 10, 'b' => 2, 'c' => 3, 'd' => 5 };
This function returns the list of all the classes that compose an object or a class (included the class itself). In scalar context it returns a reference to an ARRAY. If no arguments are passed it uses the caller package.
The returned classes are ordered from the more remote class to the class itself (included).
Note: The result of this function is the reversed @ISA path that perl uses in order to find methods; the only exception is the UNIVERSAL
class, which is always omitted: if you need it unshift it to the result.
This function returns the blessed class of $object
ONLY if the object is blessed. It returns the undef value if $object
is not blessed. If $object
is omitted it uses $_
.
If you need support or if you want just to send me some feedback or request, please use this link: http://perl.4pro.net/?Class::Util.
© 2004-2005 by Domizio Demichelis.
All Rights Reserved. This module is free software. It may be used, redistributed and/or modified under the same terms as perl itself.
Class::Util - Class utility functions |