aboutsummaryrefslogtreecommitdiffstats
path: root/lib/files/cache
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2012-10-03 11:24:49 +0200
committerRobin Appelman <icewind@owncloud.com>2012-10-03 11:24:49 +0200
commite415e90c6d8a2e8bb129be7c63a7077c56ab3da8 (patch)
tree4c56e20836329e3d2e47008475b2860f4b69c852 /lib/files/cache
parent96d7cd59978cc416bc0d9c5ac487af23692ef1d8 (diff)
downloadnextcloud-server-e415e90c6d8a2e8bb129be7c63a7077c56ab3da8.tar.gz
nextcloud-server-e415e90c6d8a2e8bb129be7c63a7077c56ab3da8.zip
make filestorage scanner non-static and add a simple test case
Diffstat (limited to 'lib/files/cache')
-rw-r--r--lib/files/cache/scanner.php64
1 files changed, 42 insertions, 22 deletions
diff --git a/lib/files/cache/scanner.php b/lib/files/cache/scanner.php
index 17fc0fb2e8e..721d0d825ec 100644
--- a/lib/files/cache/scanner.php
+++ b/lib/files/cache/scanner.php
@@ -9,29 +9,42 @@
namespace OC\Files\Cache;
class Scanner {
+ /**
+ * @var \OC\Files\Storage\Storage $storage
+ */
+ private $storage;
+
+ /**
+ * @var \OC\Files\Cache\Cache $cache
+ */
+ private $cache;
+
const SCAN_RECURSIVE = true;
const SCAN_SHALLOW = false;
+ public function __construct(\OC\Files\Storage\Storage $storage) {
+ $this->storage = $storage;
+ $this->cache = new Cache($storage);
+ }
+
/**
* get all the metadata of a file or folder
* *
*
- * @param \OC\Files\File $file
+ * @param string $path
* @return array with metadata of the file
*/
- public static function getData(\OC\Files\File $file) {
+ public function getData($path) {
$data = array();
- $storage = $file->getStorage();
- $path = $file->getInternalPath();
- if (!$storage->isReadable($path)) return null; //cant read, nothing we can do
- $data['mimetype'] = $storage->getMimeType($path);
- $data['mtime'] = $storage->filemtime($path);
+ if (!$this->storage->isReadable($path)) return null; //cant read, nothing we can do
+ $data['mimetype'] = $this->storage->getMimeType($path);
+ $data['mtime'] = $this->storage->filemtime($path);
if ($data['mimetype'] == 'httpd/unix-directory') {
$data['size'] = -1; //unknown
- $data['permissions'] = $storage->getPermissions($path . '/');
+ $data['permissions'] = $this->storage->getPermissions($path . '/');
} else {
- $data['size'] = $storage->filesize($path);
- $data['permissions'] = $storage->getPermissions($path);
+ $data['size'] = $this->storage->filesize($path);
+ $data['permissions'] = $this->storage->getPermissions($path);
}
return $data;
}
@@ -39,33 +52,40 @@ class Scanner {
/**
* scan a single file and store it in the cache
*
- * @param \OC\Files\File $file
+ * @param string $file
* @return array with metadata of the scanned file
*/
- public static function scanFile(\OC\Files\File $file) {
- $data = self::getData($file);
- Cache::put($file, $data);
+ public function scanFile($file) {
+ $data = $this->getData($file);
+ if ($file !== '') {
+ $parent = dirname($file);
+ if ($parent === '.') {
+ $parent = '';
+ }
+ if (!$this->cache->inCache($parent)) {
+ $this->scanFile($parent);
+ }
+ }
+ $this->cache->put($file, $data);
return $data;
}
/**
* scan all the files in a folder and store them in the cache
*
- * @param \OC\Files\File $folder
+ * @param string $path
* @param SCAN_RECURSIVE/SCAN_SHALLOW $recursive
* @return int the size of the scanned folder or -1 if the size is unknown at this stage
*/
- public static function scan(\OC\Files\File $folder, $recursive) {
+ public function scan($path, $recursive) {
$size = 0;
- $storage = $folder->getStorage();
- $path = $folder->getInternalPath();
- if ($dh = $storage->opendir($path)) {
+ if ($dh = $this->storage->opendir($path)) {
while ($file = readdir($dh)) {
if ($file !== '.' and $file !== '..') {
- $child = new \OC\Files\File($storage, $path . '/' . $file);
- $data = self::scanFile($child);
+ $child = $path . '/' . $file;
+ $data = $this->scanFile($child);
if ($recursive === self::SCAN_RECURSIVE and $data['mimetype'] === 'httpd/unix-directory') {
- $data['size'] = self::scan($child, self::SCAN_RECURSIVE);
+ $data['size'] = $this->scan($child, self::SCAN_RECURSIVE);
}
if ($data['size'] >= 0 and $size >= 0) {
$size += $data['size'];