2015-05-21 10:11:10 -04:00
|
|
|
<?php
|
2019-12-03 13:57:53 -05:00
|
|
|
|
2018-01-16 13:34:43 -05:00
|
|
|
declare(strict_types=1);
|
2019-12-03 13:57:53 -05:00
|
|
|
|
2015-05-21 10:11:10 -04:00
|
|
|
/**
|
2016-07-21 11:07:57 -04:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
|
*
|
2016-07-21 12:13:36 -04:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2019-12-03 13:57:53 -05:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-05-21 10:11:10 -04:00
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
|
|
|
|
*
|
|
|
|
|
* @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,
|
2019-12-03 13:57:53 -05:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-05-21 10:11:10 -04:00
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace OC\Lock;
|
|
|
|
|
|
|
|
|
|
use OCP\Lock\ILockingProvider;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Locking provider that does nothing.
|
|
|
|
|
*
|
|
|
|
|
* To be used when locking is disabled.
|
|
|
|
|
*/
|
|
|
|
|
class NoopLockingProvider implements ILockingProvider {
|
|
|
|
|
|
2018-01-16 13:34:43 -05:00
|
|
|
/**
|
|
|
|
|
* {@inheritdoc}
|
|
|
|
|
*/
|
|
|
|
|
public function isLocked(string $path, int $type): bool {
|
2015-05-21 10:11:10 -04:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-16 13:34:43 -05:00
|
|
|
/**
|
|
|
|
|
* {@inheritdoc}
|
|
|
|
|
*/
|
2020-06-30 12:10:42 -04:00
|
|
|
public function acquireLock(string $path, int $type, string $readablePath = null) {
|
2015-05-21 10:11:10 -04:00
|
|
|
// do nothing
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2018-01-16 13:34:43 -05:00
|
|
|
* {@inheritdoc}
|
2015-05-21 10:11:10 -04:00
|
|
|
*/
|
2018-01-16 13:34:43 -05:00
|
|
|
public function releaseLock(string $path, int $type) {
|
2015-05-21 10:11:10 -04:00
|
|
|
// do nothing
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-01 07:25:27 -04:00
|
|
|
/**1
|
|
|
|
|
* {@inheritdoc}
|
2015-05-21 10:11:10 -04:00
|
|
|
*/
|
|
|
|
|
public function releaseAll() {
|
|
|
|
|
// do nothing
|
|
|
|
|
}
|
2015-06-01 07:25:27 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* {@inheritdoc}
|
|
|
|
|
*/
|
2018-01-16 13:34:43 -05:00
|
|
|
public function changeLock(string $path, int $targetType) {
|
2015-06-01 07:25:27 -04:00
|
|
|
// do nothing
|
|
|
|
|
}
|
2015-05-21 10:11:10 -04:00
|
|
|
}
|