ILockingStorage.php 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Robin Appelman <robin@icewind.nl>
  6. *
  7. * @license AGPL-3.0
  8. *
  9. * This code is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU Affero General Public License, version 3,
  11. * as published by the Free Software Foundation.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU Affero General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Affero General Public License, version 3,
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>
  20. *
  21. */
  22. namespace OCP\Files\Storage;
  23. use OCP\Lock\ILockingProvider;
  24. /**
  25. * Storage backends that require explicit locking
  26. *
  27. * Storage backends implementing this interface do not need to implement their own locking implementation but should use the provided lockingprovider instead
  28. * The implementation of the locking methods only need to map internal storage paths to "lock keys"
  29. *
  30. * @since 9.0.0
  31. */
  32. interface ILockingStorage {
  33. /**
  34. * @param string $path The path of the file to acquire the lock for
  35. * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE
  36. * @param \OCP\Lock\ILockingProvider $provider
  37. * @throws \OCP\Lock\LockedException
  38. * @since 9.0.0
  39. */
  40. public function acquireLock($path, $type, ILockingProvider $provider);
  41. /**
  42. * @param string $path The path of the file to acquire the lock for
  43. * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE
  44. * @param \OCP\Lock\ILockingProvider $provider
  45. * @throws \OCP\Lock\LockedException
  46. * @since 9.0.0
  47. */
  48. public function releaseLock($path, $type, ILockingProvider $provider);
  49. /**
  50. * @param string $path The path of the file to change the lock for
  51. * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE
  52. * @param \OCP\Lock\ILockingProvider $provider
  53. * @throws \OCP\Lock\LockedException
  54. * @since 9.0.0
  55. */
  56. public function changeLock($path, $type, ILockingProvider $provider);
  57. }