remove extraneous declarations that confuse dzil and add no value
[gitmo/MooseX-Storage.git] / lib / MooseX / Storage / Deferred.pm
CommitLineData
1f3074ea 1package MooseX::Storage::Deferred;
2use Moose::Role;
3
1f3074ea 4with 'MooseX::Storage::Basic';
5
61fb1aaa 6sub __get_method {
7 my ( $self, $basename, $value, $method_name ) = @_;
8
9 my $role = MooseX::Storage->_expand_role($basename => $value)->meta;
10 my $method = $role->get_method($method_name)->body;
11}
12
1f3074ea 13sub thaw {
14 my ( $class, $packed, $type, @args ) = @_;
bf33d7c7 15
16 (exists $type->{format})
1f3074ea 17 || confess "You must specify a format type to thaw from";
18
61fb1aaa 19 my $code = $class->__get_method(Format => $type->{format} => 'thaw');
bf33d7c7 20
61fb1aaa 21 $class->$code($packed, @args);
1f3074ea 22}
23
24sub freeze {
25 my ( $self, $type, @args ) = @_;
bf33d7c7 26
27 (exists $type->{format})
28 || confess "You must specify a format type to freeze into";
29
61fb1aaa 30 my $code = $self->__get_method(Format => $type->{format} => 'freeze');
1f3074ea 31
61fb1aaa 32 $self->$code(@args);
bf33d7c7 33}
34
35sub load {
36 my ( $class, $filename, $type, @args ) = @_;
37
38 (exists $type->{io})
39 || confess "You must specify an I/O type to load with";
40
61fb1aaa 41 my $code = $class->__get_method(IO => $type->{io} => 'load');
bf33d7c7 42
61fb1aaa 43 $class->$code($filename, $type, @args);
bf33d7c7 44}
45
46sub store {
47 my ( $self, $filename, $type, @args ) = @_;
48
49 (exists $type->{io})
50 || confess "You must specify an I/O type to store with";
51
61fb1aaa 52 my $code = $self->__get_method(IO => $type->{io} => 'store');
bf33d7c7 53
61fb1aaa 54 $self->$code($filename, $type, @args);
1f3074ea 55}
56
f82612bc 57no Moose::Role;
58
1f3074ea 591;
60
61__END__
62
63=pod
64
65=head1 NAME
66
67MooseX::Storage::Deferred - A role for undecisive programmers
68
69=head1 SYNOPSIS
70
71 package Point;
72 use Moose;
73 use MooseX::Storage;
bf33d7c7 74
1f3074ea 75 with 'MooseX::Storage::Deferred';
bf33d7c7 76
1f3074ea 77 has 'x' => (is => 'rw', isa => 'Int');
78 has 'y' => (is => 'rw', isa => 'Int');
bf33d7c7 79
1f3074ea 80 1;
bf33d7c7 81
1f3074ea 82 my $p = Point->new(x => 10, y => 10);
bf33d7c7 83
84 ## methods to freeze/thaw into
1f3074ea 85 ## a specified serialization format
86 ## (in this case JSON)
bf33d7c7 87
1f3074ea 88 # pack the class into a JSON string
89 $p->freeze({ format => 'JSON' }); # { "__CLASS__" : "Point", "x" : 10, "y" : 10 }
bf33d7c7 90
39535ada 91 # pack the class into a JSON string using parameterized JSONpm role
92 $p->freeze({ format => [ JSONpm => { json_opts => { pretty => 1 } } ] });
93
1f3074ea 94 # unpack the JSON string into a class
95 my $p2 = Point->thaw(
96 '{ "__CLASS__" : "Point", "x" : 10, "y" : 10 }',
97 { format => 'JSON' }
bf33d7c7 98 );
1f3074ea 99
100=head1 DESCRIPTION
101
bf33d7c7 102This role is designed for those times when you need to
103serialize into many different formats or I/O options.
104
105It basically allows you to choose the format and IO
106options only when you actually use them (see the
1f3074ea 107SYNOPSIS for more info)
108
bf33d7c7 109=head1 SUPPORTED FORMATS
110
111=over 4
112
113=item I<JSON>
114
39535ada 115=item I<JSONpm>
116
bf33d7c7 117=item I<YAML>
118
119=item I<Storable>
120
121=back
122
123=head1 SUPPORTED I/O
124
125=over 4
126
127=item I<File>
128
129=item I<AtomicFile>
130
131=back
132
ec725183 133B<NOTE:> The B<StorableFile> I/O option is not supported,
134this is because it does not mix well with options who also
bf33d7c7 135have a C<thaw> and C<freeze> methods like this. It is possible
ec725183 136to probably work around this issue, but I don't currently
bf33d7c7 137have the need for it. If you need this supported, talk to me
ec725183 138and I will see what I can do.
bf33d7c7 139
1f3074ea 140=head1 METHODS
141
142=over 4
143
144=item B<freeze ($type_desc)>
145
146=item B<thaw ($data, $type_desc)>
147
bf33d7c7 148=item B<load ($filename, $type_desc)>
149
150=item B<store ($filename, $type_desc)>
151
1f3074ea 152=back
153
154=head2 Introspection
155
156=over 4
157
158=item B<meta>
159
160=back
161
162=head1 BUGS
163
bf33d7c7 164All complex software has bugs lurking in it, and this module is no
1f3074ea 165exception. If you find a bug please either email me, or add the bug
166to cpan-RT.
167
168=head1 AUTHOR
169
170Stevan Little E<lt>stevan.little@iinteractive.comE<gt>
171
172=head1 COPYRIGHT AND LICENSE
173
174Copyright 2007-2008 by Infinity Interactive, Inc.
175
176L<http://www.iinteractive.com>
177
178This library is free software; you can redistribute it and/or modify
179it under the same terms as Perl itself.
180
181=cut