summaryrefslogtreecommitdiffstats
path: root/lib/public
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2015-05-04 14:21:34 +0200
committerRobin Appelman <icewind@owncloud.com>2015-06-01 13:22:56 +0200
commit536e187e5125aefec75037648181afc42df2a9d0 (patch)
tree95ff2087cdca7dfeaef2cf9d6c260ce1e1bd8ff3 /lib/public
parentcdf7f91259d5e0e261832d0edffadf3760575223 (diff)
downloadnextcloud-server-536e187e5125aefec75037648181afc42df2a9d0.tar.gz
nextcloud-server-536e187e5125aefec75037648181afc42df2a9d0.zip
add locking to the storage api
Diffstat (limited to 'lib/public')
-rw-r--r--lib/public/files/storage.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/public/files/storage.php b/lib/public/files/storage.php
index b89fb49a4be..ea1da575959 100644
--- a/lib/public/files/storage.php
+++ b/lib/public/files/storage.php
@@ -33,6 +33,7 @@
// This means that they should be used by apps instead of the internal ownCloud classes
namespace OCP\Files;
use OCP\Files\InvalidPathException;
+use OCP\Lock\ILockingProvider;
/**
* Provide a common interface to all different storage options
@@ -413,4 +414,19 @@ interface Storage {
* @since 8.1.0
*/
public function moveFromStorage(\OCP\Files\Storage $sourceStorage, $sourceInternalPath, $targetInternalPath);
+
+ /**
+ * @param string $path
+ * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE
+ * @param \OCP\Lock\ILockingProvider $provider
+ * @throws \OCP\Lock\LockedException
+ */
+ public function acquireLock($path, $type, ILockingProvider $provider);
+
+ /**
+ * @param string $path
+ * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE
+ * @param \OCP\Lock\ILockingProvider $provider
+ */
+ public function releaseLock($path, $type, ILockingProvider $provider);
}