aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2013-06-14 16:53:08 +0200
committerRobin Appelman <icewind@owncloud.com>2013-06-14 16:58:14 +0200
commitf10a4db88997b3848a8c149d35dbb68c1b8c5f60 (patch)
tree2703bb5006d91536967bc89f802f4dafb8330054 /lib
parent30c09d0c8bd8827dc3175f6590a5549dadf0773e (diff)
downloadnextcloud-server-f10a4db88997b3848a8c149d35dbb68c1b8c5f60.tar.gz
nextcloud-server-f10a4db88997b3848a8c149d35dbb68c1b8c5f60.zip
scanner: give more percision about what data is reused during scanning
Diffstat (limited to 'lib')
-rw-r--r--lib/files/cache/scanner.php46
1 files changed, 29 insertions, 17 deletions
diff --git a/lib/files/cache/scanner.php b/lib/files/cache/scanner.php
index 816c856ac26..061778cd852 100644
--- a/lib/files/cache/scanner.php
+++ b/lib/files/cache/scanner.php
@@ -29,6 +29,9 @@ class Scanner {
const SCAN_RECURSIVE = true;
const SCAN_SHALLOW = false;
+ const REUSE_ETAG = 1;
+ const REUSE_SIZE = 2;
+
public function __construct(\OC\Files\Storage\Storage $storage) {
$this->storage = $storage;
$this->storageId = $this->storage->getId();
@@ -61,10 +64,10 @@ class Scanner {
* scan a single file and store it in the cache
*
* @param string $file
- * @param bool $checkExisting check existing folder sizes in the cache instead of always using -1 for folder size
+ * @param int $reuseExisting
* @return array with metadata of the scanned file
*/
- public function scanFile($file, $checkExisting = false) {
+ public function scanFile($file, $reuseExisting = 0) {
if (!self::isPartialFile($file)
and !Filesystem::isFileBlacklisted($file)
) {
@@ -81,21 +84,22 @@ class Scanner {
}
}
$newData = $data;
- if ($cacheData = $this->cache->get($file)) {
- if ($checkExisting && $data['size'] === -1) {
- $data['size'] = $cacheData['size'];
- }
- if ($data['mtime'] === $cacheData['mtime'] &&
- $data['size'] === $cacheData['size']
- ) {
- $data['etag'] = $cacheData['etag'];
+ if ($reuseExisting and $cacheData = $this->cache->get($file)) {
+ // only reuse data if the file hasn't explicitly changed
+ if ($data['mtime'] === $cacheData['mtime']) {
+ if (($reuseExisting & self::REUSE_SIZE) && ($data['size'] === -1)) {
+ $data['size'] = $cacheData['size'];
+ }
+ if ($reuseExisting & self::REUSE_ETAG) {
+ $data['etag'] = $cacheData['etag'];
+ }
}
// Only update metadata that has changed
$newData = array_diff($data, $cacheData);
}
- if (!empty($newData)) {
- $this->cache->put($file, $newData);
- }
+ }
+ if (!empty($newData)) {
+ $this->cache->put($file, $newData);
}
return $data;
}
@@ -107,10 +111,14 @@ class Scanner {
*
* @param string $path
* @param bool $recursive
+ * @param int $reuse
* @return int the size of the scanned folder or -1 if the size is unknown at this stage
*/
- public function scan($path, $recursive = self::SCAN_RECURSIVE) {
- $this->scanFile($path);
+ public function scan($path, $recursive = self::SCAN_RECURSIVE, $reuse = -1) {
+ if ($reuse === -1) {
+ $reuse = ($recursive === self::SCAN_SHALLOW) ? self::REUSE_ETAG | self::REUSE_SIZE : 0;
+ }
+ $this->scanFile($path, $reuse);
return $this->scanChildren($path, $recursive);
}
@@ -119,9 +127,13 @@ class Scanner {
*
* @param string $path
* @param bool $recursive
+ * @param int $reuse
* @return int the size of the scanned folder or -1 if the size is unknown at this stage
*/
- public function scanChildren($path, $recursive = self::SCAN_RECURSIVE) {
+ public function scanChildren($path, $recursive = self::SCAN_RECURSIVE, $reuse = -1) {
+ if ($reuse === -1) {
+ $reuse = ($recursive === self::SCAN_SHALLOW) ? self::REUSE_ETAG | self::REUSE_SIZE : 0;
+ }
\OC_Hook::emit('\OC\Files\Cache\Scanner', 'scan_folder', array('path' => $path, 'storage' => $this->storageId));
$size = 0;
$childQueue = array();
@@ -130,7 +142,7 @@ class Scanner {
while ($file = readdir($dh)) {
$child = ($path) ? $path . '/' . $file : $file;
if (!Filesystem::isIgnoredDir($file)) {
- $data = $this->scanFile($child, $recursive === self::SCAN_SHALLOW);
+ $data = $this->scanFile($child, $reuse);
if ($data) {
if ($data['size'] === -1) {
if ($recursive === self::SCAN_RECURSIVE) {