2015-07-15 17:14:32 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program 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 Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OC\Lock;
|
|
|
|
|
2015-09-17 14:55:04 +03:00
|
|
|
use OCP\AppFramework\Utility\ITimeFactory;
|
2015-07-15 17:14:32 +03:00
|
|
|
use OCP\IDBConnection;
|
2015-08-10 15:39:34 +03:00
|
|
|
use OCP\ILogger;
|
2015-07-15 17:14:32 +03:00
|
|
|
use OCP\Lock\LockedException;
|
|
|
|
|
2015-08-03 16:46:19 +03:00
|
|
|
/**
|
|
|
|
* Locking provider that stores the locks in the database
|
|
|
|
*/
|
2015-07-15 17:14:32 +03:00
|
|
|
class DBLockingProvider extends AbstractLockingProvider {
|
|
|
|
/**
|
|
|
|
* @var \OCP\IDBConnection
|
|
|
|
*/
|
|
|
|
private $connection;
|
|
|
|
|
2015-08-10 15:39:34 +03:00
|
|
|
/**
|
|
|
|
* @var \OCP\ILogger
|
|
|
|
*/
|
|
|
|
private $logger;
|
|
|
|
|
2015-09-17 14:55:04 +03:00
|
|
|
/**
|
|
|
|
* @var \OCP\AppFramework\Utility\ITimeFactory
|
|
|
|
*/
|
|
|
|
private $timeFactory;
|
|
|
|
|
2015-09-17 15:09:28 +03:00
|
|
|
const TTL = 3600; // how long until we clear stray locks in seconds
|
2015-09-17 14:55:04 +03:00
|
|
|
|
2015-07-15 17:14:32 +03:00
|
|
|
/**
|
|
|
|
* @param \OCP\IDBConnection $connection
|
2015-08-10 15:39:34 +03:00
|
|
|
* @param \OCP\ILogger $logger
|
2015-09-17 14:55:04 +03:00
|
|
|
* @param \OCP\AppFramework\Utility\ITimeFactory $timeFactory
|
2015-07-15 17:14:32 +03:00
|
|
|
*/
|
2015-09-17 14:55:04 +03:00
|
|
|
public function __construct(IDBConnection $connection, ILogger $logger, ITimeFactory $timeFactory) {
|
2015-07-15 17:14:32 +03:00
|
|
|
$this->connection = $connection;
|
2015-08-10 15:39:34 +03:00
|
|
|
$this->logger = $logger;
|
2015-09-17 14:55:04 +03:00
|
|
|
$this->timeFactory = $timeFactory;
|
2015-07-15 17:14:32 +03:00
|
|
|
}
|
|
|
|
|
2015-09-11 12:22:13 +03:00
|
|
|
/**
|
|
|
|
* Insert a file locking row if it does not exists.
|
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
* @param int $lock
|
|
|
|
* @return int number of inserted rows
|
|
|
|
*/
|
|
|
|
|
|
|
|
protected function initLockField($path, $lock = 0) {
|
2015-09-17 14:55:04 +03:00
|
|
|
$expire = $this->getExpireTime();
|
2015-09-11 12:22:13 +03:00
|
|
|
return $this->connection->insertIfNotExist('*PREFIX*file_locks', ['key' => $path, 'lock' => $lock, 'ttl' => $expire], ['key']);
|
2015-09-17 14:55:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
protected function getExpireTime() {
|
|
|
|
return $this->timeFactory->getTime() + self::TTL;
|
2015-07-15 17:14:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $path
|
|
|
|
* @param int $type self::LOCK_SHARED or self::LOCK_EXCLUSIVE
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isLocked($path, $type) {
|
2015-08-03 16:46:19 +03:00
|
|
|
$query = $this->connection->prepare('SELECT `lock` from `*PREFIX*file_locks` WHERE `key` = ?');
|
2015-07-15 17:14:32 +03:00
|
|
|
$query->execute([$path]);
|
|
|
|
$lockValue = (int)$query->fetchColumn();
|
|
|
|
if ($type === self::LOCK_SHARED) {
|
|
|
|
return $lockValue > 0;
|
|
|
|
} else if ($type === self::LOCK_EXCLUSIVE) {
|
|
|
|
return $lockValue === -1;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $path
|
|
|
|
* @param int $type self::LOCK_SHARED or self::LOCK_EXCLUSIVE
|
|
|
|
* @throws \OCP\Lock\LockedException
|
|
|
|
*/
|
|
|
|
public function acquireLock($path, $type) {
|
2015-09-16 18:29:34 +03:00
|
|
|
if ($this->connection->inTransaction()) {
|
2015-08-25 15:31:21 +03:00
|
|
|
$this->logger->warning("Trying to acquire a lock for '$path' while inside a transition");
|
2015-08-10 15:39:34 +03:00
|
|
|
}
|
|
|
|
|
2015-09-17 14:55:04 +03:00
|
|
|
$expire = $this->getExpireTime();
|
2015-07-15 17:14:32 +03:00
|
|
|
if ($type === self::LOCK_SHARED) {
|
2015-09-11 12:22:13 +03:00
|
|
|
$result = $this->initLockField($path,1);
|
|
|
|
if ($result <= 0) {
|
|
|
|
$result = $this->connection->executeUpdate (
|
|
|
|
'UPDATE `*PREFIX*file_locks` SET `lock` = `lock` + 1, `ttl` = ? WHERE `key` = ? AND `lock` >= 0',
|
|
|
|
[$expire, $path]
|
|
|
|
);
|
|
|
|
}
|
2015-07-15 17:14:32 +03:00
|
|
|
} else {
|
2015-09-11 12:22:13 +03:00
|
|
|
$result = $this->initLockField($path,-1);
|
|
|
|
if ($result <= 0) {
|
|
|
|
$result = $this->connection->executeUpdate(
|
|
|
|
'UPDATE `*PREFIX*file_locks` SET `lock` = -1, `ttl` = ? WHERE `key` = ? AND `lock` = 0',
|
|
|
|
[$expire, $path]
|
|
|
|
);
|
|
|
|
}
|
2015-07-15 17:14:32 +03:00
|
|
|
}
|
|
|
|
if ($result !== 1) {
|
|
|
|
throw new LockedException($path);
|
|
|
|
}
|
|
|
|
$this->markAcquire($path, $type);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $path
|
|
|
|
* @param int $type self::LOCK_SHARED or self::LOCK_EXCLUSIVE
|
|
|
|
*/
|
|
|
|
public function releaseLock($path, $type) {
|
|
|
|
if ($type === self::LOCK_SHARED) {
|
|
|
|
$this->connection->executeUpdate(
|
2015-08-03 16:46:19 +03:00
|
|
|
'UPDATE `*PREFIX*file_locks` SET `lock` = `lock` - 1 WHERE `key` = ? AND `lock` > 0',
|
2015-07-15 17:14:32 +03:00
|
|
|
[$path]
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
$this->connection->executeUpdate(
|
2015-08-03 16:46:19 +03:00
|
|
|
'UPDATE `*PREFIX*file_locks` SET `lock` = 0 WHERE `key` = ? AND `lock` = -1',
|
2015-07-15 17:14:32 +03:00
|
|
|
[$path]
|
|
|
|
);
|
|
|
|
}
|
2015-08-10 15:13:40 +03:00
|
|
|
|
2015-07-15 17:14:32 +03:00
|
|
|
$this->markRelease($path, $type);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Change the type of an existing lock
|
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
* @param int $targetType self::LOCK_SHARED or self::LOCK_EXCLUSIVE
|
|
|
|
* @throws \OCP\Lock\LockedException
|
|
|
|
*/
|
|
|
|
public function changeLock($path, $targetType) {
|
2015-09-17 14:55:04 +03:00
|
|
|
$expire = $this->getExpireTime();
|
2015-07-15 17:14:32 +03:00
|
|
|
if ($targetType === self::LOCK_SHARED) {
|
|
|
|
$result = $this->connection->executeUpdate(
|
2015-09-17 14:55:04 +03:00
|
|
|
'UPDATE `*PREFIX*file_locks` SET `lock` = 1, `ttl` = ? WHERE `key` = ? AND `lock` = -1',
|
|
|
|
[$expire, $path]
|
2015-07-15 17:14:32 +03:00
|
|
|
);
|
|
|
|
} else {
|
|
|
|
$result = $this->connection->executeUpdate(
|
2015-09-17 14:55:04 +03:00
|
|
|
'UPDATE `*PREFIX*file_locks` SET `lock` = -1, `ttl` = ? WHERE `key` = ? AND `lock` = 1',
|
|
|
|
[$expire, $path]
|
2015-07-15 17:14:32 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
if ($result !== 1) {
|
|
|
|
throw new LockedException($path);
|
|
|
|
}
|
|
|
|
$this->markChange($path, $targetType);
|
|
|
|
}
|
2015-09-17 14:55:04 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* cleanup empty locks
|
|
|
|
*/
|
|
|
|
public function cleanEmptyLocks() {
|
|
|
|
$expire = $this->timeFactory->getTime();
|
|
|
|
$this->connection->executeUpdate(
|
|
|
|
'DELETE FROM `*PREFIX*file_locks` WHERE `lock` = 0 AND `ttl` < ?',
|
|
|
|
[$expire]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function __destruct() {
|
|
|
|
$this->cleanEmptyLocks();
|
|
|
|
}
|
2015-07-15 17:14:32 +03:00
|
|
|
}
|