/usr/share/perl5/Cache/BaseCache.pm is in libcache-cache-perl 1.08-2.
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 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 | ######################################################################
# $Id: BaseCache.pm,v 1.25 2003/04/15 14:46:14 dclinton Exp $
# Copyright (C) 2001-2003 DeWitt Clinton All Rights Reserved
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either expressed or
# implied. See the License for the specific language governing
# rights and limitations under the License.
######################################################################
package Cache::BaseCache;
use strict;
use vars qw( @ISA );
use Cache::Cache qw( $EXPIRES_NEVER $EXPIRES_NOW );
use Cache::CacheUtils qw( Assert_Defined Clone_Data );
use Cache::Object;
use Error;
@ISA = qw( Cache::Cache );
my $DEFAULT_EXPIRES_IN = $EXPIRES_NEVER;
my $DEFAULT_NAMESPACE = "Default";
my $DEFAULT_AUTO_PURGE_ON_SET = 0;
my $DEFAULT_AUTO_PURGE_ON_GET = 0;
# namespace that stores the keys used for the auto purge functionality
my $AUTO_PURGE_NAMESPACE = "__AUTO_PURGE__";
# map of expiration formats to their respective time in seconds
my %_Expiration_Units = ( map(($_, 1), qw(s second seconds sec)),
map(($_, 60), qw(m minute minutes min)),
map(($_, 60*60), qw(h hour hours)),
map(($_, 60*60*24), qw(d day days)),
map(($_, 60*60*24*7), qw(w week weeks)),
map(($_, 60*60*24*30), qw(M month months)),
map(($_, 60*60*24*365), qw(y year years)) );
# Takes the time the object was created, the default_expires_in and
# optionally the explicitly set expires_in and returns the time the
# object will expire. Calls _canonicalize_expiration to convert
# strings like "5m" into second values.
sub Build_Expires_At
{
my ( $p_created_at, $p_default_expires_in, $p_explicit_expires_in ) = @_;
my $expires_in = defined $p_explicit_expires_in ?
$p_explicit_expires_in : $p_default_expires_in;
return Sum_Expiration_Time( $p_created_at, $expires_in );
}
# Return a Cache::Object object
sub Build_Object
{
my ( $p_key, $p_data, $p_default_expires_in, $p_expires_in ) = @_;
Assert_Defined( $p_key );
Assert_Defined( $p_default_expires_in );
my $now = time( );
my $object = new Cache::Object( );
$object->set_key( $p_key );
$object->set_data( $p_data );
$object->set_created_at( $now );
$object->set_accessed_at( $now );
$object->set_expires_at( Build_Expires_At( $now,
$p_default_expires_in,
$p_expires_in ) );
return $object;
}
# Compare the expires_at to the current time to determine whether or
# not an object has expired (the time parameter is optional)
sub Object_Has_Expired
{
my ( $p_object, $p_time ) = @_;
if ( not defined $p_object )
{
return 1;
}
$p_time = $p_time || time( );
if ( $p_object->get_expires_at( ) eq $EXPIRES_NOW )
{
return 1;
}
elsif ( $p_object->get_expires_at( ) eq $EXPIRES_NEVER )
{
return 0;
}
elsif ( $p_time >= $p_object->get_expires_at( ) )
{
return 1;
}
else
{
return 0;
}
}
# Returns the sum of the base created_at time (in seconds since the epoch)
# and the canonical form of the expires_at string
sub Sum_Expiration_Time
{
my ( $p_created_at, $p_expires_in ) = @_;
Assert_Defined( $p_created_at );
Assert_Defined( $p_expires_in );
if ( $p_expires_in eq $EXPIRES_NEVER )
{
return $EXPIRES_NEVER;
}
else
{
return $p_created_at + Canonicalize_Expiration_Time( $p_expires_in );
}
}
# turn a string in the form "[number] [unit]" into an explicit number
# of seconds from the present. E.g, "10 minutes" returns "600"
sub Canonicalize_Expiration_Time
{
my ( $p_expires_in ) = @_;
Assert_Defined( $p_expires_in );
my $secs;
if ( uc( $p_expires_in ) eq uc( $EXPIRES_NOW ) )
{
$secs = 0;
}
elsif ( uc( $p_expires_in ) eq uc( $EXPIRES_NEVER ) )
{
throw Error::Simple( "Internal error. expires_in eq $EXPIRES_NEVER" );
}
elsif ( $p_expires_in =~ /^\s*([+-]?(?:\d+|\d*\.\d*))\s*$/ )
{
$secs = $p_expires_in;
}
elsif ( $p_expires_in =~ /^\s*([+-]?(?:\d+|\d*\.\d*))\s*(\w*)\s*$/
and exists( $_Expiration_Units{ $2 } ))
{
$secs = ( $_Expiration_Units{ $2 } ) * $1;
}
else
{
throw Error::Simple( "invalid expiration time '$p_expires_in'" );
}
return $secs;
}
sub clear
{
my ( $self ) = @_;
$self->_get_backend( )->delete_namespace( $self->get_namespace( ) );
}
sub get
{
my ( $self, $p_key ) = @_;
Assert_Defined( $p_key );
$self->_conditionally_auto_purge_on_get( ) unless
$self->get_namespace( ) eq $AUTO_PURGE_NAMESPACE;
my $object = $self->get_object( $p_key ) or
return undef;
if ( Object_Has_Expired( $object ) )
{
$self->remove( $p_key );
return undef;
}
return $object->get_data( );
}
sub get_keys
{
my ( $self ) = @_;
return $self->_get_backend( )->get_keys( $self->get_namespace( ) );
}
sub get_identifiers
{
my ( $self ) = @_;
warn( "get_identifiers has been marked deprepricated. use get_keys" );
return $self->get_keys( );
}
sub get_object
{
my ( $self, $p_key ) = @_;
Assert_Defined( $p_key );
my $object =
$self->_get_backend( )->restore( $self->get_namespace( ), $p_key ) or
return undef;
$object->set_size( $self->_get_backend( )->
get_size( $self->get_namespace( ), $p_key ) );
$object->set_key( $p_key );
return $object;
}
sub purge
{
my ( $self ) = @_;
foreach my $key ( $self->get_keys( ) )
{
$self->get( $key );
}
}
sub remove
{
my ( $self, $p_key ) = @_;
Assert_Defined( $p_key );
$self->_get_backend( )->delete_key( $self->get_namespace( ), $p_key );
}
sub set
{
my ( $self, $p_key, $p_data, $p_expires_in ) = @_;
Assert_Defined( $p_key );
$self->_conditionally_auto_purge_on_set( );
$self->set_object( $p_key,
Build_Object( $p_key,
$p_data,
$self->get_default_expires_in( ),
$p_expires_in ) );
}
sub set_object
{
my ( $self, $p_key, $p_object ) = @_;
my $object = Clone_Data( $p_object );
$object->set_size( undef );
$object->set_key( undef );
$self->_get_backend( )->store( $self->get_namespace( ), $p_key, $object );
}
sub size
{
my ( $self ) = @_;
my $size = 0;
foreach my $key ( $self->get_keys( ) )
{
$size += $self->_get_backend( )->get_size( $self->get_namespace( ), $key );
}
return $size;
}
sub get_namespaces
{
my ( $self ) = @_;
return grep {!/$AUTO_PURGE_NAMESPACE/} $self->_get_backend( )->get_namespaces( );
}
sub _new
{
my ( $proto, $p_options_hash_ref ) = @_;
my $class = ref( $proto ) || $proto;
my $self = {};
bless( $self, $class );
$self->_initialize_base_cache( $p_options_hash_ref );
return $self;
}
sub _complete_initialization
{
my ( $self ) = @_;
$self->_initialize_auto_purge_interval( );
}
sub _initialize_base_cache
{
my ( $self, $p_options_hash_ref ) = @_;
$self->_initialize_options_hash_ref( $p_options_hash_ref );
$self->_initialize_namespace( );
$self->_initialize_default_expires_in( );
$self->_initialize_auto_purge_on_set( );
$self->_initialize_auto_purge_on_get( );
}
sub _initialize_options_hash_ref
{
my ( $self, $p_options_hash_ref ) = @_;
$self->_set_options_hash_ref( defined $p_options_hash_ref ?
$p_options_hash_ref :
{ } );
}
sub _initialize_namespace
{
my ( $self ) = @_;
my $namespace = $self->_read_option( 'namespace', $DEFAULT_NAMESPACE );
$self->set_namespace( $namespace );
}
sub _initialize_default_expires_in
{
my ( $self ) = @_;
my $default_expires_in =
$self->_read_option( 'default_expires_in', $DEFAULT_EXPIRES_IN );
$self->_set_default_expires_in( $default_expires_in );
}
sub _initialize_auto_purge_interval
{
my ( $self ) = @_;
my $auto_purge_interval = $self->_read_option( 'auto_purge_interval' );
if ( defined $auto_purge_interval )
{
$self->set_auto_purge_interval( $auto_purge_interval );
$self->_auto_purge( );
}
}
sub _initialize_auto_purge_on_set
{
my ( $self ) = @_;
my $auto_purge_on_set =
$self->_read_option( 'auto_purge_on_set', $DEFAULT_AUTO_PURGE_ON_SET );
$self->set_auto_purge_on_set( $auto_purge_on_set );
}
sub _initialize_auto_purge_on_get
{
my ( $self ) = @_;
my $auto_purge_on_get =
$self->_read_option( 'auto_purge_on_get', $DEFAULT_AUTO_PURGE_ON_GET );
$self->set_auto_purge_on_get( $auto_purge_on_get );
}
# _read_option looks for an option named 'option_name' in the
# option_hash associated with this instance. If it is not found, then
# 'default_value' will be returned instead
sub _read_option
{
my ( $self, $p_option_name, $p_default_value ) = @_;
my $options_hash_ref = $self->_get_options_hash_ref( );
if ( defined $options_hash_ref->{ $p_option_name } )
{
return $options_hash_ref->{ $p_option_name };
}
else
{
return $p_default_value;
}
}
# this method checks to see if the auto_purge property is set for a
# particular cache. If it is, then it switches the cache to the
# $AUTO_PURGE_NAMESPACE and stores that value under the name of the
# current cache namespace
sub _reset_auto_purge_interval
{
my ( $self ) = @_;
return if not $self->_should_auto_purge( );
my $real_namespace = $self->get_namespace( );
$self->set_namespace( $AUTO_PURGE_NAMESPACE );
if ( not defined $self->get( $real_namespace ) )
{
$self->_insert_auto_purge_object( $real_namespace );
}
$self->set_namespace( $real_namespace );
}
sub _should_auto_purge
{
my ( $self ) = @_;
return ( defined $self->get_auto_purge_interval( ) &&
$self->get_auto_purge_interval( ) ne $EXPIRES_NEVER );
}
sub _insert_auto_purge_object
{
my ( $self, $p_real_namespace ) = @_;
my $object = Build_Object( $p_real_namespace,
1,
$self->get_auto_purge_interval( ),
undef );
$self->set_object( $p_real_namespace, $object );
}
# this method checks to see if the auto_purge property is set, and if
# it is, switches to the $AUTO_PURGE_NAMESPACE and sees if a value
# exists at the location specified by a key named for the current
# namespace. If that key doesn't exist, then the purge method is
# called on the cache
sub _auto_purge
{
my ( $self ) = @_;
if ( $self->_needs_auto_purge( ) )
{
$self->purge( );
$self->_reset_auto_purge_interval( );
}
}
sub _get_auto_purge_object
{
my ( $self ) = @_;
my $real_namespace = $self->get_namespace( );
$self->set_namespace( $AUTO_PURGE_NAMESPACE );
my $auto_purge_object = $self->get_object( $real_namespace );
$self->set_namespace( $real_namespace );
return $auto_purge_object;
}
sub _needs_auto_purge
{
my ( $self ) = @_;
return ( $self->_should_auto_purge( ) &&
Object_Has_Expired( $self->_get_auto_purge_object( ) ) );
}
# call auto_purge if the auto_purge_on_set option is true
sub _conditionally_auto_purge_on_set
{
my ( $self ) = @_;
if ( $self->get_auto_purge_on_set( ) )
{
$self->_auto_purge( );
}
}
# call auto_purge if the auto_purge_on_get option is true
sub _conditionally_auto_purge_on_get
{
my ( $self ) = @_;
if ( $self->get_auto_purge_on_get( ) )
{
$self->_auto_purge( );
}
}
sub _get_options_hash_ref
{
my ( $self ) = @_;
return $self->{_Options_Hash_Ref};
}
sub _set_options_hash_ref
{
my ( $self, $options_hash_ref ) = @_;
$self->{_Options_Hash_Ref} = $options_hash_ref;
}
sub get_namespace
{
my ( $self ) = @_;
return $self->{_Namespace};
}
sub set_namespace
{
my ( $self, $namespace ) = @_;
$self->{_Namespace} = $namespace;
}
sub get_default_expires_in
{
my ( $self ) = @_;
return $self->{_Default_Expires_In};
}
sub _set_default_expires_in
{
my ( $self, $default_expires_in ) = @_;
$self->{_Default_Expires_In} = $default_expires_in;
}
sub get_auto_purge_interval
{
my ( $self ) = @_;
return $self->{_Auto_Purge_Interval};
}
sub set_auto_purge_interval
{
my ( $self, $auto_purge_interval ) = @_;
$self->{_Auto_Purge_Interval} = $auto_purge_interval;
$self->_reset_auto_purge_interval( );
}
sub get_auto_purge_on_set
{
my ( $self ) = @_;
return $self->{_Auto_Purge_On_Set};
}
sub set_auto_purge_on_set
{
my ( $self, $auto_purge_on_set ) = @_;
$self->{_Auto_Purge_On_Set} = $auto_purge_on_set;
}
sub get_auto_purge_on_get
{
my ( $self ) = @_;
return $self->{_Auto_Purge_On_Get};
}
sub set_auto_purge_on_get
{
my ( $self, $auto_purge_on_get ) = @_;
$self->{_Auto_Purge_On_Get} = $auto_purge_on_get;
}
sub _get_backend
{
my ( $self ) = @_;
return $self->{ _Backend };
}
sub _set_backend
{
my ( $self, $p_backend ) = @_;
$self->{ _Backend } = $p_backend;
}
1;
__END__
=pod
=head1 NAME
Cache::BaseCache -- abstract cache base class
=head1 DESCRIPTION
BaseCache provides functionality common to all instances of a cache.
It differs from the CacheUtils package insofar as it is designed to
be used as superclass for cache implementations.
=head1 SYNOPSIS
Cache::BaseCache is to be used as a superclass for cache
implementations. The most effective way to use BaseCache is to use
the protected _set_backend method, which will be used to retrieve the
persistence mechanism. The subclass can then inherit the BaseCache's
implementation of get, set, etc. However, due to the difficulty
inheriting static methods in Perl, the subclass will likely need to
explicitly implement Clear, Purge, and Size. Also, a factory pattern
should be used to invoke the _complete_initialization routine after
the object is constructed.
package Cache::MyCache;
use vars qw( @ISA );
use Cache::BaseCache;
use Cache::MyBackend;
@ISA = qw( Cache::BaseCache );
sub new
{
my ( $self ) = _new( @_ );
$self->_complete_initialization( );
return $self;
}
sub _new
{
my ( $proto, $p_options_hash_ref ) = @_;
my $class = ref( $proto ) || $proto;
my $self = $class->SUPER::_new( $p_options_hash_ref );
$self->_set_backend( new Cache::MyBackend( ) );
return $self;
}
sub Clear
{
foreach my $namespace ( _Namespaces( ) )
{
_Get_Backend( )->delete_namespace( $namespace );
}
}
sub Purge
{
foreach my $namespace ( _Namespaces( ) )
{
_Get_Cache( $namespace )->purge( );
}
}
sub Size
{
my $size = 0;
foreach my $namespace ( _Namespaces( ) )
{
$size += _Get_Cache( $namespace )->size( );
}
return $size;
}
=head1 SEE ALSO
Cache::Cache, Cache::FileCache, Cache::MemoryCache
=head1 AUTHOR
Original author: DeWitt Clinton <dewitt@unto.net>
Last author: $Author: dclinton $
Copyright (C) 2001-2003 DeWitt Clinton
=cut
|