diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2015-06-12 11:41:05 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2015-06-12 11:41:05 +0200 |
commit | a7d2b3b9ae27ba55ef08e16a2ae1f485120cdcdb (patch) | |
tree | 39c1d96186306e9524e45f726257dd86823ed7b9 /lib/private/files/view.php | |
parent | caf16b083e3abaea18a05fe5f923bd306c09ac6b (diff) | |
download | nextcloud-server-a7d2b3b9ae27ba55ef08e16a2ae1f485120cdcdb.tar.gz nextcloud-server-a7d2b3b9ae27ba55ef08e16a2ae1f485120cdcdb.zip |
Add return value to lock methods and check it in tests
Diffstat (limited to 'lib/private/files/view.php')
-rw-r--r-- | lib/private/files/view.php | 27 |
1 files changed, 22 insertions, 5 deletions
diff --git a/lib/private/files/view.php b/lib/private/files/view.php index 7bb4a2b4f78..492917b9159 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -1661,11 +1661,13 @@ class View { /** * @param string $path the path of the file to lock, relative to the view * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE + * @return bool False if the path is excluded from locking, true otherwise + * @throws \OCP\Lock\LockedException if the path is already locked */ private function lockPath($path, $type) { $absolutePath = $this->getAbsolutePath($path); if (!$this->shouldLockFile($absolutePath)) { - return; + return false; } $mount = $this->getMount($path); @@ -1676,16 +1678,20 @@ class View { $this->lockingProvider ); } + + return true; } /** * @param string $path the path of the file to lock, relative to the view * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE + * @return bool False if the path is excluded from locking, true otherwise + * @throws \OCP\Lock\LockedException if the path is already locked */ private function changeLock($path, $type) { $absolutePath = $this->getAbsolutePath($path); if (!$this->shouldLockFile($absolutePath)) { - return; + return false; } $mount = $this->getMount($path); @@ -1696,16 +1702,19 @@ class View { $this->lockingProvider ); } + + return true; } /** * @param string $path the path of the file to unlock, relative to the view * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE + * @return bool False if the path is excluded from locking, true otherwise */ private function unlockPath($path, $type) { $absolutePath = $this->getAbsolutePath($path); if (!$this->shouldLockFile($absolutePath)) { - return; + return false; } $mount = $this->getMount($path); @@ -1716,6 +1725,8 @@ class View { $this->lockingProvider ); } + + return true; } /** @@ -1723,13 +1734,14 @@ class View { * * @param string $path the path of the file to lock relative to the view * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE + * @return bool False if the path is excluded from locking, true otherwise */ public function lockFile($path, $type) { $path = '/' . trim($path, '/'); $absolutePath = $this->getAbsolutePath($path); if (!$this->shouldLockFile($absolutePath)) { - return; + return false; } $this->lockPath($path, $type); @@ -1738,6 +1750,8 @@ class View { foreach ($parents as $parent) { $this->lockPath($parent, ILockingProvider::LOCK_SHARED); } + + return true; } /** @@ -1745,13 +1759,14 @@ class View { * * @param string $path the path of the file to lock relative to the view * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE + * @return bool False if the path is excluded from locking, true otherwise */ public function unlockFile($path, $type) { $path = rtrim($path, '/'); $absolutePath = $this->getAbsolutePath($path); if (!$this->shouldLockFile($absolutePath)) { - return; + return false; } $this->unlockPath($path, $type); @@ -1760,6 +1775,8 @@ class View { foreach ($parents as $parent) { $this->unlockPath($parent, ILockingProvider::LOCK_SHARED); } + + return true; } /** |