File Coverage

blib/lib/Cache/MemoryCache.pm
Criterion Covered Total %
statement 39 39 100.0
branch n/a
condition 2 3 66.6
subroutine 14 14 100.0
pod 4 4 100.0
total 59 60 98.3


line stmt bran cond sub pod time code
1             ######################################################################
2             # $Id: MemoryCache.pm,v 1.27 2002/04/07 17:04:46 dclinton Exp $
3             # Copyright (C) 2001-2003 DeWitt Clinton All Rights Reserved
4             #
5             # Software distributed under the License is distributed on an "AS
6             # IS" basis, WITHOUT WARRANTY OF ANY KIND, either expressed or
7             # implied. See the License for the specific language governing
8             # rights and limitations under the License.
9             ######################################################################
10              
11              
12             package Cache::MemoryCache;
13              
14              
15 2     2   359 use strict;
  2         3  
  2         77  
16 2     2   11 use vars qw( @ISA );
  2         1  
  2         80  
17 2     2   740 use Cache::BaseCache;
  2         5  
  2         127  
18 2     2   16 use Cache::Cache qw( $EXPIRES_NEVER );
  2         3  
  2         236  
19 2     2   12 use Cache::CacheUtils qw( Assert_Defined Static_Params );
  2         2  
  2         97  
20 2     2   829 use Cache::MemoryBackend;
  2         3  
  2         714  
21              
22             @ISA = qw ( Cache::BaseCache );
23              
24              
25             sub Clear
26             {
27 16     16 1 44 foreach my $namespace ( _Namespaces( ) )
28             {
29 18         36 _Get_Backend( )->delete_namespace( $namespace );
30             }
31             }
32              
33              
34             sub Purge
35             {
36 4     4 1 26 foreach my $namespace ( _Namespaces( ) )
37             {
38 4         18 _Get_Cache( $namespace )->purge( );
39             }
40             }
41              
42              
43             sub Size
44             {
45 14     14 1 21 my $size = 0;
46              
47 14         31 foreach my $namespace ( _Namespaces( ) )
48             {
49 6         14 $size += _Get_Cache( $namespace )->size( );
50             }
51              
52 14         39 return $size;
53             }
54              
55              
56             sub _Get_Backend
57             {
58 52     52   199 return new Cache::MemoryBackend( );
59             }
60              
61              
62             sub _Namespaces
63             {
64 34     34   64 return _Get_Backend( )->get_namespaces( );
65             }
66              
67              
68             sub _Get_Cache
69             {
70 10     10   44 my ( $p_namespace ) = Static_Params( @_ );
71              
72 10         45 Assert_Defined( $p_namespace );
73              
74 10         50 return new Cache::MemoryCache( { 'namespace' => $p_namespace } );
75             }
76              
77              
78             sub new
79             {
80 13     13 1 80 my ( $self ) = _new( @_ );
81              
82 13         39 $self->_complete_initialization( );
83              
84 13         60 return $self;
85             }
86              
87              
88             sub _new
89             {
90 16     16   32 my ( $proto, $p_options_hash_ref ) = @_;
91 16   66     71 my $class = ref( $proto ) || $proto;
92 16         94 my $self = $class->SUPER::_new( $p_options_hash_ref );
93 16         59 $self->_set_backend( new Cache::MemoryBackend( ) );
94 16         28 return $self;
95             }
96              
97              
98             1;
99              
100              
101             __END__