Upgrade to Storable 1.0.3, from Raphael Manfredi.
[p5sagit/p5-mst-13.2.git] / ext / Storable / Storable.pm
CommitLineData
9e21b3d0 1;# $Id: Storable.pm,v 1.0 2000/09/01 19:40:41 ram Exp $
7a6a85bf 2;#
3;# Copyright (c) 1995-2000, Raphael Manfredi
4;#
9e21b3d0 5;# You may redistribute only under the same terms as Perl 5, as specified
6;# in the README file that comes with the distribution.
7a6a85bf 7;#
8;# $Log: Storable.pm,v $
9e21b3d0 9;# Revision 1.0 2000/09/01 19:40:41 ram
10;# Baseline for first official release.
7a6a85bf 11;#
12
13require DynaLoader;
14require Exporter;
15package Storable; @ISA = qw(Exporter DynaLoader);
16
17@EXPORT = qw(store retrieve);
18@EXPORT_OK = qw(
9e21b3d0 19 nstore store_fd nstore_fd fd_retrieve
7a6a85bf 20 freeze nfreeze thaw
21 dclone
9e21b3d0 22 retrieve_fd
dd19458b 23 lock_store lock_nstore lock_retrieve
7a6a85bf 24);
25
26use AutoLoader;
27use vars qw($forgive_me $VERSION);
28
dd19458b 29$VERSION = '1.003';
7a6a85bf 30*AUTOLOAD = \&AutoLoader::AUTOLOAD; # Grrr...
31
32#
33# Use of Log::Agent is optional
34#
35
36eval "use Log::Agent";
37
38unless (defined @Log::Agent::EXPORT) {
39 eval q{
40 sub logcroak {
41 require Carp;
42 Carp::croak(@_);
43 }
44 };
45}
46
dd19458b 47#
48# They might miss :flock in Fcntl
49#
50
51BEGIN {
52 require Fcntl;
53 if (exists $Fcntl::EXPORT_TAGS{'flock'}) {
54 Fcntl->import(':flock');
55 } else {
56 eval q{
57 sub LOCK_SH () {1}
58 sub LOCK_EX () {2}
59 };
60 }
61}
62
7a6a85bf 63sub logcroak;
64
9e21b3d0 65sub retrieve_fd { &fd_retrieve } # Backward compatibility
cb3d9de5 66
7a6a85bf 67bootstrap Storable;
681;
69__END__
70
71#
72# store
73#
74# Store target object hierarchy, identified by a reference to its root.
75# The stored object tree may later be retrieved to memory via retrieve.
76# Returns undef if an I/O error occurred, in which case the file is
77# removed.
78#
79sub store {
dd19458b 80 return _store(\&pstore, @_, 0);
7a6a85bf 81}
82
83#
84# nstore
85#
86# Same as store, but in network order.
87#
88sub nstore {
dd19458b 89 return _store(\&net_pstore, @_, 0);
90}
91
92#
93# lock_store
94#
95# Same as store, but flock the file first (advisory locking).
96#
97sub lock_store {
98 return _store(\&pstore, @_, 1);
99}
100
101#
102# lock_nstore
103#
104# Same as nstore, but flock the file first (advisory locking).
105#
106sub lock_nstore {
107 return _store(\&net_pstore, @_, 1);
7a6a85bf 108}
109
110# Internal store to file routine
111sub _store {
112 my $xsptr = shift;
113 my $self = shift;
dd19458b 114 my ($file, $use_locking) = @_;
7a6a85bf 115 logcroak "not a reference" unless ref($self);
dd19458b 116 logcroak "too many arguments" unless @_ == 2; # No @foo in arglist
7a6a85bf 117 local *FILE;
118 open(FILE, ">$file") || logcroak "can't create $file: $!";
119 binmode FILE; # Archaic systems...
dd19458b 120 if ($use_locking) {
121 flock(FILE, LOCK_EX) ||
122 logcroak "can't get exclusive lock on $file: $!";
123 truncate FILE, 0;
124 # Unlocking will happen when FILE is closed
125 }
7a6a85bf 126 my $da = $@; # Don't mess if called from exception handler
127 my $ret;
128 # Call C routine nstore or pstore, depending on network order
129 eval { $ret = &$xsptr(*FILE, $self) };
130 close(FILE) or $ret = undef;
131 unlink($file) or warn "Can't unlink $file: $!\n" if $@ || !defined $ret;
132 logcroak $@ if $@ =~ s/\.?\n$/,/;
133 $@ = $da;
134 return $ret ? $ret : undef;
135}
136
137#
138# store_fd
139#
140# Same as store, but perform on an already opened file descriptor instead.
141# Returns undef if an I/O error occurred.
142#
143sub store_fd {
144 return _store_fd(\&pstore, @_);
145}
146
147#
148# nstore_fd
149#
150# Same as store_fd, but in network order.
151#
152sub nstore_fd {
153 my ($self, $file) = @_;
154 return _store_fd(\&net_pstore, @_);
155}
156
157# Internal store routine on opened file descriptor
158sub _store_fd {
159 my $xsptr = shift;
160 my $self = shift;
161 my ($file) = @_;
162 logcroak "not a reference" unless ref($self);
163 logcroak "too many arguments" unless @_ == 1; # No @foo in arglist
164 my $fd = fileno($file);
165 logcroak "not a valid file descriptor" unless defined $fd;
166 my $da = $@; # Don't mess if called from exception handler
167 my $ret;
168 # Call C routine nstore or pstore, depending on network order
169 eval { $ret = &$xsptr($file, $self) };
170 logcroak $@ if $@ =~ s/\.?\n$/,/;
171 $@ = $da;
172 return $ret ? $ret : undef;
173}
174
175#
176# freeze
177#
178# Store oject and its hierarchy in memory and return a scalar
179# containing the result.
180#
181sub freeze {
182 _freeze(\&mstore, @_);
183}
184
185#
186# nfreeze
187#
188# Same as freeze but in network order.
189#
190sub nfreeze {
191 _freeze(\&net_mstore, @_);
192}
193
194# Internal freeze routine
195sub _freeze {
196 my $xsptr = shift;
197 my $self = shift;
198 logcroak "not a reference" unless ref($self);
199 logcroak "too many arguments" unless @_ == 0; # No @foo in arglist
200 my $da = $@; # Don't mess if called from exception handler
201 my $ret;
202 # Call C routine mstore or net_mstore, depending on network order
203 eval { $ret = &$xsptr($self) };
204 logcroak $@ if $@ =~ s/\.?\n$/,/;
205 $@ = $da;
206 return $ret ? $ret : undef;
207}
208
209#
210# retrieve
211#
212# Retrieve object hierarchy from disk, returning a reference to the root
213# object of that tree.
214#
215sub retrieve {
dd19458b 216 _retrieve($_[0], 0);
217}
218
219#
220# lock_retrieve
221#
222# Same as retrieve, but with advisory locking.
223#
224sub lock_retrieve {
225 _retrieve($_[0], 1);
226}
227
228# Internal retrieve routine
229sub _retrieve {
230 my ($file, $use_locking) = @_;
7a6a85bf 231 local *FILE;
dd19458b 232 open(FILE, $file) || logcroak "can't open $file: $!";
7a6a85bf 233 binmode FILE; # Archaic systems...
234 my $self;
235 my $da = $@; # Could be from exception handler
dd19458b 236 if ($use_locking) {
237 flock(FILE, LOCK_SH) || logcroak "can't get shared lock on $file: $!";
238 # Unlocking will happen when FILE is closed
239 }
7a6a85bf 240 eval { $self = pretrieve(*FILE) }; # Call C routine
241 close(FILE);
242 logcroak $@ if $@ =~ s/\.?\n$/,/;
243 $@ = $da;
244 return $self;
245}
246
247#
9e21b3d0 248# fd_retrieve
7a6a85bf 249#
250# Same as retrieve, but perform from an already opened file descriptor instead.
251#
9e21b3d0 252sub fd_retrieve {
7a6a85bf 253 my ($file) = @_;
254 my $fd = fileno($file);
255 logcroak "not a valid file descriptor" unless defined $fd;
256 my $self;
257 my $da = $@; # Could be from exception handler
258 eval { $self = pretrieve($file) }; # Call C routine
259 logcroak $@ if $@ =~ s/\.?\n$/,/;
260 $@ = $da;
261 return $self;
262}
263
264#
265# thaw
266#
267# Recreate objects in memory from an existing frozen image created
268# by freeze. If the frozen image passed is undef, return undef.
269#
270sub thaw {
271 my ($frozen) = @_;
272 return undef unless defined $frozen;
273 my $self;
274 my $da = $@; # Could be from exception handler
275 eval { $self = mretrieve($frozen) }; # Call C routine
276 logcroak $@ if $@ =~ s/\.?\n$/,/;
277 $@ = $da;
278 return $self;
279}
280
281=head1 NAME
282
283Storable - persistency for perl data structures
284
285=head1 SYNOPSIS
286
287 use Storable;
288 store \%table, 'file';
289 $hashref = retrieve('file');
290
291 use Storable qw(nstore store_fd nstore_fd freeze thaw dclone);
292
293 # Network order
294 nstore \%table, 'file';
295 $hashref = retrieve('file'); # There is NO nretrieve()
296
297 # Storing to and retrieving from an already opened file
298 store_fd \@array, \*STDOUT;
299 nstore_fd \%table, \*STDOUT;
9e21b3d0 300 $aryref = fd_retrieve(\*SOCKET);
301 $hashref = fd_retrieve(\*SOCKET);
7a6a85bf 302
303 # Serializing to memory
304 $serialized = freeze \%table;
305 %table_clone = %{ thaw($serialized) };
306
307 # Deep (recursive) cloning
308 $cloneref = dclone($ref);
309
dd19458b 310 # Advisory locking
311 use Storable qw(lock_store lock_nstore lock_retrieve)
312 lock_store \%table, 'file';
313 lock_nstore \%table, 'file';
314 $hashref = lock_retrieve('file');
315
7a6a85bf 316=head1 DESCRIPTION
317
318The Storable package brings persistency to your perl data structures
319containing SCALAR, ARRAY, HASH or REF objects, i.e. anything that can be
320convenientely stored to disk and retrieved at a later time.
321
322It can be used in the regular procedural way by calling C<store> with
323a reference to the object to be stored, along with the file name where
324the image should be written.
325The routine returns C<undef> for I/O problems or other internal error,
326a true value otherwise. Serious errors are propagated as a C<die> exception.
327
328To retrieve data stored to disk, use C<retrieve> with a file name,
329and the objects stored into that file are recreated into memory for you,
330a I<reference> to the root object being returned. In case an I/O error
331occurs while reading, C<undef> is returned instead. Other serious
332errors are propagated via C<die>.
333
334Since storage is performed recursively, you might want to stuff references
335to objects that share a lot of common data into a single array or hash
336table, and then store that object. That way, when you retrieve back the
337whole thing, the objects will continue to share what they originally shared.
338
339At the cost of a slight header overhead, you may store to an already
340opened file descriptor using the C<store_fd> routine, and retrieve
9e21b3d0 341from a file via C<fd_retrieve>. Those names aren't imported by default,
7a6a85bf 342so you will have to do that explicitely if you need those routines.
343The file descriptor you supply must be already opened, for read
344if you're going to retrieve and for write if you wish to store.
345
346 store_fd(\%table, *STDOUT) || die "can't store to stdout\n";
9e21b3d0 347 $hashref = fd_retrieve(*STDIN);
7a6a85bf 348
349You can also store data in network order to allow easy sharing across
350multiple platforms, or when storing on a socket known to be remotely
351connected. The routines to call have an initial C<n> prefix for I<network>,
352as in C<nstore> and C<nstore_fd>. At retrieval time, your data will be
353correctly restored so you don't have to know whether you're restoring
dd19458b 354from native or network ordered data. Double values are stored stringified
355to ensure portability as well, at the slight risk of loosing some precision
356in the last decimals.
7a6a85bf 357
9e21b3d0 358When using C<fd_retrieve>, objects are retrieved in sequence, one
7a6a85bf 359object (i.e. one recursive tree) per associated C<store_fd>.
360
361If you're more from the object-oriented camp, you can inherit from
362Storable and directly store your objects by invoking C<store> as
363a method. The fact that the root of the to-be-stored tree is a
364blessed reference (i.e. an object) is special-cased so that the
365retrieve does not provide a reference to that object but rather the
366blessed object reference itself. (Otherwise, you'd get a reference
367to that blessed object).
368
369=head1 MEMORY STORE
370
371The Storable engine can also store data into a Perl scalar instead, to
372later retrieve them. This is mainly used to freeze a complex structure in
373some safe compact memory place (where it can possibly be sent to another
374process via some IPC, since freezing the structure also serializes it in
375effect). Later on, and maybe somewhere else, you can thaw the Perl scalar
376out and recreate the original complex structure in memory.
377
378Surprisingly, the routines to be called are named C<freeze> and C<thaw>.
379If you wish to send out the frozen scalar to another machine, use
380C<nfreeze> instead to get a portable image.
381
382Note that freezing an object structure and immediately thawing it
383actually achieves a deep cloning of that structure:
384
385 dclone(.) = thaw(freeze(.))
386
387Storable provides you with a C<dclone> interface which does not create
388that intermediary scalar but instead freezes the structure in some
389internal memory space and then immediatly thaws it out.
390
dd19458b 391=head1 ADVISORY LOCKING
392
393The C<lock_store> and C<lock_nstore> routine are equivalent to C<store>
394and C<nstore>, only they get an exclusive lock on the file before
395writing. Likewise, C<lock_retrieve> performs as C<retrieve>, but also
396gets a shared lock on the file before reading.
397
398Like with any advisory locking scheme, the protection only works if
399you systematically use C<lock_store> and C<lock_retrieve>. If one
400side of your application uses C<store> whilst the other uses C<lock_retrieve>,
401you will get no protection at all.
402
403The internal advisory locking is implemented using Perl's flock() routine.
404If your system does not support any form of flock(), or if you share
405your files across NFS, you might wish to use other forms of locking by
406using modules like LockFile::Simple which lock a file using a filesystem
407entry, instead of locking the file descriptor.
408
7a6a85bf 409=head1 SPEED
410
411The heart of Storable is written in C for decent speed. Extra low-level
412optimization have been made when manipulating perl internals, to
413sacrifice encapsulation for the benefit of a greater speed.
414
415=head1 CANONICAL REPRESENTATION
416
417Normally Storable stores elements of hashes in the order they are
418stored internally by Perl, i.e. pseudo-randomly. If you set
419C<$Storable::canonical> to some C<TRUE> value, Storable will store
420hashes with the elements sorted by their key. This allows you to
421compare data structures by comparing their frozen representations (or
422even the compressed frozen representations), which can be useful for
423creating lookup tables for complicated queries.
424
425Canonical order does not imply network order, those are two orthogonal
426settings.
427
428=head1 ERROR REPORTING
429
430Storable uses the "exception" paradigm, in that it does not try to workaround
431failures: if something bad happens, an exception is generated from the
432caller's perspective (see L<Carp> and C<croak()>). Use eval {} to trap
433those exceptions.
434
435When Storable croaks, it tries to report the error via the C<logcroak()>
436routine from the C<Log::Agent> package, if it is available.
437
438=head1 WIZARDS ONLY
439
440=head2 Hooks
441
442Any class may define hooks that will be called during the serialization
443and deserialization process on objects that are instances of that class.
444Those hooks can redefine the way serialization is performed (and therefore,
445how the symetrical deserialization should be conducted).
446
447Since we said earlier:
448
449 dclone(.) = thaw(freeze(.))
450
451everything we say about hooks should also hold for deep cloning. However,
452hooks get to know whether the operation is a mere serialization, or a cloning.
453
454Therefore, when serializing hooks are involved,
455
456 dclone(.) <> thaw(freeze(.))
457
458Well, you could keep them in sync, but there's no guarantee it will always
459hold on classes somebody else wrote. Besides, there is little to gain in
460doing so: a serializing hook could only keep one attribute of an object,
461which is probably not what should happen during a deep cloning of that
462same object.
463
464Here is the hooking interface:
465
466=over
467
468=item C<STORABLE_freeze> I<obj>, I<cloning>
469
470The serializing hook, called on the object during serialization. It can be
471inherited, or defined in the class itself, like any other method.
472
473Arguments: I<obj> is the object to serialize, I<cloning> is a flag indicating
474whether we're in a dclone() or a regular serialization via store() or freeze().
475
476Returned value: A LIST C<($serialized, $ref1, $ref2, ...)> where $serialized
477is the serialized form to be used, and the optional $ref1, $ref2, etc... are
478extra references that you wish to let the Storable engine serialize.
479
480At deserialization time, you will be given back the same LIST, but all the
481extra references will be pointing into the deserialized structure.
482
483The B<first time> the hook is hit in a serialization flow, you may have it
484return an empty list. That will signal the Storable engine to further
485discard that hook for this class and to therefore revert to the default
486serialization of the underlying Perl data. The hook will again be normally
487processed in the next serialization.
488
489Unless you know better, serializing hook should always say:
490
491 sub STORABLE_freeze {
492 my ($self, $cloning) = @_;
493 return if $cloning; # Regular default serialization
494 ....
495 }
496
497in order to keep reasonable dclone() semantics.
498
499=item C<STORABLE_thaw> I<obj>, I<cloning>, I<serialized>, ...
500
501The deserializing hook called on the object during deserialization.
502But wait. If we're deserializing, there's no object yet... right?
503
504Wrong: the Storable engine creates an empty one for you. If you know Eiffel,
505you can view C<STORABLE_thaw> as an alternate creation routine.
506
507This means the hook can be inherited like any other method, and that
508I<obj> is your blessed reference for this particular instance.
509
510The other arguments should look familiar if you know C<STORABLE_freeze>:
511I<cloning> is true when we're part of a deep clone operation, I<serialized>
512is the serialized string you returned to the engine in C<STORABLE_freeze>,
513and there may be an optional list of references, in the same order you gave
514them at serialization time, pointing to the deserialized objects (which
515have been processed courtesy of the Storable engine).
516
517It is up to you to use these information to populate I<obj> the way you want.
518
519Returned value: none.
520
521=back
522
523=head2 Predicates
524
525Predicates are not exportable. They must be called by explicitely prefixing
526them with the Storable package name.
527
528=over
529
530=item C<Storable::last_op_in_netorder>
531
532The C<Storable::last_op_in_netorder()> predicate will tell you whether
533network order was used in the last store or retrieve operation. If you
534don't know how to use this, just forget about it.
535
536=item C<Storable::is_storing>
537
538Returns true if within a store operation (via STORABLE_freeze hook).
539
540=item C<Storable::is_retrieving>
541
542Returns true if within a retrieve operation, (via STORABLE_thaw hook).
543
544=back
545
546=head2 Recursion
547
548With hooks comes the ability to recurse back to the Storable engine. Indeed,
549hooks are regular Perl code, and Storable is convenient when it comes to
550serialize and deserialize things, so why not use it to handle the
551serialization string?
552
553There are a few things you need to know however:
554
555=over
556
557=item *
558
559You can create endless loops if the things you serialize via freeze()
560(for instance) point back to the object we're trying to serialize in the hook.
561
562=item *
563
564Shared references among objects will not stay shared: if we're serializing
565the list of object [A, C] where both object A and C refer to the SAME object
566B, and if there is a serializing hook in A that says freeze(B), then when
567deserializing, we'll get [A', C'] where A' refers to B', but C' refers to D,
568a deep clone of B'. The topology was not preserved.
569
570=back
571
572That's why C<STORABLE_freeze> lets you provide a list of references
573to serialize. The engine guarantees that those will be serialized in the
574same context as the other objects, and therefore that shared objects will
575stay shared.
576
577In the above [A, C] example, the C<STORABLE_freeze> hook could return:
578
579 ("something", $self->{B})
580
581and the B part would be serialized by the engine. In C<STORABLE_thaw>, you
582would get back the reference to the B' object, deserialized for you.
583
584Therefore, recursion should normally be avoided, but is nonetheless supported.
585
586=head2 Deep Cloning
587
588There is a new Clone module available on CPAN which implements deep cloning
589natively, i.e. without freezing to memory and thawing the result. It is
590aimed to replace Storable's dclone() some day. However, it does not currently
591support Storable hooks to redefine the way deep cloning is performed.
592
593=head1 EXAMPLES
594
595Here are some code samples showing a possible usage of Storable:
596
597 use Storable qw(store retrieve freeze thaw dclone);
598
599 %color = ('Blue' => 0.1, 'Red' => 0.8, 'Black' => 0, 'White' => 1);
600
601 store(\%color, '/tmp/colors') or die "Can't store %a in /tmp/colors!\n";
602
603 $colref = retrieve('/tmp/colors');
604 die "Unable to retrieve from /tmp/colors!\n" unless defined $colref;
605 printf "Blue is still %lf\n", $colref->{'Blue'};
606
607 $colref2 = dclone(\%color);
608
609 $str = freeze(\%color);
610 printf "Serialization of %%color is %d bytes long.\n", length($str);
611 $colref3 = thaw($str);
612
613which prints (on my machine):
614
615 Blue is still 0.100000
616 Serialization of %color is 102 bytes long.
617
618=head1 WARNING
619
620If you're using references as keys within your hash tables, you're bound
621to disapointment when retrieving your data. Indeed, Perl stringifies
622references used as hash table keys. If you later wish to access the
623items via another reference stringification (i.e. using the same
624reference that was used for the key originally to record the value into
625the hash table), it will work because both references stringify to the
626same string.
627
628It won't work across a C<store> and C<retrieve> operations however, because
629the addresses in the retrieved objects, which are part of the stringified
630references, will probably differ from the original addresses. The
631topology of your structure is preserved, but not hidden semantics
632like those.
633
634On platforms where it matters, be sure to call C<binmode()> on the
635descriptors that you pass to Storable functions.
636
637Storing data canonically that contains large hashes can be
638significantly slower than storing the same data normally, as
639temprorary arrays to hold the keys for each hash have to be allocated,
640populated, sorted and freed. Some tests have shown a halving of the
641speed of storing -- the exact penalty will depend on the complexity of
642your data. There is no slowdown on retrieval.
643
644=head1 BUGS
645
646You can't store GLOB, CODE, FORMLINE, etc... If you can define
647semantics for those operations, feel free to enhance Storable so that
648it can deal with them.
649
650The store functions will C<croak> if they run into such references
651unless you set C<$Storable::forgive_me> to some C<TRUE> value. In that
652case, the fatal message is turned in a warning and some
653meaningless string is stored instead.
654
655Setting C<$Storable::canonical> may not yield frozen strings that
656compare equal due to possible stringification of numbers. When the
657string version of a scalar exists, it is the form stored, therefore
658if you happen to use your numbers as strings between two freezing
659operations on the same data structures, you will get different
660results.
661
dd19458b 662When storing doubles in network order, their value is stored as text.
663However, you should also not expect non-numeric floating-point values
664such as infinity and "not a number" to pass successfully through a
665nstore()/retrieve() pair.
666
667As Storable neither knows nor cares about character sets (although it
668does know that characters may be more than eight bits wide), any difference
669in the interpretation of character codes between a host and a target
670system is your problem. In particular, if host and target use different
671code points to represent the characters used in the text representation
672of floating-point numbers, you will not be able be able to exchange
673floating-point data, even with nstore().
674
7a6a85bf 675=head1 CREDITS
676
677Thank you to (in chronological order):
678
679 Jarkko Hietaniemi <jhi@iki.fi>
680 Ulrich Pfeifer <pfeifer@charly.informatik.uni-dortmund.de>
681 Benjamin A. Holzman <bah@ecnvantage.com>
682 Andrew Ford <A.Ford@ford-mason.co.uk>
683 Gisle Aas <gisle@aas.no>
684 Jeff Gresham <gresham_jeffrey@jpmorgan.com>
685 Murray Nesbitt <murray@activestate.com>
686 Marc Lehmann <pcg@opengroup.org>
9e21b3d0 687 Justin Banks <justinb@wamnet.com>
688 Jarkko Hietaniemi <jhi@iki.fi> (AGAIN, as perl 5.7.0 Pumpkin!)
dd19458b 689 Salvador Ortiz Garcia <sog@msg.com.mx>
690 Dominic Dunlop <domo@computer.org>
691 Erik Haugan <erik@solbors.no>
7a6a85bf 692
693for their bug reports, suggestions and contributions.
694
695Benjamin Holzman contributed the tied variable support, Andrew Ford
696contributed the canonical order for hashes, and Gisle Aas fixed
697a few misunderstandings of mine regarding the Perl internals,
698and optimized the emission of "tags" in the output streams by
699simply counting the objects instead of tagging them (leading to
700a binary incompatibility for the Storable image starting at version
7010.6--older images are of course still properly understood).
702Murray Nesbitt made Storable thread-safe. Marc Lehmann added overloading
703and reference to tied items support.
704
705=head1 TRANSLATIONS
706
707There is a Japanese translation of this man page available at
708http://member.nifty.ne.jp/hippo2000/perltips/storable.htm ,
709courtesy of Kawai, Takanori <kawai@nippon-rad.co.jp>.
710
711=head1 AUTHOR
712
713Raphael Manfredi F<E<lt>Raphael_Manfredi@pobox.comE<gt>>
714
715=head1 SEE ALSO
716
717Clone(3).
718
719=cut
720