1
0
Fork 0

Handle incomplete file write to cache

pull/3207/head
Chris Smith 2014-01-10 17:49:09 +00:00
parent 6edf40ee96
commit 439095e446
1 changed files with 22 additions and 1 deletions

View File

@ -83,7 +83,28 @@ class Cache
$this->io->write('Writing '.$this->root . $file.' into cache'); $this->io->write('Writing '.$this->root . $file.' into cache');
} }
try {
return file_put_contents($this->root . $file, $contents); return file_put_contents($this->root . $file, $contents);
} catch(\ErrorException $e) {
if (preg_match('{^file_put_contents\(\): Only ([0-9]+) of ([0-9]+) bytes written}', $e->getMessage(), $m)) {
// Remove partial file.
unlink($this->root . $file);
$message = sprintf(
'<warning>Writing %1$s into cache failed after %2$u of %3$u bytes written, only %4$u bytes of free space available</warning>',
$this->root . $file,
$m[1],
$m[2],
@disk_free_space($this->root . dirname($file))
);
$this->io->write($message);
return false;
}
throw $e;
}
} }
return false; return false;