diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2013-01-18 16:46:04 +0100 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2013-01-18 16:46:04 +0100 |
commit | 63601400e476c6cf43d985f3e7b9864681695ed4 (patch) | |
tree | f7846203a952e38aaf66989d0a4702779f549962 /includes/filerepo/backend/TempFSFile.php | |
parent | 8ff01378c9e0207f9169b81966a51def645b6a51 (diff) |
Update to MediaWiki 1.20.2
this update includes:
* adjusted Arch Linux skin
* updated FluxBBAuthPlugin
* patch for https://bugzilla.wikimedia.org/show_bug.cgi?id=44024
Diffstat (limited to 'includes/filerepo/backend/TempFSFile.php')
-rw-r--r-- | includes/filerepo/backend/TempFSFile.php | 92 |
1 files changed, 0 insertions, 92 deletions
diff --git a/includes/filerepo/backend/TempFSFile.php b/includes/filerepo/backend/TempFSFile.php deleted file mode 100644 index 7843d6cd..00000000 --- a/includes/filerepo/backend/TempFSFile.php +++ /dev/null @@ -1,92 +0,0 @@ -<?php -/** - * @file - * @ingroup FileBackend - */ - -/** - * This class is used to hold the location and do limited manipulation - * of files stored temporarily (usually this will be $wgTmpDirectory) - * - * @ingroup FileBackend - */ -class TempFSFile extends FSFile { - protected $canDelete = false; // bool; garbage collect the temp file - - /** @var Array of active temp files to purge on shutdown */ - protected static $instances = array(); - - /** - * Make a new temporary file on the file system. - * Temporary files may be purged when the file object falls out of scope. - * - * @param $prefix string - * @param $extension string - * @return TempFSFile|null - */ - public static function factory( $prefix, $extension = '' ) { - $base = wfTempDir() . '/' . $prefix . dechex( mt_rand( 0, 99999999 ) ); - $ext = ( $extension != '' ) ? ".{$extension}" : ""; - for ( $attempt = 1; true; $attempt++ ) { - $path = "{$base}-{$attempt}{$ext}"; - wfSuppressWarnings(); - $newFileHandle = fopen( $path, 'x' ); - wfRestoreWarnings(); - if ( $newFileHandle ) { - fclose( $newFileHandle ); - break; // got it - } - if ( $attempt >= 15 ) { - return null; // give up - } - } - $tmpFile = new self( $path ); - $tmpFile->canDelete = true; // safely instantiated - return $tmpFile; - } - - /** - * Purge this file off the file system - * - * @return bool Success - */ - public function purge() { - $this->canDelete = false; // done - wfSuppressWarnings(); - $ok = unlink( $this->path ); - wfRestoreWarnings(); - return $ok; - } - - /** - * Clean up the temporary file only after an object goes out of scope - * - * @param $object Object - * @return void - */ - public function bind( $object ) { - if ( is_object( $object ) ) { - $object->tempFSFileReferences[] = $this; - } - } - - /** - * Set flag to not clean up after the temporary file - * - * @return void - */ - public function preserve() { - $this->canDelete = false; - } - - /** - * Cleans up after the temporary file by deleting it - */ - function __destruct() { - if ( $this->canDelete ) { - wfSuppressWarnings(); - unlink( $this->path ); - wfRestoreWarnings(); - } - } -} |