2015-04-29 18:19:02 +03:00
|
|
|
<?php
|
2018-01-16 21:34:43 +03:00
|
|
|
declare(strict_types=1);
|
2015-04-29 18:19:02 +03:00
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-06-25 12:43:55 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
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 OCP\Lock;
|
|
|
|
|
2015-06-05 18:30:45 +03:00
|
|
|
/**
|
|
|
|
* Interface ILockingProvider
|
|
|
|
*
|
|
|
|
* @package OCP\Lock
|
|
|
|
* @since 8.1.0
|
|
|
|
*/
|
2015-04-29 18:19:02 +03:00
|
|
|
interface ILockingProvider {
|
2015-06-05 18:30:45 +03:00
|
|
|
/**
|
|
|
|
* @since 8.1.0
|
|
|
|
*/
|
2015-04-29 18:19:02 +03:00
|
|
|
const LOCK_SHARED = 1;
|
2015-06-05 18:30:45 +03:00
|
|
|
/**
|
|
|
|
* @since 8.1.0
|
|
|
|
*/
|
2015-04-29 18:19:02 +03:00
|
|
|
const LOCK_EXCLUSIVE = 2;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $path
|
|
|
|
* @param int $type self::LOCK_SHARED or self::LOCK_EXCLUSIVE
|
|
|
|
* @return bool
|
2015-06-05 18:30:45 +03:00
|
|
|
* @since 8.1.0
|
2015-04-29 18:19:02 +03:00
|
|
|
*/
|
2018-01-16 21:34:43 +03:00
|
|
|
public function isLocked(string $path, int $type): bool;
|
2015-04-29 18:19:02 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $path
|
|
|
|
* @param int $type self::LOCK_SHARED or self::LOCK_EXCLUSIVE
|
2015-05-18 12:37:16 +03:00
|
|
|
* @throws \OCP\Lock\LockedException
|
2015-06-05 18:30:45 +03:00
|
|
|
* @since 8.1.0
|
2015-04-29 18:19:02 +03:00
|
|
|
*/
|
2018-01-16 21:34:43 +03:00
|
|
|
public function acquireLock(string $path, int $type);
|
2015-04-29 18:19:02 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $path
|
|
|
|
* @param int $type self::LOCK_SHARED or self::LOCK_EXCLUSIVE
|
2015-06-05 18:30:45 +03:00
|
|
|
* @since 8.1.0
|
2015-04-29 18:19:02 +03:00
|
|
|
*/
|
2018-01-16 21:34:43 +03:00
|
|
|
public function releaseLock(string $path, int $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
|
2015-06-05 18:30:45 +03:00
|
|
|
* @since 8.1.0
|
2015-05-29 15:34:21 +03:00
|
|
|
*/
|
2018-01-16 21:34:43 +03:00
|
|
|
public function changeLock(string $path, int $targetType);
|
2015-05-29 15:34:21 +03:00
|
|
|
|
2015-05-19 18:12:09 +03:00
|
|
|
/**
|
|
|
|
* release all lock acquired by this instance
|
2015-06-05 18:30:45 +03:00
|
|
|
* @since 8.1.0
|
2015-05-19 18:12:09 +03:00
|
|
|
*/
|
|
|
|
public function releaseAll();
|
2015-04-29 18:19:02 +03:00
|
|
|
}
|