The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Tie::OneOff - create tied variables without defining a separate package

SYNOPSIS

    require Tie::OneOff;
    
    tie my %REV, 'Tie::OneOff' => {
        FETCH => sub { reverse shift },
    };

    print "$REV{olleH}\n"; # Hello

    sub make_counter {
        my $step = shift;
        my $i = 0;
        tie my $counter, 'Tie::OneOff' => {
            BASE => \$i, # Implies: STORE => sub { $i = shift }
            FETCH => sub { $i += $step },
        };
        \$counter;
    }

    my $c1 = make_counter(1);
    my $c2 = make_counter(2);
    $$c2 = 10;
    print "$$c1 $$c2 $$c2 $$c2 $$c1 $$c1\n"; # 1 12 14 16 2 3
 

DESCRIPTION

The Perl tie mechanism ties a Perl variable to a Perl object. This means that, conventionally, for each distinct set of tied variable semantics one needs to create a new package. Sometimes it would seem more natural to associate a dispatch table hash directly with the variable and pretend as if the intermediate object did not exist. This is what Tie::OneOff does.

It is important to note that in this model there is no object to hold the instance data for the tied variable. The callbacks in the dispatch table are called not as methods but as simple subroutines. If there is to be any instance information for a variable tied using Tie::OneOff it must be in lexical variables that are referenced by the callback closures.

Tie::OneOff does not itself provide any default callbacks. This can make defining a full featured hash interface rather tedious. To simplify matters the element BASE in the dispatch table can be used to specify a "base object" whose methods provide the default callbacks. If a reference to an unblessed Perl variable is specified as the BASE then the variable is blessed into the appropriate Tie::StdXXXX package. In this case the unblessed variable used as the base must, of course, be of the same type as the variable that is being tied.

In make_counter() in the synopsis above, the variable $i gets blessed into Tie::StdScalar. Since there is no explict STORE in the dispatch table, an attempt to store into a counter is implemented by calling (\$i)->STORE(@_) which in turn is resolved as Tie::StdScalar::STORE(\$i,@_) which in turn is equivalent to $i=shift.

SEE ALSO

perltie, Tie::Scalar, Tie::Hash, Tie::Array.