/usr/share/perl5/aliased.pm is in libaliased-perl 0.31-1.
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 | package aliased;
our $VERSION = '0.31';
$VERSION = eval $VERSION;
require Exporter;
@ISA = qw(Exporter);
@EXPORT = qw(alias prefix);
use strict;
sub _croak {
require Carp;
Carp::croak(@_);
}
sub import {
my ( $class, $package, $alias, @import ) = @_;
if ( @_ <= 1 ) {
$class->export_to_level(1);
return;
}
my $callpack = caller(0);
_load_alias( $package, $callpack, @import );
_make_alias( $package, $callpack, $alias );
}
sub _get_alias {
my $package = shift;
$package =~ s/.*(?:::|')//;
return $package;
}
sub _make_alias {
my ( $package, $callpack, $alias ) = @_;
$alias ||= _get_alias($package);
my $destination = $alias =~ /::/
? $alias
: "$callpack\::$alias";
no strict 'refs';
*{ $destination } = sub () { $package };
}
sub _load_alias {
my ( $package, $callpack, @import ) = @_;
# We don't localize $SIG{__DIE__} here because we need to be careful about
# restoring its value if there is a failure. Very, very tricky.
my $sigdie = $SIG{__DIE__};
{
my $code =
@import == 0
? "package $callpack; use $package;"
: "package $callpack; use $package (\@import)";
eval $code;
if ( my $error = $@ ) {
$SIG{__DIE__} = $sigdie;
_croak($error);
}
$sigdie = $SIG{__DIE__}
if defined $SIG{__DIE__};
}
# Make sure a global $SIG{__DIE__} makes it out of the localization.
$SIG{__DIE__} = $sigdie if defined $sigdie;
return $package;
}
sub alias {
my ( $package, @import ) = @_;
my $callpack = scalar caller(0);
return _load_alias( $package, $callpack, @import );
}
sub prefix {
my ($class) = @_;
return sub {
my ($name) = @_;
my $callpack = caller(0);
if ( not @_ ) {
return _load_alias( $class, $callpack );
}
elsif ( @_ == 1 && defined $name ) {
return _load_alias( "${class}::$name", $callpack );
}
else {
_croak("Too many arguments to prefix('$class')");
}
};
}
1;
__END__
=head1 NAME
aliased - Use shorter versions of class names.
=head1 VERSION
0.31
=head1 SYNOPSIS
# Class name interface
use aliased 'My::Company::Namespace::Customer';
my $cust = Customer->new;
use aliased 'My::Company::Namespace::Preferred::Customer' => 'Preferred';
my $pref = Preferred->new;
# Variable interface
use aliased;
my $Customer = alias "My::Other::Namespace::Customer";
my $cust = $Customer->new;
my $Preferred = alias "My::Other::Namespace::Preferred::Customer";
my $pref = $Preferred->new;
=head1 DESCRIPTION
C<aliased> is simple in concept but is a rather handy module. It loads the
class you specify and exports into your namespace a subroutine that returns
the class name. You can explicitly alias the class to another name or, if you
prefer, you can do so implicitly. In the latter case, the name of the
subroutine is the last part of the class name. Thus, it does something
similar to the following:
#use aliased 'Some::Annoyingly::Long::Module::Name::Customer';
use Some::Annoyingly::Long::Module::Name::Customer;
sub Customer {
return 'Some::Annoyingly::Long::Module::Name::Customer';
}
my $cust = Customer->new;
This module is useful if you prefer a shorter name for a class. It's also
handy if a class has been renamed.
(Some may object to the term "aliasing" because we're not aliasing one
namespace to another, but it's a handy term. Just keep in mind that this is
done with a subroutine and not with typeglobs and weird namespace munging.)
Note that this is B<only> for C<use>ing OO modules. You cannot use this to
load procedural modules. See the L<Why OO Only?|Why OO Only?> section. Also,
don't let the version number fool you. This code is ridiculously simple and
is just fine for most use.
=head2 Implicit Aliasing
The most common use of this module is:
use aliased 'Some::Module::name';
C<aliased> will allow you to reference the class by the last part of the
class name. Thus, C<Really::Long::Name> becomes C<Name>. It does this by
exporting a subroutine into your namespace with the same name as the aliased
name. This subroutine returns the original class name.
For example:
use aliased "Acme::Company::Customer";
my $cust = Customer->find($id);
Note that any class method can be called on the shorter version of the class
name, not just the constructor.
=head2 Explicit Aliasing
Sometimes two class names can cause a conflict (they both end with C<Customer>
for example), or you already have a subroutine with the same name as the
aliased name. In that case, you can make an explicit alias by stating the
name you wish to alias to:
use aliased 'Original::Module::Name' => 'NewName';
Here's how we use C<aliased> to avoid conflicts:
use aliased "Really::Long::Name";
use aliased "Another::Really::Long::Name" => "Aname";
my $name = Name->new;
my $aname = Aname->new;
You can even alias to a different package:
use aliased "Another::Really::Long::Name" => "Another::Name";
my $aname = Another::Name->new;
Messing around with different namespaces is a really bad idea and you probably
don't want to do this. However, it might prove handy if the module you are
using has been renamed. If the interface has not changed, this allows you to
use the new module by only changing one line of code.
use aliased "New::Module::Name" => "Old::Module::Name";
my $thing = Old::Module::Name->new;
=head2 Import Lists
Sometimes, even with an OO module, you need to specify extra arguments when
using the module. When this happens, simply use L<Explicit Aliasing> followed
by the import list:
Snippet 1:
use Some::Module::Name qw/foo bar/;
my $o = Some::Module::Name->some_class_method;
Snippet 2 (equivalent to snippet 1):
use aliased 'Some::Module::Name' => 'Name', qw/foo bar/;
my $o = Name->some_class_method;
B<Note>: remember, you cannot use import lists with L<Implicit Aliasing>. As
a result, you may simply prefer to only use L<Explicit Aliasing> as a matter
of style.
=head2 alias()
This function is only exported if you specify C<use aliased> with no import
list.
use aliased;
my $alias = alias($class);
my $alias = alias($class, @imports);
alias() is an alternative to C<use aliased ...> which uses less magic and
avoids some of the ambiguities.
Like C<use aliased> it C<use>s the $class (pass in @imports, if given) but
instead of providing an C<Alias> constant it simply returns a scalar set to
the $class name.
my $thing = alias("Some::Thing::With::A::Long::Name");
# Just like Some::Thing::With::A::Long::Name->method
$thing->method;
The use of a scalar instead of a constant avoids any possible ambiguity
when aliasing two similar names:
# No ambiguity despite the fact that they both end with "Name"
my $thing = alias("Some::Thing::With::A::Long::Name");
my $other = alias("Some::Other::Thing::With::A::Long::Name");
and there is no magic constant exported into your namespace.
The only caveat is loading of the $class happens at run time. If $class
exports anything you might want to ensure it is loaded at compile time with:
my $thing;
BEGIN { $thing = alias("Some::Thing"); }
However, since OO classes rarely export this should not be necessary.
=head2 prefix() (experimental)
This function is only exported if you specify C<use aliased> with no import
list.
use aliased;
Sometimes you find you have a ton of packages in the same top-level namespace
and you want to alias them, but only use them on demand. For example:
# instead of:
MailVerwaltung::Client::Exception::REST::Response->throw()
my $error = prefix('MailVerwaltung::Client::Exception');
$error->('REST::Response')->throw(); # same as above
$error->()->throw; # same as MailVerwaltung::Client::Exception->throw
=head2 Why OO Only?
Some people have asked why this code only support object-oriented modules
(OO). If I were to support normal subroutines, I would have to allow the
following syntax:
use aliased 'Some::Really::Long::Module::Name';
my $data = Name::data();
That causes a serious problem. The only (reasonable) way it can be done is to
handle the aliasing via typeglobs. Thus, instead of a subroutine that
provides the class name, we alias one package to another (as the
L<namespace|namespace> module does.) However, we really don't want to simply
alias one package to another and wipe out namespaces willy-nilly. By merely
exporting a single subroutine to a namespace, we minimize the issue.
Fortunately, this doesn't seem to be that much of a problem. Non-OO modules
generally support exporting of the functions you need and this eliminates the
need for a module such as this.
=head1 EXPORT
This modules exports a subroutine with the same name as the "aliased" name.
=head1 BUGS
There are no known bugs in this module, but feel free to email me reports.
=head1 SEE ALSO
The L<namespace> module.
=head1 THANKS
Many thanks to Rentrak, Inc. (http://www.rentrak.com/) for graciously allowing
me to replicate the functionality of some of their internal code.
=head1 AUTHOR
Curtis Poe, C<< ovid [at] cpan [dot] org >>
=head1 COPYRIGHT AND LICENSE
Copyright (C) 2005 by Curtis "Ovid" Poe
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.8.5 or,
at your option, any later version of Perl 5 you may have available.
=cut
|