MediaWiki
1.23.0
|
Manage locks using memcached servers. More...
Public Member Functions | |
__construct (array $config) | |
Construct a new instance from configuration. More... | |
__destruct () | |
Make sure remaining locks get cleared for sanity. More... | |
Public Member Functions inherited from LockManager | |
lock (array $paths, $type=self::LOCK_EX, $timeout=0) | |
Lock the resources at the given abstract paths. More... | |
lockByType (array $pathsByType, $timeout=0) | |
Lock the resources at the given abstract paths. More... | |
unlock (array $paths, $type=self::LOCK_EX) | |
Unlock the resources at the given abstract paths. More... | |
unlockByType (array $pathsByType) | |
Unlock the resources at the given abstract paths. More... | |
Protected Member Functions | |
acquireMutexes (MemcachedBagOStuff $memc, array $keys) | |
doFreeLocksOnServer ( $lockSrv, array $paths, $type) | |
doGetLocksOnServer ( $lockSrv, array $paths, $type) | |
freeLocksOnServer ( $lockSrv, array $pathsByType) | |
Get a connection to a lock server and release locks on $paths. More... | |
getCache ( $lockSrv) | |
Get the MemcachedBagOStuff object for a $lockSrv. More... | |
getLocksOnServer ( $lockSrv, array $pathsByType) | |
Get a connection to a lock server and acquire locks. More... | |
isServerUp ( $lockSrv) | |
recordKeyForPath ( $path) | |
releaseAllLocks () | |
releaseMutexes (MemcachedBagOStuff $memc, array $keys) | |
Protected Member Functions inherited from QuorumLockManager | |
doLock (array $paths, $type) | |
Lock resources with the given keys and lock type. More... | |
doLockByType (array $pathsByType) | |
doLockingRequestBucket ( $bucket, array $pathsByType) | |
Attempt to acquire locks with the peers for a bucket. More... | |
doUnlock (array $paths, $type) | |
Unlock resources with the given keys and lock type. More... | |
doUnlockByType (array $pathsByType) | |
doUnlockingRequestBucket ( $bucket, array $pathsByType) | |
Attempt to release locks with the peers for a bucket. More... | |
getBucketFromPath ( $path) | |
Get the bucket for resource path. More... | |
Protected Member Functions inherited from LockManager | |
normalizePathsByType (array $pathsByType) | |
Normalize the $paths array by converting LOCK_UW locks into the appropriate type and removing any duplicated paths for each lock type. More... | |
sha1Base16Absolute ( $path) | |
Get the base 16 SHA-1 of a string, padded to 31 digits. More... | |
sha1Base36Absolute ( $path) | |
Get the base 36 SHA-1 of a string, padded to 31 digits. More... | |
Static Protected Member Functions | |
static | newLockArray () |
static | sanitizeLockArray ( $a) |
Protected Attributes | |
array | $bagOStuffs = array() |
Map server names to MemcachedBagOStuff objects *. More... | |
array | $lockTypeMap |
Mapping of lock types to the type actually used *. More... | |
array | $serversUp = array() |
(server name => bool) * More... | |
string | $session = '' |
random UUID * More... | |
Protected Attributes inherited from QuorumLockManager | |
array | $degradedBuckets = array() |
Map of degraded buckets *. More... | |
array | $srvsByBucket = array() |
Map of bucket indexes to peer server lists *. More... | |
Protected Attributes inherited from LockManager | |
$domain | |
array | $locksHeld = array() |
Map of (resource path => lock type => count) *. More... | |
$lockTTL | |
array | $lockTypeMap |
Mapping of lock types to the type actually used *. More... | |
Additional Inherited Members | |
Public Attributes inherited from LockManager | |
const | LOCK_EX = 3 |
const | LOCK_SH = 1 |
Lock types; stronger locks have higher values. More... | |
const | LOCK_UW = 2 |
Manage locks using memcached servers.
Version of LockManager based on using memcached servers. This is meant for multi-wiki systems that may share files. All locks are non-blocking, which avoids deadlocks.
All lock requests for a resource, identified by a hash string, will map to one bucket. Each bucket maps to one or several peer servers, each running memcached. A majority of peers must agree for a lock to be acquired.
Definition at line 38 of file MemcLockManager.php.
MemcLockManager::__construct | ( | array | $config | ) |
Construct a new instance from configuration.
array | $config | Paramaters include:
|
MWException |
Reimplemented from LockManager.
Definition at line 62 of file MemcLockManager.php.
References $cache, $name, $params, array(), as, ObjectCache\newFromParams(), and wfRandomString().
MemcLockManager::__destruct | ( | ) |
Make sure remaining locks get cleared for sanity.
Definition at line 372 of file MemcLockManager.php.
References $path, array(), as, and QuorumLockManager\doUnlock().
|
protected |
MemcachedBagOStuff | $memc | |
array | $keys | List of keys to acquire |
Definition at line 326 of file MemcLockManager.php.
References $keys, MemcachedBagOStuff\add(), array(), as, and releaseMutexes().
Referenced by doFreeLocksOnServer(), and doGetLocksOnServer().
|
protected |
string | $lockSrv | |
array | $paths | |
string | $type |
Definition at line 203 of file MemcLockManager.php.
References $keys, LockManager\$locksHeld, $ok, $path, $type, acquireMutexes(), array(), as, getCache(), Status\newGood(), recordKeyForPath(), releaseMutexes(), sanitizeLockArray(), and wfDebug().
Referenced by freeLocksOnServer(), and getLocksOnServer().
|
protected |
string | $lockSrv | |
array | $paths | |
string | $type |
Definition at line 127 of file MemcLockManager.php.
References $keys, LockManager\$locksHeld, LockManager\$lockTTL, $ok, $path, $session, $type, acquireMutexes(), array(), as, getCache(), Status\newGood(), newLockArray(), recordKeyForPath(), releaseMutexes(), sanitizeLockArray(), and wfDebug().
Referenced by getLocksOnServer().
|
protected |
Get a connection to a lock server and release locks on $paths.
Subclasses must effectively implement this or releaseAllLocks().
string | $lockSrv | |
array | $pathsByType | Map of LockManager::LOCK_* constants to lists of paths |
Reimplemented from QuorumLockManager.
Definition at line 110 of file MemcLockManager.php.
References $type, as, doFreeLocksOnServer(), and Status\newGood().
|
protected |
Get the MemcachedBagOStuff object for a $lockSrv.
string | $lockSrv | Server name |
Definition at line 274 of file MemcLockManager.php.
Referenced by doFreeLocksOnServer(), doGetLocksOnServer(), and isServerUp().
|
protected |
Get a connection to a lock server and acquire locks.
string | $lockSrv | |
array | $pathsByType | Map of LockManager::LOCK_* constants to lists of paths |
Reimplemented from QuorumLockManager.
Definition at line 88 of file MemcLockManager.php.
References $type, array(), as, doFreeLocksOnServer(), doGetLocksOnServer(), and Status\newGood().
|
protected |
string | $lockSrv |
Reimplemented from QuorumLockManager.
Definition at line 264 of file MemcLockManager.php.
References getCache().
|
staticprotected |
Definition at line 303 of file MemcLockManager.php.
References array().
Referenced by doGetLocksOnServer(), and sanitizeLockArray().
|
protected |
string | $path |
Definition at line 296 of file MemcLockManager.php.
References $path, array(), and LockManager\sha1Base36Absolute().
Referenced by doFreeLocksOnServer(), and doGetLocksOnServer().
|
protected |
Reimplemented from QuorumLockManager.
Definition at line 255 of file MemcLockManager.php.
References Status\newGood().
|
protected |
MemcachedBagOStuff | $memc | |
array | $keys | List of acquired keys |
Definition at line 363 of file MemcLockManager.php.
References $keys, as, and MemcachedBagOStuff\delete().
Referenced by acquireMutexes(), doFreeLocksOnServer(), and doGetLocksOnServer().
|
staticprotected |
array | $a |
Definition at line 311 of file MemcLockManager.php.
References newLockArray().
Referenced by doFreeLocksOnServer(), and doGetLocksOnServer().
Map server names to MemcachedBagOStuff objects *.
Definition at line 45 of file MemcLockManager.php.
|
protected |
Mapping of lock types to the type actually used *.
Definition at line 39 of file MemcLockManager.php.
(server name => bool) *
Definition at line 47 of file MemcLockManager.php.
|
protected |
random UUID *
Definition at line 49 of file MemcLockManager.php.
Referenced by doGetLocksOnServer().