Allow disabling the cache updater

This commit is contained in:
Robin Appelman 2015-02-27 14:14:42 +01:00 committed by Vincent Petry
parent b4dfd043d7
commit f6182aa87e
2 changed files with 23 additions and 3 deletions

View File

@ -12,6 +12,11 @@ namespace OC\Files\Cache;
* Update the cache and propagate changes
*/
class Updater {
/**
* @var bool
*/
protected $enabled = true;
/**
* @var \OC\Files\View
*/
@ -30,6 +35,14 @@ class Updater {
$this->propagator = new ChangePropagator($view);
}
public function disable() {
$this->enabled = false;
}
public function enable() {
$this->enabled = true;
}
public function propagate($path, $time = null) {
if (Scanner::isPartialFile($path)) {
return;
@ -45,7 +58,7 @@ class Updater {
* @param int $time
*/
public function update($path, $time = null) {
if (Scanner::isPartialFile($path)) {
if (!$this->enabled or Scanner::isPartialFile($path)) {
return;
}
/**
@ -70,7 +83,7 @@ class Updater {
* @param string $path
*/
public function remove($path) {
if (Scanner::isPartialFile($path)) {
if (!$this->enabled or Scanner::isPartialFile($path)) {
return;
}
/**
@ -97,7 +110,7 @@ class Updater {
* @param string $target
*/
public function rename($source, $target) {
if (Scanner::isPartialFile($source) or Scanner::isPartialFile($target)) {
if (!$this->enabled or Scanner::isPartialFile($source) or Scanner::isPartialFile($target)) {
return;
}
/**

View File

@ -1528,4 +1528,11 @@ class View {
$mount
);
}
/**
* @return Updater
*/
public function getUpdater(){
return $this->updater;
}
}