NAME

alias - declare symbolic aliases for perl data

attr - auto-declare hash attributes for convenient access

const - define compile-time scalar constants

SYNOPSIS

use Alias qw(alias const attr);
alias TEN => $ten, Ten => \$ten, Ten => \&ten,
      Ten => \@ten, Ten => \%ten, TeN => \*ten;
{
   local @Ten;
   my $ten = [1..10];
   alias Ten => $ten;   # local @Ten
}

const pi => 3.14, ten => 10;

package Foo;
use Alias;
sub new { bless {foo => 1, bar => [2, 3]}, $_[0] }
sub method {
   my $s = attr shift;
   # $foo, @bar are now local aliases for $_[0]{foo}, @{$_[0]{bar}} etc.
}

DESCRIPTION

Provides general mechanisms for aliasing perl data for convenient access.

Functions

alias

Given a list of alias-symbol => value pairs, declares aliases in the caller's namespace. If the value supplied is a reference, the alias is created for the underlying value instead of the reference itself (since no one will use this package to alias references--they are automatically "aliased" on assignment). This allows the user to alias all of Perl's basic types.

If the value supplied is a scalar compile-time constant, the aliases become read-only. Any attempt to write to them will fail with a run time error.

Aliases can be dynamically scoped by pre-declaring the target symbol as a local. Using attr for is this purpose is more convenient, and recommended.

attr

Given a hash reference, aliases the values of the hash to the names that correspond to the keys. It always returns the supplied value. The aliases are local to the enclosing block. If any of the values are references, they are available as their dereferenced types. Thus the action is similar to saying:

alias %{$_[0]}

but, in addition, also localizes the aliases.

This can be used for convenient access to hash values and hash-based object attributes.

Note that this makes available the semantics of local subroutines and methods. That makes for some nifty possibilities. You could make truly private methods by putting anonymous subs within an object. These subs would be available within methods where you will use attr, and will not be visible to the outside world as normal methods. You could forbid recursion in methods by always putting an empty sub in the object hash with the same key as the method name. This would be useful where a method has to run code from other modules, but cannot be certain whether that module will call it back again.

const

This is simply a function alias for alias, described above. Provided on demand at use time, since it reads better for constant declarations. Note that hashes and arrays cannot be so constrained.

Exports

alias
attr

EXAMPLES

    use Alias qw(alias const attr);
    $ten = 10;
    alias TEN => $ten, Ten => \$ten, Ten => \&ten,
    	  Ten => \@ten, Ten => \%ten;
    alias TeN => \*ten;  # same as *TeN = *ten

    # aliasing basic types
    $ten = 20;   
    print "$TEN|$Ten|$ten\n";
    sub ten { print "10\n"; }
    @ten = (1..10);
    %ten = (a..j);
    &Ten;
    print @Ten, "|", %Ten, "\n";

    # dynamically scoped aliases
    @DYNAMIC = qw(m n o);
    {
       my $tmp = [ qw(a b c d) ];
       local @DYNAMIC;
       alias DYNAMIC => $tmp, PERM => $tmp;
       $DYNAMIC[2] = 'zzz';
       print @$tmp, "|", @DYNAMIC, "|", @PERM, "\n";
       @DYNAMIC = qw(p q r);
       print @$tmp, "|", @DYNAMIC, "|", @PERM, "\n";
    }
    print @DYNAMIC, "|", @PERM, "\n";

    # named closures
    my($lex) = 'abcd';
    $closure = sub { print $lex, "\n" };
    alias NAMEDCLOSURE => \&$closure;
    NAMEDCLOSURE();
    $lex = 'pqrs';
    NAMEDCLOSURE();

    # hash/object attributes
    package Foo;
    use Alias;
    sub new { 
      bless 
	{ foo => 1, 
          bar => [2,3], 
          buz => { a => 4},
          privmeth => sub { "private" },
          easymeth => sub { die "to recurse or to die, is the question" },
        }, $_[0]; 
    }

    sub easymeth {
      my $s = attr shift;    # localizes $foo, @bar, %buz etc with values
      eval { $s->easymeth }; # should fail
      print $@ if $@;
      print join '|', $foo, @bar, %buz, $s->privmeth, "\n";
    }

    $foo = 6;
    @bar = (7,8);
    %buz = (b => 9);
    Foo->new->easymeth;
    print join '|', $foo, @bar, %buz, "\n";

    # this should fail at run-time
    eval { Foo->new->privmeth };
    print $@ if $@;

    # and this too
    const _TEN_ => 10;
    $_TEN_ = 20;

NOTES

It is worth repeating that the aliases created by alias and const will be created in the caller's namespace. If that namespace happens to be localized, the aliases created will be local to that block. attr localizes the aliases for you.

Aliases cannot be lexical, since, by necessity, they live on the symbol table.

Lexicals can be aliased. Note that this provides a means of reversing the action of anonymous type generators \, [] and {}. This allows you to anonymously construct data or code and give it a symbol-table presence when you choose.

Any occurrence of :: or ' in names will be treated as package qualifiers, and the value will be aliased in that namespace.

Remember that aliases are very much like references, only you don't have to de-reference them as often. Which means you won't have to pound on the dollars so much.

You can make named closures with this scheme.

It is possible to alias packages, but that might be construed as abuse.

Using this module will dramatically reduce noise characters in object-oriented perl code.

BUGS

use strict; is not very usable, since we depend so much on the symbol table.

Tied variables cannot be aliased properly, yet.

VERSION

Version 2.1 6 April 1996

AUTHOR

Gurusamy Sarathy gsar@umich.edu

Copyright (c) 1995 Gurusamy Sarathy. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SEE ALSO

perl(1)