21use Psr\Log\LoggerInterface;
22use Psr\Log\NullLogger;
23use Wikimedia\RequestTimeout\RequestTimeout;
24use Wikimedia\WaitConditionLoop;
53 self::LOCK_SH => self::LOCK_SH,
54 self::LOCK_UW => self::LOCK_EX,
55 self::LOCK_EX => self::LOCK_EX
94 $this->domain = $config[
'domain'] ??
'global';
95 if ( isset( $config[
'lockTTL'] ) ) {
96 $this->lockTTL = max( self::MIN_LOCK_TTL, $config[
'lockTTL'] );
97 } elseif ( PHP_SAPI ===
'cli' || PHP_SAPI ===
'phpdbg' ) {
98 $this->lockTTL = self::CLI_LOCK_TTL;
100 $ttl = 2 * ceil( RequestTimeout::singleton()->getWallTimeLimit() );
101 $this->lockTTL = ( $ttl === INF || $ttl < self::MIN_GUESSED_LOCK_TTL )
102 ? self::MIN_GUESSED_LOCK_TTL : $ttl;
108 $this->lockTTL = min( $this->lockTTL, self::MAX_LOCK_TTL );
111 for ( $i = 1; $i <= 5; ++$i ) {
112 $random[] = mt_rand( 0, 0xFFFFFFF );
114 $this->session = md5( implode(
'-', $random ) );
116 $this->logger = $config[
'logger'] ??
new NullLogger();
127 final public function lock( array $paths, $type = self::LOCK_EX, $timeout = 0 ) {
128 return $this->
lockByType( [ $type => $paths ], $timeout );
139 final public function lockByType( array $pathsByType, $timeout = 0 ) {
143 $loop =
new WaitConditionLoop(
144 function () use ( &$status, $pathsByType ) {
147 return $status->isOK() ?: WaitConditionLoop::CONDITION_CONTINUE;
164 final public function unlock( array $paths, $type = self::LOCK_EX ) {
191 return Wikimedia\base_convert( sha1(
"{$this->domain}:{$path}" ), 16, 36, 31 );
203 return sha1(
"{$this->domain}:{$path}" );
216 foreach ( $pathsByType as $type => $paths ) {
217 foreach ( $paths as
$path ) {
218 if ( (
string)
$path ===
'' ) {
219 throw new InvalidArgumentException( __METHOD__ .
": got empty path." );
222 $res[$this->lockTypeMap[$type]] = array_unique( $paths );
236 $status = StatusValue::newGood();
238 foreach ( $pathsByType as $type => $paths ) {
239 $status->merge( $this->
doLock( $paths, $type ) );
240 if ( $status->isOK() ) {
241 $lockedByType[$type] = $paths;
244 foreach ( $lockedByType as $lType => $lPaths ) {
245 $status->merge( $this->
doUnlock( $lPaths, $lType ) );
261 abstract protected function doLock( array $paths, $type );
271 $status = StatusValue::newGood();
272 foreach ( $pathsByType as $type => $paths ) {
273 $status->merge( $this->
doUnlock( $paths, $type ) );
286 abstract protected function doUnlock( array $paths, $type );
Resource locking handling.
const CLI_LOCK_TTL
Default lock TTL in CLI mode.
doUnlockByType(array $pathsByType)
const MIN_LOCK_TTL
Minimum lock TTL.
array $lockTypeMap
Mapping of lock types to the type actually used.
lock(array $paths, $type=self::LOCK_EX, $timeout=0)
Lock the resources at the given abstract paths.
const MIN_GUESSED_LOCK_TTL
The minimum lock TTL if it is guessed from max_execution_time rather than configured.
doUnlock(array $paths, $type)
Unlock resources with the given keys and lock type.
doLock(array $paths, $type)
Lock resources with the given keys and lock type.
string $session
Random 32-char hex number.
lockByType(array $pathsByType, $timeout=0)
Lock the resources at the given abstract paths.
const LOCK_SH
Lock types; stronger locks have higher values.
doLockByType(array $pathsByType)
normalizePathsByType(array $pathsByType)
Normalize the $paths array by converting LOCK_UW locks into the appropriate type and removing any dup...
const MAX_LOCK_TTL
Max expected lock expiry in any context.
sha1Base36Absolute( $path)
Get the base 36 SHA-1 of a string, padded to 31 digits.
unlock(array $paths, $type=self::LOCK_EX)
Unlock the resources at the given abstract paths.
array $locksHeld
Map of (resource path => lock type => count)
sha1Base16Absolute( $path)
Get the base 16 SHA-1 of a string, padded to 31 digits.
unlockByType(array $pathsByType)
Unlock the resources at the given abstract paths.
__construct(array $config)
Construct a new instance from configuration.