X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMooseX%2FStorage%2FDeferred.pm;h=3265d4761e2a1b4efbe63f272670100552960da5;hb=e44b5f5498b782752d2c91b6796698c86143a2f0;hp=7b0abe98d0dd2669e6ae06ef2b093c5de2743039;hpb=14e5132ad4def507c424a56dfb30b935b1ab3b44;p=gitmo%2FMooseX-Storage.git diff --git a/lib/MooseX/Storage/Deferred.pm b/lib/MooseX/Storage/Deferred.pm index 7b0abe9..3265d47 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.21'; +our $VERSION = '0.32'; 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,12 +52,9 @@ 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; @@ -98,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 }', @@ -119,6 +117,8 @@ SYNOPSIS for more info) =item I +=item I + =item I =item I