refactor Storage output into an IO engine to allow better flexability
Chris Prather [Thu, 29 Mar 2007 22:48:56 +0000 (22:48 +0000)]
lib/MooseX/Storage/Engine.pm
lib/MooseX/Storage/IO/File.pm [new file with mode: 0644]
lib/MooseX/Storage/JSON.pm

index d496fd1..4e801b7 100644 (file)
@@ -120,6 +120,9 @@ sub match_type {
     # --- pass it on
     # this should cover 80% of all use cases
 
+       # CHRIS: To cover the last 20% we need a way 
+       # for people to extend this process.
+
     # NOTE:
     # if this method hasnt returned by now
     # then we have no been able to find a 
diff --git a/lib/MooseX/Storage/IO/File.pm b/lib/MooseX/Storage/IO/File.pm
new file mode 100644 (file)
index 0000000..69ecbd9
--- /dev/null
@@ -0,0 +1,21 @@
+
+package MooseX::Storage::IO::File;
+use Moose;
+
+has file => (
+       isa => 'Str',
+       is  => 'ro',
+       required => 1,
+);
+
+sub load { 
+       my ($self) = @_;
+       my $fh = IO::File->new($self->file, 'r');
+       return do { local $/; <$fh>; };
+}
+
+sub store {
+       my ($self, $data) = @_;
+       my $fh = IO::File->new($self->file, 'w');
+       print $fh $data;
+}
\ No newline at end of file
index 7787bdc..71189e4 100644 (file)
@@ -6,37 +6,40 @@ with 'MooseX::Storage::Base';
 
 use JSON::Syck ();
 use MooseX::Storage::Engine;
+use MooseX::Storage::IO::File;
 
 sub pack {
     my $self = shift;
-    my $e = MooseX::Storage::Engine->new(object => $self);
-    $e->collapse_object;    
+    my $e = MooseX::Storage::Engine->new( object => $self );
+    $e->collapse_object;
 }
 
 sub unpack {
-    my ($class, $data) = @_;
-    my $e = MooseX::Storage::Engine->new(class => $class);
-    $class->new($e->expand_object($data));    
+    my ( $class, $data ) = @_;
+    my $e = MooseX::Storage::Engine->new( class => $class );
+    $class->new( $e->expand_object($data) );
 }
 
 sub load {
-    my ($class, $filename) = @_;
-    $class->unpack(JSON::Syck::LoadFile($filename));    
+    my ( $class, $filename ) = @_;
+    $class->unpack(
+        $class->thaw( MooseX::Storage::IO->new( file => $filename )->load() )
+    );
 }
 
 sub store {
-    my ($self, $filename) = @_;
-    JSON::Syck::DumpFile($filename, $self->pack());    
+    my ( $self, $filename ) = @_;
+    MooseX::Storage::IO->new( file => $filename )->store( $self->freeze() );
 }
 
 sub thaw {
-    my ($class, $json) = @_;
-    $class->unpack(JSON::Syck::Load($json));
+    my ( $class, $json ) = @_;
+    $class->unpack( JSON::Syck::Load($json) );
 }
 
 sub freeze {
     my $self = shift;
-    JSON::Syck::Dump($self->pack());
+    JSON::Syck::Dump( $self->pack() );
 }
 
 1;