I think that these should be implemented as a role on the engine. So if I arrange...
[gitmo/MooseX-Storage.git] / lib / MooseX / Storage / Basic.pm
1 package MooseX::Storage::Basic;
2 use Moose::Role;
3
4 use MooseX::Storage::Engine;
5
6 our $VERSION   = '0.18';
7 our $AUTHORITY = 'cpan:STEVAN';
8
9 sub pack {
10     my ( $self, @args ) = @_;
11     my $e = $self->_storage_get_engine_class->new( object => $self );
12     $e->collapse_object(@args);
13 }
14
15 sub unpack {
16     my ($class, $data, %args) = @_;
17     my $e = $class->_storage_get_engine_class->new(class => $class);
18     
19     $class->_storage_construct_instance( 
20         $e->expand_object($data, %args), 
21         \%args 
22     );
23 }
24
25 sub _storage_get_engine_class {
26     'MooseX::Storage::Engine';
27 }
28
29 sub _storage_construct_instance {
30     my ($class, $args, $opts) = @_;
31     my %i = defined $opts->{'inject'} ? %{ $opts->{'inject'} } : ();
32  
33     $class->new( %$args, %i );
34 }
35
36 1;
37
38 __END__
39
40 =pod
41
42 =head1 NAME
43
44 MooseX::Storage::Basic - The simplest level of serialization
45
46 =head1 SYNOPSIS
47
48   package Point;
49   use Moose;
50   use MooseX::Storage;
51   
52   our $VERSION = '0.01';
53   
54   with Storage;
55   
56   has 'x' => (is => 'rw', isa => 'Int');
57   has 'y' => (is => 'rw', isa => 'Int');
58   
59   1;
60   
61   my $p = Point->new(x => 10, y => 10);
62   
63   ## methods to pack/unpack an 
64   ## object in perl data structures
65   
66   # pack the class into a hash
67   $p->pack(); # { __CLASS__ => 'Point-0.01', x => 10, y => 10 }
68   
69   # unpack the hash into a class
70   my $p2 = Point->unpack({ __CLASS__ => 'Point-0.01', x => 10, y => 10 });
71   
72   # unpack the hash, with insertion of paramaters
73   my $p3 = Point->unpack( $p->pack, inject => { x => 11 } );
74
75 =head1 DESCRIPTION
76
77 This is the most basic form of serialization. This is used by default 
78 but the exported C<Storage> function.
79
80 =head1 METHODS
81
82 =over 4
83
84 =item B<pack ([ disable_cycle_check => 1])>
85
86 Providing the C<disable_cycle_check> argument disables checks for any cyclical
87 references. The current implementation for this check is rather naive, so if
88 you know what you are doing, you can bypass this check.
89
90 This trait is applied on a perl-case basis. To set this flag for all objects
91 that inherit from this role, see L<MooseX::Storage::Traits::DisableCycleDetection>.
92
93 =item B<unpack ($data [, insert => { key => val, ... } ] )>
94
95 Providing the C<insert> argument let's you supply additional arguments to
96 the class' C<new> function, or override ones from the serialized data.
97
98 =back
99
100 =head2 Introspection
101
102 =over 4
103
104 =item B<meta>
105
106 =back
107
108 =head1 BUGS
109
110 All complex software has bugs lurking in it, and this module is no 
111 exception. If you find a bug please either email me, or add the bug
112 to cpan-RT.
113
114 =head1 AUTHOR
115
116 Chris Prather E<lt>chris.prather@iinteractive.comE<gt>
117
118 Stevan Little E<lt>stevan.little@iinteractive.comE<gt>
119
120 =head1 COPYRIGHT AND LICENSE
121
122 Copyright 2007-2008 by Infinity Interactive, Inc.
123
124 L<http://www.iinteractive.com>
125
126 This library is free software; you can redistribute it and/or modify
127 it under the same terms as Perl itself.
128
129 =cut