2012-10-28 14:26:31 +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;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* check the storage backends for updates and change the cache accordingly
|
|
|
|
*/
|
|
|
|
class Watcher {
|
|
|
|
/**
|
|
|
|
* @var \OC\Files\Storage\Storage $storage
|
|
|
|
*/
|
|
|
|
private $storage;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var Cache $cache
|
|
|
|
*/
|
|
|
|
private $cache;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var Scanner $scanner;
|
|
|
|
*/
|
|
|
|
private $scanner;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param \OC\Files\Storage\Storage $storage
|
|
|
|
*/
|
|
|
|
public function __construct(\OC\Files\Storage\Storage $storage) {
|
|
|
|
$this->storage = $storage;
|
|
|
|
$this->cache = $storage->getCache();
|
|
|
|
$this->scanner = $storage->getScanner();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* check $path for updates
|
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
*/
|
|
|
|
public function checkUpdate($path) {
|
|
|
|
$cachedEntry = $this->cache->get($path);
|
2013-02-10 15:27:35 +04:00
|
|
|
if ($this->storage->hasUpdated($path, $cachedEntry['storage_mtime'])) {
|
2012-12-15 06:10:56 +04:00
|
|
|
if ($this->storage->is_dir($path)) {
|
2012-10-28 14:26:31 +04:00
|
|
|
$this->scanner->scan($path, Scanner::SCAN_SHALLOW);
|
|
|
|
} else {
|
|
|
|
$this->scanner->scanFile($path);
|
|
|
|
}
|
2012-12-15 06:10:56 +04:00
|
|
|
if ($cachedEntry['mimetype'] === 'httpd/unix-directory') {
|
|
|
|
$this->cleanFolder($path);
|
|
|
|
}
|
2012-11-08 21:10:54 +04:00
|
|
|
$this->cache->correctFolderSize($path);
|
2012-10-28 14:26:31 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* remove deleted files in $path from the cache
|
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
*/
|
|
|
|
public function cleanFolder($path) {
|
|
|
|
$cachedContent = $this->cache->getFolderContents($path);
|
|
|
|
foreach ($cachedContent as $entry) {
|
|
|
|
if (!$this->storage->file_exists($entry['path'])) {
|
|
|
|
$this->cache->remove($entry['path']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|