nextcloud/lib/private/files/cache/updater.php

165 lines
4.4 KiB
PHP
Raw Normal View History

2012-11-09 00:12:40 +04:00
<?php
/**
* Copyright (c) 2014 Robin Appelman <icewind@owncloud.com>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
2012-11-09 00:12:40 +04:00
*/
2012-11-09 00:12:40 +04:00
namespace OC\Files\Cache;
2012-11-09 00:12:40 +04:00
/**
* Update the cache and propagate changes
2012-11-09 00:12:40 +04:00
*/
class Updater {
/**
* @var \OC\Files\View
*/
protected $view;
2012-11-09 00:12:40 +04:00
/**
* @var \OC\Files\Cache\ChangePropagator
*/
protected $propagator;
/**
* @param \OC\Files\View $view
2012-11-09 00:12:40 +04:00
*/
public function __construct($view) {
$this->view = $view;
$this->propagator = new ChangePropagator($view);
2012-11-09 00:12:40 +04:00
}
public function propagate($path, $time = null) {
if (Scanner::isPartialFile($path)) {
return;
}
$this->propagator->addChange($path);
$this->propagator->propagateChanges($time);
}
2013-03-24 05:06:50 +04:00
/**
* Update the cache for $path
2013-03-24 05:06:50 +04:00
*
* @param string $path
2014-08-12 15:59:06 +04:00
* @param int $time
2013-03-24 05:06:50 +04:00
*/
2014-08-12 15:59:06 +04:00
public function update($path, $time = null) {
if (Scanner::isPartialFile($path)) {
return;
}
2012-11-09 00:12:40 +04:00
/**
* @var \OC\Files\Storage\Storage $storage
* @var string $internalPath
*/
list($storage, $internalPath) = $this->view->resolvePath($path);
if ($storage) {
$this->propagator->addChange($path);
$cache = $storage->getCache($internalPath);
$scanner = $storage->getScanner($internalPath);
$data = $scanner->scan($internalPath, Scanner::SCAN_SHALLOW);
$this->correctParentStorageMtime($storage, $internalPath);
$cache->correctFolderSize($internalPath, $data);
2014-08-12 15:59:06 +04:00
$this->propagator->propagateChanges($time);
}
2012-11-09 00:12:40 +04:00
}
2013-03-24 05:06:50 +04:00
/**
* Remove $path from the cache
2013-03-24 05:06:50 +04:00
*
* @param string $path
2013-03-24 05:06:50 +04:00
*/
public function remove($path) {
if (Scanner::isPartialFile($path)) {
return;
}
2012-11-09 00:12:40 +04:00
/**
* @var \OC\Files\Storage\Storage $storage
* @var string $internalPath
*/
list($storage, $internalPath) = $this->view->resolvePath($path);
if ($storage) {
$parent = dirname($internalPath);
if ($parent === '.') {
$parent = '';
}
$this->propagator->addChange($path);
$cache = $storage->getCache($internalPath);
$cache->remove($internalPath);
$cache->correctFolderSize($parent);
$this->correctParentStorageMtime($storage, $internalPath);
2014-08-12 15:59:06 +04:00
$this->propagator->propagateChanges();
}
2012-12-31 04:54:51 +04:00
}
2013-03-24 05:06:50 +04:00
/**
* @param string $source
* @param string $target
2013-03-24 05:06:50 +04:00
*/
public function rename($source, $target) {
if (Scanner::isPartialFile($source) or Scanner::isPartialFile($target)) {
return;
}
/**
* @var \OC\Files\Storage\Storage $sourceStorage
* @var \OC\Files\Storage\Storage $targetStorage
* @var string $sourceInternalPath
* @var string $targetInternalPath
*/
list($sourceStorage, $sourceInternalPath) = $this->view->resolvePath($source);
// if it's a moved mountpoint we dont need to do anything
if ($sourceInternalPath === '') {
return;
}
list($targetStorage, $targetInternalPath) = $this->view->resolvePath($target);
if ($sourceStorage && $targetStorage) {
if ($sourceStorage === $targetStorage) {
$cache = $sourceStorage->getCache($sourceInternalPath);
if ($cache->inCache($targetInternalPath)) {
$cache->remove($targetInternalPath);
}
$cache->move($sourceInternalPath, $targetInternalPath);
if (pathinfo($sourceInternalPath, PATHINFO_EXTENSION) !== pathinfo($targetInternalPath, PATHINFO_EXTENSION)) {
// handle mime type change
$mimeType = $sourceStorage->getMimeType($targetInternalPath);
$fileId = $cache->getId($targetInternalPath);
$cache->update($fileId, array('mimetype' => $mimeType));
}
$cache->correctFolderSize($sourceInternalPath);
$cache->correctFolderSize($targetInternalPath);
$this->correctParentStorageMtime($sourceStorage, $sourceInternalPath);
$this->correctParentStorageMtime($targetStorage, $targetInternalPath);
$this->propagator->addChange($source);
$this->propagator->addChange($target);
} else {
$this->remove($source);
$this->update($target);
2014-03-03 15:56:08 +04:00
}
2014-08-12 15:59:06 +04:00
$this->propagator->propagateChanges();
}
}
/**
* update the storage_mtime of the parent
*
* @param \OC\Files\Storage\Storage $storage
* @param string $internalPath
*/
private function correctParentStorageMtime($storage, $internalPath) {
$cache = $storage->getCache();
$parentId = $cache->getParentId($internalPath);
$parent = dirname($internalPath);
if ($parentId != -1) {
$cache->update($parentId, array('storage_mtime' => $storage->filemtime($parent)));
}
}
public function __destruct() {
// propagate any leftover changes
$this->propagator->propagateChanges();
2012-11-09 00:12:40 +04:00
}
}