apdqc.lock.inc in Asynchronous Prefetch Database Query Cache 7
A database-mediated implementation of a locking mechanism.
File
apdqc.lock.incView source
<?php
/**
* @file
* A database-mediated implementation of a locking mechanism.
*/
/**
* Location of the base lock file.
*/
define('BASE_LOCK_INC', 'includes/lock.inc');
// Get base lock file location.
$base_lock_location = variable_get('base_lock_inc', BASE_LOCK_INC);
$base_lock_dir = dirname($base_lock_location);
// Namespaces are only available in PHP 5.3+.
if (!defined('PHP_VERSION_ID') || PHP_VERSION_ID < 50300 || function_exists('lock_initialize')) {
// Fallback to the base locking include file.
require_once $base_lock_location;
}
else {
$lock_file_included = FALSE;
// Memcache.
if (!$lock_file_included && file_exists($base_lock_dir . '/dmemcache.inc') && strpos($base_lock_location, '/memcache/memcache-lock.inc') !== FALSE) {
require_once $base_lock_dir . '/dmemcache.inc';
// Use memcache locking if memcached is available.
if (dmemcache_object('semaphore')) {
$lock_file_included = TRUE;
require_once 'apdqc.lock.memcache.inc';
}
}
// Memcache storage.
if (!$lock_file_included && strpos($base_lock_location, '/memcache_storage/includes/lock.inc') !== FALSE) {
// Use memcache storage locking if memcache storage is available.
if (class_exists('MemcacheStorageAPI')) {
$lock_file_included = TRUE;
require_once 'apdqc.lock.memcache_storage.inc';
}
}
// APCu.
if (!$lock_file_included && strpos($base_lock_location, '/apc/drupal_apc_lock.inc') !== FALSE) {
// Use apc locking if apc_fetch && apc_store are available.
if (function_exists('apc_fetch') && function_exists('apc_store')) {
$lock_file_included = TRUE;
require_once 'apdqc.lock.apc.inc';
}
}
// Redis.
if (!$lock_file_included && file_exists($base_lock_dir . '/redis.autoload.inc') && strpos($base_lock_location, '/redis/redis.lock.inc') !== FALSE) {
// Include our own autoloader to ensure classes to be there.
// We cannot rely on core in case of early bootstrap phases.
require_once $base_lock_dir . '/redis.autoload.inc';
include_once REDIS_ROOT . '/Redis/Lock.php';
include_once REDIS_ROOT . '/Redis/Client.php';
// Use redis locking.
$lock_file_included = TRUE;
require_once 'apdqc.lock.redis.inc';
}
// Core.
if (!$lock_file_included && strpos($base_lock_location, 'includes/lock.inc') !== FALSE) {
// Make sure apdqc_fast_get_db_type() is available.
require_once 'apdqc.cache.inc';
// Load the correct database backend.
$db_type = apdqc_fast_get_db_type();
if ($db_type === 'mysql') {
require_once 'apdqc.mysql.inc';
$lock_file_included = TRUE;
require_once 'apdqc.lock.db.inc';
}
}
// Other.
if (!$lock_file_included) {
// Use eval fallback.
// @ignore security_19
eval('namespace base_lock {?>' . file_get_contents(DRUPAL_ROOT . '/' . $base_lock_location) . '}');
}
/**
* Initialize the locking system.
*/
function lock_initialize() {
static $functions;
if (!isset($functions['_apdqc_lock_initialize'])) {
$functions['_apdqc_lock_initialize'] = FALSE;
if (function_exists('_apdqc_lock_initialize')) {
$functions['_apdqc_lock_initialize'] = TRUE;
}
}
if (!isset($functions['base_lock\\lock_initialize'])) {
$functions['base_lock\\lock_initialize'] = FALSE;
if (function_exists('base_lock\\lock_initialize')) {
$functions['base_lock\\lock_initialize'] = TRUE;
}
}
if ($functions['_apdqc_lock_initialize']) {
return _apdqc_lock_initialize();
}
elseif ($functions['base_lock\\lock_initialize']) {
return base_lock\lock_initialize();
}
}
/**
* Helper function to get this request's unique id.
*/
function _lock_id() {
static $functions;
if (!isset($functions['_apdqc_lock_id'])) {
$functions['_apdqc_lock_id'] = FALSE;
if (function_exists('_apdqc_lock_id')) {
$functions['_apdqc_lock_id'] = TRUE;
}
}
if (!isset($functions['base_lock\\_lock_id'])) {
$functions['base_lock\\_lock_id'] = FALSE;
if (function_exists('base_lock\\_lock_id')) {
$functions['base_lock\\_lock_id'] = TRUE;
}
}
if ($functions['_apdqc_lock_id']) {
return _apdqc_lock_id();
}
elseif ($functions['base_lock\\_lock_id']) {
return base_lock\_lock_id();
}
}
/**
* Acquire (or renew) a lock, but do not block if it fails.
*
* @param string $name
* The name of the lock. Limit of name's length is 255 characters.
* @param float $timeout
* A number of seconds (float) before the lock expires (minimum of 0.001).
*
* @return bool
* TRUE if the lock was acquired, FALSE if it failed.
*/
function lock_acquire($name, $timeout = 30.0) {
static $functions;
if (!isset($functions['_apdqc_lock_acquire'])) {
$functions['_apdqc_lock_acquire'] = FALSE;
if (function_exists('_apdqc_lock_acquire')) {
$functions['_apdqc_lock_acquire'] = TRUE;
}
}
if (!isset($functions['base_lock\\lock_acquire'])) {
$functions['base_lock\\lock_acquire'] = FALSE;
if (function_exists('base_lock\\lock_acquire')) {
$functions['base_lock\\lock_acquire'] = TRUE;
}
}
if ($functions['_apdqc_lock_acquire']) {
return _apdqc_lock_acquire($name, $timeout);
}
elseif ($functions['base_lock\\lock_acquire']) {
return base_lock\lock_acquire($name, $timeout);
}
}
/**
* Check if lock acquired by a different process may be available.
*
* If an existing lock has expired, it is removed.
*
* @param string $name
* The name of the lock.
*
* @return bool
* TRUE if there is no lock or it was removed, FALSE otherwise.
*/
function lock_may_be_available($name) {
static $functions;
if (!isset($functions['_apdqc_lock_may_be_available'])) {
$functions['_apdqc_lock_may_be_available'] = FALSE;
if (function_exists('_apdqc_lock_may_be_available')) {
$functions['_apdqc_lock_may_be_available'] = TRUE;
}
}
if (!isset($functions['base_lock\\lock_may_be_available'])) {
$functions['base_lock\\lock_may_be_available'] = FALSE;
if (function_exists('base_lock\\lock_may_be_available')) {
$functions['base_lock\\lock_may_be_available'] = TRUE;
}
}
if ($functions['_apdqc_lock_may_be_available']) {
return _apdqc_lock_may_be_available($name);
}
elseif ($functions['base_lock\\lock_may_be_available']) {
return base_lock\lock_may_be_available($name);
}
}
/**
* Wait for a lock to be available.
*
* This function may be called in a request that fails to acquire a desired
* lock. This will block further execution until the lock is available or the
* specified delay in seconds is reached. This should not be used with locks
* that are acquired very frequently, since the lock is likely to be acquired
* again by a different request while waiting.
*
* @param string $name
* The name of the lock.
* @param int $delay
* The maximum number of seconds to wait, as an integer.
*
* @return bool
* TRUE if the lock holds, FALSE if it is available.
*/
function lock_wait($name, $delay = 30) {
static $functions;
if (!isset($functions['_apdqc_lock_wait'])) {
$functions['_apdqc_lock_wait'] = FALSE;
if (function_exists('_apdqc_lock_wait')) {
$functions['_apdqc_lock_wait'] = TRUE;
}
}
if (!isset($functions['base_lock\\lock_wait'])) {
$functions['base_lock\\lock_wait'] = FALSE;
if (function_exists('base_lock\\lock_wait')) {
$functions['base_lock\\lock_wait'] = TRUE;
}
}
if ($functions['_apdqc_lock_wait']) {
return _apdqc_lock_wait($name, $delay);
}
elseif ($functions['base_lock\\lock_wait']) {
return base_lock\lock_wait($name, $delay);
}
}
/**
* Release a lock previously acquired by lock_acquire().
*
* This will release the named lock if it is still held by the current
* request.
*
* @param string $name
* The name of the lock.
*/
function lock_release($name) {
static $functions;
if (!isset($functions['_apdqc_lock_release'])) {
$functions['_apdqc_lock_release'] = FALSE;
if (function_exists('_apdqc_lock_release')) {
$functions['_apdqc_lock_release'] = TRUE;
}
}
if (!isset($functions['base_lock\\lock_release'])) {
$functions['base_lock\\lock_release'] = FALSE;
if (function_exists('base_lock\\lock_release')) {
$functions['base_lock\\lock_release'] = TRUE;
}
}
apdqc_wait_for_all_async_queries();
if ($functions['_apdqc_lock_release']) {
return _apdqc_lock_release($name);
}
elseif ($functions['base_lock\\lock_release']) {
return base_lock\lock_release($name);
}
}
/**
* Release all previously acquired locks.
*/
function lock_release_all($lock_id = NULL) {
static $functions;
if (!isset($functions['_apdqc_lock_release_all'])) {
$functions['_apdqc_lock_release_all'] = FALSE;
if (function_exists('_apdqc_lock_release_all')) {
$functions['_apdqc_lock_release_all'] = TRUE;
}
}
if (!isset($functions['base_lock\\lock_release_all'])) {
$functions['base_lock\\lock_release_all'] = FALSE;
if (function_exists('base_lock\\lock_release_all')) {
$functions['base_lock\\lock_release_all'] = TRUE;
}
}
apdqc_wait_for_all_async_queries();
if ($functions['_apdqc_lock_release_all']) {
return _apdqc_lock_release_all($lock_id);
}
elseif ($functions['base_lock\\lock_release_all']) {
return base_lock\lock_release_all($lock_id);
}
}
/**
* Wait for all async queries to finish.
*/
function apdqc_wait_for_all_async_queries() {
if (function_exists('apdqc_get_db_object')) {
return apdqc_get_db_object(array(), array(), array(
'async' => FALSE,
'reap' => TRUE,
));
}
}
/**
* Change the lock id.
*
* @param string $name
* Name of the lock.
* @param string $old_lock_id
* Value from _lock_id().
* @param string $new_lock_id
* New value for the 'value' column in the database.
*/
function lock_change_lock_id($name, $old_lock_id, $new_lock_id) {
static $functions;
if (!isset($functions['_apdqc_lock_change_lock_id'])) {
$functions['_apdqc_lock_change_lock_id'] = FALSE;
if (function_exists('_apdqc_lock_change_lock_id')) {
$functions['_apdqc_lock_change_lock_id'] = TRUE;
}
}
if (!isset($functions['base_lock\\lock_change_lock_id'])) {
$functions['base_lock\\lock_change_lock_id'] = FALSE;
if (function_exists('base_lock\\lock_change_lock_id')) {
$functions['base_lock\\lock_change_lock_id'] = TRUE;
}
}
if (empty($old_lock_id)) {
$old_lock_id = _lock_id();
}
if ($functions['_apdqc_lock_change_lock_id']) {
return _apdqc_lock_change_lock_id($name, $old_lock_id, $new_lock_id);
}
elseif ($functions['base_lock\\lock_change_lock_id']) {
return base_lock\lock_change_lock_id($name, $old_lock_id, $new_lock_id);
}
}
/**
* Release a lock previously acquired by lock_acquire().
*
* This will release the named lock.
*
* @param string $name
* The name of the lock.
*/
function lock_release_fuzzy($name) {
static $functions;
if (!isset($functions['_apdqc_lock_release_fuzzy'])) {
$functions['_apdqc_lock_release_fuzzy'] = FALSE;
if (function_exists('_apdqc_lock_release_fuzzy')) {
$functions['_apdqc_lock_release_fuzzy'] = TRUE;
}
}
if (!isset($functions['base_lock\\lock_release_fuzzy'])) {
$functions['base_lock\\lock_release_fuzzy'] = FALSE;
if (function_exists('base_lock\\lock_release_fuzzy')) {
$functions['base_lock\\lock_release_fuzzy'] = TRUE;
}
}
if ($functions['_apdqc_lock_release_fuzzy']) {
apdqc_wait_for_all_async_queries();
return _apdqc_lock_release_fuzzy($name);
}
elseif ($functions['base_lock\\lock_release_fuzzy']) {
apdqc_wait_for_all_async_queries();
return base_lock\lock_release_fuzzy($name);
}
else {
return lock_release($name);
}
}
}
Constants
Name | Description |
---|---|
BASE_LOCK_INC | Location of the base lock file. |