]> git.vpit.fr Git - perl/modules/Variable-Magic.git/blob - lib/Variable/Magic.pm
11a26a8511362af310831fe5f72ec10008860e3e
[perl/modules/Variable-Magic.git] / lib / Variable / Magic.pm
1 package Variable::Magic;
2
3 use 5.007003;
4
5 use strict;
6 use warnings;
7
8 use Carp qw/croak/;
9
10 =head1 NAME
11
12 Variable::Magic - Associate user-defined magic to variables from Perl.
13
14 =head1 VERSION
15
16 Version 0.07_02
17
18 =cut
19
20 use vars qw/$VERSION/;
21
22 BEGIN {
23  $VERSION = '0.07_02';
24 }
25
26 =head1 SYNOPSIS
27
28     use Variable::Magic qw/wizard cast dispell/;
29
30     my $wiz = wizard set => sub { print STDERR "now set to ${$_[0]}!\n" };
31     my $a = 1;
32     cast $a, $wiz;
33     $a = 2;          # "now set to 2!"
34     dispell $a, $wiz;
35     $a = 3           # (nothing)
36
37 =head1 DESCRIPTION
38
39 Magic is Perl way of enhancing objects. This mechanism let the user add extra data to any variable and overload syntaxical operations (such as access, assignation or destruction) that can be applied to it. With this module, you can add your own magic to any variable without the pain of the C API.
40
41 The operations that can be overloaded are :
42
43 =over 4
44
45 =item C<get>
46
47 This magic is invoked when the variable is evaluated (does not include array/hash subscripts and slices).
48
49 =item C<set>
50
51 This one is triggered each time the value of the variable changes (includes array/hash subscripts and slices).
52
53 =item C<len>
54
55 This magic is a little special : it is called when the 'size' or the 'length' of the variable has to be known by Perl. Typically, it's the magic involved when an array is evaluated in scalar context, but also on array assignation and loops (C<for>, C<map> or C<grep>). The callback has then to return the length as an integer.
56
57 =item C<clear>
58
59 This magic is invoked when the variable is reset, such as when an array is emptied. Please note that this is different from undefining the variable, even though the magic is called when the clearing is a result of the undefine (e.g. for an array, but actually a bug prevent it to work before perl 5.9.5 - see the L<history|/PERL MAGIC HISTORY>).
60
61 =item C<free>
62
63 This last one can be considered as an object destructor. It happens when the variable goes out of scope (with the exception of global scope), but not when it is undefined.
64
65 =back
66
67 To prevent any clash between different magics defined with this module, an unique numerical signature is attached to each kind of magic (i.e. each set of callbacks for magic operations).
68
69 =head1 PERL MAGIC HISTORY
70
71 The places where magic is invoked have changed a bit through perl history. Here's a little list of the most recent ones.
72
73 =head2 B<5.9.3>
74
75 =over 4
76
77 =item 'len' magic is no longer called when pushing an element into a magic array.
78
79 =back
80
81 =head2 B<5.9.5>
82
83 =over 4
84
85 =item 'clear' magic wasn't invoked when undefining an array. The bug is fixed as of this version.
86
87 =back
88
89 =head1 CONSTANTS
90
91 =head2 C<SIG_MIN>
92
93 The minimum integer used as a signature for user-defined magic.
94
95 =head2 C<SIG_MAX>
96
97 The maximum integer used as a signature for user-defined magic.
98
99 =head2 C<SIG_NBR>
100
101     SIG_NBR = SIG_MAX - SIG_MIN + 1
102
103 =head2 C<MGf_COPY>
104
105 True iff the 'copy' magic is available.
106
107 =head2 C<MGf_DUP>
108
109 True iff the 'dup' magic is available.
110
111 =head2 C<MGf_LOCAL>
112
113 True iff the 'local' magic is available.
114
115 =head1 FUNCTIONS
116
117 =cut
118
119 use XSLoader;
120
121 BEGIN {
122  XSLoader::load __PACKAGE__, $VERSION;
123 }
124
125 =head2 C<wizard>
126
127     wizard sig => .., data => ..., get => .., set => .., len => .., clear => .., free => ..
128
129 This function creates a 'wizard', an opaque type that holds the magic information. It takes a list of keys / values as argument, whose keys can be :
130
131 =over 4
132
133 =item C<'sig'>
134
135 The numerical signature. If not specified or undefined, a random signature is generated. If the signature matches an already defined magic, then the existant magic object is returned.
136
137 =item C<'data'>
138
139 A code reference to a private data constructor. It is called each time this magic is cast on a variable, and the scalar returned is used as private data storage for it. C<$_[0]> is a reference to the magic object and C<@_[1 .. @_-1]> are all extra arguments that were passed to L</cast>.
140
141 =item C<'get'>, C<'set'>, C<'len'>, C<'clear'> and C<'free'>
142
143 Code references to corresponding magic callbacks. You don't have to specify all of them : the magic associated with undefined entries simply won't be hooked. In those callbacks, C<$_[0]> is a reference to the magic object and C<$_[1]> is the private data (or C<undef> when no private data constructor was supplied). In the special case of C<len> magic and when the variable is an array, C<$_[2]> contains its normal length.
144
145 =back
146
147     # A simple scalar tracer
148     my $wiz = wizard get  => sub { print STDERR "got ${$_[0]}\n" },
149                      set  => sub { print STDERR "set to ${$_[0]}\n" },
150                      free => sub { print STDERR "${$_[0]} was deleted\n" }
151
152 =cut
153
154 sub wizard {
155  croak 'Wrong number of arguments for wizard()' if @_ % 2;
156  my %opts = @_;
157  my $sig = $opts{sig};
158  return _wizard($sig, map { $opts{$_} } qw/data get set len clear free copy dup local fetch store exists delete/);
159 }
160
161 =head2 C<gensig>
162
163 With this tool, you can manually generate random magic signature between SIG_MIN and SIG_MAX inclusive. That's the way L</wizard> creates them when no signature is supplied.
164
165     # Generate a signature
166     my $sig = gensig;
167
168 =head2 C<getsig>
169
170     getsig $wiz
171
172 This accessor returns the magic signature of this wizard.
173
174     # Get $wiz signature
175     my $sig = getsig $wiz;
176
177 =head2 C<cast>
178
179     cast [$@%&*]var, [$wiz|$sig], ...
180
181 This function associates C<$wiz> magic to the variable supplied, without overwriting any other kind of magic. You can also supply the numeric signature C<$sig> instead of C<$wiz>. It returns true on success or when C<$wiz> magic is already present, C<0> on error, and C<undef> when no magic corresponds to the given signature (in case C<$sig> was supplied). All extra arguments specified after C<$wiz> are passed to the private data constructor.
182
183     # Casts $wiz onto $x. If $wiz isn't a signature, undef can't be returned.
184     my $x;
185     die 'error' unless cast $x, $wiz;
186
187 =head2 C<getdata>
188
189     getdata [$@%&*]var, [$wiz|$sig]
190
191 This accessor fetches the private data associated with the magic C<$wiz> (or the signature C<$sig>) in the variable. C<undef> is returned when no such magic or data is found, or when C<$sig> does not represent a current valid magic object.
192
193     # Get the attached data.
194     my $data = getdata $x, $wiz or die 'no such magic or magic has no data';
195
196 =head2 C<dispell>
197
198     dispell [$@%&*]variable, [$wiz|$sig]
199
200 The exact opposite of L</cast> : it dissociates C<$wiz> magic from the variable. You can also pass the magic signature C<$sig> as the second argument. True is returned on success, C<0> on error or when no magic represented by C<$wiz> could be found in the variable, and C<undef> when no magic corresponds to the given signature (in case C<$sig> was supplied).
201
202     # Dispell now. If $wiz isn't a signature, undef can't be returned.
203     die 'no such magic or error' unless dispell $x, $wiz;
204
205 =head1 EXPORT
206
207 The functions L</wizard>, L</gensig>, L</getsig>, L</cast>, L</getdata> and L</dispell> are only exported on request. All of them are exported by the tags C<':funcs'> and C<':all'>.
208
209 The constants L</SIG_MIN>, L</SIG_MAX> and L</SIG_NBR> are also only exported on request. They are all exported by the tags C<':consts'> and C<':all'>.
210
211 =cut
212
213 use base qw/Exporter/;
214
215 our @EXPORT         = ();
216 our %EXPORT_TAGS    = (
217  'funcs' =>  [ qw/wizard gensig getsig cast getdata dispell/ ],
218  'consts' => [ qw/SIG_MIN SIG_MAX SIG_NBR MGf_COPY MGf_DUP MGf_LOCAL/ ]
219 );
220 our @EXPORT_OK      = map { @$_ } values %EXPORT_TAGS;
221 $EXPORT_TAGS{'all'} = \@EXPORT_OK;
222
223 =head1 DEPENDENCIES
224
225 L<perl> 5.7.3.
226
227 L<Carp> (standard since perl 5), L<XSLoader> (standard since perl 5.006).
228
229 Glob tests need L<Symbol> (standard since perl 5.002).
230
231 =head1 SEE ALSO
232
233 L<perlguts> and L<perlapi> for internal information about magic.
234
235 =head1 AUTHOR
236
237 Vincent Pit, C<< <perl at profvince.com> >>
238
239 You can contact me by mail or on #perl @ FreeNode (Prof_Vince).
240
241 =head1 BUGS
242
243 Please report any bugs or feature requests to
244 C<bug-variable-magic at rt.cpan.org>, or through the web interface at
245 L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Variable-Magic>.
246 I will be notified, and then you'll automatically be notified of progress on
247 your bug as I make changes.
248
249 =head1 SUPPORT
250
251 You can find documentation for this module with the perldoc command.
252
253     perldoc Variable::Magic
254
255 =head1 COPYRIGHT & LICENSE
256
257 Copyright 2007 Vincent Pit, all rights reserved.
258
259 This program is free software; you can redistribute it and/or modify it
260 under the same terms as Perl itself.
261
262 =cut
263
264 1; # End of Variable::Magic