X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMooseX%2FStorage%2FDeferred.pm;h=09be00cbba2f1fe5e66b8a8e766e8ba889ca3faf;hb=004bf3ea04d7818116a94bb4b387d8ae1dd10f9a;hp=bca21f72c45035fa96048c01331a6b1fae4c4f33;hpb=d4b1b66748b64d36fd75f717eaff5bafbc43af06;p=gitmo%2FMooseX-Storage.git diff --git a/lib/MooseX/Storage/Deferred.pm b/lib/MooseX/Storage/Deferred.pm index bca21f7..09be00c 100644 --- a/lib/MooseX/Storage/Deferred.pm +++ b/lib/MooseX/Storage/Deferred.pm @@ -1,23 +1,27 @@ package MooseX::Storage::Deferred; use Moose::Role; -our $VERSION = '0.20'; +our $VERSION = '0.28'; our $AUTHORITY = 'cpan:STEVAN'; with 'MooseX::Storage::Basic'; +sub __get_method { + my ( $self, $basename, $value, $method_name ) = @_; + + my $role = MooseX::Storage->_expand_role($basename => $value)->meta; + my $method = $role->get_method($method_name)->body; +} + sub thaw { my ( $class, $packed, $type, @args ) = @_; (exists $type->{format}) || confess "You must specify a format type to thaw from"; - my $class_to_load = 'MooseX::Storage::Format::' . $type->{format}; - Class::MOP::load_class($class_to_load); + my $code = $class->__get_method(Format => $type->{format} => 'thaw'); - my $method_to_call = $class_to_load . '::thaw'; - - $class->$method_to_call($packed, @args); + $class->$code($packed, @args); } sub freeze { @@ -26,12 +30,9 @@ sub freeze { (exists $type->{format}) || confess "You must specify a format type to freeze into"; - my $class_to_load = 'MooseX::Storage::Format::' . $type->{format}; - Class::MOP::load_class($class_to_load); - - my $method_to_call = $class_to_load . '::freeze'; + my $code = $self->__get_method(Format => $type->{format} => 'freeze'); - $self->$method_to_call(@args); + $self->$code(@args); } sub load { @@ -40,12 +41,9 @@ sub load { (exists $type->{io}) || confess "You must specify an I/O type to load with"; - my $class_to_load = 'MooseX::Storage::IO::' . $type->{io}; - Class::MOP::load_class($class_to_load); + my $code = $class->__get_method(IO => $type->{io} => 'load'); - my $method_to_call = $class_to_load . '::load'; - - $class->$method_to_call($filename, $type, @args); + $class->$code($filename, $type, @args); } sub store { @@ -54,14 +52,13 @@ sub store { (exists $type->{io}) || confess "You must specify an I/O type to store with"; - my $class_to_load = 'MooseX::Storage::IO::' . $type->{io}; - Class::MOP::load_class($class_to_load); - - my $method_to_call = $class_to_load . '::store'; + my $code = $self->__get_method(IO => $type->{io} => 'store'); - $self->$method_to_call($filename, $type, @args); + $self->$code($filename, $type, @args); } +no Moose::Role; + 1; __END__ @@ -96,6 +93,9 @@ MooseX::Storage::Deferred - A role for undecisive programmers # pack the class into a JSON string $p->freeze({ format => 'JSON' }); # { "__CLASS__" : "Point", "x" : 10, "y" : 10 } + # pack the class into a JSON string using parameterized JSONpm role + $p->freeze({ format => [ JSONpm => { json_opts => { pretty => 1 } } ] }); + # unpack the JSON string into a class my $p2 = Point->thaw( '{ "__CLASS__" : "Point", "x" : 10, "y" : 10 }', @@ -117,6 +117,8 @@ SYNOPSIS for more info) =item I +=item I + =item I =item I