File Coverage

blib/lib/MooseX/Storage/IO/File.pm
Criterion Covered Total %
statement 16 16 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod 2 2 100.0
total 24 24 100.0


line stmt bran cond sub pod time code
1             package MooseX::Storage::IO::File;
2             # ABSTRACT: A basic File I/O role
3              
4             our $VERSION = '0.52';
5              
6 6     6   2982 use Moose::Role;
  6         8  
  6         36  
7 6     6   22623 use MooseX::Storage::Engine::IO::File;
  6         13  
  6         169  
8 6     6   29 use namespace::autoclean;
  6         8  
  6         37  
9              
10             requires 'thaw';
11             requires 'freeze';
12              
13             sub load {
14 9     9 1 1812 my ( $class, $filename, @args ) = @_;
15 9         68 $class->thaw( MooseX::Storage::Engine::IO::File->new( file => $filename )->load(), @args );
16             }
17              
18             sub store {
19 5     5 1 17083 my ( $self, $filename, @args ) = @_;
20 5         44 MooseX::Storage::Engine::IO::File->new( file => $filename )->store( $self->freeze(@args) );
21             }
22              
23 6     6   1028 no Moose::Role;
  6         8  
  6         40  
24              
25             1;
26              
27             __END__
28              
29             =pod
30              
31             =encoding UTF-8
32              
33             =head1 NAME
34              
35             MooseX::Storage::IO::File - A basic File I/O role
36              
37             =head1 VERSION
38              
39             version 0.52
40              
41             =head1 SYNOPSIS
42              
43             package Point;
44             use Moose;
45             use MooseX::Storage;
46              
47             with Storage('format' => 'JSON', 'io' => 'File');
48              
49             has 'x' => (is => 'rw', isa => 'Int');
50             has 'y' => (is => 'rw', isa => 'Int');
51              
52             1;
53              
54             my $p = Point->new(x => 10, y => 10);
55              
56             ## methods to load/store a class
57             ## on the file system
58              
59             $p->store('my_point.json');
60              
61             my $p2 = Point->load('my_point.json');
62              
63             =head1 METHODS
64              
65             =over 4
66              
67             =item B<load ($filename)>
68              
69             =item B<store ($filename)>
70              
71             =back
72              
73             =head1 SUPPORT
74              
75             Bugs may be submitted through L<the RT bug tracker|https://rt.cpan.org/Public/Dist/Display.html?Name=MooseX-Storage>
76             (or L<bug-MooseX-Storage@rt.cpan.org|mailto:bug-MooseX-Storage@rt.cpan.org>).
77              
78             There is also a mailing list available for users of this distribution, at
79             L<http://lists.perl.org/list/moose.html>.
80              
81             There is also an irc channel available for users of this distribution, at
82             L<C<#moose> on C<irc.perl.org>|irc://irc.perl.org/#moose>.
83              
84             =head1 AUTHORS
85              
86             =over 4
87              
88             =item *
89              
90             Chris Prather <chris.prather@iinteractive.com>
91              
92             =item *
93              
94             Stevan Little <stevan.little@iinteractive.com>
95              
96             =item *
97              
98             יובל קוג'מן (Yuval Kogman) <nothingmuch@woobling.org>
99              
100             =back
101              
102             =head1 COPYRIGHT AND LICENSE
103              
104             This software is copyright (c) 2007 by Infinity Interactive, Inc.
105              
106             This is free software; you can redistribute it and/or modify it under
107             the same terms as the Perl 5 programming language system itself.
108              
109             =cut