| Hook-Modular documentation | Contained in the Hook-Modular distribution. |
Hook::Modular::Cache - Cache for Hook::Modular
version 1.101050
FIXME
FIXME
FIXME
FIXME
FIXME
FIXME
See perlmodinstall for information and options on installing Perl modules.
No bugs have been reported.
Please report any bugs or feature requests through the web interface at http://rt.cpan.org/Public/Dist/Display.html?Name=Hook-Modular.
The latest version of this module is available from the Comprehensive Perl Archive Network (CPAN). Visit http://www.perl.com/CPAN/ to find a CPAN site near you, or see http://search.cpan.org/dist/Hook-Modular/.
The development version lives at http://github.com/hanekomu/Hook-Modular/. Instead of sending patches, please fork this project using the standard git and github infrastructure.
Marcel Gruenauer <marcel@cpan.org> Tatsuhiko Miyagawa <miyagawa@bulknews.net>
This software is copyright (c) 2007 by Marcel Gruenauer.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| Hook-Modular documentation | Contained in the Hook-Modular distribution. |
use 5.008; use strict; use warnings; package Hook::Modular::Cache; BEGIN { $Hook::Modular::Cache::VERSION = '1.101050'; } # ABSTRACT: Cache for Hook::Modular use File::Path; use File::Spec; use UNIVERSAL::require; sub new { my ($class, $conf) = @_; mkdir $conf->{base}, 0700 unless -e $conf->{base} && -d_; # Cache default configuration $conf->{class} ||= 'Cache::FileCache'; $conf->{params} ||= { cache_root => File::Spec->catfile($conf->{base}, 'cache'), default_expires_in => $conf->{expires} || 'never', directory_umask => 0077, }; $conf->{class}->require; # If class is not loadable, falls back to on memory cache if ($@) { Hook::Modular->context->log(error => "Can't load $conf->{class}. Falling back to Hook::Modular::Cache::Null" ); require Hook::Modular::Cache::Null; $conf->{class} = 'Hook::Modular::Cache::Null'; } my $self = bless { base => $conf->{base}, cache => $conf->{class}->new($conf->{params}), to_purge => $conf->{expires} ? 1 : 0, }, $class; } sub path_to { my ($self, @path) = @_; if (@path > 1) { my @chunk = @path[ 0 .. $#path - 1 ]; mkpath(File::Spec->catfile($self->{base}, @chunk), 0, 0700); } File::Spec->catfile($self->{base}, @path); } sub get { my $self = shift; my $value; if ($self->{cache}->isa('Cache')) { eval { $value = $self->{cache}->thaw(@_) }; if ($@ && $@ =~ /Storable binary/) { $value = $self->{cache}->get(@_); } } else { $value = $self->{cache}->get(@_); } my $hit_miss = defined $value ? "HIT" : "MISS"; Hook::Modular->context->log(debug => "Cache $hit_miss: $_[0]"); $value; } sub get_callback { my ($self, $key, $callback, $expiry) = @_; my $data = $self->get($key); if (defined $data) { return $data; } $data = $callback->(); if (defined $data) { $self->set($key => $data, $expiry); } $data; } sub set { my ($self, $value) = @_[0,2]; my $setter = $self->{cache}->isa('Cache') && ref $value ? 'freeze' : 'set'; $self->{cache}->$setter(@_); } sub remove { my $self = shift; $self->{cache}->remove(@_); } sub DESTROY { my $self = shift; $self->{cache}->purge if $self->{to_purge}; } 1; __END__