public function DatabaseLockBackend::lockMayBeAvailable

Implements Drupal\Core\Lock\LockBackedInterface::lockMayBeAvailable().

Overrides LockBackendInterface::lockMayBeAvailable

1 call to DatabaseLockBackend::lockMayBeAvailable()
DatabaseLockBackend::acquire in drupal/core/lib/Drupal/Core/Lock/DatabaseLockBackend.php
Implements Drupal\Core\Lock\LockBackedInterface::acquire().

File

drupal/core/lib/Drupal/Core/Lock/DatabaseLockBackend.php, line 74
Definition of Drupal\Core\Lock\DatabaseLockBackend.

Class

DatabaseLockBackend
Defines the database lock backend. This is the default backend in Drupal.

Namespace

Drupal\Core\Lock

Code

public function lockMayBeAvailable($name) {
  $lock = db_query('SELECT expire, value FROM {semaphore} WHERE name = :name', array(
    ':name' => $name,
  ))
    ->fetchAssoc();
  if (!$lock) {
    return TRUE;
  }
  $expire = (double) $lock['expire'];
  $now = microtime(TRUE);
  if ($now > $expire) {

    // We check two conditions to prevent a race condition where another
    // request acquired the lock and set a new expire time. We add a small
    // number to $expire to avoid errors with float to string conversion.
    return (bool) db_delete('semaphore')
      ->condition('name', $name)
      ->condition('value', $lock['value'])
      ->condition('expire', 0.0001 + $expire, '<=')
      ->execute();
  }
  return FALSE;
}