make perl loader check mtime for cache, prefer JSON::DWIW for JSON
[p5sagit/Config-Any.git] / lib / Config / Any / Perl.pm
index 2798d87..daf27f6 100644 (file)
@@ -48,12 +48,22 @@ sub load {
     my $file  = shift;
     my $content;
 
-    unless ( $content = $cache{ $file } ) {
-        $content = require $file;
-        $cache{ $file } = $content;
+    my $mtime = (stat($file))[9];
+
+    if ( (not exists $cache{ $file }) || $cache{ $file }{ mtime } < $mtime ) {
+        my $exception;
+        {
+            local $@;
+            $content = do $file;
+            $exception = $@;
+        }
+        die $exception if $exception;
+
+        $cache{ $file }{ mtime   } = $mtime;
+        $cache{ $file }{ content } = $content;
     }
 
-    return $content;
+    return $cache{ $file }{ content };
 }
 
 =head1 AUTHOR
@@ -62,7 +72,7 @@ Brian Cassidy E<lt>bricas@cpan.orgE<gt>
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright 2007 by Brian Cassidy
+Copyright 2006-2009 by Brian Cassidy
 
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself.