]> git.vpit.fr Git - perl/modules/Variable-Magic.git/blob - README
Importing Variable-Magic-0.16.tar.gz
[perl/modules/Variable-Magic.git] / README
1 NAME
2     Variable::Magic - Associate user-defined magic to variables from Perl.
3
4 VERSION
5     Version 0.16
6
7 SYNOPSIS
8         use Variable::Magic qw/wizard cast dispell/;
9
10         my $wiz = wizard set => sub { print STDERR "now set to ${$_[0]}!\n" };
11         my $a = 1;
12         cast $a, $wiz;
13         $a = 2;          # "now set to 2!"
14         dispell $a, $wiz;
15         $a = 3           # (nothing)
16
17 DESCRIPTION
18     Magic is Perl way of enhancing objects. This mechanism let the user add
19     extra data to any variable and overload syntaxical operations (such as
20     access, assignation or destruction) that can be applied to it. With this
21     module, you can add your own magic to any variable without the pain of
22     the C API.
23
24     The operations that can be overloaded are :
25
26     "get"
27         This magic is invoked when the variable is evaluated (does not
28         include array/hash subscripts and slices).
29
30     "set"
31         This one is triggered each time the value of the variable changes
32         (includes array/hash subscripts and slices).
33
34     "len"
35         This magic is a little special : it is called when the 'size' or the
36         'length' of the variable has to be known by Perl. Typically, it's
37         the magic involved when an array is evaluated in scalar context, but
38         also on array assignation and loops ("for", "map" or "grep"). The
39         callback has then to return the length as an integer.
40
41     "clear"
42         This magic is invoked when the variable is reset, such as when an
43         array is emptied. Please note that this is different from undefining
44         the variable, even though the magic is called when the clearing is a
45         result of the undefine (e.g. for an array, but actually a bug
46         prevent it to work before perl 5.9.5 - see the history).
47
48     "free"
49         This one can be considered as an object destructor. It happens when
50         the variable goes out of scope (with the exception of global scope),
51         but not when it is undefined.
52
53     "copy"
54         This magic only applies to tied arrays and hashes. It fires when you
55         try to access or change their elements. It is available on your perl
56         iff "MGf_COPY" is true.
57
58     "dup"
59         Invoked when the variable is cloned across threads. Currently not
60         available.
61
62     "local"
63         When this magic is set on a variable, all subsequent localizations
64         of the variable will trigger the callback. It is available on your
65         perl iff "MGf_LOCAL" is true.
66
67     The following actions only apply to hashes and are available iff
68     "VMG_UVAR" is true. They are referred to as "uvar" magics.
69
70     "fetch"
71         This magic happens each time an element is fetched from the hash.
72
73     "store"
74         This one is called when an element is stored into the hash.
75
76     "exists"
77         This magic fires when a key is tested for existence in the hash.
78
79     "delete"
80         This last one triggers when a key is deleted in the hash, regardless
81         of whether the key actually exists in it.
82
83     You can refer to the tests to have more insight of where the different
84     magics are invoked.
85
86     To prevent any clash between different magics defined with this module,
87     an unique numerical signature is attached to each kind of magic (i.e.
88     each set of callbacks for magic operations).
89
90 PERL MAGIC HISTORY
91     The places where magic is invoked have changed a bit through perl
92     history. Here's a little list of the most recent ones.
93
94   5.6.x
95     *p14416* : 'copy' and 'dup' magic.
96
97   5.9.3
98     *p25854* : 'len' magic is no longer called when pushing an element into
99     a magic array.
100     *p26569* : 'local' magic.
101
102   5.9.5
103     *p31064* : Meaningful 'uvar' magic.
104     *p31473* : 'clear' magic wasn't invoked when undefining an array. The
105     bug is fixed as of this version.
106
107   5.10.0
108     Since "PERL_MAGIC_uvar" is uppercased, "hv_magic_check()" triggers
109     'copy' magic on hash stores for (non-tied) hashes that also have 'uvar'
110     magic.
111
112   5.11.x
113     *p32969* : 'len' magic is no longer invoked when calling "length" with a
114     magical scalar.
115
116 CONSTANTS
117   "SIG_MIN"
118     The minimum integer used as a signature for user-defined magic.
119
120   "SIG_MAX"
121     The maximum integer used as a signature for user-defined magic.
122
123   "SIG_NBR"
124         SIG_NBR = SIG_MAX - SIG_MIN + 1
125
126   "MGf_COPY"
127     Evaluates to true iff the 'copy' magic is available.
128
129   "MGf_DUP"
130     Evaluates to true iff the 'dup' magic is available.
131
132   "MGf_LOCAL"
133     Evaluates to true iff the 'local' magic is available.
134
135   "VMG_UVAR"
136     When this constant is true, you can use the "fetch,store,exists,delete"
137     callbacks on hashes.
138
139   "VMG_COMPAT_ARRAY_PUSH_NOLEN"
140     True for perls that don't call 'len' magic when you push an element in a
141     magical array.
142
143   "VMG_COMPAT_ARRAY_UNDEF_CLEAR"
144     True for perls that call 'clear' magic when undefining magical arrays.
145
146   "VMG_COMPAT_SCALAR_LENGTH_NOLEN"
147     True for perls that don't call 'len' magic when taking the "length" of a
148     magical scalar.
149
150 FUNCTIONS
151   "wizard"
152         wizard sig    => ...,
153                data   => sub { ... },
154                get    => sub { my ($ref, $data) = @_; ... },
155                set    => sub { my ($ref, $data) = @_; ... },
156                len    => sub { my ($ref, $data, $len) = @_; ... ; return $newlen; },
157                clear  => sub { my ($ref, $data) = @_; ... },
158                free   => sub { my ($ref, $data) = @_, ... },
159                copy   => sub { my ($ref, $data, $key, $elt) = @_; ... },
160                local  => sub { my ($ref, $data) = @_; ... },
161                fetch  => sub { my ($ref, $data, $key) = @_; ... },
162                store  => sub { my ($ref, $data, $key) = @_; ... },
163                exists => sub { my ($ref, $data, $key) = @_; ... },
164                delete => sub { my ($ref, $data, $key) = @_; ... }
165
166     This function creates a 'wizard', an opaque type that holds the magic
167     information. It takes a list of keys / values as argument, whose keys
168     can be :
169
170     "sig"
171         The numerical signature. If not specified or undefined, a random
172         signature is generated. If the signature matches an already defined
173         magic, then the existant magic object is returned.
174
175     "data"
176         A code reference to a private data constructor. It is called each
177         time this magic is cast on a variable, and the scalar returned is
178         used as private data storage for it. $_[0] is a reference to the
179         magic object and @_[1 .. @_-1] are all extra arguments that were
180         passed to "cast".
181
182     "get", "set", "len", "clear", "free", "copy", "local", "fetch", "store",
183     "exists" and "delete"
184         Code references to corresponding magic callbacks. You don't have to
185         specify all of them : the magic associated with undefined entries
186         simply won't be hooked. In those callbacks, $_[0] is always a
187         reference to the magic object and $_[1] is always the private data
188         (or "undef" when no private data constructor was supplied). In the
189         special case of "len" magic and when the variable is an array, $_[2]
190         contains its normal length. $_[2] is the current key in "copy",
191         "fetch", "store", "exists" and "delete" callbacks, although for
192         "copy" it may just be a copy of the actual key so it's useless to
193         (for example) cast magic on it. "copy" magic also receives the
194         current element (i.e. the value) in $_[3].
195
196         # A simple scalar tracer
197         my $wiz = wizard get  => sub { print STDERR "got ${$_[0]}\n" },
198                          set  => sub { print STDERR "set to ${$_[0]}\n" },
199                          free => sub { print STDERR "${$_[0]} was deleted\n" }
200
201   "gensig"
202     With this tool, you can manually generate random magic signature between
203     SIG_MIN and SIG_MAX inclusive. That's the way "wizard" creates them when
204     no signature is supplied.
205
206         # Generate a signature
207         my $sig = gensig;
208
209   "getsig"
210         getsig $wiz
211
212     This accessor returns the magic signature of this wizard.
213
214         # Get $wiz signature
215         my $sig = getsig $wiz;
216
217   "cast"
218         cast [$@%&*]var, [$wiz|$sig], ...
219
220     This function associates $wiz magic to the variable supplied, without
221     overwriting any other kind of magic. You can also supply the numeric
222     signature $sig instead of $wiz. It returns true on success or when $wiz
223     magic is already present, 0 on error, and "undef" when no magic
224     corresponds to the given signature (in case $sig was supplied). All
225     extra arguments specified after $wiz are passed to the private data
226     constructor. If the variable isn't a hash, any "uvar" callback of the
227     wizard is safely ignored.
228
229         # Casts $wiz onto $x. If $wiz isn't a signature, undef can't be returned.
230         my $x;
231         die 'error' unless cast $x, $wiz;
232
233   "getdata"
234         getdata [$@%&*]var, [$wiz|$sig]
235
236     This accessor fetches the private data associated with the magic $wiz
237     (or the signature $sig) in the variable. "undef" is returned when no
238     such magic or data is found, or when $sig does not represent a current
239     valid magic object.
240
241         # Get the attached data.
242         my $data = getdata $x, $wiz or die 'no such magic or magic has no data';
243
244   "dispell"
245         dispell [$@%&*]variable, [$wiz|$sig]
246
247     The exact opposite of "cast" : it dissociates $wiz magic from the
248     variable. You can also pass the magic signature $sig as the second
249     argument. True is returned on success, 0 on error or when no magic
250     represented by $wiz could be found in the variable, and "undef" when no
251     magic corresponds to the given signature (in case $sig was supplied).
252
253         # Dispell now. If $wiz isn't a signature, undef can't be returned.
254         die 'no such magic or error' unless dispell $x, $wiz;
255
256 EXPORT
257     The functions "wizard", "gensig", "getsig", "cast", "getdata" and
258     "dispell" are only exported on request. All of them are exported by the
259     tags ':funcs' and ':all'.
260
261     The constants "SIG_MIN", "SIG_MAX", "SIG_NBR", "MGf_COPY", "MGf_DUP",
262     "MGf_LOCAL" and "VMG_UVAR" are also only exported on request. They are
263     all exported by the tags ':consts' and ':all'.
264
265 CAVEATS
266     If you store a magic object in the private data slot, the magic won't be
267     accessible by "getdata" since it's not copied by assignation. The only
268     way to address this would be to return a reference.
269
270     If you define a wizard with a "free" callback and cast it on itself,
271     this destructor won't be called because the wizard will be destroyed
272     first.
273
274 DEPENDENCIES
275     perl 5.7.3.
276
277     Carp (standard since perl 5), XSLoader (standard since perl 5.006).
278
279     Copy tests need Tie::Array (standard since perl 5.005) and Tie::Hash
280     (since 5.002).
281
282     Some uvar tests need Hash::Util::FieldHash (standard since perl
283     5.009004).
284
285     Glob tests need Symbol (standard since perl 5.002).
286
287 SEE ALSO
288     perlguts and perlapi for internal information about magic.
289
290     perltie and overload for other ways of enhancing objects.
291
292 AUTHOR
293     Vincent Pit, "<perl at profvince.com>", <http://www.profvince.com>.
294
295     You can contact me by mail or on #perl @ FreeNode (vincent or
296     Prof_Vince).
297
298 BUGS
299     Please report any bugs or feature requests to "bug-variable-magic at
300     rt.cpan.org", or through the web interface at
301     <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Variable-Magic>. I will
302     be notified, and then you'll automatically be notified of progress on
303     your bug as I make changes.
304
305 SUPPORT
306     You can find documentation for this module with the perldoc command.
307
308         perldoc Variable::Magic
309
310     Tests code coverage report is available at
311     <http://www.profvince.com/perl/cover/Variable-Magic>.
312
313 COPYRIGHT & LICENSE
314     Copyright 2007-2008 Vincent Pit, all rights reserved.
315
316     This program is free software; you can redistribute it and/or modify it
317     under the same terms as Perl itself.
318