package Variable::Alias; { use 5.6.0; use strict; use warnings; use Exporter; use Switch 'Perl6'; use Carp 'croak'; our @ISA=qw(Exporter); our @EXPORT_OK=qw(alias alias_s alias_a alias_h alias_r); our $VERSION=0.01; sub export_fail { #This can only be called because of an # insufficient version for alias(); die sprintf("Perl version %vd doesn't support features needed for alias()", $^V); } sub alias_r { my($src, $dest)=@_; croak "Alias must be of the same type as the original" unless ref $dest eq ref $src; given(ref $dest) { when('SCALAR') { tie($$dest, 'Variable::Alias::Scalar', $src); } when('ARRAY') { tie(@$dest, 'Variable::Alias::Array', $src); } when('HASH') { tie(%$dest, 'Variable::Alias::Hash', $src); } else { croak "Can't alias type ", ref $src; } } } sub alias_s(\$\$) { goto &alias_r; } sub alias_a(\@\@) { goto &alias_r; } sub alias_h(\%\%) { goto &alias_r; } if($^V ge 5.8.0) { eval q{ sub alias(\[$@%]\[$@%]) { goto &alias_r; } } } else { our @EXPORT_FAIL=qw(alias); } } package Variable::Alias::Scalar; { use strict; use warnings; use Tie::Scalar; our @ISA=qw(Tie::StdScalar); sub TIESCALAR { return bless $_[1], $_[0]; } } package Variable::Alias::Array; { use strict; use warnings; use Tie::Array; our @ISA=qw(Tie::StdArray); sub TIEARRAY { return bless $_[1], $_[0]; } } package Variable::Alias::Hash; { use strict; use warnings; use Tie::Hash; our @ISA=qw(Tie::StdHash); sub TIEHASH { return bless $_[1], $_[0]; } } =head1 TITLE Variable::Alias - Alias any variable to any other variable =head1 SYNOPSIS use Variable::Alias 'alias'; my $src; my $a; our $b; my @c; our @d; alias $src => $a; alias $a => $b; alias $b => $c[0]; alias @c => @d; $src='src'; # All the other variables now have the string # 'src' in the appropriate places. =head1 DESCRIPTION There are various ways to alias one variable to another in Perl. The most popular is by assigning to typeglobs. This is quite efective, but only works with globals. Another method is to use a module like C or C, but as their names suggest, these only work with lexicals. There's no way to alias an element of an array or hash. C changes all that. It uses a tie to provide One True Way to alias a variable. =head2 Interface C may export any or all of five functions. If you've used C, the interface is virtually identical. =over 4 =item C(VAR, VAR) C takes two variables of any type (scalar, array or hash) and aliases them. Make sure they have the sigil you want on the front. This function is only available in Perl 5.8.0 and later, because the prototype tricks it uses were first implemented in that version. =item C(SCALAR, SCALAR) C takes two scalars and aliases them. =item C(ARRAY, ARRAY) C takes two arrays and aliases them. Note that this is actual I, not array I, although you can alias references in elements, like so: alias_a(@short, @{$some->sequence->{of}->calls->{that's}[2]{long}}); =item C(HASH, HASH) C takes two hashes and aliases them. =item C(REF, REF) C takes two references and aliases them. The referents must be of the same type. =back =head2 Breaking aliases If at some point you want to break the alias, just say C. (The variable will not retain the value it had while aliased.) =head1 DIAGNOSTICS =over 4 =item C You tried to alias a variable of one type to a variable of another (e.g. C). You can't I that. =item C You tried to alias a subroutine or a glob or something. This module only handles scalars, arrays, and hashes; everything else you might want to alias lives in a typeglob anyway. =item C This mouthful is generated by Perl; it means that you used e.g. a scalar with C. Make sure you're using the right C variant for the type you're aliasing, and that C can actually handle the type in question. =back =head1 SEE ALSO L, C, and C for information on other aliasing methods. L for information on tying. =head1 BUGS This'll be slow, because tied variables always are. Blech. If your aliasing needs are fairly simple, consider just using C or typeglobs--they'll be faster. If you find any other bugs, drop me a note at . =head1 AUTHOR Brent Dax =head1 COPYRIGHT Copyright (C) 2002 Brent Dax . All Rights Reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.