/usr/share/perl5/CHI/Driver/File.pm is in libchi-perl 0.60-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 | package CHI::Driver::File;
$CHI::Driver::File::VERSION = '0.60';
use Carp;
use Cwd qw(realpath cwd);
use CHI::Util
qw(fast_catdir fast_catfile unique_id read_dir read_file write_file);
use Digest::JHash qw(jhash);
use File::Basename qw(basename dirname);
use File::Find qw(find);
use File::Path qw(mkpath rmtree);
use File::Spec::Functions qw(catdir catfile splitdir tmpdir);
use Log::Any qw($log);
use Moo;
use MooX::Types::MooseLike::Base qw(:all);
use strict;
use warnings;
extends 'CHI::Driver';
has '+max_key_length' => ( default => sub { 248 } );
has 'depth' => ( is => 'ro', isa => Int, default => sub { 2 } );
has 'dir_create_mode' => ( is => 'ro', isa => Int, default => sub { oct(775) } );
has 'file_create_mode' => ( is => 'ro', isa => Int, default => sub { oct(666) } );
has 'file_extension' => ( is => 'ro', isa => Str, default => sub { '.dat' } );
has 'path_to_namespace' => ( is => 'lazy' );
has 'root_dir' => ( is => 'ro', isa => Str, default => sub { catdir( tmpdir(), 'chi-driver-file' ) } );
sub BUILDARGS {
my ( $class, %params ) = @_;
# Backward compat
#
if ( defined( $params{key_digest} ) ) {
$params{key_digester} = $params{key_digest};
$params{max_key_length} = 0;
}
return \%params;
}
sub _build_path_to_namespace {
my $self = shift;
my $namespace = $self->escape_for_filename( $self->namespace );
$namespace = $self->digest_key($namespace)
if length($namespace) > $self->max_key_length;
return catdir( $self->root_dir, $namespace );
}
# Escape key to make safe for filesystem; if it then grows larger than
# max_key_length, digest it.
#
sub escape_key {
my ( $self, $key ) = @_;
my $new_key = $self->escape_for_filename($key);
if ( length($new_key) > length($key)
&& length($new_key) > $self->max_key_length() )
{
$new_key = $self->digest_key($new_key);
}
return $new_key;
}
sub unescape_key {
my ( $self, $key ) = @_;
return $self->unescape_for_filename($key);
}
sub fetch {
my ( $self, $key ) = @_;
my $file = $self->path_to_key($key);
if ( defined $file && -f $file ) {
return read_file($file);
}
else {
return undef;
}
}
sub store {
my ( $self, $key, $data ) = @_;
my $dir;
my $file = $self->path_to_key( $key, \$dir ) or return undef;
mkpath( $dir, 0, $self->{dir_create_mode} ) if !-d $dir;
# Possibly generate a temporary file - if generate_temporary_filename returns undef,
# store to the destination file directly
#
my $temp_file = $self->generate_temporary_filename( $dir, $file );
my $store_file = defined($temp_file) ? $temp_file : $file;
write_file( $store_file, $data, $self->{file_create_mode} );
if ( defined($temp_file) ) {
# Rename can fail in rare race conditions...try multiple times
#
for ( my $try = 0 ; $try < 3 ; $try++ ) {
last if ( rename( $temp_file, $file ) );
}
if ( -f $temp_file ) {
my $error = $!;
unlink($temp_file);
die "could not rename '$temp_file' to '$file': $error";
}
}
}
sub remove {
my ( $self, $key ) = @_;
my $file = $self->path_to_key($key) or return undef;
unlink($file);
}
sub clear {
my ($self) = @_;
my $namespace_dir = $self->path_to_namespace;
return if !-d $namespace_dir;
my $renamed_dir = join( ".", $namespace_dir, unique_id() );
rename( $namespace_dir, $renamed_dir );
rmtree($renamed_dir);
die "could not remove '$renamed_dir'"
if -d $renamed_dir;
}
sub get_keys {
my ($self) = @_;
my @filepaths;
my $re = quotemeta( $self->file_extension );
my $wanted = sub { push( @filepaths, $_ ) if -f && /${re}$/ };
my @keys = $self->_collect_keys_via_file_find( \@filepaths, $wanted );
return @keys;
}
sub _collect_keys_via_file_find {
my ( $self, $filepaths, $wanted ) = @_;
my $namespace_dir = $self->path_to_namespace;
return () if !-d $namespace_dir;
find( { wanted => $wanted, no_chdir => 1 }, $namespace_dir );
my @keys;
my $key_start = length($namespace_dir) + 1 + $self->depth * 2;
my $subtract = -1 * length( $self->file_extension );
foreach my $filepath (@$filepaths) {
my $key = substr( $filepath, $key_start, $subtract );
$key = $self->unescape_key( join( "", splitdir($key) ) );
push( @keys, $key );
}
return @keys;
}
sub generate_temporary_filename {
my ( $self, $dir, $file ) = @_;
# Generate a temporary filename using unique_id - faster than tempfile, as long as
# we don't need automatic removal.
# Note: $file not used here, but might be used in an override.
#
return fast_catfile( $dir, unique_id() );
}
sub get_namespaces {
my ($self) = @_;
my $root_dir = $self->root_dir();
return () if !-d $root_dir;
my @contents = read_dir($root_dir);
my @namespaces =
map { $self->unescape_for_filename($_) }
grep { $self->is_escaped_for_filename($_) }
grep { -d fast_catdir( $root_dir, $_ ) } @contents;
return @namespaces;
}
my %hex_strings = map { ( $_, sprintf( "%x", $_ ) ) } ( 0x0 .. 0xf );
sub path_to_key {
my ( $self, $key, $dir_ref ) = @_;
return undef if !defined($key);
my @paths = ( $self->path_to_namespace );
my $orig_key = $key;
$key = $self->escape_key($key);
# Hack: If key is exactly 32 hex chars, assume it's an md5 digest and
# take a prefix of it for bucket. Digesting will usually happen in
# transform_key and there's no good way for us to know it occurred.
#
if ( $key =~ /^[0-9a-f]{32}$/ ) {
push( @paths,
map { substr( $key, $_, 1 ) } ( 0 .. $self->{depth} - 1 ) );
}
else {
# Hash key to a 32-bit integer (using non-escaped key for back compat)
#
my $bucket = jhash($orig_key);
# Create $self->{depth} subdirectories, containing a maximum of 64
# subdirectories each, by successively shifting 4 bits off the
# bucket and converting to hex.
#
for ( my $d = $self->{depth} ; $d > 0 ; $d-- ) {
push( @paths, $hex_strings{ $bucket & 0xf } );
$bucket >>= 4;
}
}
# Join paths together, computing dir separately if $dir_ref was passed.
#
my $filename = $key . $self->file_extension;
my $filepath;
if ( defined $dir_ref && ref($dir_ref) ) {
my $dir = fast_catdir(@paths);
$filepath = fast_catfile( $dir, $filename );
$$dir_ref = $dir;
}
else {
$filepath = fast_catfile( @paths, $filename );
}
return $filepath;
}
1;
__END__
=pod
=head1 NAME
CHI::Driver::File - File-based cache using one file per entry in a multi-level
directory structure
=head1 VERSION
version 0.60
=head1 SYNOPSIS
use CHI;
my $cache = CHI->new(
driver => 'File',
root_dir => '/path/to/cache/root',
depth => 3,
max_key_length => 64
);
=head1 DESCRIPTION
This cache driver stores data on the filesystem, so that it can be shared
between processes on a single machine, or even on multiple machines if using
NFS.
Each item is stored in its own file. By default, during a set, a temporary file
is created and then atomically renamed to the proper file. While not the most
efficient, it eliminates the need for locking (with multiple overlapping sets,
the last one "wins") and makes this cache usable in environments like NFS where
locking might normally be undesirable.
By default, the base filename is the key itself, with unsafe characters escaped
similar to URL escaping. If the escaped key is larger than L</max_key_length>
(default 248 characters), it will be L<digested|CHI/key_digester>. You may want
to lower L</max_key_length> if you are storing a lot of items as long filenames
can be more expensive to work with.
The files are evenly distributed within a multi-level directory structure with
a customizable L</depth>, to minimize the time needed to search for a given
entry.
=head1 CONSTRUCTOR OPTIONS
When using this driver, the following options can be passed to CHI->new() in
addition to the L<CHI|general constructor options/constructor>.
=over
=item root_dir
The location in the filesystem that will hold the root of the cache. Defaults
to a directory called 'chi-driver-file' under the OS default temp directory
(e.g. '/tmp' on UNIX). This directory will be created as needed on the first
cache set.
=item depth
The number of subdirectories deep to place cache files. Defaults to 2. This
should be large enough that no leaf directory has more than a few hundred
files. Each non-leaf directory contains up to 16 subdirectories (0-9, A-F).
=item dir_create_mode
Permissions mode to use when creating directories. Defaults to 0775.
=item file_create_mode
Permissions mode to use when creating files, modified by the current umask.
Defaults to 0666.
=item file_extension
Extension to append to filename. Default is C<.dat>.
=back
=head1 METHODS
=over
=item path_to_key ( $key )
Returns the full path to the cache file representing $key, whether or not that
entry exists. Returns the empty list if a valid path cannot be computed, for
example if the key is too long.
=item path_to_namespace
Returns the full path to the directory representing this cache's namespace,
whether or not it has any entries.
=back
=head1 TEMPORARY FILE RENAME
By default, during a set, a temporary file is created and then atomically
renamed to the proper file. This eliminates the need for locking. You can
subclass and override method I<generate_temporary_filename> to either change
the path of the temporary filename, or skip the temporary file and rename
altogether by having it return undef.
=head1 SEE ALSO
L<CHI|CHI>
=head1 AUTHOR
Jonathan Swartz <swartz@pobox.com>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Jonathan Swartz.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|