Blame view
sources/lib/private/files/cache/watcher.php
1.65 KB
|
03e52840d
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
<?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
*/
|
|
31b7f2792
|
18 |
protected $storage; |
|
03e52840d
|
19 20 21 22 |
/** * @var Cache $cache */ |
|
31b7f2792
|
23 |
protected $cache; |
|
03e52840d
|
24 25 26 27 |
/** * @var Scanner $scanner; */ |
|
31b7f2792
|
28 |
protected $scanner; |
|
03e52840d
|
29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
/**
* @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
|
|
31b7f2792
|
43 |
* @return boolean true if path was updated, false otherwise |
|
03e52840d
|
44 45 46 |
*/
public function checkUpdate($path) {
$cachedEntry = $this->cache->get($path);
|
|
31b7f2792
|
47 |
if ($this->storage->hasUpdated($path, $cachedEntry['storage_mtime'])) {
|
|
03e52840d
|
48 49 50 51 52 53 54 55 56 |
if ($this->storage->is_dir($path)) {
$this->scanner->scan($path, Scanner::SCAN_SHALLOW);
} else {
$this->scanner->scanFile($path);
}
if ($cachedEntry['mimetype'] === 'httpd/unix-directory') {
$this->cleanFolder($path);
}
$this->cache->correctFolderSize($path);
|
|
31b7f2792
|
57 |
return true; |
|
03e52840d
|
58 |
} |
|
31b7f2792
|
59 |
return false; |
|
03e52840d
|
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
}
/**
* 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']);
}
}
}
}
|