implemented cycle handling
[gitmo/MooseX-Storage.git] / lib / MooseX / Storage / Engine.pm
CommitLineData
e59193fb 1
2package MooseX::Storage::Engine;
3use Moose;
4
ba5bba75 5our $VERSION = '0.01';
6
7# the class marker when
8# serializing an object.
9our $CLASS_MARKER = '__CLASS__';
10
e59193fb 11has 'storage' => (
7eb5dc63 12 is => 'ro',
13 isa => 'HashRef',
14 default => sub {{}}
15);
16
17has 'seen' => (
18 is => 'ro',
e9739624 19 isa => 'HashRef',
e59193fb 20 default => sub {{}}
21);
22
e9739624 23has 'object' => (is => 'rw', isa => 'Object');
24has 'class' => (is => 'rw', isa => 'Str');
e59193fb 25
e9739624 26## this is the API used by other modules ...
e59193fb 27
28sub collapse_object {
29 my $self = shift;
7eb5dc63 30
31 # NOTE:
32 # mark the root object as seen ...
33 $self->seen->{$self->object} = undef;
34
e9739624 35 $self->map_attributes('collapse_attribute');
ba5bba75 36 $self->storage->{$CLASS_MARKER} = $self->object->meta->name;
e59193fb 37 return $self->storage;
38}
39
e9739624 40sub expand_object {
41 my ($self, $data) = @_;
7eb5dc63 42
43 # NOTE:
44 # mark the root object as seen ...
45 $self->seen->{$data} = undef;
46
e9739624 47 $self->map_attributes('expand_attribute', $data);
48 return $self->storage;
e59193fb 49}
50
e9739624 51## this is the internal API ...
52
53sub collapse_attribute {
54 my ($self, $attr) = @_;
55 $self->storage->{$attr->name} = $self->collapse_attribute_value($attr) || return;
56}
57
58sub expand_attribute {
59 my ($self, $attr, $data) = @_;
60 $self->storage->{$attr->name} = $self->expand_attribute_value($attr, $data->{$attr->name}) || return;
e59193fb 61}
62
e9739624 63sub collapse_attribute_value {
e59193fb 64 my ($self, $attr) = @_;
e9739624 65 my $value = $attr->get_value($self->object);
7eb5dc63 66
67 $self->check_for_cycle_in_collapse($value)
68 if ref $value;
69
e9739624 70 if (defined $value && $attr->has_type_constraint) {
3db8f791 71 my $type_converter = $self->find_type_handler($attr->type_constraint);
e9739624 72 (defined $type_converter)
73 || confess "Cannot convert " . $attr->type_constraint->name;
74 $value = $type_converter->{collapse}->($value);
75 }
76 return $value;
77}
78
79sub expand_attribute_value {
80 my ($self, $attr, $value) = @_;
7eb5dc63 81
82 $self->check_for_cycle_in_expansion($value)
83 if ref $value;
84
e9739624 85 if (defined $value && $attr->has_type_constraint) {
3db8f791 86 my $type_converter = $self->find_type_handler($attr->type_constraint);
e9739624 87 $value = $type_converter->{expand}->($value);
88 }
89 return $value;
90}
91
92# util methods ...
93
7eb5dc63 94sub check_for_cycle_in_collapse {
95 my ($self, $value) = @_;
96 (!exists $self->seen->{$value})
97 || confess "Basic Engine does not support cycles";
98 $self->seen->{$value} = undef;
99}
100
101sub check_for_cycle_in_expansion {
102 my ($self, $value) = @_;
103 (!exists $self->seen->{$value})
104 || confess "Basic Engine does not support cycles";
105 $self->seen->{$value} = undef;
106}
107
e9739624 108sub map_attributes {
109 my ($self, $method_name, @args) = @_;
110 map {
111 $self->$method_name($_, @args)
112 } ($self->object || $self->class)->meta->compute_all_applicable_attributes;
e59193fb 113}
114
913d96dd 115## ------------------------------------------------------------------
3db8f791 116## This is all the type handler stuff, it is in a state of flux
117## right now, so this may change, or it may just continue to be
118## improved upon. Comments and suggestions are welcomed.
913d96dd 119## ------------------------------------------------------------------
120
121# NOTE:
122# these are needed by the
123# ArrayRef and HashRef handlers
124# below, so I need easy access
125my %OBJECT_HANDLERS = (
126 expand => sub {
127 my $data = shift;
ba5bba75 128 (exists $data->{$CLASS_MARKER})
913d96dd 129 || confess "Serialized item has no class marker";
ba5bba75 130 $data->{$CLASS_MARKER}->unpack($data);
913d96dd 131 },
132 collapse => sub {
133 my $obj = shift;
134 ($obj->can('does') && $obj->does('MooseX::Storage::Basic'))
135 || confess "Bad object ($obj) does not do MooseX::Storage::Basic role";
136 $obj->pack();
137 },
138);
139
140
e59193fb 141my %TYPES = (
3db8f791 142 # These are boring ones, so they use the identity function ...
e9739624 143 'Int' => { expand => sub { shift }, collapse => sub { shift } },
144 'Num' => { expand => sub { shift }, collapse => sub { shift } },
145 'Str' => { expand => sub { shift }, collapse => sub { shift } },
3db8f791 146 # These are the trickier ones, (see notes)
147 # NOTE:
148 # Because we are nice guys, we will check
149 # your ArrayRef and/or HashRef one level
150 # down and inflate any objects we find.
151 # But this is where it ends, it is too
152 # expensive to try and do this any more
153 # recursively, when it is probably not
154 # nessecary in most of the use cases.
155 # However, if you need more then this, subtype
156 # and add a custom handler.
913d96dd 157 'ArrayRef' => {
e9739624 158 expand => sub {
913d96dd 159 my $array = shift;
160 foreach my $i (0 .. $#{$array}) {
161 next unless ref($array->[$i]) eq 'HASH'
ba5bba75 162 && exists $array->[$i]->{$CLASS_MARKER};
913d96dd 163 $array->[$i] = $OBJECT_HANDLERS{expand}->($array->[$i])
164 }
165 $array;
166 },
167 collapse => sub {
168 my $array = shift;
169 # NOTE:
170 # we need to make a copy cause
171 # otherwise it will affect the
172 # other real version.
173 [ map {
174 blessed($_)
175 ? $OBJECT_HANDLERS{collapse}->($_)
176 : $_
177 } @$array ]
178 }
179 },
180 'HashRef' => {
3db8f791 181 expand => sub {
182 my $hash = shift;
183 foreach my $k (keys %$hash) {
184 next unless ref($hash->{$k}) eq 'HASH'
ba5bba75 185 && exists $hash->{$k}->{$CLASS_MARKER};
3db8f791 186 $hash->{$k} = $OBJECT_HANDLERS{expand}->($hash->{$k})
187 }
188 $hash;
189 },
190 collapse => sub {
191 my $hash = shift;
192 # NOTE:
193 # we need to make a copy cause
194 # otherwise it will affect the
195 # other real version.
196 +{ map {
95f31c36 197 blessed($hash->{$_})
3db8f791 198 ? ($_ => $OBJECT_HANDLERS{collapse}->($hash->{$_}))
199 : ($_ => $hash->{$_})
200 } keys %$hash }
201 }
e1bb45ff 202 },
913d96dd 203 'Object' => \%OBJECT_HANDLERS,
e1bb45ff 204 # NOTE:
205 # The sanity of enabling this feature by
206 # default is very questionable.
207 # - SL
208 #'CodeRef' => {
209 # expand => sub {}, # use eval ...
210 # collapse => sub {}, # use B::Deparse ...
7eb5dc63 211 #}
e59193fb 212);
213
3db8f791 214sub add_custom_type_handler {
215 my ($class, $type_name, %handlers) = @_;
216 (exists $handlers{expand} && exists $handlers{collapse})
217 || confess "Custom type handlers need an expand *and* a collapse method";
218 $TYPES{$type_name} = \%handlers;
219}
220
221sub remove_custom_type_handler {
222 my ($class, $type_name) = @_;
223 delete $TYPES{$type_name} if exists $TYPES{$type_name};
224}
225
226sub find_type_handler {
e59193fb 227 my ($self, $type_constraint) = @_;
e1bb45ff 228
229 # this should handle most type usages
230 # since they they are usually just
231 # the standard set of built-ins
232 return $TYPES{$type_constraint->name}
233 if exists $TYPES{$type_constraint->name};
234
235 # the next possibility is they are
236 # a subtype of the built-in types,
237 # in which case this will DWIM in
238 # most cases. It is probably not
239 # 100% ideal though, but until I
240 # come up with a decent test case
241 # it will do for now.
e59193fb 242 foreach my $type (keys %TYPES) {
243 return $TYPES{$type}
244 if $type_constraint->is_subtype_of($type);
245 }
e1bb45ff 246
247 # NOTE:
248 # the reason the above will work has to
249 # do with the fact that custom subtypes
250 # are mostly used for validation of
251 # the guts of a type, and not for some
252 # weird structural thing which would
253 # need to be accomidated by the serializer.
254 # Of course, mst or phaylon will probably
255 # do something to throw this assumption
256 # totally out the door ;)
257 # - SL
258
e9739624 259 # NOTE:
260 # if this method hasnt returned by now
261 # then we have no been able to find a
262 # type constraint handler to match
263 confess "Cannot handle type constraint (" . $type_constraint->name . ")";
e59193fb 264}
265
2661;
e9739624 267
268__END__
269
270=pod
271
ec9c1923 272=head1 NAME
273
274MooseX::Storage::Engine
275
276=head1 SYNOPSIS
277
278=head1 DESCRIPTION
279
280=head1 METHODS
281
282=head2 Accessors
283
284=over 4
285
286=item B<class>
287
288=item B<object>
289
290=item B<storage>
291
292=back
293
294=head2 API
295
296=over 4
297
298=item B<expand_object>
299
300=item B<collapse_object>
301
302=back
303
304=head2 ...
305
306=over 4
307
308=item B<collapse_attribute>
309
310=item B<collapse_attribute_value>
311
312=item B<expand_attribute>
313
314=item B<expand_attribute_value>
315
316=item B<map_attributes>
317
3db8f791 318=back
319
320=head2 Type Constraint Handlers
321
322=over 4
323
324=item B<find_type_handler>
325
326=item B<add_custom_type_handler>
327
328=item B<remove_custom_type_handler>
ec9c1923 329
330=back
331
332=head2 Introspection
333
334=over 4
335
336=item B<meta>
337
338=back
339
340=head1 BUGS
341
342All complex software has bugs lurking in it, and this module is no
343exception. If you find a bug please either email me, or add the bug
344to cpan-RT.
345
346=head1 AUTHOR
347
348Chris Prather E<lt>chris.prather@iinteractive.comE<gt>
349
350Stevan Little E<lt>stevan.little@iinteractive.comE<gt>
351
352=head1 COPYRIGHT AND LICENSE
353
354Copyright 2007 by Infinity Interactive, Inc.
355
356L<http://www.iinteractive.com>
357
358This library is free software; you can redistribute it and/or modify
359it under the same terms as Perl itself.
360
e9739624 361=cut
362
363
ec9c1923 364