2015-04-29 18:19:02 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2015-04-29 18:19:02 +03:00
|
|
|
*
|
|
|
|
* @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-12-09 16:41:15 +03:00
|
|
|
use OCP\IMemcacheTTL;
|
2015-04-29 18:19:02 +03:00
|
|
|
use OCP\Lock\LockedException;
|
|
|
|
use OCP\IMemcache;
|
|
|
|
|
2015-07-15 16:44:51 +03:00
|
|
|
class MemcacheLockingProvider extends AbstractLockingProvider {
|
2015-04-29 18:19:02 +03:00
|
|
|
/**
|
|
|
|
* @var \OCP\IMemcache
|
|
|
|
*/
|
|
|
|
private $memcache;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param \OCP\IMemcache $memcache
|
2016-03-24 16:07:43 +03:00
|
|
|
* @param int $ttl
|
2015-04-29 18:19:02 +03:00
|
|
|
*/
|
2016-03-24 16:07:43 +03:00
|
|
|
public function __construct(IMemcache $memcache, $ttl = 3600) {
|
2015-04-29 18:19:02 +03:00
|
|
|
$this->memcache = $memcache;
|
2016-03-24 16:07:43 +03:00
|
|
|
$this->ttl = $ttl;
|
2015-04-29 18:19:02 +03:00
|
|
|
}
|
|
|
|
|
2015-12-09 16:41:15 +03:00
|
|
|
private function setTTL($path) {
|
|
|
|
if ($this->memcache instanceof IMemcacheTTL) {
|
2016-03-24 16:07:43 +03:00
|
|
|
$this->memcache->setTTL($path, $this->ttl);
|
2015-12-09 16:41:15 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-29 18:19:02 +03:00
|
|
|
/**
|
|
|
|
* @param string $path
|
|
|
|
* @param int $type self::LOCK_SHARED or self::LOCK_EXCLUSIVE
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isLocked($path, $type) {
|
|
|
|
$lockValue = $this->memcache->get($path);
|
|
|
|
if ($type === self::LOCK_SHARED) {
|
|
|
|
return $lockValue > 0;
|
|
|
|
} else if ($type === self::LOCK_EXCLUSIVE) {
|
|
|
|
return $lockValue === 'exclusive';
|
|
|
|
} 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) {
|
|
|
|
if ($type === self::LOCK_SHARED) {
|
|
|
|
if (!$this->memcache->inc($path)) {
|
2015-04-30 15:16:09 +03:00
|
|
|
throw new LockedException($path);
|
2015-04-29 18:19:02 +03:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$this->memcache->add($path, 0);
|
|
|
|
if (!$this->memcache->cas($path, 0, 'exclusive')) {
|
2015-04-30 15:16:09 +03:00
|
|
|
throw new LockedException($path);
|
2015-04-29 18:19:02 +03:00
|
|
|
}
|
|
|
|
}
|
2015-12-09 16:41:15 +03:00
|
|
|
$this->setTTL($path);
|
2015-07-15 16:44:51 +03:00
|
|
|
$this->markAcquire($path, $type);
|
2015-04-29 18:19:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $path
|
|
|
|
* @param int $type self::LOCK_SHARED or self::LOCK_EXCLUSIVE
|
|
|
|
*/
|
|
|
|
public function releaseLock($path, $type) {
|
|
|
|
if ($type === self::LOCK_SHARED) {
|
2016-04-29 13:54:33 +03:00
|
|
|
if ($this->getOwnSharedLockCount($path) === 1) {
|
|
|
|
$removed = $this->memcache->cad($path, 1); // if we're the only one having a shared lock we can remove it in one go
|
|
|
|
if (!$removed) { //someone else also has a shared lock, decrease only
|
|
|
|
$this->memcache->dec($path);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// if we own more than one lock ourselves just decrease
|
2015-05-20 17:25:41 +03:00
|
|
|
$this->memcache->dec($path);
|
|
|
|
}
|
2015-04-29 18:19:02 +03:00
|
|
|
} else if ($type === self::LOCK_EXCLUSIVE) {
|
2015-06-08 16:27:36 +03:00
|
|
|
$this->memcache->cad($path, 'exclusive');
|
2015-05-19 18:12:09 +03:00
|
|
|
}
|
2015-07-15 16:44:51 +03:00
|
|
|
$this->markRelease($path, $type);
|
2015-05-19 18:12:09 +03:00
|
|
|
}
|
|
|
|
|
2015-05-29 15:34:21 +03:00
|
|
|
/**
|
|
|
|
* 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) {
|
|
|
|
if ($targetType === self::LOCK_SHARED) {
|
|
|
|
if (!$this->memcache->cas($path, 'exclusive', 1)) {
|
|
|
|
throw new LockedException($path);
|
|
|
|
}
|
|
|
|
} else if ($targetType === self::LOCK_EXCLUSIVE) {
|
|
|
|
// we can only change a shared lock to an exclusive if there's only a single owner of the shared lock
|
|
|
|
if (!$this->memcache->cas($path, 1, 'exclusive')) {
|
|
|
|
throw new LockedException($path);
|
|
|
|
}
|
2015-04-29 18:19:02 +03:00
|
|
|
}
|
2015-12-09 16:41:15 +03:00
|
|
|
$this->setTTL($path);
|
2015-07-15 16:44:51 +03:00
|
|
|
$this->markChange($path, $targetType);
|
2015-04-29 18:19:02 +03:00
|
|
|
}
|
|
|
|
}
|