2015-12-02 17:11:09 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2015-12-02 17:11:09 +03:00
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-12-02 17:11:09 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCP\Files\Cache;
|
2015-12-04 16:26:47 +03:00
|
|
|
|
|
|
|
use OCP\Files\Storage\IStorage;
|
2015-12-02 17:11:09 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Update the cache and propagate changes
|
|
|
|
*
|
2015-12-02 17:17:58 +03:00
|
|
|
* @since 9.0.0
|
2015-12-02 17:11:09 +03:00
|
|
|
*/
|
|
|
|
interface IUpdater {
|
|
|
|
/**
|
|
|
|
* Get the propagator for etags and mtime for the view the updater works on
|
|
|
|
*
|
|
|
|
* @return IPropagator
|
2015-12-02 17:17:58 +03:00
|
|
|
* @since 9.0.0
|
2015-12-02 17:11:09 +03:00
|
|
|
*/
|
|
|
|
public function getPropagator();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Propagate etag and mtime changes for the parent folders of $path up to the root of the filesystem
|
|
|
|
*
|
|
|
|
* @param string $path the path of the file to propagate the changes for
|
|
|
|
* @param int|null $time the timestamp to set as mtime for the parent folders, if left out the current time is used
|
2015-12-02 17:17:58 +03:00
|
|
|
* @since 9.0.0
|
2015-12-02 17:11:09 +03:00
|
|
|
*/
|
|
|
|
public function propagate($path, $time = null);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update the cache for $path and update the size, etag and mtime of the parent folders
|
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
* @param int $time
|
2015-12-02 17:17:58 +03:00
|
|
|
* @since 9.0.0
|
2015-12-02 17:11:09 +03:00
|
|
|
*/
|
|
|
|
public function update($path, $time = null);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove $path from the cache and update the size, etag and mtime of the parent folders
|
|
|
|
*
|
|
|
|
* @param string $path
|
2015-12-02 17:17:58 +03:00
|
|
|
* @since 9.0.0
|
2015-12-02 17:11:09 +03:00
|
|
|
*/
|
|
|
|
public function remove($path);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Rename a file or folder in the cache and update the size, etag and mtime of the parent folders
|
|
|
|
*
|
2015-12-04 16:26:47 +03:00
|
|
|
* @param IStorage $sourceStorage
|
2015-12-02 17:11:09 +03:00
|
|
|
* @param string $source
|
|
|
|
* @param string $target
|
2015-12-02 17:17:58 +03:00
|
|
|
* @since 9.0.0
|
2015-12-02 17:11:09 +03:00
|
|
|
*/
|
2015-12-04 16:26:47 +03:00
|
|
|
public function renameFromStorage(IStorage $sourceStorage, $source, $target);
|
2015-12-02 17:11:09 +03:00
|
|
|
}
|