MediaWiki master
|
Base class for all file backend classes (including multi-write backends). More...
Inherits LoggerAwareInterface.
Inherited by FileBackendDBRepoWrapper, Wikimedia\FileBackend\FileBackendMultiWrite, and Wikimedia\FileBackend\FileBackendStore.
Public Member Functions | |
__construct (array $config) | |
Create a new backend instance from configuration. | |
addShellboxInputFile (BoxedCommand $command, string $boxedName, array $params) | |
Add a file to a Shellbox command as an input file. | |
clean (array $params) | |
Delete a storage directory if it is empty. | |
clearCache (?array $paths=null) | |
Invalidate any in-process file stat and property cache. | |
concatenate (array $params) | |
Concatenate a list of storage files into a single file system file. | |
copy (array $params, array $opts=[]) | |
Performs a single copy operation. | |
create (array $params, array $opts=[]) | |
Performs a single create operation. | |
delete (array $params, array $opts=[]) | |
Performs a single delete operation. | |
describe (array $params, array $opts=[]) | |
Performs a single describe operation. | |
directoryExists (array $params) | |
Check if a directory exists at a given storage path. | |
doOperation (array $op, array $opts=[]) | |
Same as doOperations() except it takes a single operation. | |
doOperations (array $ops, array $opts=[]) | |
This is the main entry point into the backend for write operations. | |
doQuickOperation (array $op, array $opts=[]) | |
Same as doQuickOperations() except it takes a single operation. | |
doQuickOperations (array $ops, array $opts=[]) | |
Perform a set of independent file operations on some files. | |
fileExists (array $params) | |
Check if a file exists at a storage path in the backend. | |
getContainerStoragePath ( $container) | |
Get the storage path for the given container for this backend. | |
getDirectoryList (array $params) | |
Get an iterator to list all directories under a storage directory. | |
getDomainId () | |
Get the domain identifier used for this backend (possibly empty). | |
getFeatures () | |
Get the a bitfield of extra features supported by the backend medium. | |
getFileContents (array $params) | |
Get the contents of a file at a storage path in the backend. | |
getFileContentsMulti (array $params) | |
Like getFileContents() except it takes an array of storage paths and returns an order preserved map of storage paths to their content. | |
getFileHttpUrl (array $params) | |
Return an HTTP URL to a given file that requires no authentication to use. | |
getFileList (array $params) | |
Get an iterator to list all stored files under a storage directory. | |
getFileProps (array $params) | |
Get the properties of the content of the file at a storage path in the backend. | |
getFileSha1Base36 (array $params) | |
Get a SHA-1 hash of the content of the file at a storage path in the backend. | |
getFileSize (array $params) | |
Get the size (bytes) of a file at a storage path in the backend. | |
getFileStat (array $params) | |
Get quick information about a file at a storage path in the backend. | |
getFileTimestamp (array $params) | |
Get the last-modified timestamp of the file at a storage path. | |
getFileXAttributes (array $params) | |
Get metadata about a file at a storage path in the backend. | |
getLocalCopy (array $params) | |
Get a local copy on disk of the file at a storage path in the backend. | |
getLocalCopyMulti (array $params) | |
Like getLocalCopy() except it takes an array of storage paths and yields an order preserved-map of storage paths to temporary local file copies. | |
getLocalReference (array $params) | |
Returns a file system file, identical in content to the file at a storage path. | |
getLocalReferenceMulti (array $params) | |
Like getLocalReference() except it takes an array of storage paths and yields an order-preserved map of storage paths to temporary local file copies. | |
getName () | |
Get the unique backend name. | |
getReadOnlyReason () | |
Get an explanatory message if this backend is read-only. | |
getRootStoragePath () | |
Get the root storage path of this backend. | |
getScopedFileLocks (array $paths, $type, StatusValue $status, $timeout=0) | |
Lock the files at the given storage paths in the backend. | |
getScopedLocksForOps (array $ops, StatusValue $status) | |
Get an array of scoped locks needed for a batch of file operations. | |
getStreamerOptions () | |
Return options for use with HTTPFileStreamer. | |
getTopDirectoryList (array $params) | |
Same as FileBackend::getDirectoryList() except only lists directories that are immediately under the given directory. | |
getTopFileList (array $params) | |
Same as FileBackend::getFileList() except only lists files that are immediately under the given directory. | |
getWikiId () | |
Alias to getDomainId() | |
hasFeatures ( $bitfield) | |
Check if the backend medium supports a field of extra features. | |
isReadOnly () | |
Check if this backend is read-only. | |
lockFiles (array $paths, $type, $timeout=0) | |
Lock the files at the given storage paths in the backend. | |
move (array $params, array $opts=[]) | |
Performs a single move operation. | |
preloadCache (array $paths) | |
Preload persistent file stat cache and property cache into in-process cache. | |
preloadFileStat (array $params) | |
Preload file stat information (concurrently if possible) into in-process cache. | |
prepare (array $params) | |
Prepare a storage directory for usage. | |
publish (array $params) | |
Remove measures to block web access to a storage directory and the container it belongs to. | |
quickCopy (array $params, array $opts=[]) | |
Performs a single quick copy operation. | |
quickCreate (array $params, array $opts=[]) | |
Performs a single quick create operation. | |
quickDelete (array $params, array $opts=[]) | |
Performs a single quick delete operation. | |
quickDescribe (array $params, array $opts=[]) | |
Performs a single quick describe operation. | |
quickMove (array $params, array $opts=[]) | |
Performs a single quick move operation. | |
quickStore (array $params, array $opts=[]) | |
Performs a single quick store operation. | |
secure (array $params) | |
Take measures to block web access to a storage directory and the container it belongs to. | |
setLogger (LoggerInterface $logger) | |
store (array $params, array $opts=[]) | |
Performs a single store operation. | |
streamFile (array $params) | |
Stream the content of the file at a storage path in the backend. | |
unlockFiles (array $paths, $type) | |
Unlock the files at the given storage paths in the backend. | |
Static Public Member Functions | |
static | extensionFromPath ( $path, $case='lowercase') |
Get the final extension from a storage or FS path. | |
static | isPathTraversalFree ( $path) |
Check if a relative path has no directory traversals. | |
static | isStoragePath ( $path) |
Check if a given path is a "mwstore://" path. | |
static | makeContentDisposition ( $type, $filename='') |
Build a Content-Disposition header value per RFC 6266. | |
static | normalizeStoragePath ( $storagePath) |
Normalize a storage path by cleaning up directory separators. | |
static | parentStoragePath ( $storagePath) |
Get the parent storage directory of a storage path. | |
static | resetOutputBufferTheDefaultWay () |
Default behavior of resetOutputBuffer(). | |
static | splitStoragePath ( $storagePath) |
Split a storage path into a backend name, a container name, and a relative file path. | |
Public Attributes | |
const | ATTR_HEADERS = 1 |
Bitfield flags for supported features. | |
const | ATTR_METADATA = 2 |
const | ATTR_UNICODE_PATHS = 4 |
Protected Member Functions | |
doClean (array $params) | |
doOperationsInternal (array $ops, array $opts) | |
doPrepare (array $params) | |
doPublish (array $params) | |
doQuickOperationsInternal (array $ops, array $opts) | |
doSecure (array $params) | |
header ( $header) | |
newStatus ( $message=null,... $params) | |
Yields the result of the status wrapper callback on either: | |
resetOutputBuffer () | |
resolveFSFileObjects (array $ops) | |
Convert FSFile 'src' paths to string paths (with an 'srcRef' field set to the FSFile) | |
scopedProfileSection ( $section) | |
wrapStatus (StatusValue $sv) | |
Static Protected Member Functions | |
static | normalizeContainerPath ( $path) |
Validate and normalize a relative storage path. | |
Protected Attributes | |
int | $concurrency |
How many operations can be done in parallel. | |
string | $domainId |
Unique domain name. | |
LockManager | $lockManager |
LoggerInterface | $logger |
string | $name |
Unique backend name. | |
string | $parallelize |
When to do operations in parallel. | |
callable null | $profiler |
string | $readOnly |
Read-only explanation message. | |
callable null | $statusWrapper |
array | $streamerOptions |
Option map for use with HTTPFileStreamer. | |
TempFSFileFactory | $tmpFileFactory |
Base class for all file backend classes (including multi-write backends).
This class defines the methods as abstract that subclasses must implement. Outside callers can assume that all backends will have these functions.
All "storage paths" are of the format "mwstore://<backend>/<container>/<path>". The "backend" portion is unique name for the application to refer to a backend, while the "container" portion is a top-level directory of the backend. The "path" portion is a relative path that uses UNIX file system (FS) notation, though any particular backend may not actually be using a local filesystem. Therefore, the relative paths are only virtual.
Backend contents are stored under "domain"-specific container names by default. A domain is simply a logical umbrella for entities, such as those belonging to a certain application or portion of a website, for example. A domain can be local or global. Global (qualified) backends are achieved by configuring the "domain ID" to a constant. Global domains are simpler, but local domains can be used by choosing a domain ID based on the current context, such as which language of a website is being used.
For legacy reasons, the FSFileBackend class allows manually setting the paths of containers to ones that do not respect the "domain ID".
In key/value (object) stores, containers are the only hierarchy (the rest is emulated). FS-based backends are somewhat more restrictive due to the existence of real directory files; a regular file cannot have the same name as a directory. Other backends with virtual directories may not have this limitation. Callers should store files in such a way that no files and directories are under the same path.
In general, this class allows for callers to access storage through the same interface, without regard to the underlying storage system. However, calling code must follow certain patterns and be aware of certain things to ensure compatibility:
Methods of subclasses should avoid throwing exceptions at all costs. As a corollary, external dependencies should be kept to a minimum.
See the architecture doc for more information.
Definition at line 112 of file FileBackend.php.
Wikimedia\FileBackend\FileBackend::__construct | ( | array | $config | ) |
Create a new backend instance from configuration.
This should only be called from within FileBackendGroup.
array | $config | Parameters include:
|
Reimplemented in FileBackendDBRepoWrapper, Wikimedia\FileBackend\FileBackendMultiWrite, Wikimedia\FileBackend\FileBackendStore, Wikimedia\FileBackend\FSFileBackend, and Wikimedia\FileBackend\SwiftFileBackend.
Definition at line 208 of file FileBackend.php.
|
abstract |
Add a file to a Shellbox command as an input file.
BoxedCommand | $command | |
string | $boxedName | |
array | $params | Parameters include:
|
Reimplemented in FileBackendDBRepoWrapper, Wikimedia\FileBackend\FileBackendMultiWrite, Wikimedia\FileBackend\FileBackendStore, Wikimedia\FileBackend\FSFileBackend, and Wikimedia\FileBackend\SwiftFileBackend.
|
final |
Delete a storage directory if it is empty.
Backends using key/value stores may do nothing unless the directory is that of an empty container, in which case it will be deleted.
array | $params | Parameters include:
|
Definition at line 990 of file FileBackend.php.
References $params, Wikimedia\FileBackend\FileBackend\doClean(), Wikimedia\FileBackend\FileBackend\isReadOnly(), and Wikimedia\FileBackend\FileBackend\newStatus().
|
abstract |
Invalidate any in-process file stat and property cache.
If $paths is given, then only the cache for those files will be cleared.
array | null | $paths | Storage paths (optional) |
Reimplemented in FileBackendDBRepoWrapper, Wikimedia\FileBackend\FileBackendMultiWrite, and Wikimedia\FileBackend\FileBackendStore.
Referenced by CopyFileBackend\copyFileBatch().
|
abstract |
Concatenate a list of storage files into a single file system file.
The target path should refer to a file that is already locked or otherwise safe from modification from other processes. Normally, the file will be a new temp file, which should be adequate.
array | $params | Operation parameters, include:
|
Reimplemented in FileBackendDBRepoWrapper, Wikimedia\FileBackend\FileBackendMultiWrite, and Wikimedia\FileBackend\FileBackendStore.
|
final |
Performs a single copy operation.
This sets $params['op'] to 'copy' and passes it to doOperation().
array | $params | Operation parameters |
array | $opts | Operation options |
Definition at line 571 of file FileBackend.php.
References Wikimedia\FileBackend\FileBackend\doOperation().
Referenced by Wikimedia\FileBackend\FSFileBackend\doGetLocalCopyMulti().
|
final |
Performs a single create operation.
This sets $params['op'] to 'create' and passes it to doOperation().
array | $params | Operation parameters |
array | $opts | Operation options |
Definition at line 543 of file FileBackend.php.
References Wikimedia\FileBackend\FileBackend\doOperation().
|
final |
Performs a single delete operation.
This sets $params['op'] to 'delete' and passes it to doOperation().
array | $params | Operation parameters |
array | $opts | Operation options |
Definition at line 599 of file FileBackend.php.
References Wikimedia\FileBackend\FileBackend\doOperation().
|
final |
Performs a single describe operation.
This sets $params['op'] to 'describe' and passes it to doOperation().
array | $params | Operation parameters |
array | $opts | Operation options |
Definition at line 614 of file FileBackend.php.
References Wikimedia\FileBackend\FileBackend\doOperation().
|
abstract |
Check if a directory exists at a given storage path.
For backends using key/value stores, a directory is said to exist whenever there exist any files with paths using the given directory path as a prefix followed by a forward slash. For example, if there is a file called "mwstore://backend/container/dir/path.svg" then directories are said to exist at "mwstore://backend/container" and "mwstore://backend/container/dir". These can be thought of as "virtual" directories.
Backends that directly use a filesystem layer might enumerate empty directories. The clean() method should always be used when files are deleted or moved if this is a concern. This is a trade-off to avoid write amplication/contention on file changes or read amplification when calling this method.
Storage backends with eventual consistency might return stale data.
array | $params | Parameters include:
|
Reimplemented in FileBackendDBRepoWrapper, Wikimedia\FileBackend\FileBackendMultiWrite, and Wikimedia\FileBackend\FileBackendStore.
|
abstractprotected |
array | $params |
Reimplemented in FileBackendDBRepoWrapper, Wikimedia\FileBackend\FileBackendMultiWrite, and Wikimedia\FileBackend\FileBackendStore.
Referenced by Wikimedia\FileBackend\FileBackend\clean().
|
final |
Same as doOperations() except it takes a single operation.
If you are doing a batch of operations that should either all succeed or all fail, then use that function instead.
array | $op | Operation |
array | $opts | Operation options |
Definition at line 529 of file FileBackend.php.
References Wikimedia\FileBackend\FileBackend\doOperations().
Referenced by LocalRepo\cleanupDeletedBatch(), Wikimedia\FileBackend\FileBackend\copy(), Wikimedia\FileBackend\FileBackend\create(), Wikimedia\FileBackend\FileBackend\delete(), Wikimedia\FileBackend\FileBackend\describe(), Wikimedia\FileBackend\FileBackend\move(), and Wikimedia\FileBackend\FileBackend\store().
|
final |
This is the main entry point into the backend for write operations.
Callers supply an ordered list of operations to perform as a transaction. Files will be locked, the stat cache cleared, and then the operations attempted. If any serious errors occur, all attempted operations will be rolled back.
$ops is an array of arrays. The outer array holds a list of operations. Each inner array is a set of key value pairs that specify an operation.
Supported operations and their parameters. The supported actions are:
FSFile/TempFSFile object support was added in 1.27.
a) Create a new file in storage with the contents of a string
b) Copy a file system file into storage
c) Copy a file within storage
d) Move a file within storage
e) Delete a file within storage
f) Update metadata for a file within storage
g) Do nothing (no-op)
Boolean flags for operations (operation-specific):
$opts is an associative of boolean flags, including:
This returns a Status, which contains all warnings and fatals that occurred during the operation. The 'failCount', 'successCount', and 'success' members will reflect each operation attempted.
The StatusValue will be "OK" unless:
array[] | $ops | List of operations to execute in order |
array | $opts | Batch operation options @phpcs:ignore Generic.Files.LineLength |
Definition at line 491 of file FileBackend.php.
References Wikimedia\FileBackend\FileBackend\doOperationsInternal(), Wikimedia\FileBackend\FileBackend\isReadOnly(), Wikimedia\FileBackend\FileBackend\newStatus(), and Wikimedia\FileBackend\FileBackend\resolveFSFileObjects().
Referenced by Wikimedia\FileBackend\FileBackend\doOperation(), and MigrateFileRepoLayout\runBatch().
|
abstractprotected |
array | $ops | |
array | $opts |
Reimplemented in FileBackendDBRepoWrapper, Wikimedia\FileBackend\FileBackendMultiWrite, and Wikimedia\FileBackend\FileBackendStore.
Referenced by Wikimedia\FileBackend\FileBackend\doOperations().
|
abstractprotected |
array | $params |
Reimplemented in FileBackendDBRepoWrapper, Wikimedia\FileBackend\FileBackendMultiWrite, and Wikimedia\FileBackend\FileBackendStore.
Referenced by Wikimedia\FileBackend\FileBackend\prepare().
|
abstractprotected |
array | $params |
Reimplemented in FileBackendDBRepoWrapper, Wikimedia\FileBackend\FileBackendMultiWrite, and Wikimedia\FileBackend\FileBackendStore.
Referenced by Wikimedia\FileBackend\FileBackend\publish().
|
final |
Same as doQuickOperations() except it takes a single operation.
If you are doing a batch of operations, then use that function instead.
array | $op | Operation |
array | $opts | Batch operation options |
Definition at line 771 of file FileBackend.php.
References Wikimedia\FileBackend\FileBackend\doQuickOperations().
Referenced by Wikimedia\FileBackend\FileBackend\quickCopy(), Wikimedia\FileBackend\FileBackend\quickCreate(), Wikimedia\FileBackend\FileBackend\quickDelete(), Wikimedia\FileBackend\FileBackend\quickDescribe(), Wikimedia\FileBackend\FileBackend\quickMove(), and Wikimedia\FileBackend\FileBackend\quickStore().
|
final |
Perform a set of independent file operations on some files.
This does no locking, and possibly no stat calls. Any destination files that already exist will be overwritten. This should only be used on non-original files, like cache files.
Supported operations and their parameters:
FSFile/TempFSFile object support was added in 1.27.
a) Create a new file in storage with the contents of a string
b) Copy a file system file into storage
c) Copy a file within storage
d) Move a file within storage
e) Delete a file within storage
f) Update metadata for a file within storage
g) Do nothing (no-op)
$opts is an associative of boolean flags, including:
array | $ops | Set of operations to execute |
array | $opts | Batch operation options |
Definition at line 732 of file FileBackend.php.
References Wikimedia\FileBackend\FileBackend\doQuickOperationsInternal(), Wikimedia\FileBackend\FileBackend\isReadOnly(), Wikimedia\FileBackend\FileBackend\newStatus(), and Wikimedia\FileBackend\FileBackend\resolveFSFileObjects().
Referenced by CopyFileBackend\copyFileBatch(), CopyFileBackend\delFileBatch(), and Wikimedia\FileBackend\FileBackend\doQuickOperation().
|
abstractprotected |
array | $ops | |
array | $opts |
Reimplemented in FileBackendDBRepoWrapper, Wikimedia\FileBackend\FileBackendMultiWrite, and Wikimedia\FileBackend\FileBackendStore.
Referenced by Wikimedia\FileBackend\FileBackend\doQuickOperations().
|
abstractprotected |
array | $params |
Reimplemented in FileBackendDBRepoWrapper, Wikimedia\FileBackend\FileBackendMultiWrite, and Wikimedia\FileBackend\FileBackendStore.
Referenced by Wikimedia\FileBackend\FileBackend\secure().
|
staticfinal |
Get the final extension from a storage or FS path.
string | $path | |
string | $case | One of (rawcase, uppercase, lowercase) (since 1.24) |
Definition at line 1632 of file FileBackend.php.
References $path.
Referenced by Wikimedia\FileBackend\FSFileBackend\doGetLocalCopyMulti(), Wikimedia\FileBackend\MemoryFileBackend\doGetLocalCopyMulti(), Wikimedia\FileBackend\SwiftFileBackend\doGetLocalCopyMulti(), and MediaWiki\FileBackend\FileBackendGroup\guessMimeInternal().
|
abstract |
Check if a file exists at a storage path in the backend.
This returns false if only a directory exists at the path.
Callers that only care if a file is readily accessible can use non-strict comparisons on the result. If "does not exist" and "existence is unknown" must be distinguished, then strict comparisons to true/null should be used.
array | $params | Parameters include:
|
Reimplemented in FileBackendDBRepoWrapper, Wikimedia\FileBackend\FileBackendMultiWrite, and Wikimedia\FileBackend\FileBackendStore.
Referenced by CopyFileBackend\copyFileBatch(), and ForeignAPIRepo\getThumbUrlFromCache().
|
final |
Get the storage path for the given container for this backend.
string | $container | Container name |
Definition at line 1525 of file FileBackend.php.
References Wikimedia\FileBackend\FileBackend\getRootStoragePath().
|
abstract |
Get an iterator to list all directories under a storage directory.
If the directory is of the form "mwstore://backend/container", then all directories in the container will be listed. If the directory is of form "mwstore://backend/container/dir", then all directories directly under that directory will be listed. Results will be storage directories relative to the given directory.
Storage backends with eventual consistency might return stale data.
Failures during iteration can result in FileBackendError exceptions (since 1.22).
array | $params | Parameters include:
|
Reimplemented in FileBackendDBRepoWrapper, Wikimedia\FileBackend\FileBackendMultiWrite, and Wikimedia\FileBackend\FileBackendStore.
Referenced by Wikimedia\FileBackend\FileBackend\getTopDirectoryList().
|
final |
Get the domain identifier used for this backend (possibly empty).
Definition at line 287 of file FileBackend.php.
References Wikimedia\FileBackend\FileBackend\$domainId.
Referenced by FileBackendDBRepoWrapper\__construct(), CopyFileBackend\copyFileBatch(), CopyFileBackend\delFileBatch(), and Wikimedia\FileBackend\FileBackend\getWikiId().
Wikimedia\FileBackend\FileBackend::getFeatures | ( | ) |
Get the a bitfield of extra features supported by the backend medium.
Reimplemented in FileBackendDBRepoWrapper, Wikimedia\FileBackend\FileBackendMultiWrite, Wikimedia\FileBackend\FSFileBackend, Wikimedia\FileBackend\MemoryFileBackend, and Wikimedia\FileBackend\SwiftFileBackend.
Definition at line 327 of file FileBackend.php.
References Wikimedia\FileBackend\FileBackend\ATTR_UNICODE_PATHS.
Referenced by Wikimedia\FileBackend\FileBackend\hasFeatures().
|
final |
Get the contents of a file at a storage path in the backend.
This should be avoided for potentially large files.
array | $params | Parameters include:
|
Definition at line 1047 of file FileBackend.php.
References $params, and Wikimedia\FileBackend\FileBackend\getFileContentsMulti().
|
abstract |
Like getFileContents() except it takes an array of storage paths and returns an order preserved map of storage paths to their content.
array | $params | Parameters include:
|
Reimplemented in FileBackendDBRepoWrapper, Wikimedia\FileBackend\FileBackendMultiWrite, and Wikimedia\FileBackend\FileBackendStore.
Referenced by Wikimedia\FileBackend\FileBackend\getFileContents().
|
abstract |
Return an HTTP URL to a given file that requires no authentication to use.
The URL may be pre-authenticated (via some token in the URL) and temporary. This will return null if the backend cannot make an HTTP URL for the file.
This is useful for key/value stores when using scripts that seek around large files and those scripts (and the backend) support HTTP Range headers. Otherwise, one would need to use getLocalReference(), which involves loading the entire file on to local disk.
array | $params | Parameters include:
|
Reimplemented in FileBackendDBRepoWrapper, Wikimedia\FileBackend\FileBackendMultiWrite, Wikimedia\FileBackend\FileBackendStore, and Wikimedia\FileBackend\SwiftFileBackend.
|
abstract |
Get an iterator to list all stored files under a storage directory.
If the directory is of the form "mwstore://backend/container", then all files in the container will be listed. If the directory is of form "mwstore://backend/container/dir", then all files under that directory will be listed. Results will be storage paths relative to the given directory.
Storage backends with eventual consistency might return stale data.
Failures during iteration can result in FileBackendError exceptions (since 1.22).
array | $params | Parameters include:
|
Reimplemented in FileBackendDBRepoWrapper, Wikimedia\FileBackend\FileBackendMultiWrite, and Wikimedia\FileBackend\FileBackendStore.
Referenced by CopyFileBackend\getListingDiffRel(), and Wikimedia\FileBackend\FileBackend\getTopFileList().
|
abstract |
Get the properties of the content of the file at a storage path in the backend.
This gives the result of FSFile::getProps() on a local copy of the file.
array | $params | Parameters include:
|
Reimplemented in FileBackendDBRepoWrapper, Wikimedia\FileBackend\FileBackendMultiWrite, and Wikimedia\FileBackend\FileBackendStore.
|
abstract |
Get a SHA-1 hash of the content of the file at a storage path in the backend.
array | $params | Parameters include:
|
Reimplemented in FileBackendDBRepoWrapper, Wikimedia\FileBackend\FileBackendMultiWrite, and Wikimedia\FileBackend\FileBackendStore.
Referenced by CopyFileBackend\filesAreSame().
|
abstract |
Get the size (bytes) of a file at a storage path in the backend.
array | $params | Parameters include:
|
Reimplemented in FileBackendDBRepoWrapper, Wikimedia\FileBackend\FileBackendMultiWrite, and Wikimedia\FileBackend\FileBackendStore.
|
abstract |
Get quick information about a file at a storage path in the backend.
If the file does not exist, then this returns false. Otherwise, the result is an associative array that includes:
array | $params | Parameters include:
|
Reimplemented in FileBackendDBRepoWrapper, Wikimedia\FileBackend\FileBackendMultiWrite, and Wikimedia\FileBackend\FileBackendStore.
Referenced by CopyFileBackend\filesAreSame().
|
abstract |
Get the last-modified timestamp of the file at a storage path.
array | $params | Parameters include:
|
Reimplemented in FileBackendDBRepoWrapper, Wikimedia\FileBackend\FileBackendMultiWrite, and Wikimedia\FileBackend\FileBackendStore.
Referenced by ForeignAPIRepo\getThumbUrlFromCache().
|
abstract |
Get metadata about a file at a storage path in the backend.
If the file does not exist, then this returns false. Otherwise, the result is an associative array that includes:
Use FileBackend::hasFeatures() to check how well this is supported.
array | $params | $params include:
|
Reimplemented in FileBackendDBRepoWrapper, Wikimedia\FileBackend\FileBackendMultiWrite, and Wikimedia\FileBackend\FileBackendStore.
|
final |
Get a local copy on disk of the file at a storage path in the backend.
The temporary copy will have the same file extension as the source. Temporary files may be purged when the file object falls out of scope.
Multiple calls to this method for the same path will create new copies.
array | $params | Parameters include:
|
Definition at line 1219 of file FileBackend.php.
References $params, and Wikimedia\FileBackend\FileBackend\getLocalCopyMulti().
Referenced by Wikimedia\FileBackend\SwiftFileBackend\addMissingHashMetadata().
|
abstract |
Like getLocalCopy() except it takes an array of storage paths and yields an order preserved-map of storage paths to temporary local file copies.
Multiple calls to this method for the same path will create new copies.
array | $params | Parameters include:
|
Reimplemented in FileBackendDBRepoWrapper, Wikimedia\FileBackend\FileBackendMultiWrite, and Wikimedia\FileBackend\FileBackendStore.
Referenced by Wikimedia\FileBackend\FileBackend\getLocalCopy().
|
final |
Returns a file system file, identical in content to the file at a storage path.
The file returned is either:
Never modify the returned file since it might be the original, it might be shared among multiple callers of this method, or the backend might internally keep FSFile references for deferred operations.
array | $params | Parameters include:
|
Definition at line 1182 of file FileBackend.php.
References $params, and Wikimedia\FileBackend\FileBackend\getLocalReferenceMulti().
Referenced by Wikimedia\FileBackend\FileBackendStore\addShellboxInputFile(), CopyFileBackend\copyFileBatch(), Wikimedia\FileBackend\FileBackendStore\doConcatenate(), Wikimedia\FileBackend\FileBackendStore\doGetFileSha1Base36(), Wikimedia\FileBackend\FileBackendStore\doStreamFile(), and Wikimedia\FileBackend\FileBackendStore\getFileProps().
|
abstract |
Like getLocalReference() except it takes an array of storage paths and yields an order-preserved map of storage paths to temporary local file copies.
Never modify the returned files since they might be originals, they might be shared among multiple callers of this method, or the backend might internally keep FSFile references for deferred operations.
array | $params | Parameters include:
|
Reimplemented in FileBackendDBRepoWrapper, Wikimedia\FileBackend\FileBackendMultiWrite, and Wikimedia\FileBackend\FileBackendStore.
Referenced by CopyFileBackend\copyFileBatch(), and Wikimedia\FileBackend\FileBackend\getLocalReference().
|
final |
Get the unique backend name.
We may have multiple different backends of the same type. For example, we can have two Swift backends using different proxies.
Definition at line 277 of file FileBackend.php.
References Wikimedia\FileBackend\FileBackend\$name.
Referenced by FileBackendDBRepoWrapper\__construct(), FileOpPerfTest\doPerfTest(), and Wikimedia\FileBackend\FileBackendMultiWrite\unsubstPaths().
|
final |
Get an explanatory message if this backend is read-only.
Definition at line 316 of file FileBackend.php.
|
final |
Get the root storage path of this backend.
All container paths are "subdirectories" of this path.
Definition at line 1514 of file FileBackend.php.
Referenced by CopyFileBackend\copyFileBatch(), CopyFileBackend\delFileBatch(), Wikimedia\FileBackend\FileBackend\getContainerStoragePath(), and CopyFileBackend\getListingDiffRel().
|
final |
Lock the files at the given storage paths in the backend.
This will either lock all the files or none (on failure). On failure, the StatusValue object will be updated with errors.
Once the return value goes out scope, the locks will be released and the StatusValue updated. Unlock fatals will not change the StatusValue "OK" value.
array | $paths | List of storage paths or map of lock types to path lists |
int | string | $type | LockManager::LOCK_* constant or "mixed" |
StatusValue | $status | StatusValue to update on lock/unlock |
int | $timeout | Timeout in seconds (0 means non-blocking) (since 1.24) |
Definition at line 1475 of file FileBackend.php.
References ScopedLock\factory().
Referenced by Wikimedia\FileBackend\SwiftFileBackend\addMissingHashMetadata(), Wikimedia\FileBackend\FileBackendStore\concatenate(), Wikimedia\FileBackend\FileBackendStore\doClean(), Wikimedia\FileBackend\FileBackendStore\doOperationsInternal(), Wikimedia\FileBackend\FileBackendMultiWrite\getScopedLocksForOps(), and Wikimedia\FileBackend\FileBackendStore\getScopedLocksForOps().
|
abstract |
Get an array of scoped locks needed for a batch of file operations.
Normally, FileBackend::doOperations() handles locking, unless the 'nonLocking' param is passed in. This function is useful if you want the files to be locked for a broader scope than just when the files are changing. For example, if you need to update DB metadata, you may want to keep the files locked until finished.
array | $ops | List of file operations to FileBackend::doOperations() |
StatusValue | $status | StatusValue to update on lock/unlock |
Reimplemented in FileBackendDBRepoWrapper, Wikimedia\FileBackend\FileBackendMultiWrite, and Wikimedia\FileBackend\FileBackendStore.
Wikimedia\FileBackend\FileBackend::getStreamerOptions | ( | ) |
Return options for use with HTTPFileStreamer.
Definition at line 1775 of file FileBackend.php.
|
final |
Same as FileBackend::getDirectoryList() except only lists directories that are immediately under the given directory.
Storage backends with eventual consistency might return stale data.
Failures during iteration can result in FileBackendError exceptions (since 1.22).
array | $params | Parameters include:
|
Definition at line 1346 of file FileBackend.php.
References Wikimedia\FileBackend\FileBackend\getDirectoryList().
Referenced by Wikimedia\FileBackend\FileBackendStore\doClean().
|
final |
Same as FileBackend::getFileList() except only lists files that are immediately under the given directory.
Storage backends with eventual consistency might return stale data.
Failures during iteration can result in FileBackendError exceptions (since 1.22).
array | $params | Parameters include:
|
Definition at line 1389 of file FileBackend.php.
References Wikimedia\FileBackend\FileBackend\getFileList().
|
final |
Alias to getDomainId()
Definition at line 298 of file FileBackend.php.
References Wikimedia\FileBackend\FileBackend\getDomainId().
|
final |
Check if the backend medium supports a field of extra features.
int | $bitfield | Bitfield of FileBackend::ATTR_* flags |
Definition at line 338 of file FileBackend.php.
References Wikimedia\FileBackend\FileBackend\getFeatures().
|
protected |
Definition at line 256 of file FileBackend.php.
References $header.
Referenced by Wikimedia\FileBackend\SwiftFileBackend\doStreamFile().
|
staticfinal |
Check if a relative path has no directory traversals.
string | $path |
Definition at line 1654 of file FileBackend.php.
References $path.
|
final |
Check if this backend is read-only.
Definition at line 307 of file FileBackend.php.
Referenced by Wikimedia\FileBackend\FileBackend\clean(), Wikimedia\FileBackend\FileBackend\doOperations(), Wikimedia\FileBackend\FileBackend\doQuickOperations(), Wikimedia\FileBackend\FileBackend\prepare(), Wikimedia\FileBackend\FileBackend\publish(), and Wikimedia\FileBackend\FileBackend\secure().
|
staticfinal |
Check if a given path is a "mwstore://" path.
This does not do any further validation or any existence checks.
string | null | $path |
Definition at line 1558 of file FileBackend.php.
References $path.
Referenced by Wikimedia\FileBackend\FileOps\FileOp\normalizeIfValidStoragePath(), and MediaWiki\Output\StreamFile\stream().
|
final |
Lock the files at the given storage paths in the backend.
This will either lock all the files or none (on failure).
Callers should consider using getScopedFileLocks() instead.
array | $paths | Storage paths |
int | $type | LockManager::LOCK_* constant |
int | $timeout | Timeout in seconds (0 means non-blocking) (since 1.24) |
Definition at line 1440 of file FileBackend.php.
References Wikimedia\FileBackend\FileBackend\wrapStatus().
|
staticfinal |
Build a Content-Disposition header value per RFC 6266.
string | $type | One of (attachment, inline) |
string | $filename | Suggested file name (should not contain slashes) |
Definition at line 1666 of file FileBackend.php.
|
final |
Performs a single move operation.
This sets $params['op'] to 'move' and passes it to doOperation().
array | $params | Operation parameters |
array | $opts | Operation options |
Definition at line 585 of file FileBackend.php.
References Wikimedia\FileBackend\FileBackend\doOperation().
|
finalprotected |
Yields the result of the status wrapper callback on either:
null | string | $message | Message key @phpcs:ignore Generic.Files.LineLength |
MessageParam|MessageSpecifier|string|int|float|list<MessageParam|MessageSpecifier|string|int|float> | ...$params See Message::params() |
Definition at line 1727 of file FileBackend.php.
References $params, and Wikimedia\FileBackend\FileBackend\wrapStatus().
Referenced by Wikimedia\FileBackend\FileBackendMultiWrite\accessibilityCheck(), Wikimedia\FileBackend\SwiftFileBackend\addMissingHashMetadata(), Wikimedia\FileBackend\FileBackendStore\addShellboxInputFile(), Wikimedia\FileBackend\FSFileBackend\addShellboxInputFile(), Wikimedia\FileBackend\SwiftFileBackend\addShellboxInputFile(), Wikimedia\FileBackend\FileBackend\clean(), Wikimedia\FileBackend\FileBackendMultiWrite\concatenate(), Wikimedia\FileBackend\FileBackendStore\concatenate(), Wikimedia\FileBackend\FileBackendMultiWrite\consistencyCheck(), Wikimedia\FileBackend\SwiftFileBackend\createContainer(), Wikimedia\FileBackend\FileBackendStore\createInternal(), Wikimedia\FileBackend\SwiftFileBackend\deleteContainer(), Wikimedia\FileBackend\FileBackendStore\describeInternal(), Wikimedia\FileBackend\FileBackendStore\doClean(), Wikimedia\FileBackend\FileBackendStore\doCleanInternal(), Wikimedia\FileBackend\SwiftFileBackend\doCleanInternal(), Wikimedia\FileBackend\FSFileBackend\doCleanInternal(), Wikimedia\FileBackend\FileBackendStore\doConcatenate(), Wikimedia\FileBackend\FSFileBackend\doCopyInternal(), Wikimedia\FileBackend\MemoryFileBackend\doCopyInternal(), Wikimedia\FileBackend\SwiftFileBackend\doCopyInternal(), Wikimedia\FileBackend\FSFileBackend\doCreateInternal(), Wikimedia\FileBackend\MemoryFileBackend\doCreateInternal(), Wikimedia\FileBackend\SwiftFileBackend\doCreateInternal(), Wikimedia\FileBackend\FSFileBackend\doDeleteInternal(), Wikimedia\FileBackend\MemoryFileBackend\doDeleteInternal(), Wikimedia\FileBackend\SwiftFileBackend\doDeleteInternal(), Wikimedia\FileBackend\FileBackendStore\doDescribeInternal(), Wikimedia\FileBackend\SwiftFileBackend\doDescribeInternal(), Wikimedia\FileBackend\FileBackendMultiWrite\doDirectoryOp(), Wikimedia\FileBackend\FSFileBackend\doExecuteOpHandlesInternal(), Wikimedia\FileBackend\SwiftFileBackend\doExecuteOpHandlesInternal(), Wikimedia\FileBackend\FSFileBackend\doMoveInternal(), Wikimedia\FileBackend\MemoryFileBackend\doMoveInternal(), Wikimedia\FileBackend\SwiftFileBackend\doMoveInternal(), Wikimedia\FileBackend\FileBackend\doOperations(), Wikimedia\FileBackend\FileBackendMultiWrite\doOperationsInternal(), Wikimedia\FileBackend\FileBackendStore\doOperationsInternal(), Wikimedia\FileBackend\FileBackendStore\doPrepare(), Wikimedia\FileBackend\FileBackendStore\doPrepareInternal(), Wikimedia\FileBackend\SwiftFileBackend\doPrepareInternal(), Wikimedia\FileBackend\FSFileBackend\doPrepareInternal(), Wikimedia\FileBackend\FileBackendStore\doPublish(), Wikimedia\FileBackend\FileBackendStore\doPublishInternal(), Wikimedia\FileBackend\SwiftFileBackend\doPublishInternal(), Wikimedia\FileBackend\FSFileBackend\doPublishInternal(), Wikimedia\FileBackend\FileBackend\doQuickOperations(), Wikimedia\FileBackend\FileBackendMultiWrite\doQuickOperationsInternal(), Wikimedia\FileBackend\FileBackendStore\doQuickOperationsInternal(), Wikimedia\FileBackend\FileBackendStore\doSecure(), Wikimedia\FileBackend\FileBackendStore\doSecureInternal(), Wikimedia\FileBackend\SwiftFileBackend\doSecureInternal(), Wikimedia\FileBackend\FSFileBackend\doSecureInternal(), Wikimedia\FileBackend\FSFileBackend\doStoreInternal(), Wikimedia\FileBackend\MemoryFileBackend\doStoreInternal(), Wikimedia\FileBackend\SwiftFileBackend\doStoreInternal(), Wikimedia\FileBackend\FileBackendStore\doStreamFile(), Wikimedia\FileBackend\SwiftFileBackend\doStreamFile(), Wikimedia\FileBackend\FileBackendStore\nullInternal(), Wikimedia\FileBackend\FileBackend\prepare(), Wikimedia\FileBackend\FileBackend\publish(), Wikimedia\FileBackend\FileBackendMultiWrite\resyncFiles(), Wikimedia\FileBackend\FileBackend\secure(), Wikimedia\FileBackend\SwiftFileBackend\setContainerAccess(), Wikimedia\FileBackend\FileBackendStore\storeInternal(), and Wikimedia\FileBackend\FileBackendStore\streamFile().
|
staticfinalprotected |
Validate and normalize a relative storage path.
Null is returned if the path involves directory traversal. Traversal is insecure for FS backends and broken for others.
This uses the same traversal protection as Title::secureAndSplit().
string | $path | Storage path relative to a container |
Definition at line 1692 of file FileBackend.php.
References $path.
Referenced by Wikimedia\FileBackend\FileBackend\normalizeStoragePath(), and Wikimedia\FileBackend\FileBackendStore\resolveStoragePath().
|
staticfinal |
Normalize a storage path by cleaning up directory separators.
Returns null if the path is not of the format of a valid storage path.
string | $storagePath |
Definition at line 1593 of file FileBackend.php.
References Wikimedia\FileBackend\FileBackend\normalizeContainerPath(), and Wikimedia\FileBackend\FileBackend\splitStoragePath().
Referenced by Wikimedia\FileBackend\FileBackendStore\deleteFileCache(), Wikimedia\FileBackend\FileBackendStore\getFileSha1Base36(), Wikimedia\FileBackend\FileBackendStore\getFileStat(), Wikimedia\FileBackend\FileBackendStore\getFileXAttributes(), Wikimedia\FileBackend\FileBackendStore\getLocalReferenceMulti(), Wikimedia\FileBackend\FileOps\FileOp\normalizeIfValidStoragePath(), Wikimedia\FileBackend\FileBackendStore\primeFileCache(), and Wikimedia\FileBackend\FileBackendStore\setFileCache().
|
staticfinal |
Get the parent storage directory of a storage path.
This returns a path like "mwstore://backend/container", "mwstore://backend/container/...", or null if there is no parent.
string | $storagePath |
Definition at line 1615 of file FileBackend.php.
References Wikimedia\FileBackend\FileBackend\splitStoragePath().
|
abstract |
Preload persistent file stat cache and property cache into in-process cache.
This should be used when stat calls will be made on a known list of a many files.
array | $paths | Storage paths |
Reimplemented in FileBackendDBRepoWrapper, Wikimedia\FileBackend\FileBackendMultiWrite, and Wikimedia\FileBackend\FileBackendStore.
|
abstract |
Preload file stat information (concurrently if possible) into in-process cache.
This should be used when stat calls will be made on a known list of a many files. This does not make use of the persistent file stat cache.
array | $params | Parameters include:
|
Reimplemented in FileBackendDBRepoWrapper, Wikimedia\FileBackend\FileBackendMultiWrite, and Wikimedia\FileBackend\FileBackendStore.
|
final |
Prepare a storage directory for usage.
This will create any required containers and parent directories. Backends using key/value stores only need to create the container.
The 'noAccess' and 'noListing' parameters works the same as in secure(), except they are only applied if the directory/container had to be created. These flags should always be set for directories that have private files. However, setting them is not guaranteed to actually do anything. Additional server configuration may be needed to achieve the desired effect.
array | $params | Parameters include:
|
Definition at line 897 of file FileBackend.php.
References $params, Wikimedia\FileBackend\FileBackend\doPrepare(), Wikimedia\FileBackend\FileBackend\isReadOnly(), and Wikimedia\FileBackend\FileBackend\newStatus().
Referenced by CopyFileBackend\copyFileBatch(), FileOpPerfTest\doPerfTest(), and ForeignAPIRepo\getThumbUrlFromCache().
|
final |
Remove measures to block web access to a storage directory and the container it belongs to.
FS backends might remove .htaccess files whereas key/value store backends might grant container access to the storage user representing end-users in web requests. This essentially can undo the result of secure() calls.
This is not guaranteed to actually make files or listings publicly viewable. Additional server configuration may be needed to achieve the desired effect.
array | $params | Parameters include:
|
Definition at line 963 of file FileBackend.php.
References $params, Wikimedia\FileBackend\FileBackend\doPublish(), Wikimedia\FileBackend\FileBackend\isReadOnly(), and Wikimedia\FileBackend\FileBackend\newStatus().
|
final |
Performs a single quick copy operation.
This sets $params['op'] to 'copy' and passes it to doQuickOperation().
array | $params | Operation parameters |
array | $opts | Operation options |
Definition at line 816 of file FileBackend.php.
References Wikimedia\FileBackend\FileBackend\doQuickOperation().
|
final |
Performs a single quick create operation.
This sets $params['op'] to 'create' and passes it to doQuickOperation().
array | $params | Operation parameters |
array | $opts | Operation options |
Definition at line 786 of file FileBackend.php.
References Wikimedia\FileBackend\FileBackend\doQuickOperation().
Referenced by ForeignAPIRepo\getThumbUrlFromCache().
|
final |
Performs a single quick delete operation.
This sets $params['op'] to 'delete' and passes it to doQuickOperation().
array | $params | Operation parameters |
array | $opts | Operation options |
Definition at line 846 of file FileBackend.php.
References Wikimedia\FileBackend\FileBackend\doQuickOperation().
|
final |
Performs a single quick describe operation.
This sets $params['op'] to 'describe' and passes it to doQuickOperation().
array | $params | Operation parameters |
array | $opts | Operation options |
Definition at line 861 of file FileBackend.php.
References Wikimedia\FileBackend\FileBackend\doQuickOperation().
|
final |
Performs a single quick move operation.
This sets $params['op'] to 'move' and passes it to doQuickOperation().
array | $params | Operation parameters |
array | $opts | Operation options |
Definition at line 831 of file FileBackend.php.
References Wikimedia\FileBackend\FileBackend\doQuickOperation().
|
final |
Performs a single quick store operation.
This sets $params['op'] to 'store' and passes it to doQuickOperation().
array | $params | Operation parameters |
array | $opts | Operation options |
Definition at line 801 of file FileBackend.php.
References Wikimedia\FileBackend\FileBackend\doQuickOperation().
|
protected |
Definition at line 260 of file FileBackend.php.
Referenced by Wikimedia\FileBackend\SwiftFileBackend\doStreamFile().
|
static |
Default behavior of resetOutputBuffer().
Definition at line 1758 of file FileBackend.php.
|
protected |
Convert FSFile 'src' paths to string paths (with an 'srcRef' field set to the FSFile)
The 'srcRef' field keeps any TempFSFile objects in scope for the backend to have it around as long it needs (which may vary greatly depending on configuration)
array | $ops | File operation batch for FileBaclend::doOperations() |
Definition at line 1538 of file FileBackend.php.
Referenced by Wikimedia\FileBackend\FileBackend\doOperations(), and Wikimedia\FileBackend\FileBackend\doQuickOperations().
|
protected |
string | $section |
Definition at line 1749 of file FileBackend.php.
References Wikimedia\FileBackend\FileBackend\$profiler.
Referenced by Wikimedia\FileBackend\SwiftFileBackend\addMissingHashMetadata(), Wikimedia\FileBackend\FileBackendStore\concatenate(), Wikimedia\FileBackend\FileBackendStore\copyInternal(), Wikimedia\FileBackend\FileBackendStore\createInternal(), Wikimedia\FileBackend\FileBackendStore\deleteInternal(), Wikimedia\FileBackend\FileBackendStore\describeInternal(), Wikimedia\FileBackend\FileBackendStore\doClean(), Wikimedia\FileBackend\FileBackendStore\doOperationsInternal(), Wikimedia\FileBackend\FileBackendStore\doPrepare(), Wikimedia\FileBackend\FileBackendStore\doPublish(), Wikimedia\FileBackend\FileBackendStore\doQuickOperationsInternal(), Wikimedia\FileBackend\FileBackendStore\doSecure(), Wikimedia\FileBackend\FileBackendStore\executeOpHandlesInternal(), Wikimedia\FileBackend\FileBackendStore\fileExists(), Wikimedia\FileBackend\SwiftFileBackend\getContainerStat(), Wikimedia\FileBackend\SwiftFileBackend\getDirListPageInternal(), Wikimedia\FileBackend\FileBackendStore\getFileContentsMulti(), Wikimedia\FileBackend\SwiftFileBackend\getFileListPageInternal(), Wikimedia\FileBackend\FileBackendStore\getFileProps(), Wikimedia\FileBackend\FileBackendStore\getFileSha1Base36(), Wikimedia\FileBackend\FileBackendStore\getFileSize(), Wikimedia\FileBackend\FileBackendStore\getFileStat(), Wikimedia\FileBackend\FileBackendStore\getFileTimestamp(), Wikimedia\FileBackend\FileBackendStore\getFileXAttributes(), Wikimedia\FileBackend\FileBackendStore\getLocalCopyMulti(), Wikimedia\FileBackend\FileBackendStore\getLocalReferenceMulti(), Wikimedia\FileBackend\FileBackendStore\moveInternal(), Wikimedia\FileBackend\FileBackendStore\preloadFileStat(), Wikimedia\FileBackend\FileBackendStore\primeContainerCache(), Wikimedia\FileBackend\FileBackendStore\primeFileCache(), Wikimedia\FileBackend\FileBackendStore\storeInternal(), and Wikimedia\FileBackend\FileBackendStore\streamFile().
|
final |
Take measures to block web access to a storage directory and the container it belongs to.
FS backends might add .htaccess files whereas key/value store backends might revoke container access to the storage user representing end-users in web requests.
This is not guaranteed to actually make files or listings publicly hidden. Additional server configuration may be needed to achieve the desired effect.
array | $params | Parameters include:
|
Definition at line 929 of file FileBackend.php.
References $params, Wikimedia\FileBackend\FileBackend\doSecure(), Wikimedia\FileBackend\FileBackend\isReadOnly(), and Wikimedia\FileBackend\FileBackend\newStatus().
Wikimedia\FileBackend\FileBackend::setLogger | ( | LoggerInterface | $logger | ) |
Reimplemented in Wikimedia\FileBackend\SwiftFileBackend.
Definition at line 265 of file FileBackend.php.
References Wikimedia\FileBackend\FileBackend\$logger.
|
staticfinal |
Split a storage path into a backend name, a container name, and a relative file path.
The relative path may be the empty string. This does not do any path normalization or traversal checks.
string | $storagePath |
Definition at line 1570 of file FileBackend.php.
Referenced by MediaWiki\FileBackend\FileBackendGroup\backendFromPath(), Wikimedia\FileBackend\FileBackendStore\directoryExists(), Wikimedia\FileBackend\FileBackendStore\doClean(), Wikimedia\FileBackend\FSFileBackend\doCleanInternal(), Wikimedia\FileBackend\FSFileBackend\doDirectoryExists(), Wikimedia\FileBackend\FileBackendStore\doPrepare(), Wikimedia\FileBackend\FSFileBackend\doPrepareInternal(), Wikimedia\FileBackend\FileBackendStore\doPublish(), Wikimedia\FileBackend\FSFileBackend\doPublishInternal(), Wikimedia\FileBackend\FileBackendStore\doSecure(), Wikimedia\FileBackend\FSFileBackend\doSecureInternal(), Wikimedia\FileBackend\FileBackendStore\getDirectoryList(), Wikimedia\FileBackend\FSFileBackend\getDirectoryListInternal(), Wikimedia\FileBackend\FileBackendStore\getFileList(), Wikimedia\FileBackend\FSFileBackend\getFileListInternal(), Wikimedia\FileBackend\FileBackend\normalizeStoragePath(), Wikimedia\FileBackend\FileBackend\parentStoragePath(), Wikimedia\FileBackend\FileBackendStore\resolveStoragePath(), and Wikimedia\FileBackend\FSFileBackend\resolveToFSPath().
|
final |
Performs a single store operation.
This sets $params['op'] to 'store' and passes it to doOperation().
array | $params | Operation parameters |
array | $opts | Operation options |
Definition at line 557 of file FileBackend.php.
References Wikimedia\FileBackend\FileBackend\doOperation().
|
abstract |
Stream the content of the file at a storage path in the backend.
If the file does not exists, an HTTP 404 error will be given. Appropriate HTTP headers (Status, Content-Type, Content-Length) will be sent if streaming began, while none will be sent otherwise. Implementations should flush the output buffer before sending data.
array | $params | Parameters include:
|
Reimplemented in FileBackendDBRepoWrapper, Wikimedia\FileBackend\FileBackendMultiWrite, and Wikimedia\FileBackend\FileBackendStore.
|
final |
Unlock the files at the given storage paths in the backend.
array | $paths | Storage paths |
int | $type | LockManager::LOCK_* constant |
Definition at line 1453 of file FileBackend.php.
References Wikimedia\FileBackend\FileBackend\wrapStatus().
|
finalprotected |
StatusValue | $sv |
Definition at line 1741 of file FileBackend.php.
Referenced by Wikimedia\FileBackend\FileBackend\lockFiles(), Wikimedia\FileBackend\FileBackend\newStatus(), and Wikimedia\FileBackend\FileBackend\unlockFiles().
|
protected |
How many operations can be done in parallel.
Definition at line 126 of file FileBackend.php.
Referenced by Wikimedia\FileBackend\FileBackendStore\doQuickOperationsInternal(), and Wikimedia\FileBackend\FileBackendStore\setConcurrencyFlags().
|
protected |
Unique domain name.
Definition at line 117 of file FileBackend.php.
Referenced by Wikimedia\FileBackend\FileBackendMultiWrite\__construct(), and Wikimedia\FileBackend\FileBackend\getDomainId().
|
protected |
Definition at line 132 of file FileBackend.php.
|
protected |
Definition at line 134 of file FileBackend.php.
Referenced by Wikimedia\FileBackend\FileBackendMultiWrite\__construct(), Wikimedia\FileBackend\FileBackend\setLogger(), and Wikimedia\FileBackend\SwiftFileBackend\setLogger().
|
protected |
Unique backend name.
Definition at line 114 of file FileBackend.php.
Referenced by Wikimedia\FileBackend\FileBackendMultiWrite\__construct(), Wikimedia\FileBackend\SwiftFileBackend\doDescribeInternal(), Wikimedia\FileBackend\SwiftFileBackend\extractMetadataHeaders(), Wikimedia\FileBackend\SwiftFileBackend\extractMutableContentHeaders(), FileBackendDBRepoWrapper\getBackendPaths(), Wikimedia\FileBackend\SwiftFileBackend\getMetadataFromHeaders(), Wikimedia\FileBackend\FileBackend\getName(), Wikimedia\FileBackend\FileBackendStore\normalizeXAttributes(), and Wikimedia\FileBackend\FileBackendStore\sanitizeOpHeaders().
|
protected |
When to do operations in parallel.
Definition at line 123 of file FileBackend.php.
|
protected |
Definition at line 136 of file FileBackend.php.
Referenced by Wikimedia\FileBackend\FileBackend\scopedProfileSection().
|
protected |
Read-only explanation message.
Definition at line 120 of file FileBackend.php.
|
protected |
Definition at line 145 of file FileBackend.php.
|
protected |
Option map for use with HTTPFileStreamer.
Definition at line 143 of file FileBackend.php.
|
protected |
Definition at line 129 of file FileBackend.php.
const Wikimedia\FileBackend\FileBackend::ATTR_HEADERS = 1 |
Bitfield flags for supported features.
Definition at line 148 of file FileBackend.php.
const Wikimedia\FileBackend\FileBackend::ATTR_METADATA = 2 |
Definition at line 149 of file FileBackend.php.
const Wikimedia\FileBackend\FileBackend::ATTR_UNICODE_PATHS = 4 |
Definition at line 150 of file FileBackend.php.
Referenced by Wikimedia\FileBackend\FileBackend\getFeatures(), Wikimedia\FileBackend\FSFileBackend\getFeatures(), and Wikimedia\FileBackend\MemoryFileBackend\getFeatures().