adding in version and authority checks
[gitmo/MooseX-Storage.git] / lib / MooseX / Storage / Engine.pm
CommitLineData
e59193fb 1
2package MooseX::Storage::Engine;
3use Moose;
4
45d9a73c 5our $VERSION = '0.02';
ba5bba75 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');
c1830046 36 $self->storage->{$CLASS_MARKER} = $self->object->meta->identifier;
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
b430caa3 67 # NOTE:
68 # this might not be enough, we might
69 # need to make it possible for the
70 # cycle checker to return the value
45d9a73c 71 $self->check_for_cycle_in_collapse($attr, $value)
7eb5dc63 72 if ref $value;
73
e9739624 74 if (defined $value && $attr->has_type_constraint) {
3db8f791 75 my $type_converter = $self->find_type_handler($attr->type_constraint);
e9739624 76 (defined $type_converter)
77 || confess "Cannot convert " . $attr->type_constraint->name;
78 $value = $type_converter->{collapse}->($value);
79 }
80 return $value;
81}
82
83sub expand_attribute_value {
84 my ($self, $attr, $value) = @_;
7eb5dc63 85
b430caa3 86 # NOTE:
87 # (see comment in method above ^^)
45d9a73c 88 $self->check_for_cycle_in_expansion($attr, $value)
7eb5dc63 89 if ref $value;
90
e9739624 91 if (defined $value && $attr->has_type_constraint) {
3db8f791 92 my $type_converter = $self->find_type_handler($attr->type_constraint);
e9739624 93 $value = $type_converter->{expand}->($value);
94 }
95 return $value;
96}
97
b430caa3 98# NOTE:
99# possibly these two methods will
100# be used by a cycle supporting
101# engine. However, I am not sure
102# if I can make a cycle one work
103# anyway.
e9739624 104
7eb5dc63 105sub check_for_cycle_in_collapse {
45d9a73c 106 my ($self, $attr, $value) = @_;
7eb5dc63 107 (!exists $self->seen->{$value})
45d9a73c 108 || confess "Basic Engine does not support cycles in class("
c1830046 109 . ($attr->associated_class->name) . ").attr("
45d9a73c 110 . ($attr->name) . ") with $value";
7eb5dc63 111 $self->seen->{$value} = undef;
112}
113
114sub check_for_cycle_in_expansion {
45d9a73c 115 my ($self, $attr, $value) = @_;
7eb5dc63 116 (!exists $self->seen->{$value})
45d9a73c 117 || confess "Basic Engine does not support cycles in class("
c1830046 118 . ($attr->associated_class->name) . ").attr("
45d9a73c 119 . ($attr->name) . ") with $value";
7eb5dc63 120 $self->seen->{$value} = undef;
121}
122
b430caa3 123# util methods ...
124
e9739624 125sub map_attributes {
126 my ($self, $method_name, @args) = @_;
127 map {
128 $self->$method_name($_, @args)
b430caa3 129 } grep {
130 # Skip our special skip attribute :)
131 !$_->isa('MooseX::Storage::Meta::Attribute::DoNotSerialize')
e9739624 132 } ($self->object || $self->class)->meta->compute_all_applicable_attributes;
e59193fb 133}
134
913d96dd 135## ------------------------------------------------------------------
3db8f791 136## This is all the type handler stuff, it is in a state of flux
137## right now, so this may change, or it may just continue to be
138## improved upon. Comments and suggestions are welcomed.
913d96dd 139## ------------------------------------------------------------------
140
141# NOTE:
142# these are needed by the
143# ArrayRef and HashRef handlers
144# below, so I need easy access
145my %OBJECT_HANDLERS = (
146 expand => sub {
147 my $data = shift;
ba5bba75 148 (exists $data->{$CLASS_MARKER})
913d96dd 149 || confess "Serialized item has no class marker";
c1830046 150 # check the class more thoroughly here ...
151 my ($class, $version, $authority) = (split '-' => $data->{$CLASS_MARKER});
152 my $meta = eval { $class->meta };
153 confess "Class ($class) is not loaded, cannot unpack" if $@;
154 ($meta->version eq $version)
155 || confess "Class ($class) versions don't match."
156 . " got=($version) available=(" . ($meta->version || '') . ")"
157 if defined $version;
158 ($meta->authority eq $authority)
159 || confess "Class ($class) authorities don't match."
160 . " got=($authority) available=(" . ($meta->authority || '') . ")"
161 if defined $authority;
162 # all is well ...
163 $class->unpack($data);
913d96dd 164 },
165 collapse => sub {
166 my $obj = shift;
167 ($obj->can('does') && $obj->does('MooseX::Storage::Basic'))
168 || confess "Bad object ($obj) does not do MooseX::Storage::Basic role";
169 $obj->pack();
170 },
171);
172
173
e59193fb 174my %TYPES = (
3db8f791 175 # These are boring ones, so they use the identity function ...
e9739624 176 'Int' => { expand => sub { shift }, collapse => sub { shift } },
177 'Num' => { expand => sub { shift }, collapse => sub { shift } },
178 'Str' => { expand => sub { shift }, collapse => sub { shift } },
3db8f791 179 # These are the trickier ones, (see notes)
180 # NOTE:
181 # Because we are nice guys, we will check
182 # your ArrayRef and/or HashRef one level
183 # down and inflate any objects we find.
184 # But this is where it ends, it is too
185 # expensive to try and do this any more
186 # recursively, when it is probably not
187 # nessecary in most of the use cases.
188 # However, if you need more then this, subtype
189 # and add a custom handler.
913d96dd 190 'ArrayRef' => {
e9739624 191 expand => sub {
913d96dd 192 my $array = shift;
193 foreach my $i (0 .. $#{$array}) {
194 next unless ref($array->[$i]) eq 'HASH'
ba5bba75 195 && exists $array->[$i]->{$CLASS_MARKER};
913d96dd 196 $array->[$i] = $OBJECT_HANDLERS{expand}->($array->[$i])
197 }
198 $array;
199 },
200 collapse => sub {
201 my $array = shift;
202 # NOTE:
203 # we need to make a copy cause
204 # otherwise it will affect the
205 # other real version.
206 [ map {
207 blessed($_)
208 ? $OBJECT_HANDLERS{collapse}->($_)
209 : $_
210 } @$array ]
211 }
212 },
213 'HashRef' => {
3db8f791 214 expand => sub {
215 my $hash = shift;
216 foreach my $k (keys %$hash) {
217 next unless ref($hash->{$k}) eq 'HASH'
ba5bba75 218 && exists $hash->{$k}->{$CLASS_MARKER};
3db8f791 219 $hash->{$k} = $OBJECT_HANDLERS{expand}->($hash->{$k})
220 }
221 $hash;
222 },
223 collapse => sub {
224 my $hash = shift;
225 # NOTE:
226 # we need to make a copy cause
227 # otherwise it will affect the
228 # other real version.
229 +{ map {
95f31c36 230 blessed($hash->{$_})
3db8f791 231 ? ($_ => $OBJECT_HANDLERS{collapse}->($hash->{$_}))
232 : ($_ => $hash->{$_})
233 } keys %$hash }
234 }
e1bb45ff 235 },
913d96dd 236 'Object' => \%OBJECT_HANDLERS,
e1bb45ff 237 # NOTE:
238 # The sanity of enabling this feature by
239 # default is very questionable.
240 # - SL
241 #'CodeRef' => {
242 # expand => sub {}, # use eval ...
243 # collapse => sub {}, # use B::Deparse ...
7eb5dc63 244 #}
e59193fb 245);
246
3db8f791 247sub add_custom_type_handler {
248 my ($class, $type_name, %handlers) = @_;
249 (exists $handlers{expand} && exists $handlers{collapse})
250 || confess "Custom type handlers need an expand *and* a collapse method";
251 $TYPES{$type_name} = \%handlers;
252}
253
254sub remove_custom_type_handler {
255 my ($class, $type_name) = @_;
256 delete $TYPES{$type_name} if exists $TYPES{$type_name};
257}
258
259sub find_type_handler {
e59193fb 260 my ($self, $type_constraint) = @_;
e1bb45ff 261
262 # this should handle most type usages
263 # since they they are usually just
264 # the standard set of built-ins
265 return $TYPES{$type_constraint->name}
266 if exists $TYPES{$type_constraint->name};
267
268 # the next possibility is they are
269 # a subtype of the built-in types,
270 # in which case this will DWIM in
271 # most cases. It is probably not
272 # 100% ideal though, but until I
273 # come up with a decent test case
274 # it will do for now.
e59193fb 275 foreach my $type (keys %TYPES) {
276 return $TYPES{$type}
277 if $type_constraint->is_subtype_of($type);
278 }
e1bb45ff 279
280 # NOTE:
281 # the reason the above will work has to
282 # do with the fact that custom subtypes
283 # are mostly used for validation of
284 # the guts of a type, and not for some
285 # weird structural thing which would
286 # need to be accomidated by the serializer.
287 # Of course, mst or phaylon will probably
288 # do something to throw this assumption
289 # totally out the door ;)
290 # - SL
291
e9739624 292 # NOTE:
293 # if this method hasnt returned by now
294 # then we have no been able to find a
295 # type constraint handler to match
296 confess "Cannot handle type constraint (" . $type_constraint->name . ")";
e59193fb 297}
298
2991;
e9739624 300
301__END__
302
303=pod
304
ec9c1923 305=head1 NAME
306
1390c23d 307MooseX::Storage::Engine - The meta-engine to handle collapsing and expanding objects
ec9c1923 308
309=head1 DESCRIPTION
310
1390c23d 311No user serviceable parts inside. If you really want to know, read the source :)
312
ec9c1923 313=head1 METHODS
314
315=head2 Accessors
316
317=over 4
318
319=item B<class>
320
321=item B<object>
322
323=item B<storage>
324
b430caa3 325=item B<seen>
326
ec9c1923 327=back
328
329=head2 API
330
331=over 4
332
333=item B<expand_object>
334
335=item B<collapse_object>
336
337=back
338
339=head2 ...
340
341=over 4
342
343=item B<collapse_attribute>
344
345=item B<collapse_attribute_value>
346
347=item B<expand_attribute>
348
349=item B<expand_attribute_value>
350
b430caa3 351=item B<check_for_cycle_in_collapse>
352
353=item B<check_for_cycle_in_expansion>
354
ec9c1923 355=item B<map_attributes>
356
3db8f791 357=back
358
359=head2 Type Constraint Handlers
360
361=over 4
362
363=item B<find_type_handler>
364
365=item B<add_custom_type_handler>
366
367=item B<remove_custom_type_handler>
ec9c1923 368
369=back
370
371=head2 Introspection
372
373=over 4
374
375=item B<meta>
376
377=back
378
379=head1 BUGS
380
381All complex software has bugs lurking in it, and this module is no
382exception. If you find a bug please either email me, or add the bug
383to cpan-RT.
384
385=head1 AUTHOR
386
387Chris Prather E<lt>chris.prather@iinteractive.comE<gt>
388
389Stevan Little E<lt>stevan.little@iinteractive.comE<gt>
390
391=head1 COPYRIGHT AND LICENSE
392
393Copyright 2007 by Infinity Interactive, Inc.
394
395L<http://www.iinteractive.com>
396
397This library is free software; you can redistribute it and/or modify
398it under the same terms as Perl itself.
399
e9739624 400=cut
401
402
ec9c1923 403