/usr/share/perl5/Class/Handle.pm is in libclass-handle-perl 1.07-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 | package Class::Handle;
=pod
=head1 NAME
Class::Handle - Create objects that are handles to Classes
=head1 SYNOPSIS
# Create a class handle
use Class::Handle;
my $class = Class::Handle->new( 'Foo::Class' );
my $name = $class->name;
# UNIVERSAL type methods
$class->VERSION();
$class->isa( 'Foo:Bar' );
$class->can( 'blah' );
# Class::Inspector type methods
$class->installed();
$class->loaded();
$class->filename();
$class->resolved_filename();
$class->functions();
$class->function_refs();
$class->function_exists( 'function' );
$class->methods( 'public', 'full' );
$class->subclasses();
# Class::ISA type methods
$class->super_path();
$class->self_and_super_path();
$class->full_super_path();
# Loading and unloading
$class->load();
=head1 DESCRIPTION
Class related functionality in Perl is broken up into a variety of different
modules. Class::Handle attempts to provide a convenient object wrapper around
the various different types of functions that can be performed on a class.
Please note that this is an initial non-production quality release, and should
be used as such. Functionality and API are subject to change without notice.
Currently, Class::Handle provies what is effectively a combined API from
C<UNIVERSAL>, C<Class::ISA> and C<Class::Inspector> for obtaining information
about a Class, and some additional task methods, such as C<load> to common
tasks relating to classes.
=head1 UNIVERSAL API
To ensure we maintain compliance with other classes that rely on
methods provided by C<UNIVERSAL>, Class::Handle acts in the normal way when
something like C<<Class::Handle->VERSION>> is called. That is, it returns the
version of Class::Handle itself. When C<UNIVERSAL> methods are called on
an instantiation the method is changed to act on the class we have a handle
to. For example, the two following statements are equivalent.
# Getting the version directly
print Foo::Bar->VERSION;
# Getting the version via Class::Handle
my $class = Class::Handle->new( 'Foo::Bar' );
print $class->VERSION;
This also applies to the C<isa> and C<can> methods.
=head1 METHODS
=cut
use 5.005;
use strict;
use UNIVERSAL ();
use Class::ISA ();
use Class::Inspector ();
# Set the version
use vars qw{$VERSION};
BEGIN {
$VERSION = '1.07';
}
#####################################################################
# Constructor
=pod
=head2 new $class
The C<new> constructor will create a new handle to a class or unknown
existance or status. That is, it won't check that the class actually exists
at this time. It WILL however check to make sure that your class name is legal.
Returns a new Class::Handle object on success
Returns undef if the class name is illegal
=cut
sub new {
my $class = ref $_[0] ? ref shift : shift;
# Get and check the class name
my $name = shift or return undef;
$name = 'main' if $name eq '::';
$name =~ s/^::/main::/;
return undef unless $name =~ /^[a-z]\w*((?:'|::)\w+)*$/io;
# Create and return the object
bless { name => $name }, $class;
}
=pod
=head2 name
The c<name> method returns the name of the class as original specified in
the constructor.
=cut
sub name { $_[0]->{name} }
#####################################################################
# UNIVERSAL Methods
=pod
=head2 VERSION
Find the version for the class. Does not check that the class is loaded ( at
this time ).
Returns the version on success, C<undef> if the class does not defined a
C<$VERSION> or the class is not loaded.
=cut
sub VERSION {
my $either = shift;
# In the special case that someone wants to know OUR version,
# let them find it out as normal. Otherwise, return the VERSION
# for the class we point to.
ref $either
? UNIVERSAL::VERSION( $either->{name} )
: UNIVERSAL::VERSION( $either );
}
=pod
=head2 isa $class
Checks to see if the class is a subclass of another class. Does not check that
the class is loaded ( at this time ).
Returns true/false as for C<UNIVERSAL::isa>
=cut
sub isa {
my $either = shift;
my $isa = shift or return undef;
# In the special case that someone wants to know an isa for
# OUR version, let them find it out as normal. Otherwise, return
# the isa for the class we point to.
ref $either
? UNIVERSAL::isa( $either->{name}, $isa )
: UNIVERSAL::isa( $either, $isa );
}
=pod
=head2 can $method
Checks to see if a particular method is defined for the class.
Returns a C<CODE> ref to the function is the method is available,
or false if the class does not have that method available.
=cut
sub can {
my $either = shift;
my $can = shift or return undef;
# In the special case that someone wants to know a "cab" for
# OUR versoin, let them find it out as normal. Otherwise, return
# the can for the class we point to.
ref $either
? UNIVERSAL::can( $either->{name}, $can )
: UNIVERSAL::can( $either, $can );
}
#####################################################################
# Class::Inspector methods
=pod
=head2 installed
Checks to see if a particular class is installed on the machine, or at least
that the class is available to perl. In this case, "class" really means
"module". This methods cannot detect a class that is not a module. ( Has its
own file ).
Returns true if the class is installed and available, or false otherwise.
=cut
sub installed {
my $self = ref $_[0] ? shift : return undef;
Class::Inspector->installed( $self->{name} );
}
=pod
=head2 loaded
Checks to see if a class is loaded. In this case, "class" does NOT mean
"module". The C<loaded> method will return true for classes that do not have
their own file.
For example, if a module C<Foo> contains the classes C<Foo>, C<Foo::Bar> and
C<Foo::Buffy>, the C<loaded> method will return true for all of the classes.
Returns true if the class is loaded, or false otherwise.
=cut
sub loaded {
my $self = ref $_[0] ? shift : return undef;
Class::Inspector->loaded( $self->{name} );
}
=pod
=head2 filename
Returns the base filename for a class. For example, for the class
C<Foo::Bar>, C<loaded> would return C<"Foo/Bar.pm">.
The C<filename> method is platform neutral, it should always return the
filename in the correct format for your platform.
=cut
sub filename {
my $self = ref $_[0] ? shift : return undef;
Class::Inspector->filename( $self->{name} );
}
=pod
=head2 resolved_filename @extra_paths
The C<resolved_filename> will attempt to find the real file on your system
that will be used when a class is loaded. If additional paths are provided
as argument, they will be tried first, before the contents of the @INC array.
If a file cannot be found to match the class, returns false.
=cut
sub resolved_filename {
my $self = ref $_[0] ? shift : return undef;
Class::Inspector->resolved_filename( $self->{name} );
}
=pod
=head2 loaded_filename
If the class is loaded, returns the name of the file that it was originally
loaded from.
Returns false if the class is not loaded, or did not have its own file.
=cut
sub loaded_filename {
my $self = ref $_[0] ? shift : return undef;
Class::Inspector->loaded_filename( $self->{name} );
}
=pod
=head2 functions
Returns a list of the names of all the functions in the classes immediate
namespace. Note that this is not the METHODS of the class, just the functions.
Returns a reference to an array of the function names on success.
Returns undef on error or if the class is not loaded.
=cut
sub functions {
my $self = ref $_[0] ? shift : return undef;
Class::Inspector->functions( $self->{name} );
}
=pod
=head2 function_refs
Returns a list of references to all the functions in the classes immediate
namespace.
Returns a reference to an array of CODE refs of the functions on
success, or C<undef> on error or if the class is not loaded.
=cut
sub function_refs {
my $self = ref $_[0] ? shift : return undef;
Class::Inspector->function_refs( $self->{name} );
}
=pod
=head2 function_exists $function
Checks to see if the function exists in the class. Note that this is as a
function, not as a method. To see if a method exists for a class, use the
C<can> method in UNIVERSAL, and hence to every other class.
Returns true if the function exists, false if the function does not exist,
or C<undef> on error, or if the class is not loaded.
=cut
sub function_exists {
my $self = ref $_[0] ? shift : return undef;
Class::Inspector->function_exists( $self->{name}, @_ );
}
=pod
=head2 methods @options
Attempts to find the methods available to the class. This includes everything
in the classes super path up to, but NOT including, UNIVERSAL. Returns a
reference to an array of the names of all the available methods on success.
Returns undef if the class is not loaded.
Any provided options are passed through, and alter the response in the same
way as for the options to C<<Class::Inspector->methods()>>, that is, 'public',
'private', 'full' and 'expanded', and combinations thereof.
=cut
sub methods {
my $self = ref $_[0] ? shift : return undef;
Class::Inspector->methods( $self->{name}, @_ );
}
=pod
=head2 subclasses
The C<subclasses> method will search then entire namespace (and thus
B<all> currently loaded classes) to find all of the subclasses of the
class handle.
The actual test will be done by calling C<isa> on the class as a static
method. (i.e. C<<My::Class->isa($class)>>.
Returns a reference to a list of the names of the loaded classes that match
the class provided, or false is none match, or C<undef> if the class name
provided is invalid.
=cut
sub subclasses {
my $self = ref $_[0] ? shift : return undef;
Class::Inspector->subclasses( $self->{name}, @_ );
}
#####################################################################
# Class::ISA Methods
=pod
=head2 super_path
The C<super_path> method is a straight pass through to the
C<Class::ISA::super_path> function. Returns an ordered list of
class names, with no duplicates. The list does NOT include the class itself,
or the L<UNIVERSAL> class.
=cut
sub super_path {
my $self = ref $_[0] ? shift : return undef;
Class::ISA::super_path( $self->{name} );
}
=pod
=head2 self_and_super_path
As above, but includes ourself at the beginning of the path. Directly
passes through to L<Class::ISA>.
=cut
sub self_and_super_path {
my $self = ref $_[0] ? shift : return undef;
Class::ISA::self_and_super_path( $self->{name} );
}
=pod
=head2 full_super_path
The C<full_super_path> method is an additional method not in C<Class::ISA>.
It returns as for C<super_path>, except that it also contains BOTH the
class itself, and C<UNIVERSAL>. This full list is more technically accurate,
but less commonly used, and as such isn't available from L<Class::ISA>
itself.
=cut
sub full_super_path {
my $self = ref $_[0] ? shift : return ();
Class::ISA::self_and_super_path( $self->{name} ), 'UNIVERSAL';
}
#####################################################################
# Task Methods
# These methods are specific to Class::Handle and provide simpler
# interfaces to common tasks.
# Run-time load a class, as if it were a C<use>, including import.
# Roughly equivalent to require $name; $name->import;
sub load {
my $self = shift or return undef;
# Shortcut if the class is already loaded
return 1 if Class::Inspector->loaded( $self->{name} );
# Get the resolved file name
my $filename = $self->resolved_filename() or return undef;
# Load the class
require $filename or return undef;
# Do we need to call an import method?
my $import = $self->can( 'import' ) or return 1;
# Go to the import
goto &{$import};
}
1;
=pod
=head1 BUGS
No known bugs. Additional feature requests are being taken.
=head1 SUPPORT
Bugs should be reported via the CPAN bug tracking system
L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Class-Handle>
For other inquiries, contact the author
=head1 AUTHOR
Adam Kennedy E<lt>adamk@cpan.orgE<gt>, L<http://ali.as/>
=head1 SEE ALSO
C<UNIVERSAL>, C<Class::ISA>, and C<Class::Inspector>, which provide
most of the functionality for this class.
=head1 COPYRIGHT
Copyright (c) 2002 - 2006 Adam Kennedy.
This program is free software; you can redistribute
it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the
LICENSE file included with this module.
=cut
|