2012-11-09 00:12:40 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2014-08-12 15:59:06 +04:00
|
|
|
* Copyright (c) 2014 Robin Appelman <icewind@owncloud.com>
|
2012-11-09 00:12:40 +04:00
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OC\Files\Cache;
|
2013-10-29 17:18:57 +04:00
|
|
|
|
2012-11-09 00:12:40 +04:00
|
|
|
/**
|
2014-08-04 16:29:46 +04:00
|
|
|
* Update the cache and propagate changes
|
2012-11-09 00:12:40 +04:00
|
|
|
*/
|
|
|
|
class Updater {
|
2014-08-04 16:29:46 +04:00
|
|
|
/**
|
|
|
|
* @var \OC\Files\View
|
|
|
|
*/
|
|
|
|
protected $view;
|
2012-11-09 00:12:40 +04:00
|
|
|
|
|
|
|
/**
|
2014-08-04 16:29:46 +04:00
|
|
|
* @var \OC\Files\Cache\ChangePropagator
|
|
|
|
*/
|
|
|
|
protected $propagator;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param \OC\Files\View $view
|
2012-11-09 00:12:40 +04:00
|
|
|
*/
|
2014-08-04 16:29:46 +04:00
|
|
|
public function __construct($view) {
|
|
|
|
$this->view = $view;
|
|
|
|
$this->propagator = new ChangePropagator($view);
|
2012-11-09 00:12:40 +04:00
|
|
|
}
|
|
|
|
|
2014-10-14 19:15:46 +04:00
|
|
|
public function propagate($path, $time = null) {
|
|
|
|
$this->propagator->addChange($path);
|
|
|
|
$this->propagator->propagateChanges($time);
|
|
|
|
}
|
|
|
|
|
2013-03-24 05:06:50 +04:00
|
|
|
/**
|
2014-08-04 16:29:46 +04:00
|
|
|
* Update the cache for $path
|
2013-03-24 05:06:50 +04:00
|
|
|
*
|
2014-08-04 16:29:46 +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) {
|
2012-11-09 00:12:40 +04:00
|
|
|
/**
|
|
|
|
* @var \OC\Files\Storage\Storage $storage
|
|
|
|
* @var string $internalPath
|
|
|
|
*/
|
2014-08-04 16:29:46 +04:00
|
|
|
list($storage, $internalPath) = $this->view->resolvePath($path);
|
2012-12-31 05:27:38 +04:00
|
|
|
if ($storage) {
|
2014-08-04 16:29:46 +04:00
|
|
|
$this->propagator->addChange($path);
|
2013-01-01 23:19:53 +04:00
|
|
|
$cache = $storage->getCache($internalPath);
|
|
|
|
$scanner = $storage->getScanner($internalPath);
|
2014-02-28 17:23:07 +04:00
|
|
|
$data = $scanner->scan($internalPath, Scanner::SCAN_SHALLOW);
|
2014-08-04 16:29:46 +04:00
|
|
|
$this->correctParentStorageMtime($storage, $internalPath);
|
2014-02-28 17:23:07 +04:00
|
|
|
$cache->correctFolderSize($internalPath, $data);
|
2014-08-12 15:59:06 +04:00
|
|
|
$this->propagator->propagateChanges($time);
|
2012-12-31 05:27:38 +04:00
|
|
|
}
|
2012-11-09 00:12:40 +04:00
|
|
|
}
|
|
|
|
|
2013-03-24 05:06:50 +04:00
|
|
|
/**
|
2014-08-04 16:29:46 +04:00
|
|
|
* Remove $path from the cache
|
2013-03-24 05:06:50 +04:00
|
|
|
*
|
2014-08-04 16:29:46 +04:00
|
|
|
* @param string $path
|
2013-03-24 05:06:50 +04:00
|
|
|
*/
|
2014-08-04 16:29:46 +04:00
|
|
|
public function remove($path) {
|
2012-11-09 00:12:40 +04:00
|
|
|
/**
|
|
|
|
* @var \OC\Files\Storage\Storage $storage
|
|
|
|
* @var string $internalPath
|
|
|
|
*/
|
2014-08-04 16:29:46 +04:00
|
|
|
list($storage, $internalPath) = $this->view->resolvePath($path);
|
2012-12-31 05:27:38 +04:00
|
|
|
if ($storage) {
|
2013-11-28 16:17:19 +04:00
|
|
|
$parent = dirname($internalPath);
|
|
|
|
if ($parent === '.') {
|
|
|
|
$parent = '';
|
|
|
|
}
|
2014-08-04 16:29:46 +04:00
|
|
|
$this->propagator->addChange($path);
|
2013-01-01 23:19:53 +04:00
|
|
|
$cache = $storage->getCache($internalPath);
|
2012-12-31 05:27:38 +04:00
|
|
|
$cache->remove($internalPath);
|
2013-11-28 16:17:19 +04:00
|
|
|
$cache->correctFolderSize($parent);
|
2014-08-04 16:29:46 +04:00
|
|
|
$this->correctParentStorageMtime($storage, $internalPath);
|
2014-08-12 15:59:06 +04:00
|
|
|
$this->propagator->propagateChanges();
|
2012-12-31 06:26:48 +04:00
|
|
|
}
|
2012-12-31 04:54:51 +04:00
|
|
|
}
|
|
|
|
|
2013-03-24 05:06:50 +04:00
|
|
|
/**
|
2014-08-04 16:29:46 +04:00
|
|
|
* @param string $source
|
|
|
|
* @param string $target
|
2013-03-24 05:06:50 +04:00
|
|
|
*/
|
2014-08-04 16:29:46 +04:00
|
|
|
public function rename($source, $target) {
|
2013-03-08 22:08:07 +04:00
|
|
|
/**
|
2014-08-04 16:29:46 +04:00
|
|
|
* @var \OC\Files\Storage\Storage $sourceStorage
|
|
|
|
* @var \OC\Files\Storage\Storage $targetStorage
|
|
|
|
* @var string $sourceInternalPath
|
|
|
|
* @var string $targetInternalPath
|
2013-03-08 22:08:07 +04:00
|
|
|
*/
|
2014-08-04 16:29:46 +04:00
|
|
|
list($sourceStorage, $sourceInternalPath) = $this->view->resolvePath($source);
|
2014-05-22 03:40:04 +04:00
|
|
|
// if it's a moved mountpoint we dont need to do anything
|
2014-08-04 16:29:46 +04:00
|
|
|
if ($sourceInternalPath === '') {
|
2014-05-22 03:40:04 +04:00
|
|
|
return;
|
|
|
|
}
|
2014-08-04 16:29:46 +04:00
|
|
|
list($targetStorage, $targetInternalPath) = $this->view->resolvePath($target);
|
|
|
|
|
|
|
|
if ($sourceStorage && $targetStorage) {
|
|
|
|
if ($sourceStorage === $targetStorage) {
|
|
|
|
$cache = $sourceStorage->getCache($sourceInternalPath);
|
|
|
|
$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));
|
2013-11-27 21:48:24 +04:00
|
|
|
}
|
2013-10-29 18:08:12 +04:00
|
|
|
|
2014-08-04 16:29:46 +04:00
|
|
|
$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();
|
2013-10-29 18:08:12 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-29 17:18:57 +04:00
|
|
|
/**
|
|
|
|
* update the storage_mtime of the parent
|
|
|
|
*
|
|
|
|
* @param \OC\Files\Storage\Storage $storage
|
|
|
|
* @param string $internalPath
|
|
|
|
*/
|
2014-08-04 16:29:46 +04:00
|
|
|
private function correctParentStorageMtime($storage, $internalPath) {
|
2013-10-29 17:18:57 +04:00
|
|
|
$cache = $storage->getCache();
|
|
|
|
$parentId = $cache->getParentId($internalPath);
|
|
|
|
$parent = dirname($internalPath);
|
|
|
|
if ($parentId != -1) {
|
|
|
|
$cache->update($parentId, array('storage_mtime' => $storage->filemtime($parent)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-04 16:29:46 +04:00
|
|
|
public function __destruct() {
|
|
|
|
// propagate any leftover changes
|
|
|
|
$this->propagator->propagateChanges();
|
2012-11-09 00:12:40 +04:00
|
|
|
}
|
|
|
|
}
|