mirror of
https://github.com/nextcloud/server.git
synced 2026-02-21 00:45:24 -05:00
242 lines
7.2 KiB
PHP
242 lines
7.2 KiB
PHP
<?php
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
namespace OC\Files\Cache;
|
|
|
|
use Doctrine\DBAL\Exception\DeadlockException;
|
|
use OC\Files\FileInfo;
|
|
use OC\Files\ObjectStore\ObjectStoreStorage;
|
|
use OC\Files\Storage\Storage;
|
|
use OCP\Files\Cache\ICache;
|
|
use OCP\Files\Cache\ICacheEntry;
|
|
use OCP\Files\Cache\IPropagator;
|
|
use OCP\Files\Cache\IScanner;
|
|
use OCP\Files\Cache\IUpdater;
|
|
use OCP\Files\Storage\IStorage;
|
|
use OCP\Server;
|
|
use Override;
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
class Updater implements IUpdater {
|
|
protected bool $enabled = true;
|
|
protected IPropagator $propagator;
|
|
protected IScanner $scanner;
|
|
protected ICache $cache;
|
|
private LoggerInterface $logger;
|
|
|
|
public function __construct(
|
|
protected Storage $storage,
|
|
) {
|
|
$this->propagator = $this->storage->getPropagator();
|
|
$this->scanner = $this->storage->getScanner();
|
|
$this->cache = $this->storage->getCache();
|
|
$this->logger = Server::get(LoggerInterface::class);
|
|
}
|
|
|
|
/**
|
|
* Disable updating the cache through this updater
|
|
*/
|
|
public function disable(): void {
|
|
$this->enabled = false;
|
|
}
|
|
|
|
/**
|
|
* Re-enable the updating of the cache through this updater
|
|
*/
|
|
public function enable(): void {
|
|
$this->enabled = true;
|
|
}
|
|
|
|
#[Override]
|
|
public function getPropagator(): IPropagator {
|
|
return $this->propagator;
|
|
}
|
|
|
|
#[Override]
|
|
public function propagate(string $path, ?int $time = null): void {
|
|
if (Scanner::isPartialFile($path)) {
|
|
return;
|
|
}
|
|
$this->propagator->propagateChange($path, $time);
|
|
}
|
|
|
|
#[Override]
|
|
public function update(string $path, ?int $time = null, ?int $sizeDifference = null): void {
|
|
if (!$this->enabled || Scanner::isPartialFile($path)) {
|
|
return;
|
|
}
|
|
if (is_null($time)) {
|
|
$time = time();
|
|
}
|
|
|
|
$data = $this->scanner->scan($path, Scanner::SCAN_SHALLOW, -1, false);
|
|
|
|
if (isset($data['oldSize']) && isset($data['size'])) {
|
|
$sizeDifference = $data['size'] - $data['oldSize'];
|
|
}
|
|
|
|
// encryption is a pita and touches the cache itself
|
|
if (isset($data['encrypted']) && (bool)$data['encrypted']) {
|
|
$sizeDifference = null;
|
|
}
|
|
|
|
// scanner didn't provide size info, fallback to full size calculation
|
|
if ($this->cache instanceof Cache && $sizeDifference === null) {
|
|
$this->cache->correctFolderSize($path, $data);
|
|
}
|
|
$this->correctParentStorageMtime($path);
|
|
$this->propagator->propagateChange($path, $time, $sizeDifference ?? 0);
|
|
}
|
|
|
|
#[Override]
|
|
public function remove(string $path): void {
|
|
if (!$this->enabled || Scanner::isPartialFile($path)) {
|
|
return;
|
|
}
|
|
|
|
$parent = dirname($path);
|
|
if ($parent === '.') {
|
|
$parent = '';
|
|
}
|
|
|
|
$entry = $this->cache->get($path);
|
|
|
|
$this->cache->remove($path);
|
|
|
|
$this->correctParentStorageMtime($path);
|
|
if ($entry instanceof ICacheEntry) {
|
|
$this->propagator->propagateChange($path, time(), -$entry->getSize());
|
|
} else {
|
|
$this->propagator->propagateChange($path, time());
|
|
if ($this->cache instanceof Cache) {
|
|
$this->cache->correctFolderSize($parent);
|
|
}
|
|
}
|
|
}
|
|
|
|
#[Override]
|
|
public function renameFromStorage(IStorage $sourceStorage, string $source, string $target): void {
|
|
$this->copyOrRenameFromStorage($sourceStorage, $source, $target, function (ICache $sourceCache) use ($sourceStorage, $source, $target): void {
|
|
// Remove existing cache entry to no reuse the fileId.
|
|
if ($this->cache->inCache($target)) {
|
|
$this->cache->remove($target);
|
|
}
|
|
|
|
if ($sourceStorage === $this->storage) {
|
|
$this->cache->move($source, $target);
|
|
} else {
|
|
$this->cache->moveFromCache($sourceCache, $source, $target);
|
|
}
|
|
});
|
|
}
|
|
|
|
#[Override]
|
|
public function copyFromStorage(IStorage $sourceStorage, string $source, string $target): void {
|
|
$this->copyOrRenameFromStorage($sourceStorage, $source, $target, function (ICache $sourceCache, ICacheEntry $sourceInfo) use ($target): void {
|
|
$parent = dirname($target);
|
|
if ($parent === '.') {
|
|
$parent = '';
|
|
}
|
|
$parentInCache = $this->cache->inCache($parent);
|
|
if (!$parentInCache) {
|
|
$parentData = $this->scanner->scan($parent, Scanner::SCAN_SHALLOW, -1, false);
|
|
$parentInCache = $parentData !== null;
|
|
}
|
|
if ($parentInCache) {
|
|
$this->cache->copyFromCache($sourceCache, $sourceInfo, $target);
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Utility to copy or rename a file or folder in the cache and update the size, etag and mtime of the parent folders
|
|
*/
|
|
private function copyOrRenameFromStorage(IStorage $sourceStorage, string $source, string $target, callable $operation): void {
|
|
if (!$this->enabled || Scanner::isPartialFile($source) || Scanner::isPartialFile($target)) {
|
|
return;
|
|
}
|
|
|
|
$time = time();
|
|
|
|
$sourceCache = $sourceStorage->getCache();
|
|
$sourceUpdater = $sourceStorage->getUpdater();
|
|
$sourcePropagator = $sourceStorage->getPropagator();
|
|
|
|
$sourceInfo = $sourceCache->get($source);
|
|
|
|
$sourceExtension = pathinfo($source, PATHINFO_EXTENSION);
|
|
$targetExtension = pathinfo($target, PATHINFO_EXTENSION);
|
|
$targetIsTrash = preg_match("/^d\d+$/", $targetExtension);
|
|
|
|
if ($sourceInfo !== false) {
|
|
if (!$this->storage->instanceOfStorage(ObjectStoreStorage::class)) {
|
|
$operation($sourceCache, $sourceInfo);
|
|
}
|
|
|
|
$isDir = $sourceInfo->getMimeType() === FileInfo::MIMETYPE_FOLDER;
|
|
} else {
|
|
$isDir = $this->storage->is_dir($target);
|
|
}
|
|
|
|
if ($sourceExtension !== $targetExtension && !$isDir && !$targetIsTrash) {
|
|
// handle mime type change
|
|
$mimeType = $this->storage->getMimeType($target);
|
|
$fileId = $this->cache->getId($target);
|
|
$this->cache->update($fileId, ['mimetype' => $mimeType]);
|
|
}
|
|
|
|
if ($sourceCache instanceof Cache) {
|
|
$sourceCache->correctFolderSize($source);
|
|
}
|
|
if ($this->cache instanceof Cache) {
|
|
$this->cache->correctFolderSize($target);
|
|
}
|
|
if ($sourceUpdater instanceof Updater) {
|
|
$sourceUpdater->correctParentStorageMtime($source);
|
|
}
|
|
$this->correctParentStorageMtime($target);
|
|
$this->updateStorageMTimeOnly($target);
|
|
$sourcePropagator->propagateChange($source, $time);
|
|
$this->propagator->propagateChange($target, $time);
|
|
}
|
|
|
|
private function updateStorageMTimeOnly(string $internalPath): void {
|
|
$fileId = $this->cache->getId($internalPath);
|
|
if ($fileId !== -1) {
|
|
$mtime = $this->storage->filemtime($internalPath);
|
|
if ($mtime !== false) {
|
|
$this->cache->update(
|
|
$fileId, [
|
|
'mtime' => null, // this magic tells it to not overwrite mtime
|
|
'storage_mtime' => $mtime
|
|
]
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Update the storage_mtime of the direct parent in the cache to the mtime from the storage
|
|
*/
|
|
private function correctParentStorageMtime(string $internalPath): void {
|
|
$parentId = $this->cache->getParentId($internalPath);
|
|
$parent = dirname($internalPath);
|
|
if ($parentId != -1) {
|
|
$mtime = $this->storage->filemtime($parent);
|
|
if ($mtime !== false) {
|
|
try {
|
|
$this->cache->update($parentId, ['storage_mtime' => $mtime]);
|
|
} catch (DeadlockException $e) {
|
|
// ignore the failure.
|
|
// with failures concurrent updates, someone else would have already done it.
|
|
// in the worst case the `storage_mtime` isn't updated, which should at most only trigger an extra rescan
|
|
$this->logger->info('Error while updating parent storage_mtime, should be safe to ignore', ['exception' => $e]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|