2012-09-16 18:52:32 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2012 Robin Appelman <icewind@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OC\Files\Cache;
|
|
|
|
|
2013-06-14 17:30:41 +04:00
|
|
|
use OC\Files\Filesystem;
|
2013-07-19 18:32:43 +04:00
|
|
|
use OC\Hooks\BasicEmitter;
|
2014-05-20 20:48:48 +04:00
|
|
|
use OCP\Config;
|
2013-06-14 17:30:41 +04:00
|
|
|
|
2013-07-19 18:32:43 +04:00
|
|
|
/**
|
|
|
|
* Class Scanner
|
|
|
|
*
|
|
|
|
* Hooks available in scope \OC\Files\Cache\Scanner:
|
|
|
|
* - scanFile(string $path, string $storageId)
|
|
|
|
* - scanFolder(string $path, string $storageId)
|
2013-11-07 19:22:29 +04:00
|
|
|
* - postScanFile(string $path, string $storageId)
|
|
|
|
* - postScanFolder(string $path, string $storageId)
|
2013-07-19 18:32:43 +04:00
|
|
|
*
|
|
|
|
* @package OC\Files\Cache
|
|
|
|
*/
|
|
|
|
class Scanner extends BasicEmitter {
|
2012-10-03 13:24:49 +04:00
|
|
|
/**
|
|
|
|
* @var \OC\Files\Storage\Storage $storage
|
|
|
|
*/
|
2014-05-28 15:59:38 +04:00
|
|
|
protected $storage;
|
2012-10-03 13:24:49 +04:00
|
|
|
|
2012-11-22 01:44:43 +04:00
|
|
|
/**
|
|
|
|
* @var string $storageId
|
|
|
|
*/
|
2014-05-28 15:59:38 +04:00
|
|
|
protected $storageId;
|
2012-11-22 01:44:43 +04:00
|
|
|
|
2012-10-03 13:24:49 +04:00
|
|
|
/**
|
|
|
|
* @var \OC\Files\Cache\Cache $cache
|
|
|
|
*/
|
2014-05-28 15:59:38 +04:00
|
|
|
protected $cache;
|
2012-10-03 13:24:49 +04:00
|
|
|
|
2014-05-30 17:42:41 +04:00
|
|
|
/**
|
|
|
|
* @var boolean $cacheActive If true, perform cache operations, if false, do not affect cache
|
|
|
|
*/
|
|
|
|
protected $cacheActive;
|
|
|
|
|
2014-09-08 03:34:03 +04:00
|
|
|
/**
|
2014-09-08 18:34:03 +04:00
|
|
|
* @var bool $useTransactions whether to use transactions
|
2014-09-08 03:34:03 +04:00
|
|
|
*/
|
|
|
|
protected $useTransactions = true;
|
|
|
|
|
2012-09-16 18:52:32 +04:00
|
|
|
const SCAN_RECURSIVE = true;
|
|
|
|
const SCAN_SHALLOW = false;
|
|
|
|
|
2013-06-14 18:53:08 +04:00
|
|
|
const REUSE_ETAG = 1;
|
|
|
|
const REUSE_SIZE = 2;
|
|
|
|
|
2012-10-03 13:24:49 +04:00
|
|
|
public function __construct(\OC\Files\Storage\Storage $storage) {
|
|
|
|
$this->storage = $storage;
|
2012-11-22 01:44:43 +04:00
|
|
|
$this->storageId = $this->storage->getId();
|
2012-11-18 17:10:28 +04:00
|
|
|
$this->cache = $storage->getCache();
|
2014-05-30 17:42:41 +04:00
|
|
|
$this->cacheActive = !Config::getSystemValue('filesystem_cache_readonly', false);
|
2012-10-03 13:24:49 +04:00
|
|
|
}
|
|
|
|
|
2014-09-08 03:34:03 +04:00
|
|
|
/**
|
|
|
|
* Whether to wrap the scanning of a folder in a database transaction
|
|
|
|
* On default transactions are used
|
|
|
|
*
|
|
|
|
* @param bool $useTransactions
|
|
|
|
*/
|
|
|
|
public function setUseTransactions($useTransactions) {
|
|
|
|
$this->useTransactions = $useTransactions;
|
|
|
|
}
|
|
|
|
|
2012-09-16 18:52:32 +04:00
|
|
|
/**
|
|
|
|
* get all the metadata of a file or folder
|
|
|
|
* *
|
2012-09-26 19:52:02 +04:00
|
|
|
*
|
2012-10-03 13:24:49 +04:00
|
|
|
* @param string $path
|
2014-05-11 21:13:51 +04:00
|
|
|
* @return array an array of metadata of the file
|
2012-09-16 18:52:32 +04:00
|
|
|
*/
|
2012-10-03 13:24:49 +04:00
|
|
|
public function getData($path) {
|
2013-10-24 16:24:56 +04:00
|
|
|
if (!$this->storage->isReadable($path)) {
|
|
|
|
//cant read, nothing we can do
|
2014-07-31 15:12:35 +04:00
|
|
|
\OCP\Util::writeLog('OC\Files\Cache\Scanner', "!!! Path '$path' is not accessible or present !!!", \OCP\Util::DEBUG);
|
2013-10-24 16:24:56 +04:00
|
|
|
return null;
|
|
|
|
}
|
2012-09-16 18:52:32 +04:00
|
|
|
$data = array();
|
2012-10-03 13:24:49 +04:00
|
|
|
$data['mimetype'] = $this->storage->getMimeType($path);
|
|
|
|
$data['mtime'] = $this->storage->filemtime($path);
|
2012-09-16 18:52:32 +04:00
|
|
|
if ($data['mimetype'] == 'httpd/unix-directory') {
|
|
|
|
$data['size'] = -1; //unknown
|
|
|
|
} else {
|
2012-10-03 13:24:49 +04:00
|
|
|
$data['size'] = $this->storage->filesize($path);
|
2012-09-16 18:52:32 +04:00
|
|
|
}
|
2012-12-31 01:32:55 +04:00
|
|
|
$data['etag'] = $this->storage->getETag($path);
|
2013-02-10 15:27:35 +04:00
|
|
|
$data['storage_mtime'] = $data['mtime'];
|
2014-06-03 19:57:56 +04:00
|
|
|
$data['permissions'] = $this->storage->getPermissions($path);
|
2012-09-16 18:52:32 +04:00
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* scan a single file and store it in the cache
|
|
|
|
*
|
2012-10-03 13:24:49 +04:00
|
|
|
* @param string $file
|
2013-06-14 18:53:08 +04:00
|
|
|
* @param int $reuseExisting
|
2014-05-11 21:13:51 +04:00
|
|
|
* @return array an array of metadata of the scanned file
|
2012-09-16 18:52:32 +04:00
|
|
|
*/
|
2014-06-10 17:42:37 +04:00
|
|
|
public function scanFile($file, $reuseExisting = 0) {
|
2013-06-14 17:30:41 +04:00
|
|
|
if (!self::isPartialFile($file)
|
|
|
|
and !Filesystem::isFileBlacklisted($file)
|
2013-05-10 14:00:13 +04:00
|
|
|
) {
|
2013-07-19 18:32:43 +04:00
|
|
|
$this->emit('\OC\Files\Cache\Scanner', 'scanFile', array($file, $this->storageId));
|
2013-03-22 16:52:07 +04:00
|
|
|
\OC_Hook::emit('\OC\Files\Cache\Scanner', 'scan_file', array('path' => $file, 'storage' => $this->storageId));
|
|
|
|
$data = $this->getData($file);
|
|
|
|
if ($data) {
|
2014-06-10 17:26:18 +04:00
|
|
|
$parent = dirname($file);
|
|
|
|
if ($parent === '.' or $parent === '/') {
|
|
|
|
$parent = '';
|
|
|
|
}
|
|
|
|
$parentId = $this->cache->getId($parent);
|
2014-06-10 17:37:43 +04:00
|
|
|
|
|
|
|
// scan the parent if it's not in the cache (id -1) and the current file is not the root folder
|
2014-06-10 17:26:18 +04:00
|
|
|
if ($file and $parentId === -1) {
|
|
|
|
$parentData = $this->scanFile($parent);
|
|
|
|
$parentId = $parentData['fileid'];
|
|
|
|
}
|
|
|
|
if ($parent) {
|
|
|
|
$data['parent'] = $parentId;
|
2012-11-25 05:29:57 +04:00
|
|
|
}
|
2013-09-19 23:37:52 +04:00
|
|
|
$cacheData = $this->cache->get($file);
|
2014-06-10 17:26:18 +04:00
|
|
|
if ($cacheData and $reuseExisting) {
|
|
|
|
// prevent empty etag
|
|
|
|
if (empty($cacheData['etag'])) {
|
|
|
|
$etag = $data['etag'];
|
|
|
|
} else {
|
|
|
|
$etag = $cacheData['etag'];
|
|
|
|
}
|
|
|
|
// only reuse data if the file hasn't explicitly changed
|
|
|
|
if (isset($data['storage_mtime']) && isset($cacheData['storage_mtime']) && $data['storage_mtime'] === $cacheData['storage_mtime']) {
|
|
|
|
$data['mtime'] = $cacheData['mtime'];
|
|
|
|
if (($reuseExisting & self::REUSE_SIZE) && ($data['size'] === -1)) {
|
|
|
|
$data['size'] = $cacheData['size'];
|
2013-06-14 18:53:08 +04:00
|
|
|
}
|
2014-06-10 17:26:18 +04:00
|
|
|
if ($reuseExisting & self::REUSE_ETAG) {
|
|
|
|
$data['etag'] = $etag;
|
2013-10-24 16:24:56 +04:00
|
|
|
}
|
2013-03-22 16:52:07 +04:00
|
|
|
}
|
2014-06-10 17:26:18 +04:00
|
|
|
// Only update metadata that has changed
|
|
|
|
$newData = array_diff_assoc($data, $cacheData);
|
|
|
|
} else {
|
|
|
|
$newData = $data;
|
2013-05-29 18:19:03 +04:00
|
|
|
}
|
2013-07-28 23:32:48 +04:00
|
|
|
if (!empty($newData)) {
|
2014-06-02 16:52:21 +04:00
|
|
|
$data['fileid'] = $this->addToCache($file, $newData);
|
2013-11-07 19:22:29 +04:00
|
|
|
$this->emit('\OC\Files\Cache\Scanner', 'postScanFile', array($file, $this->storageId));
|
|
|
|
\OC_Hook::emit('\OC\Files\Cache\Scanner', 'post_scan_file', array('path' => $file, 'storage' => $this->storageId));
|
2013-07-28 23:32:48 +04:00
|
|
|
}
|
2013-08-06 17:59:06 +04:00
|
|
|
} else {
|
2014-06-02 16:52:21 +04:00
|
|
|
$this->removeFromCache($file);
|
2013-03-26 19:03:40 +04:00
|
|
|
}
|
2013-03-22 16:52:07 +04:00
|
|
|
return $data;
|
2012-10-03 13:24:49 +04:00
|
|
|
}
|
2013-03-22 16:52:07 +04:00
|
|
|
return null;
|
2012-09-16 18:52:32 +04:00
|
|
|
}
|
|
|
|
|
2014-06-02 16:52:21 +04:00
|
|
|
protected function removeFromCache($path) {
|
|
|
|
\OC_Hook::emit('Scanner', 'removeFromCache', array('file' => $path));
|
|
|
|
$this->emit('\OC\Files\Cache\Scanner', 'removeFromCache', array($path));
|
|
|
|
if ($this->cacheActive) {
|
|
|
|
$this->cache->remove($path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $path
|
|
|
|
* @param array $data
|
|
|
|
* @return int the id of the added file
|
|
|
|
*/
|
|
|
|
protected function addToCache($path, $data) {
|
|
|
|
\OC_Hook::emit('Scanner', 'addToCache', array('file' => $path, 'data' => $data));
|
|
|
|
$this->emit('\OC\Files\Cache\Scanner', 'addToCache', array($path, $this->storageId, $data));
|
|
|
|
if ($this->cacheActive) {
|
|
|
|
return $this->cache->put($path, $data);
|
|
|
|
} else {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $path
|
|
|
|
* @param array $data
|
|
|
|
*/
|
|
|
|
protected function updateCache($path, $data) {
|
|
|
|
\OC_Hook::emit('Scanner', 'addToCache', array('file' => $path, 'data' => $data));
|
2014-06-02 17:17:00 +04:00
|
|
|
$this->emit('\OC\Files\Cache\Scanner', 'updateCache', array($path, $this->storageId, $data));
|
2014-06-02 16:52:21 +04:00
|
|
|
if ($this->cacheActive) {
|
|
|
|
$this->cache->put($path, $data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-16 18:52:32 +04:00
|
|
|
/**
|
2013-06-14 17:30:41 +04:00
|
|
|
* scan a folder and all it's children
|
2012-09-16 18:52:32 +04:00
|
|
|
*
|
2012-10-03 13:24:49 +04:00
|
|
|
* @param string $path
|
2013-03-24 05:06:50 +04:00
|
|
|
* @param bool $recursive
|
2013-06-14 18:53:08 +04:00
|
|
|
* @param int $reuse
|
2014-05-11 21:13:51 +04:00
|
|
|
* @return array an array of the meta data of the scanned file or folder
|
2012-09-16 18:52:32 +04:00
|
|
|
*/
|
2013-06-14 18:53:08 +04:00
|
|
|
public function scan($path, $recursive = self::SCAN_RECURSIVE, $reuse = -1) {
|
|
|
|
if ($reuse === -1) {
|
2014-11-06 20:34:10 +03:00
|
|
|
$reuse = ($recursive === self::SCAN_SHALLOW) ? self::REUSE_ETAG | self::REUSE_SIZE : self::REUSE_ETAG;
|
2013-06-14 18:53:08 +04:00
|
|
|
}
|
2014-02-28 17:23:07 +04:00
|
|
|
$data = $this->scanFile($path, $reuse);
|
2014-12-10 13:04:17 +03:00
|
|
|
if ($data !== null) {
|
|
|
|
$size = $this->scanChildren($path, $recursive, $reuse);
|
|
|
|
$data['size'] = $size;
|
|
|
|
}
|
2014-02-28 17:23:07 +04:00
|
|
|
return $data;
|
2013-06-14 17:30:41 +04:00
|
|
|
}
|
2012-10-03 13:40:09 +04:00
|
|
|
|
2014-09-24 17:44:56 +04:00
|
|
|
protected function getExistingChildren($path) {
|
|
|
|
$existingChildren = array();
|
|
|
|
if ($this->cache->inCache($path)) {
|
|
|
|
$children = $this->cache->getFolderContents($path);
|
|
|
|
foreach ($children as $child) {
|
|
|
|
$existingChildren[] = $child['name'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $existingChildren;
|
|
|
|
}
|
|
|
|
|
2013-06-14 17:30:41 +04:00
|
|
|
/**
|
|
|
|
* scan all the files and folders in a folder
|
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
* @param bool $recursive
|
2013-06-14 18:53:08 +04:00
|
|
|
* @param int $reuse
|
2013-06-14 17:30:41 +04:00
|
|
|
* @return int the size of the scanned folder or -1 if the size is unknown at this stage
|
|
|
|
*/
|
2013-06-14 18:53:08 +04:00
|
|
|
public function scanChildren($path, $recursive = self::SCAN_RECURSIVE, $reuse = -1) {
|
|
|
|
if ($reuse === -1) {
|
2014-11-06 20:34:10 +03:00
|
|
|
$reuse = ($recursive === self::SCAN_SHALLOW) ? self::REUSE_ETAG | self::REUSE_SIZE : self::REUSE_ETAG;
|
2013-06-14 18:53:08 +04:00
|
|
|
}
|
2013-07-19 18:32:43 +04:00
|
|
|
$this->emit('\OC\Files\Cache\Scanner', 'scanFolder', array($path, $this->storageId));
|
2012-09-16 18:52:32 +04:00
|
|
|
$size = 0;
|
2013-06-14 17:30:41 +04:00
|
|
|
$childQueue = array();
|
2014-09-24 17:44:56 +04:00
|
|
|
$existingChildren = $this->getExistingChildren($path);
|
2013-06-20 02:42:34 +04:00
|
|
|
$newChildren = array();
|
2013-02-03 02:18:29 +04:00
|
|
|
if ($this->storage->is_dir($path) && ($dh = $this->storage->opendir($path))) {
|
2013-10-21 16:48:08 +04:00
|
|
|
$exceptionOccurred = false;
|
2014-09-08 03:34:03 +04:00
|
|
|
if ($this->useTransactions) {
|
|
|
|
\OC_DB::beginTransaction();
|
|
|
|
}
|
2013-09-19 23:37:52 +04:00
|
|
|
if (is_resource($dh)) {
|
2013-09-04 15:06:04 +04:00
|
|
|
while (($file = readdir($dh)) !== false) {
|
|
|
|
$child = ($path) ? $path . '/' . $file : $file;
|
|
|
|
if (!Filesystem::isIgnoredDir($file)) {
|
|
|
|
$newChildren[] = $file;
|
2013-10-21 16:48:08 +04:00
|
|
|
try {
|
2014-06-10 17:42:37 +04:00
|
|
|
$data = $this->scanFile($child, $reuse);
|
2013-10-21 16:48:08 +04:00
|
|
|
if ($data) {
|
2014-06-02 23:04:36 +04:00
|
|
|
if ($data['mimetype'] === 'httpd/unix-directory' and $recursive === self::SCAN_RECURSIVE) {
|
|
|
|
$childQueue[] = $child;
|
2014-06-03 13:55:35 +04:00
|
|
|
} else if ($data['size'] === -1) {
|
|
|
|
$size = -1;
|
2013-10-21 16:48:08 +04:00
|
|
|
} else if ($size !== -1) {
|
|
|
|
$size += $data['size'];
|
2013-09-04 15:06:04 +04:00
|
|
|
}
|
2012-11-25 05:29:57 +04:00
|
|
|
}
|
2014-06-02 16:52:21 +04:00
|
|
|
} catch (\Doctrine\DBAL\DBALException $ex) {
|
2013-10-21 16:48:08 +04:00
|
|
|
// might happen if inserting duplicate while a scanning
|
|
|
|
// process is running in parallel
|
|
|
|
// log and ignore
|
|
|
|
\OC_Log::write('core', 'Exception while scanning file "' . $child . '": ' . $ex->getMessage(), \OC_Log::DEBUG);
|
|
|
|
$exceptionOccurred = true;
|
|
|
|
}
|
2012-09-16 18:52:32 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-06-20 02:42:34 +04:00
|
|
|
$removedChildren = \array_diff($existingChildren, $newChildren);
|
|
|
|
foreach ($removedChildren as $childName) {
|
|
|
|
$child = ($path) ? $path . '/' . $childName : $childName;
|
2014-06-02 16:52:21 +04:00
|
|
|
$this->removeFromCache($child);
|
2013-06-20 02:42:34 +04:00
|
|
|
}
|
2014-09-08 03:34:03 +04:00
|
|
|
if ($this->useTransactions) {
|
|
|
|
\OC_DB::commit();
|
|
|
|
}
|
2014-06-02 16:52:21 +04:00
|
|
|
if ($exceptionOccurred) {
|
2013-10-21 16:48:08 +04:00
|
|
|
// It might happen that the parallel scan process has already
|
|
|
|
// inserted mimetypes but those weren't available yet inside the transaction
|
|
|
|
// To make sure to have the updated mime types in such cases,
|
|
|
|
// we reload them here
|
|
|
|
$this->cache->loadMimetypes();
|
|
|
|
}
|
|
|
|
|
2013-01-17 00:58:17 +04:00
|
|
|
foreach ($childQueue as $child) {
|
2013-08-12 17:37:39 +04:00
|
|
|
$childSize = $this->scanChildren($child, self::SCAN_RECURSIVE, $reuse);
|
2013-01-17 00:58:17 +04:00
|
|
|
if ($childSize === -1) {
|
|
|
|
$size = -1;
|
2014-06-03 13:55:35 +04:00
|
|
|
} else if ($size !== -1) {
|
2013-01-17 00:58:17 +04:00
|
|
|
$size += $childSize;
|
|
|
|
}
|
|
|
|
}
|
2014-06-02 16:52:21 +04:00
|
|
|
$this->updateCache($path, array('size' => $size));
|
2012-10-03 15:07:19 +04:00
|
|
|
}
|
2013-11-07 19:22:29 +04:00
|
|
|
$this->emit('\OC\Files\Cache\Scanner', 'postScanFolder', array($path, $this->storageId));
|
2012-09-16 18:52:32 +04:00
|
|
|
return $size;
|
|
|
|
}
|
2013-02-10 21:15:23 +04:00
|
|
|
|
2013-02-10 17:16:45 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* check if the file should be ignored when scanning
|
2013-02-10 17:16:45 +04:00
|
|
|
* NOTE: files with a '.part' extension are ignored as well!
|
|
|
|
* prevents unfinished put requests to be scanned
|
2014-06-02 16:52:21 +04:00
|
|
|
*
|
2014-05-12 00:51:30 +04:00
|
|
|
* @param string $file
|
2013-02-10 17:16:45 +04:00
|
|
|
* @return boolean
|
|
|
|
*/
|
2013-05-10 14:00:13 +04:00
|
|
|
public static function isPartialFile($file) {
|
|
|
|
if (pathinfo($file, PATHINFO_EXTENSION) === 'part') {
|
2013-02-10 17:16:45 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2012-11-22 02:18:58 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* walk over any folders that are not fully scanned yet and scan them
|
|
|
|
*/
|
|
|
|
public function backgroundScan() {
|
2013-05-13 19:17:08 +04:00
|
|
|
$lastPath = null;
|
|
|
|
while (($path = $this->cache->getIncomplete()) !== false && $path !== $lastPath) {
|
2013-12-05 18:23:34 +04:00
|
|
|
$this->scan($path, self::SCAN_RECURSIVE, self::REUSE_ETAG);
|
2014-05-28 21:20:20 +04:00
|
|
|
\OC_Hook::emit('Scanner', 'correctFolderSize', array('path' => $path));
|
2014-06-02 16:52:21 +04:00
|
|
|
if ($this->cacheActive) {
|
2014-05-28 21:20:20 +04:00
|
|
|
$this->cache->correctFolderSize($path);
|
|
|
|
}
|
2013-05-13 19:17:08 +04:00
|
|
|
$lastPath = $path;
|
2012-11-22 02:18:58 +04:00
|
|
|
}
|
|
|
|
}
|
2014-05-30 17:42:41 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set whether the cache is affected by scan operations
|
2014-06-02 16:52:21 +04:00
|
|
|
*
|
2014-05-30 17:42:41 +04:00
|
|
|
* @param boolean $active The active state of the cache
|
|
|
|
*/
|
|
|
|
public function setCacheActive($active) {
|
|
|
|
$this->cacheActive = $active;
|
|
|
|
}
|
2012-09-16 18:52:32 +04:00
|
|
|
}
|