Bug 14598: Fix warning from effective_itemtype
[koha.git] / Koha / Cache.pm
blobc4ff9433e584cdd6110fc9b8fcd0e3447db316f8
1 package Koha::Cache;
3 # Copyright 2009 Chris Cormack and The Koha Dev Team
4 # Parts copyright 2012-2013 C & P Bibliography Services
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
21 =head1 NAME
23 Koha::Cache - Handling caching of html and Objects for Koha
25 =head1 SYNOPSIS
27 use Koha::Cache;
28 my $cache = Koha::Cache->new({cache_type => $cache_type, %params});
30 =head1 DESCRIPTION
32 Koha caching routines. This class provides two interfaces for cache access.
33 The first, traditional OO interface provides the following functions:
35 =head1 FUNCTIONS
37 =cut
38 use strict;
39 use warnings;
40 use Carp;
41 use Storable qw(freeze thaw);
42 use Module::Load::Conditional qw(can_load);
43 use Koha::Cache::Object;
45 use base qw(Class::Accessor);
47 __PACKAGE__->mk_ro_accessors(
48 qw( cache memcached_cache fastmmap_cache memory_cache ));
50 our %L1_cache;
52 =head2 get_instance
54 my $cache = Koha::Cache->get_instance();
56 This gets a shared instance of the cache, set up in a very default way. This is
57 the recommended way to fetch a cache object. If possible, it'll be
58 persistent across multiple instances.
60 =cut
62 our $singleton_cache;
63 sub get_instance {
64 my ($class) = @_;
65 $singleton_cache = $class->new() unless $singleton_cache;
66 return $singleton_cache;
69 =head2 new
71 Create a new Koha::Cache object. This is required for all cache-related functionality.
73 =cut
75 sub new {
76 my ( $class, $self ) = @_;
77 $self->{'default_type'} =
78 $self->{cache_type}
79 || $ENV{CACHING_SYSTEM}
80 || 'memcached';
82 $ENV{DEBUG} && carp "Default caching system: $self->{'default_type'}";
84 $self->{'timeout'} ||= 0;
85 $self->{'namespace'} ||= $ENV{MEMCACHED_NAMESPACE} || 'koha';
87 if ( $self->{'default_type'} eq 'memcached'
88 && can_load( modules => { 'Cache::Memcached::Fast' => undef } )
89 && _initialize_memcached($self)
90 && defined( $self->{'memcached_cache'} ) )
92 $self->{'cache'} = $self->{'memcached_cache'};
95 if ( $self->{'default_type'} eq 'fastmmap'
96 && defined( $ENV{GATEWAY_INTERFACE} )
97 && can_load( modules => { 'Cache::FastMmap' => undef } )
98 && _initialize_fastmmap($self)
99 && defined( $self->{'fastmmap_cache'} ) )
101 $self->{'cache'} = $self->{'fastmmap_cache'};
104 # Unless memcache or fastmmap has already been picked, use memory_cache
105 unless ( defined( $self->{'cache'} ) ) {
106 if ( can_load( modules => { 'Cache::Memory' => undef } )
107 && _initialize_memory($self) )
109 $self->{'cache'} = $self->{'memory_cache'};
113 $ENV{DEBUG} && carp "Selected caching system: " . ($self->{'cache'} // 'none');
115 return
116 bless $self,
117 $class;
120 sub _initialize_memcached {
121 my ($self) = @_;
122 my @servers =
123 split /,/, $self->{'cache_servers'}
124 ? $self->{'cache_servers'}
125 : ($ENV{MEMCACHED_SERVERS} || '');
126 return if !@servers;
128 $ENV{DEBUG}
129 && carp "Memcached server settings: "
130 . join( ', ', @servers )
131 . " with "
132 . $self->{'namespace'};
133 # Cache::Memcached::Fast doesn't allow a default expire time to be set
134 # so we force it on setting.
135 my $memcached = Cache::Memcached::Fast->new(
137 servers => \@servers,
138 compress_threshold => 10_000,
139 namespace => $self->{'namespace'},
140 utf8 => 1,
143 # Ensure we can actually talk to the memcached server
144 my $ismemcached = $memcached->set('ismemcached','1');
145 return $self unless $ismemcached;
146 $self->{'memcached_cache'} = $memcached;
147 return $self;
150 sub _initialize_fastmmap {
151 my ($self) = @_;
152 my ($cache, $share_file);
154 # Temporary workaround to catch fatal errors when: C4::Context module
155 # is not loaded beforehand, or Cache::FastMmap init fails for whatever
156 # other reason (e.g. due to permission issues - see Bug 13431)
157 eval {
158 $share_file = join( '-',
159 "/tmp/sharefile-koha", $self->{'namespace'},
160 C4::Context->config('hostname'), C4::Context->config('database') );
162 $cache = Cache::FastMmap->new(
163 'share_file' => $share_file,
164 'expire_time' => $self->{'timeout'},
165 'unlink_on_exit' => 0,
168 if ( $@ ) {
169 warn "FastMmap cache initialization failed: $@";
170 return;
172 return unless defined $cache;
173 $self->{'fastmmap_cache'} = $cache;
174 return $self;
177 sub _initialize_memory {
178 my ($self) = @_;
180 # Default cache time for memory is _always_ short unless it's specially
181 # defined, to allow it to work reliably in a persistent environment.
182 my $cache = Cache::Memory->new(
183 'namespace' => $self->{'namespace'},
184 'default_expires' => "$self->{'timeout'} sec" || "10 sec",
186 $self->{'memory_cache'} = $cache;
187 # Memory cache can't handle complex types for some reason, so we use its
188 # freeze and thaw functions.
189 $self->{ref($cache) . '_set'} = sub {
190 my ($key, $val, $exp) = @_;
191 # Refer to set_expiry in Cache::Entry for why we do this 'sec' thing.
192 $exp = "$exp sec" if defined $exp;
193 # Because we need to use freeze, it must be a reference type.
194 $cache->freeze($key, [$val], $exp);
196 $self->{ref($cache) . '_get'} = sub {
197 my $res = $cache->thaw(shift);
198 return unless defined $res;
199 return $res->[0];
201 return $self;
204 =head2 is_cache_active
206 Routine that checks whether or not a default caching method is active on this
207 object.
209 =cut
211 sub is_cache_active {
212 my $self = shift;
213 return $self->{'cache'} ? 1 : 0;
216 =head2 set_in_cache
218 $cache->set_in_cache($key, $value, [$options]);
220 Save a value to the specified key in the cache. A hashref of options may be
221 specified.
223 The possible options are:
225 =over
227 =item expiry
229 Expiry time of this cached entry in seconds.
231 =item cache
233 The cache object to use if you want to provide your own. It should be an
234 instance of C<Cache::*> and follow the same interface as L<Cache::Memcache>.
236 =back
238 =cut
240 sub set_in_cache {
241 my ( $self, $key, $value, $options, $_cache) = @_;
242 # This is a bit of a hack to support the old API in case things still use it
243 if (defined $options && (ref($options) ne 'HASH')) {
244 my $new_options;
245 $new_options->{expiry} = $options;
246 $new_options->{cache} = $_cache if defined $_cache;
247 $options = $new_options;
250 # the key mustn't contain whitespace (or control characters) for memcache
251 # but shouldn't be any harm in applying it globally.
252 $key =~ s/[\x00-\x20]/_/g;
254 my $cache = $options->{cache} || 'cache';
255 croak "No key" unless $key;
256 $ENV{DEBUG} && carp "set_in_cache for $key";
258 return unless ( $self->{$cache} && ref( $self->{$cache} ) =~ m/^Cache::/ );
259 my $expiry = $options->{expiry};
260 $expiry //= $self->{timeout};
261 my $set_sub = $self->{ref($self->{$cache}) . "_set"};
263 my $flag = '-CF0'; # 0: scalar, 1: frozen data structure
264 if (ref($value)) {
265 # Set in L1 cache as a data structure, initially only in frozen form (for performance reasons)
266 $value = freeze($value);
267 $L1_cache{$key}->{frozen} = $value;
268 $flag = '-CF1';
269 } else {
270 # Set in L1 cache as a scalar; exit if we are caching an undef
271 $L1_cache{$key} = $value;
272 return if !defined $value;
275 $value .= $flag;
276 # We consider an expiry of 0 to be inifinite
277 if ( $expiry ) {
278 return $set_sub
279 ? $set_sub->( $key, $value, $expiry )
280 : $self->{$cache}->set( $key, $value, $expiry );
282 else {
283 return $set_sub
284 ? $set_sub->( $key, $value )
285 : $self->{$cache}->set( $key, $value );
289 =head2 get_from_cache
291 my $value = $cache->get_from_cache($key, [ $options ]);
293 Retrieve the value stored under the specified key in the cache.
295 The possible options are:
297 =over
299 =item unsafe
301 If set, this will avoid performing a deep copy of the item. This
302 means that it won't be safe if something later modifies the result of the
303 function. It should be used with caution, and could save processing time
304 in some situations where is safe to use it. Make sure you know what you are doing!
306 =item cache
308 The cache object to use if you want to provide your own. It should be an
309 instance of C<Cache::*> and follow the same interface as L<Cache::Memcache>.
311 =back
313 =cut
315 sub get_from_cache {
316 my ( $self, $key, $options ) = @_;
317 my $cache = $options->{cache} || 'cache';
318 my $unsafe = $options->{unsafe} || 0;
319 $key =~ s/[\x00-\x20]/_/g;
320 croak "No key" unless $key;
321 $ENV{DEBUG} && carp "get_from_cache for $key";
322 return unless ( $self->{$cache} && ref( $self->{$cache} ) =~ m/^Cache::/ );
324 # Return L1 cache value if exists
325 if ( exists $L1_cache{$key} ) {
326 if (ref($L1_cache{$key})) {
327 if ($unsafe) {
328 $L1_cache{$key}->{thawed} ||= thaw($L1_cache{$key}->{frozen});
329 return $L1_cache{$key}->{thawed};
330 } else {
331 return thaw($L1_cache{$key}->{frozen});
333 } else {
334 # No need to thaw if it's a scalar
335 return $L1_cache{$key};
339 my $get_sub = $self->{ref($self->{$cache}) . "_get"};
340 my $L2_value = $get_sub ? $get_sub->($key) : $self->{$cache}->get($key);
342 return if ref($L2_value);
343 return unless (defined($L2_value) && length($L2_value) >= 4);
345 my $flag = substr($L2_value, -4, 4, '');
346 if ($flag eq '-CF0') {
347 # it's a scalar
348 $L1_cache{$key} = $L2_value;
349 return $L2_value;
350 } elsif ($flag eq '-CF1') {
351 # it's a frozen data structure
352 my $thawed;
353 eval { $thawed = thaw($L2_value); };
354 return if $@;
355 $L1_cache{$key}->{frozen} = $L2_value;
356 $L1_cache{$key}->{thawed} = $thawed if $unsafe;
357 return $thawed;
360 # Unknown value / data type returned from L2 cache
361 return;
364 =head2 clear_from_cache
366 $cache->clear_from_cache($key);
368 Remove the value identified by the specified key from the default cache.
370 =cut
372 sub clear_from_cache {
373 my ( $self, $key, $cache ) = @_;
374 $key =~ s/[\x00-\x20]/_/g;
375 $cache ||= 'cache';
376 croak "No key" unless $key;
377 return unless ( $self->{$cache} && ref( $self->{$cache} ) =~ m/^Cache::/ );
379 # Clear from L1 cache
380 delete $L1_cache{$key};
382 return $self->{$cache}->delete($key)
383 if ( ref( $self->{$cache} ) =~ m'^Cache::Memcached' );
384 return $self->{$cache}->remove($key);
387 =head2 flush_all
389 $cache->flush_all();
391 Clear the entire default cache.
393 =cut
395 sub flush_all {
396 my ( $self, $cache ) = shift;
397 $cache ||= 'cache';
398 return unless ( $self->{$cache} && ref( $self->{$cache} ) =~ m/^Cache::/ );
400 $self->flush_L1_cache();
402 return $self->{$cache}->flush_all()
403 if ( ref( $self->{$cache} ) =~ m'^Cache::Memcached' );
404 return $self->{$cache}->clear();
407 sub flush_L1_cache {
408 my( $self ) = @_;
409 %L1_cache = ();
412 =head1 TIED INTERFACE
414 Koha::Cache also provides a tied interface which enables users to provide a
415 constructor closure and (after creation) treat cached data like normal reference
416 variables and rely on the cache Just Working and getting updated when it
417 expires, etc.
419 my $cache = Koha::Cache->new();
420 my $data = 'whatever';
421 my $scalar = Koha::Cache->create_scalar(
423 'key' => 'whatever',
424 'timeout' => 2,
425 'constructor' => sub { return $data; },
428 print "$$scalar\n"; # Prints "whatever"
429 $data = 'somethingelse';
430 print "$$scalar\n"; # Prints "whatever" because it is cached
431 sleep 2; # Wait until the cache entry has expired
432 print "$$scalar\n"; # Prints "somethingelse"
434 my $hash = Koha::Cache->create_hash(
436 'key' => 'whatever',
437 'timeout' => 2,
438 'constructor' => sub { return $data; },
441 print "$$variable\n"; # Prints "whatever"
443 The gotcha with this interface, of course, is that the variable returned by
444 create_scalar and create_hash is a I<reference> to a tied variable and not a
445 tied variable itself.
447 The tied variable is configured by means of a hashref passed in to the
448 create_scalar and create_hash methods. The following parameters are supported:
450 =over
452 =item I<key>
454 Required. The key to use for identifying the variable in the cache.
456 =item I<constructor>
458 Required. A closure (or reference to a function) that will return the value that
459 needs to be stored in the cache.
461 =item I<preload>
463 Optional. A closure (or reference to a function) that gets run to initialize
464 the cache when creating the tied variable.
466 =item I<arguments>
468 Optional. Array reference with the arguments that should be passed to the
469 constructor function.
471 =item I<timeout>
473 Optional. The cache timeout in seconds for the variable. Defaults to 600
474 (ten minutes).
476 =item I<cache_type>
478 Optional. Which type of cache to use for the variable. Defaults to whatever is
479 set in the environment variable CACHING_SYSTEM. If set to 'null', disables
480 caching for the tied variable.
482 =item I<allowupdate>
484 Optional. Boolean flag to allow the variable to be updated directly. When this
485 is set and the variable is used as an l-value, the cache will be updated
486 immediately with the new value. Using this is probably a bad idea on a
487 multi-threaded system. When I<allowupdate> is not set to true, using the
488 tied variable as an l-value will have no effect.
490 =item I<destructor>
492 Optional. A closure (or reference to a function) that should be called when the
493 tied variable is destroyed.
495 =item I<unset>
497 Optional. Boolean flag to tell the object to remove the variable from the cache
498 when it is destroyed or goes out of scope.
500 =item I<inprocess>
502 Optional. Boolean flag to tell the object not to refresh the variable from the
503 cache every time the value is desired, but rather only when the I<local> copy
504 of the variable is older than the timeout.
506 =back
508 =head2 create_scalar
510 my $scalar = Koha::Cache->create_scalar(\%params);
512 Create scalar tied to the cache.
514 =cut
516 sub create_scalar {
517 my ( $self, $args ) = @_;
519 $self->_set_tied_defaults($args);
521 tie my $scalar, 'Koha::Cache::Object', $args;
522 return \$scalar;
525 sub create_hash {
526 my ( $self, $args ) = @_;
528 $self->_set_tied_defaults($args);
530 tie my %hash, 'Koha::Cache::Object', $args;
531 return \%hash;
534 sub _set_tied_defaults {
535 my ( $self, $args ) = @_;
537 $args->{'timeout'} = '600' unless defined( $args->{'timeout'} );
538 $args->{'inprocess'} = '0' unless defined( $args->{'inprocess'} );
539 unless ( $args->{cache_type} and lc( $args->{cache_type} ) eq 'null' ) {
540 $args->{'cache'} = $self;
541 $args->{'cache_type'} ||= $ENV{'CACHING_SYSTEM'};
544 return $args;
547 =head1 EXPORT
549 None by default.
551 =head1 SEE ALSO
553 Koha::Cache::Object
555 =head1 AUTHOR
557 Chris Cormack, E<lt>chris@bigballofwax.co.nzE<gt>
558 Paul Poulain, E<lt>paul.poulain@biblibre.comE<gt>
559 Jared Camins-Esakov, E<lt>jcamins@cpbibliography.comE<gt>
561 =cut
565 __END__