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
|
/* SOGoCache.m - this file is part of SOGo
*
* Copyright (C) 2008-2010 Inverse inc.
*
* Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
* Ludovic Marcotte <lmarcotte@inverse.ca>
*
* This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This file is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
/*
* [ Cache Structure ]
*
* users value = instances of SOGoUser > flushed after the completion of every SOGo requests
* groups value = instances of SOGoGroup > flushed after the completion of every SOGo requests
* imap4Connections value =
* localCache value = any value of what's in memcached - this is used to NOT query memcached within the same sogod instance
*
* [ Distributed (using memcached) cache structure ]
*
* <uid>+defaults value = NSDictionary instance > user's defaults
* <uid>+settings value = NSDictionary instance > user's settings
* <uid>+attributes value = NSMutableDictionary instance > user's LDAP attributes
* <object path>+acl value = NSDictionary instance > ACLs on an object at specified path
* <groupname>+<domain> value = NSString instance (array components separated by ",") or group member logins for a specific group in domain
* cas-id:< > value =
* cas-ticket:< > value =
* cas-pgtiou:< > value =
* session:< > value =
*/
#import <Foundation/NSArray.h>
#import <Foundation/NSData.h>
#import <Foundation/NSDictionary.h>
#import <Foundation/NSLock.h>
#import <Foundation/NSString.h>
#import <Foundation/NSTimer.h>
#import <NGObjWeb/SoObject.h>
#import <NGExtensions/NSObject+Logs.h>
#import "NSDictionary+Utilities.h"
#import "NSString+Utilities.h"
#import "SOGoObject.h"
#import "SOGoSystemDefaults.h"
#import "SOGoUser.h"
#import "SOGoUserProfile.h"
#import "SOGoCache.h"
/* Those used to be ivars but were converted to static globals to work around
a bug in GCC that prevent SOGo from using libmemcached > 0.37:
"SOGoCache.m:409: internal compiler error: in encode_gnu_bitfield, at
objc/objc-act.c:8218
Please submit a full bug report,
with preprocessed source if appropriate.
See <file:///usr/share/doc/gcc-4.4/README.Bugs> for instructions." */
static memcached_server_st *servers = NULL;
static memcached_st *handle = NULL;
@implementation SOGoCache
+ (SOGoCache *) sharedCache
{
static SOGoCache *sharedCache = nil;
if (!sharedCache)
sharedCache = [self new];
return sharedCache;
}
- (id) init
{
SOGoSystemDefaults *sd;
if ((self = [super init]))
{
cache = [[NSMutableDictionary alloc] init];
requestsCacheEnabled = YES;
users = [[NSMutableDictionary alloc] init];
groups = [[NSMutableDictionary alloc] init];
imap4Connections = [[NSMutableDictionary alloc] init];
// localCache is used to avoid going all the time to the memcached
// server during each request. We'll cache the value we got from
// memcached for the duration of the current request - which is good
// enough for pretty much all cases. We surely don't want to get new
// defaults/settings during the _same_ requests, it could produce
// relatively strange behaviors
localCache = [NSMutableDictionary new];
if (!handle)
{
handle = memcached_create(NULL);
if (handle)
{
sd = [SOGoSystemDefaults sharedSystemDefaults];
// We define the default value for cleaning up cached users'
// preferences. This value should be relatively high to avoid
// useless database calls.
cleanupInterval = [sd cacheCleanupInterval];
ASSIGN(memcachedServerName, [sd memcachedHost]);
[self logWithFormat: @"Cache cleanup interval set every %f seconds",
cleanupInterval];
[self logWithFormat: @"Using host(s) '%@' as server(s)",
memcachedServerName];
if (!servers)
servers
= memcached_servers_parse([memcachedServerName UTF8String]);
if ([memcachedServerName hasPrefix:@"/"])
memcached_server_add_unix_socket(handle, [memcachedServerName UTF8String]);
else
memcached_server_push(handle, servers);
}
}
}
return self;
}
- (void) dealloc
{
/* Commented out because of a bug in GCC:
memcached_server_free (servers);
memcached_free (handle); */
[memcachedServerName release];
[cache release];
[users release];
[groups release];
[imap4Connections release];
[localCache release];
[super dealloc];
}
- (void) disableRequestsCache
{
requestsCacheEnabled = NO;
}
- (void) disableLocalCache
{
[localCache release];
localCache = nil;
}
- (void) killCache
{
[cache removeAllObjects];
[imap4Connections removeAllObjects];
// This is essential for refetching the cached values in case something has changed
// accross various sogod processes
[users removeAllObjects];
[groups removeAllObjects];
[localCache removeAllObjects];
}
- (NSString *) _pathFromObject: (SOGoObject *) container
withName: (NSString *) name
{
NSString *fullPath, *nameInContainer;
NSMutableArray *names;
id currentObject;
if ([name length])
{
names = [NSMutableArray array];
[names addObject: name];
currentObject = container;
while ((nameInContainer = [currentObject nameInContainer]))
{
[names addObject: nameInContainer];
currentObject = [currentObject container];
}
fullPath = [names componentsJoinedByString: @"/"];
}
else
fullPath = nil;
return fullPath;
}
- (void) registerObject: (id) object
withName: (NSString *) name
inContainer: (SOGoObject *) container
{
NSString *fullPath;
if (requestsCacheEnabled && object && name)
{
[self registerObject: container
withName: [container nameInContainer]
inContainer: [container container]];
fullPath = [self _pathFromObject: container
withName: name];
if (fullPath && ![cache objectForKey: fullPath])
{
[cache setObject: object forKey: fullPath];
}
}
}
- (void) unregisterObjectWithName: (NSString *) name
inContainer: (SOGoObject *) container
{
NSString *fullPath;
if (requestsCacheEnabled && name)
{
fullPath = [self _pathFromObject: container
withName: name];
[cache removeObjectForKey: fullPath];
}
}
- (id) objectNamed: (NSString *) name
inContainer: (SOGoObject *) container
{
NSString *fullPath;
id cacheObject;
if (requestsCacheEnabled)
{
fullPath = [self _pathFromObject: container
withName: name];
cacheObject = [cache objectForKey: fullPath];
}
else
cacheObject = nil;
return cacheObject;
}
- (void) registerUser: (SOGoUser *) user
withName: (NSString *) userName
{
[users setObject: user forKey: userName];
}
- (id) userNamed: (NSString *) name
{
return [users objectForKey: name];
}
- (void) registerGroup: (SOGoGroup *) group
withName: (NSString *) groupName
inDomain: (NSString *) domainName
{
if (group)
[groups setObject: group forKey: [NSString stringWithFormat: @"%@+%@", groupName, domainName]];
}
- (id) groupNamed: (NSString *) groupName
inDomain: (NSString *) domainName
{
return [groups objectForKey: [NSString stringWithFormat: @"%@+%@", groupName, domainName]];
}
- (void) registerIMAP4Connection: (NGImap4Connection *) connection
forKey: (NSString *) key
{
if (connection)
[imap4Connections setObject: connection forKey: key];
else
[imap4Connections removeObjectForKey: key];
}
- (NGImap4Connection *) imap4ConnectionForKey: (NSString *) key
{
return [imap4Connections objectForKey: key];
}
//
// For non-blocking cache method, see memcached_behavior_set and MEMCACHED_BEHAVIOR_NO_BLOCK
// memcached is thread-safe so no need to lock here.
//
- (void) setValue: (NSString *) value
forKey: (NSString *) key
expire: (float) expiration
{
NSData *keyData, *valueData;
memcached_return error;
// [self logWithFormat: @"setValue: '%@' forKey: '%@'", value, key];
if (handle)
{
keyData = [key dataUsingEncoding: NSUTF8StringEncoding];
valueData = [value dataUsingEncoding: NSUTF8StringEncoding];
error = memcached_set(handle,
[keyData bytes], [keyData length],
[valueData bytes], [valueData length],
expiration, 0);
if (error != MEMCACHED_SUCCESS)
[self logWithFormat:
@"an error occurred when caching value for key '%@':"
@" \"%s\"", key, memcached_strerror(handle, error)];
//else
//[self logWithFormat: @"memcached: cached values (%s) with subtype %@
//for user %@", value, theType, theLogin];
}
else
[self errorWithFormat: (@"attempting to cache value for key '%@' while"
" no handle exists"), key];
}
- (void) setValue: (NSString *) value
forKey: (NSString *) key
{
[self setValue: value forKey: key
expire: cleanupInterval];
}
- (NSString *) valueForKey: (NSString *) key
{
NSString *valueString;
NSData *keyData;
char *value;
size_t vlen;
memcached_return rc;
unsigned int flags;
if (handle)
{
keyData = [key dataUsingEncoding: NSUTF8StringEncoding];
value = memcached_get (handle, [keyData bytes], [keyData length],
&vlen, &flags, &rc);
if (rc == MEMCACHED_SUCCESS && value)
{
valueString
= [[NSString alloc] initWithBytesNoCopy: value
length: vlen
encoding: NSUTF8StringEncoding
freeWhenDone: YES];
[valueString autorelease];
}
else
valueString = nil;
}
else
{
valueString = nil;
[self errorWithFormat: @"attempting to retrieved cached value for key"
@" '%@' while no handle exists", key];
}
// [self logWithFormat: @"valueForKey: '%@' -> '%@'", key, valueString];
return valueString;
}
- (void) removeValueForKey: (NSString *) key
{
NSData *keyData;
memcached_return rc;
[localCache removeObjectForKey: key];
if (handle)
{
keyData = [key dataUsingEncoding: NSUTF8StringEncoding];
rc = memcached_delete (handle, [keyData bytes], [keyData length],
0);
if (rc != MEMCACHED_SUCCESS)
[self errorWithFormat: (@"failure deleting cached value for key"
@" '%@'"),
key];
}
else
[self errorWithFormat: (@"attempting to delete cached value for key"
@" '%@' while no handle exists"),
key];
}
//
// This method is used to cache a specific value (represented as a
// string, usually JSON stuff) using the specified key and type-suffix
//
// The final key will aways be of the form: <key>+<type suffix>
//
// This method will insert the value in the localCache and also
// in memcached.
//
- (void) _cacheValues: (NSString *) theAttributes
ofType: (NSString *) theType
forKey: (NSString *) theKey
{
NSString *keyName;
keyName = [NSString stringWithFormat: @"%@+%@", theKey, theType];
if (theAttributes)
{
[self setValue: theAttributes forKey: keyName];
[localCache setObject: theAttributes forKey: keyName];
}
}
- (NSString *) _valuesOfType: (NSString *) theType
forKey: (NSString *) theKey
{
NSString *valueString, *keyName;
valueString = nil;
keyName = [NSString stringWithFormat: @"%@+%@", theKey, theType];
valueString = [localCache objectForKey: keyName];
if (!valueString)
{
valueString = [self valueForKey: keyName];
if (valueString)
[localCache setObject: valueString forKey: keyName];
}
return valueString;
}
- (void) setUserAttributes: (NSString *) theAttributes
forLogin: (NSString *) login
{
[self _cacheValues: theAttributes ofType: @"attributes"
forKey: login];
}
- (NSString *) userAttributesForLogin: (NSString *) theLogin
{
return [self _valuesOfType: @"attributes" forKey: theLogin];
}
- (void) setUserDefaults: (NSString *) theAttributes
forLogin: (NSString *) login
{
[self _cacheValues: theAttributes ofType: @"defaults"
forKey: login];
}
- (NSString *) userDefaultsForLogin: (NSString *) theLogin
{
return [self _valuesOfType: @"defaults" forKey: theLogin];
}
- (void) setUserSettings: (NSString *) theAttributes
forLogin: (NSString *) login
{
[self _cacheValues: theAttributes ofType: @"settings"
forKey: login];
}
- (NSString *) userSettingsForLogin: (NSString *) theLogin
{
return [self _valuesOfType: @"settings" forKey: theLogin];
}
//
// CAS session support
//
- (NSString *) CASTicketFromIdentifier: (NSString *) identifier
{
return [self valueForKey: [NSString stringWithFormat: @"cas-id:%@",
identifier]];
}
- (NSString *) CASSessionWithTicket: (NSString *) ticket
{
return [self valueForKey: [NSString stringWithFormat: @"cas-ticket:%@",
ticket]];
}
- (void) setCASSession: (NSString *) casSession
withTicket: (NSString *) ticket
forIdentifier: (NSString *) identifier
{
[self setValue: ticket
forKey: [NSString stringWithFormat: @"cas-id:%@", identifier]];
[self setValue: casSession
forKey: [NSString stringWithFormat: @"cas-ticket:%@", ticket]];
}
- (NSString *) CASPGTIdFromPGTIOU: (NSString *) pgtIou
{
NSString *casPgtId, *key;
key = [NSString stringWithFormat: @"cas-pgtiou:%@", pgtIou];
casPgtId = [self valueForKey: key];
/* we directly remove the value as it can only be used once anyway */
if (casPgtId)
[self removeValueForKey: key];
return casPgtId;
}
- (void) setCASPGTId: (NSString *) pgtId
forPGTIOU: (NSString *) pgtIou
{
[self setValue: pgtId
forKey: [NSString stringWithFormat: @"cas-pgtiou:%@", pgtIou]];
}
//
// ACL caching code
//
- (void) setACLs: (NSDictionary *) theACLs
forPath: (NSString *) thePath
{
if (theACLs)
[self _cacheValues: [theACLs jsonRepresentation]
ofType: @"acl"
forKey: thePath];
else
[self removeValueForKey: [NSString stringWithFormat: @"%@+acl", thePath]];
}
- (NSMutableDictionary *) aclsForPath: (NSString *) thePath
{
NSString *s;
s = [self _valuesOfType: @"acl" forKey: thePath];
if (s)
return [s objectFromJSONString];
return nil;
}
@end
|