make perl loader check mtime for cache, prefer JSON::DWIW for JSON
[p5sagit/Config-Any.git] / lib / Config / Any / Perl.pm
CommitLineData
f0e3c221 1package Config::Any::Perl;
2
3use strict;
4use warnings;
5
dcfb1d1d 6use base 'Config::Any::Base';
7
83020fbd 8my %cache;
9
f0e3c221 10=head1 NAME
11
12Config::Any::Perl - Load Perl config files
13
14=head1 DESCRIPTION
15
16Loads Perl files. Example:
17
18 {
19 name => 'TestApp',
20 'Controller::Foo' => {
21 foo => 'bar'
22 },
23 'Model::Baz' => {
24 qux => 'xyzzy'
25 }
26 }
27
28=head1 METHODS
29
30=head2 extensions( )
31
32return an array of valid extensions (C<pl>, C<perl>).
33
34=cut
35
36sub extensions {
37 return qw( pl perl );
38}
39
40=head2 load( $file )
41
42Attempts to load C<$file> as a Perl file.
43
44=cut
45
46sub load {
47 my $class = shift;
48 my $file = shift;
83020fbd 49 my $content;
50
49ae6583 51 my $mtime = (stat($file))[9];
52
53 if ( (not exists $cache{ $file }) || $cache{ $file }{ mtime } < $mtime ) {
54 my $exception;
55 {
56 local $@;
57 $content = do $file;
58 $exception = $@;
59 }
60 die $exception if $exception;
61
62 $cache{ $file }{ mtime } = $mtime;
63 $cache{ $file }{ content } = $content;
83020fbd 64 }
65
49ae6583 66 return $cache{ $file }{ content };
f0e3c221 67}
68
69=head1 AUTHOR
70
a918b0b8 71Brian Cassidy E<lt>bricas@cpan.orgE<gt>
f0e3c221 72
73=head1 COPYRIGHT AND LICENSE
74
c793253e 75Copyright 2006-2009 by Brian Cassidy
f0e3c221 76
77This library is free software; you can redistribute it and/or modify
78it under the same terms as Perl itself.
79
80=head1 SEE ALSO
81
82=over 4
83
84=item * L<Catalyst>
85
86=item * L<Config::Any>
87
88=back
89
90=cut
91
921;