MediaWiki  1.29.2
TempFSFile Class Reference

This class is used to hold the location and do limited manipulation of files stored temporarily (this will be whatever wfTempDir() returns) More...

Inheritance diagram for TempFSFile:
Collaboration diagram for TempFSFile:

Public Member Functions

 __construct ( $path)
 Sets up the file object. More...
 
 __destruct ()
 Cleans up after the temporary file by deleting it. More...
 
 autocollect ()
 Set flag clean up after the temporary file. More...
 
 bind ( $object)
 Clean up the temporary file only after an object goes out of scope. More...
 
 preserve ()
 Set flag to not clean up after the temporary file. More...
 
 purge ()
 Purge this file off the file system. More...
 
- Public Member Functions inherited from FSFile
 exists ()
 Checks if the file exists. More...
 
 getPath ()
 Returns the file system path. More...
 
 getProps ( $ext=true)
 Get an associative array containing information about a file with the given storage path. More...
 
 getSha1Base36 ( $recache=false)
 Get a SHA-1 hash of a file in the local filesystem, in base-36 lower case encoding, zero padded to 31 digits. More...
 
 getSize ()
 Get the file size in bytes. More...
 
 getTimestamp ()
 Get the file's last-modified timestamp. More...
 

Static Public Member Functions

static factory ( $prefix, $extension='', $tmpDirectory=null)
 Make a new temporary file on the file system. More...
 
static getUsableTempDirectory ()
 
static purgeAllOnShutdown ()
 Try to make sure that all files are purged on error. More...
 
- Static Public Member Functions inherited from FSFile
static extensionFromPath ( $path)
 Get the final file extension from a file system path. More...
 
static getPropsFromPath ( $path, $ext=true)
 Get an associative array containing information about a file in the local filesystem. More...
 
static getSha1Base36FromPath ( $path)
 Get a SHA-1 hash of a file in the local filesystem, in base-36 lower case encoding, zero padded to 31 digits. More...
 
static placeholderProps ()
 Placeholder file properties to use for files that don't exist. More...
 

Protected Attributes

bool $canDelete = false
 Garbage collect the temp file. More...
 
- Protected Attributes inherited from FSFile
string $path
 Path to file. More...
 
string $sha1Base36
 File SHA-1 in base 36. More...
 

Static Protected Attributes

static array $pathsCollect = null
 Map of (path => 1) for paths to delete on shutdown. More...
 

Detailed Description

This class is used to hold the location and do limited manipulation of files stored temporarily (this will be whatever wfTempDir() returns)

Definition at line 30 of file TempFSFile.php.

Constructor & Destructor Documentation

◆ __construct()

TempFSFile::__construct (   $path)

Sets up the file object.

Parameters
string$pathPath to temporary file on local disk

Reimplemented from FSFile.

Definition at line 37 of file TempFSFile.php.

References FSFile\$path.

◆ __destruct()

TempFSFile::__destruct ( )

Cleans up after the temporary file by deleting it.

Definition at line 191 of file TempFSFile.php.

References purge().

Member Function Documentation

◆ autocollect()

TempFSFile::autocollect ( )

Set flag clean up after the temporary file.

Returns
TempFSFile This object

Definition at line 167 of file TempFSFile.php.

References FSFile\$path.

◆ bind()

TempFSFile::bind (   $object)

Clean up the temporary file only after an object goes out of scope.

Parameters
object$object
Returns
TempFSFile This object

Definition at line 137 of file TempFSFile.php.

◆ factory()

static TempFSFile::factory (   $prefix,
  $extension = '',
  $tmpDirectory = null 
)
static

Make a new temporary file on the file system.

Temporary files may be purged when the file object falls out of scope.

Parameters
string$prefix
string$extensionOptional file extension
string | null$tmpDirectoryOptional parent directory
Returns
TempFSFile|null

Definition at line 55 of file TempFSFile.php.

References $ext, FSFile\$path, getUsableTempDirectory(), and wfTempDir().

Referenced by UploadFromChunks\concatenateChunks(), FSFileBackend\doCreateInternal(), MemoryFileBackend\doGetLocalCopyMulti(), FSFileBackend\doGetLocalCopyMulti(), SwiftFileBackend\doGetLocalCopyMulti(), FileBackendTest\doTestDoOperationsPipeline(), ApiImageRotate\execute(), FileBackendGroup\guessMimeInternal(), UploadFromUrl\makeTemporaryFile(), File\makeTransformTmpFile(), FileBackendTest\provider_testStore(), and MigrateFileRepoLayoutTest\setUp().

◆ getUsableTempDirectory()

static TempFSFile::getUsableTempDirectory ( )
static
Returns
string Filesystem path to a temporary directory
Exceptions
RuntimeException

Definition at line 85 of file TempFSFile.php.

References as.

Referenced by factory().

◆ preserve()

TempFSFile::preserve ( )

Set flag to not clean up after the temporary file.

Returns
TempFSFile This object

Definition at line 154 of file TempFSFile.php.

◆ purge()

TempFSFile::purge ( )

Purge this file off the file system.

Returns
bool Success

Definition at line 120 of file TempFSFile.php.

Referenced by __destruct().

◆ purgeAllOnShutdown()

static TempFSFile::purgeAllOnShutdown ( )
static

Try to make sure that all files are purged on error.

This method should only be called internally

Definition at line 180 of file TempFSFile.php.

References FSFile\$path, and as.

Member Data Documentation

◆ $canDelete

bool TempFSFile::$canDelete = false
protected

Garbage collect the temp file.

Definition at line 32 of file TempFSFile.php.

◆ $pathsCollect

array TempFSFile::$pathsCollect = null
staticprotected

Map of (path => 1) for paths to delete on shutdown.

Definition at line 35 of file TempFSFile.php.


The documentation for this class was generated from the following file: