Initial bulk commit for "Git on MSys"
[msysgit/historical-msysgit.git] / lib / perl5 / 5.6.1 / Tie / Scalar.pm
blob89ad03eddc1543a5a23c28ae39345dd7376e2e22
1 package Tie::Scalar;
3 =head1 NAME
5 Tie::Scalar, Tie::StdScalar - base class definitions for tied scalars
7 =head1 SYNOPSIS
9 package NewScalar;
10 require Tie::Scalar;
12 @ISA = (Tie::Scalar);
14 sub FETCH { ... } # Provide a needed method
15 sub TIESCALAR { ... } # Overrides inherited method
18 package NewStdScalar;
19 require Tie::Scalar;
21 @ISA = (Tie::StdScalar);
23 # All methods provided by default, so define only what needs be overridden
24 sub FETCH { ... }
27 package main;
29 tie $new_scalar, 'NewScalar';
30 tie $new_std_scalar, 'NewStdScalar';
32 =head1 DESCRIPTION
34 This module provides some skeletal methods for scalar-tying classes. See
35 L<perltie> for a list of the functions required in tying a scalar to a
36 package. The basic B<Tie::Scalar> package provides a C<new> method, as well
37 as methods C<TIESCALAR>, C<FETCH> and C<STORE>. The B<Tie::StdScalar>
38 package provides all the methods specified in L<perltie>. It inherits from
39 B<Tie::Scalar> and causes scalars tied to it to behave exactly like the
40 built-in scalars, allowing for selective overloading of methods. The C<new>
41 method is provided as a means of grandfathering, for classes that forget to
42 provide their own C<TIESCALAR> method.
44 For developers wishing to write their own tied-scalar classes, the methods
45 are summarized below. The L<perltie> section not only documents these, but
46 has sample code as well:
48 =over
50 =item TIESCALAR classname, LIST
52 The method invoked by the command C<tie $scalar, classname>. Associates a new
53 scalar instance with the specified class. C<LIST> would represent additional
54 arguments (along the lines of L<AnyDBM_File> and compatriots) needed to
55 complete the association.
57 =item FETCH this
59 Retrieve the value of the tied scalar referenced by I<this>.
61 =item STORE this, value
63 Store data I<value> in the tied scalar referenced by I<this>.
65 =item DESTROY this
67 Free the storage associated with the tied scalar referenced by I<this>.
68 This is rarely needed, as Perl manages its memory quite well. But the
69 option exists, should a class wish to perform specific actions upon the
70 destruction of an instance.
72 =back
74 =head1 MORE INFORMATION
76 The L<perltie> section uses a good example of tying scalars by associating
77 process IDs with priority.
79 =cut
81 use Carp;
82 use warnings::register;
84 sub new {
85 my $pkg = shift;
86 $pkg->TIESCALAR(@_);
89 # "Grandfather" the new, a la Tie::Hash
91 sub TIESCALAR {
92 my $pkg = shift;
93 if (defined &{"{$pkg}::new"}) {
94 warnings::warnif("WARNING: calling ${pkg}->new since ${pkg}->TIESCALAR is missing");
95 $pkg->new(@_);
97 else {
98 croak "$pkg doesn't define a TIESCALAR method";
102 sub FETCH {
103 my $pkg = ref $_[0];
104 croak "$pkg doesn't define a FETCH method";
107 sub STORE {
108 my $pkg = ref $_[0];
109 croak "$pkg doesn't define a STORE method";
113 # The Tie::StdScalar package provides scalars that behave exactly like
114 # Perl's built-in scalars. Good base to inherit from, if you're only going to
115 # tweak a small bit.
117 package Tie::StdScalar;
118 @ISA = (Tie::Scalar);
120 sub TIESCALAR {
121 my $class = shift;
122 my $instance = shift || undef;
123 return bless \$instance => $class;
126 sub FETCH {
127 return ${$_[0]};
130 sub STORE {
131 ${$_[0]} = $_[1];
134 sub DESTROY {
135 undef ${$_[0]};