/usr/share/otrs/Kernel/System/Cache.pm is in otrs2 5.0.7-1.
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 | # --
# Copyright (C) 2001-2016 OTRS AG, http://otrs.com/
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (AGPL). If you
# did not receive this file, see http://www.gnu.org/licenses/agpl.txt.
# --
package Kernel::System::Cache;
use strict;
use warnings;
our @ObjectDependencies = (
'Kernel::Config',
'Kernel::System::Log',
);
=head1 NAME
Kernel::System::Cache - Key/value based data cache for OTRS
=head1 SYNOPSIS
This is a simple data cache. It can store key/value data both
in memory and in a configured cache backend for persistent caching.
This can be controlled via the config settings C<Cache::InMemory> and
C<Cache::InBackend>. The backend can also be selected with the config setting
C<Cache::Module> and defaults to file system based storage for permanent caching.
=head1 PUBLIC INTERFACE
=over 4
=cut
=item new()
create an object. Do not use it directly, instead use:
use Kernel::System::ObjectManager;
local $Kernel::OM = Kernel::System::ObjectManager->new();
my $CacheObject = $Kernel::OM->Get('Kernel::System::Cache');
=cut
sub new {
my ( $Type, %Param ) = @_;
# allocate new hash for object
my $Self = {};
bless( $Self, $Type );
# 0=off; 1=set+get_cache; 2=+delete+get_request;
$Self->{Debug} = $Param{Debug} || 0;
# cache backend
my $CacheModule = $Kernel::OM->Get('Kernel::Config')->Get('Cache::Module')
|| 'Kernel::System::Cache::FileStorable';
# Store backend in $Self for fastest access.
$Self->{CacheObject} = $Kernel::OM->Get($CacheModule);
$Self->{CacheInMemory} = $Kernel::OM->Get('Kernel::Config')->Get('Cache::InMemory') // 1;
$Self->{CacheInBackend} = $Kernel::OM->Get('Kernel::Config')->Get('Cache::InBackend') // 1;
return $Self;
}
=item Configure()
change cache configuration settings at runtime. You can use this to disable the cache in
environments where it is not desired, such as in long running scripts.
please, to turn CacheInMemory off in persistent environments.
$CacheObject->Configure(
CacheInMemory => 1, # optional
CacheInBackend => 1, # optional
);
=cut
sub Configure {
my ( $Self, %Param ) = @_;
SETTING:
for my $Setting (qw(CacheInMemory CacheInBackend)) {
next SETTING if !exists $Param{$Setting};
$Self->{$Setting} = $Param{$Setting} ? 1 : 0;
}
return;
}
=item Set()
store a value in the cache.
$CacheObject->Set(
Type => 'ObjectName', # only [a-zA-Z0-9_] chars usable
Key => 'SomeKey',
Value => 'Some Value',
TTL => 60 * 60 * 24 * 20, # seconds, this means 20 days
);
The Type here refers to the group of entries that should be cached and cleaned up together,
usually this will represent the OTRS object that is supposed to be cached, like 'Ticket'.
The Key identifies the entry (together with the type) for retrieval and deletion of this value.
The TTL controls when the cache will expire. Please note that the in-memory cache is not persistent
and thus has no TTL/expiry mechanism.
Please note that if you store complex data, you have to make sure that the data is not modified
in other parts of the code as the in-memory cache only refers to it. Otherwise also the cache would
contain the modifications. If you cannot avoid this, you can disable the in-memory cache for this
value:
$CacheObject->Set(
Type => 'ObjectName',
Key => 'SomeKey',
Value => { ... complex data ... },
TTL => 60 * 60 * 24 * 1, # optional, default 20 days
CacheInMemory => 0, # optional, defaults to 1
CacheInBackend => 1, # optional, defaults to 1
);
=cut
sub Set {
my ( $Self, %Param ) = @_;
for my $Needed (qw(Type Key Value)) {
if ( !defined $Param{$Needed} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Need $Needed!",
);
return;
}
}
# set default TTL to 20 days
$Param{TTL} //= 60 * 60 * 24 * 20;
# Enforce cache type restriction to make sure it works properly on all file systems.
if ( $Param{Type} !~ m{ \A [a-zA-Z0-9_]+ \z}smx ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message =>
"Cache Type '$Param{Type}' contains invalid characters, use [a-zA-Z0-9_] only!",
);
return;
}
# debug
if ( $Self->{Debug} > 0 ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'notice',
Message => "Set Key:$Param{Key} TTL:$Param{TTL}!",
);
}
# Set in-memory cache.
if ( $Self->{CacheInMemory} && ( $Param{CacheInMemory} // 1 ) ) {
$Self->{Cache}->{ $Param{Type} }->{ $Param{Key} } = $Param{Value};
}
# If in-memory caching is not active, make sure the in-memory
# cache is not in an inconsistent state.
else {
delete $Self->{Cache}->{ $Param{Type} }->{ $Param{Key} };
}
# Set persistent cache.
if ( $Self->{CacheInBackend} && ( $Param{CacheInBackend} // 1 ) ) {
return $Self->{CacheObject}->Set(%Param);
}
# If persistent caching is not active, make sure the persistent
# cache is not in an inconsistent state.
else {
return $Self->{CacheObject}->Delete(%Param);
}
return 1;
}
=item Get()
fetch a value from the cache.
my $Value = $CacheObject->Get(
Type => 'ObjectName', # only [a-zA-Z0-9_] chars usable
Key => 'SomeKey',
);
Please note that if you store complex data, you have to make sure that the data is not modified
in other parts of the code as the in-memory cache only refers to it. Otherwise also the cache would
contain the modifications. If you cannot avoid this, you can disable the in-memory cache for this
value:
my $Value = $CacheObject->Get(
Type => 'ObjectName',
Key => 'SomeKey',
CacheInMemory => 0, # optional, defaults to 1
CacheInBackend => 1, # optional, defaults to 1
);
=cut
sub Get {
my ( $Self, %Param ) = @_;
for my $Needed (qw(Type Key)) {
if ( !$Param{$Needed} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Need $Needed!",
);
return;
}
}
# check in-memory cache
if ( $Self->{CacheInMemory} && ( $Param{CacheInMemory} // 1 ) ) {
if ( exists $Self->{Cache}->{ $Param{Type} }->{ $Param{Key} } ) {
return $Self->{Cache}->{ $Param{Type} }->{ $Param{Key} };
}
}
return if ( !$Self->{CacheInBackend} || !( $Param{CacheInBackend} // 1 ) );
# check persistent cache
my $Value = $Self->{CacheObject}->Get(%Param);
# set in-memory cache
if ( defined $Value ) {
if ( $Self->{CacheInMemory} && ( $Param{CacheInMemory} // 1 ) ) {
$Self->{Cache}->{ $Param{Type} }->{ $Param{Key} } = $Value;
}
}
return $Value;
}
=item Delete()
deletes a single value from the cache.
$CacheObject->Delete(
Type => 'ObjectName', # only [a-zA-Z0-9_] chars usable
Key => 'SomeKey',
);
Please note that despite the cache configuration, Delete and CleanUp will always
be executed both in memory and in the backend to avoid inconsistent cache states.
=cut
sub Delete {
my ( $Self, %Param ) = @_;
for my $Needed (qw(Type Key)) {
if ( !$Param{$Needed} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Need $Needed!",
);
return;
}
}
# Delete and cleanup operations should also be done if the cache is disabled
# to avoid inconsistent states.
# delete from in-memory cache
delete $Self->{Cache}->{ $Param{Type} }->{ $Param{Key} };
# delete from persistent cache
return $Self->{CacheObject}->Delete(%Param);
}
=item CleanUp()
delete parts of the cache or the full cache data.
To delete the whole cache:
$CacheObject->CleanUp();
To delete the data of only one cache type:
$CacheObject->CleanUp(
Type => 'ObjectName', # only [a-zA-Z0-9_] chars usable
);
To delete all data except of some types:
$CacheObject->CleanUp(
KeepTypes => ['Object1', 'Object2'],
);
To delete only expired cache data:
$CacheObject->CleanUp(
Expired => 1, # optional, defaults to 0
);
Type/KeepTypes and Expired can be combined to only delete expired data of a single type
or of all types except the types to keep.
Please note that despite the cache configuration, Delete and CleanUp will always
be executed both in memory and in the backend to avoid inconsistent cache states.
=cut
sub CleanUp {
my ( $Self, %Param ) = @_;
# cleanup in-memory cache
# We don't have TTL/expiry information here, so just always delete to be sure.
if ( $Param{Type} ) {
delete $Self->{Cache}->{ $Param{Type} };
}
elsif ( $Param{KeepTypes} ) {
my %KeepTypeLookup;
@KeepTypeLookup{ @{ $Param{KeepTypes} } } = undef;
TYPE:
for my $Type ( sort keys %{ $Self->{Cache} || {} } ) {
next TYPE if exists $KeepTypeLookup{$Type};
delete $Self->{Cache}->{$Type};
}
}
else {
delete $Self->{Cache};
}
# cleanup persistent cache
return $Self->{CacheObject}->CleanUp(%Param);
}
1;
=back
=head1 TERMS AND CONDITIONS
This software is part of the OTRS project (L<http://otrs.org/>).
This software comes with ABSOLUTELY NO WARRANTY. For details, see
the enclosed file COPYING for license information (AGPL). If you
did not receive this file, see L<http://www.gnu.org/licenses/agpl.txt>.
=cut
|