aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/lib/Cache.php
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2016-11-17 11:48:29 +0100
committerRobin Appelman <robin@icewind.nl>2016-11-17 14:59:31 +0100
commit30e7c27d860bf67ff37778d00fb812aefa8fefa5 (patch)
tree8287e7b3b57e603e11ad389d19d5c3a6c1cc7a9d /apps/files_sharing/lib/Cache.php
parentde983e61e3660964154d1c7f447ca8a2055cc2d6 (diff)
downloadnextcloud-server-30e7c27d860bf67ff37778d00fb812aefa8fefa5.tar.gz
nextcloud-server-30e7c27d860bf67ff37778d00fb812aefa8fefa5.zip
reuse the known rootinfo in the shared cache when possible
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'apps/files_sharing/lib/Cache.php')
-rw-r--r--apps/files_sharing/lib/Cache.php29
1 files changed, 29 insertions, 0 deletions
diff --git a/apps/files_sharing/lib/Cache.php b/apps/files_sharing/lib/Cache.php
index 6444dbb8a36..21f3ff622f9 100644
--- a/apps/files_sharing/lib/Cache.php
+++ b/apps/files_sharing/lib/Cache.php
@@ -57,6 +57,8 @@ class Cache extends CacheJail {
*/
private $sourceCache;
+ private $rootUnchanged = true;
+
/**
* @param \OCA\Files_Sharing\SharedStorage $storage
* @param IStorage $sourceStorage
@@ -81,6 +83,33 @@ class Cache extends CacheJail {
}
}
+ public function get($file) {
+ if ($this->rootUnchanged && ($file === '' || $file === $this->sourceRootInfo->getId())) {
+ return $this->formatCacheEntry(clone $this->sourceRootInfo);
+ }
+ return parent::get($file);
+ }
+
+ public function update($id, array $data) {
+ $this->rootUnchanged = false;
+ parent::update($id, $data);
+ }
+
+ public function insert($file, array $data) {
+ $this->rootUnchanged = false;
+ return parent::insert($file, $data);
+ }
+
+ public function remove($file) {
+ $this->rootUnchanged = false;
+ parent::remove($file);
+ }
+
+ public function moveFromCache(\OCP\Files\Cache\ICache $sourceCache, $sourcePath, $targetPath) {
+ $this->rootUnchanged = false;
+ return parent::moveFromCache($sourceCache, $sourcePath, $targetPath);
+ }
+
protected function formatCacheEntry($entry) {
$path = isset($entry['path']) ? $entry['path'] : '';
$entry = parent::formatCacheEntry($entry);