9ba4f6d257f50f474df46b55344c81127b752f51
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Serialize / Storable.pm
1 package DBIx::Class::Serialize::Storable;
2 use strict;
3 use warnings;
4 use Storable;
5
6 sub STORABLE_freeze {
7     my ($self, $cloning) = @_;
8     my $to_serialize = { %$self };
9
10     # The source is either derived from _source_handle or is
11     # reattached in the thaw handler below
12     delete $to_serialize->{result_source};
13
14     # Dynamic values, easy to recalculate
15     delete $to_serialize->{$_} for qw/related_resultsets _inflated_column/;
16
17     return (Storable::nfreeze($to_serialize));
18 }
19
20 sub STORABLE_thaw {
21     my ($self, $cloning, $serialized) = @_;
22
23     %$self = %{ Storable::thaw($serialized) };
24
25     # if the handle went missing somehow, reattach
26     $self->result_source($self->result_source_instance)
27       if !$self->_source_handle && $self->can('result_source_instance');
28 }
29
30 1;
31
32 __END__
33
34 =head1 NAME
35
36     DBIx::Class::Serialize::Storable - hooks for Storable nfreeze/thaw
37
38 =head1 SYNOPSIS
39
40     # in a table class definition
41     __PACKAGE__->load_components(qw/Serialize::Storable/);
42
43     # meanwhile, in a nearby piece of code
44     my $cd = $schema->resultset('CD')->find(12);
45     # if the cache uses Storable, this will work automatically
46     $cache->set($cd->ID, $cd);
47
48 =head1 DESCRIPTION
49
50 This component adds hooks for Storable so that row objects can be
51 serialized. It assumes that your row object class (C<result_class>) is
52 the same as your table class, which is the normal situation.
53
54 =head1 HOOKS
55
56 The following hooks are defined for L<Storable> - see the
57 documentation for L<Storable/Hooks> for detailed information on these
58 hooks.
59
60 =head2 STORABLE_freeze
61
62 The serializing hook, called on the object during serialization. It
63 can be inherited, or defined in the class itself, like any other
64 method.
65
66 =head2 STORABLE_thaw
67
68 The deserializing hook called on the object during deserialization.
69
70 =head1 AUTHORS
71
72 David Kamholz <dkamholz@cpan.org>
73
74 =head1 LICENSE
75
76 You may distribute this code under the same terms as Perl itself.
77
78 =cut