Commit | Line | Data |
69ac22ee |
1 | package DBIx::Class::Serialize::Storable; |
ed28f830 |
2 | use strict; |
bf5ecff9 |
3 | use warnings; |
69ac22ee |
4 | use Storable; |
ed28f830 |
5 | |
1b6fe47d |
6 | use Carp::Clan qw/^DBIx::Class/; |
7 | |
8 | carp 'The Serialize::Storable component is now *DEPRECATED*. It has not ' |
9 | .'been providing any useful functionality for quite a while, and in fact ' |
10 | .'destroys prefetched results in its current implementation. Do not use!'; |
11 | |
12 | |
ed28f830 |
13 | sub STORABLE_freeze { |
e60dc79f |
14 | my ($self, $cloning) = @_; |
ed28f830 |
15 | my $to_serialize = { %$self }; |
e60dc79f |
16 | |
7cfda9a6 |
17 | # Dynamic values, easy to recalculate |
18 | delete $to_serialize->{$_} for qw/related_resultsets _inflated_column/; |
e60dc79f |
19 | |
26148d36 |
20 | return (Storable::nfreeze($to_serialize)); |
ed28f830 |
21 | } |
22 | |
23 | sub STORABLE_thaw { |
7244b45f |
24 | my ($self, $cloning, $serialized) = @_; |
e60dc79f |
25 | |
7244b45f |
26 | %$self = %{ Storable::thaw($serialized) }; |
ed28f830 |
27 | } |
28 | |
19345968 |
29 | 1; |
30 | |
31 | __END__ |
32 | |
75d07914 |
33 | =head1 NAME |
19345968 |
34 | |
26148d36 |
35 | DBIx::Class::Serialize::Storable - hooks for Storable nfreeze/thaw |
19345968 |
36 | |
1b6fe47d |
37 | =head1 DEPRECATION NOTE |
38 | |
39 | This component is now B<DEPRECATED>. It has not been providing any useful |
40 | functionality for quite a while, and in fact destroys prefetched results |
41 | in its current implementation. Do not use! |
42 | |
19345968 |
43 | =head1 SYNOPSIS |
44 | |
45 | # in a table class definition |
69ac22ee |
46 | __PACKAGE__->load_components(qw/Serialize::Storable/); |
9b83fccd |
47 | |
19345968 |
48 | # meanwhile, in a nearby piece of code |
24d67825 |
49 | my $cd = $schema->resultset('CD')->find(12); |
2053ab2a |
50 | # if the cache uses Storable, this will work automatically |
51 | $cache->set($cd->ID, $cd); |
19345968 |
52 | |
53 | =head1 DESCRIPTION |
54 | |
24d67825 |
55 | This component adds hooks for Storable so that row objects can be |
56 | serialized. It assumes that your row object class (C<result_class>) is |
2053ab2a |
57 | the same as your table class, which is the normal situation. |
19345968 |
58 | |
9b83fccd |
59 | =head1 HOOKS |
60 | |
61 | The following hooks are defined for L<Storable> - see the |
62 | documentation for L<Storable/Hooks> for detailed information on these |
63 | hooks. |
64 | |
65 | =head2 STORABLE_freeze |
66 | |
67 | The serializing hook, called on the object during serialization. It |
68 | can be inherited, or defined in the class itself, like any other |
69 | method. |
70 | |
71 | =head2 STORABLE_thaw |
72 | |
73 | The deserializing hook called on the object during deserialization. |
74 | |
19345968 |
75 | =head1 AUTHORS |
76 | |
77 | David Kamholz <dkamholz@cpan.org> |
78 | |
79 | =head1 LICENSE |
80 | |
81 | You may distribute this code under the same terms as Perl itself. |
82 | |
83 | =cut |