MediaWiki
1.34.4
|
Base class for all backends using particular storage medium. More...
Public Member Functions | |
__construct (array $config) | |
clearCache (array $paths=null) | |
Invalidate any in-process file stat and property cache. More... | |
concatenate (array $params) | |
Concatenate a list of storage files into a single file system file. More... | |
copyInternal (array $params) | |
Copy a file from one storage path to another in the backend. More... | |
createInternal (array $params) | |
Create a file in the backend with the given contents. More... | |
deleteInternal (array $params) | |
Delete a file at the storage path. More... | |
describeInternal (array $params) | |
Alter metadata for a file at the storage path. More... | |
directoryExists (array $params) | |
Check if a directory exists at a given storage path. More... | |
executeOpHandlesInternal (array $fileOpHandles) | |
Execute a list of FileBackendStoreOpHandle handles in parallel. More... | |
fileExists (array $params) | |
Check if a file exists at a storage path in the backend. More... | |
getDirectoryList (array $params) | |
Get an iterator to list all directories under a storage directory. More... | |
getDirectoryListInternal ( $container, $dir, array $params) | |
Do not call this function from places outside FileBackend. More... | |
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. More... | |
getFileHttpUrl (array $params) | |
getFileList (array $params) | |
Get an iterator to list all stored files under a storage directory. More... | |
getFileListInternal ( $container, $dir, array $params) | |
Do not call this function from places outside FileBackend. More... | |
getFileProps (array $params) | |
Get the properties of the content of the file at a storage path in the backend. More... | |
getFileSha1Base36 (array $params) | |
Get a SHA-1 hash of the content of the file at a storage path in the backend. More... | |
getFileSize (array $params) | |
Get the size (bytes) of a file at a storage path in the backend. More... | |
getFileStat (array $params) | |
Get quick information about a file at a storage path in the backend. More... | |
getFileTimestamp (array $params) | |
Get the last-modified timestamp of the file at a storage path. More... | |
getFileXAttributes (array $params) | |
Get metadata about a file at a storage path in the backend. More... | |
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. More... | |
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. More... | |
getOperationsInternal (array $ops) | |
Return a list of FileOp objects from a list of operations. More... | |
getPathsToLockForOpsInternal (array $performOps) | |
Get a list of storage paths to lock for a list of operations Returns an array with LockManager::LOCK_UW (shared locks) and LockManager::LOCK_EX (exclusive locks) keys, each corresponding to a list of storage paths to be locked. More... | |
getScopedLocksForOps (array $ops, StatusValue $status) | |
Get an array of scoped locks needed for a batch of file operations. More... | |
isPathUsableInternal ( $storagePath) | |
Check if a file can be created or changed at a given storage path in the backend. More... | |
isSingleShardPathInternal ( $storagePath) | |
Check if a storage path maps to a single shard. More... | |
maxFileSizeInternal () | |
Get the maximum allowable file size given backend medium restrictions and basic performance constraints. More... | |
moveInternal (array $params) | |
Move a file from one storage path to another in the backend. More... | |
nullInternal (array $params) | |
No-op file operation that does nothing. More... | |
preloadCache (array $paths) | |
Preload persistent file stat cache and property cache into in-process cache. More... | |
preloadFileStat (array $params) | |
Preload file stat information (concurrently if possible) into in-process cache. More... | |
storeInternal (array $params) | |
Store a file into the backend from a file on disk. More... | |
streamFile (array $params) | |
Stream the content of the file at a storage path in the backend. More... | |
Public Member Functions inherited from FileBackend | |
clean (array $params) | |
Delete a storage directory if it is empty. More... | |
copy (array $params, array $opts=[]) | |
Performs a single copy operation. More... | |
create (array $params, array $opts=[]) | |
Performs a single create operation. More... | |
delete (array $params, array $opts=[]) | |
Performs a single delete operation. More... | |
describe (array $params, array $opts=[]) | |
Performs a single describe operation. More... | |
doOperation (array $op, array $opts=[]) | |
Same as doOperations() except it takes a single operation. More... | |
doOperations (array $ops, array $opts=[]) | |
This is the main entry point into the backend for write operations. More... | |
doQuickOperation (array $op) | |
Same as doQuickOperations() except it takes a single operation. More... | |
doQuickOperations (array $ops, array $opts=[]) | |
Perform a set of independent file operations on some files. More... | |
getContainerStoragePath ( $container) | |
Get the storage path for the given container for this backend. More... | |
getDomainId () | |
Get the domain identifier used for this backend (possibly empty). More... | |
getFeatures () | |
Get the a bitfield of extra features supported by the backend medium. More... | |
getFileContents (array $params) | |
Get the contents of a file at a storage path in the backend. More... | |
getJournal () | |
Get the file journal object for this backend. More... | |
getLocalCopy (array $params) | |
Get a local copy on disk of the file at a storage path in the backend. More... | |
getLocalReference (array $params) | |
Returns a file system file, identical in content to the file at a storage path. More... | |
getName () | |
Get the unique backend name. More... | |
getReadOnlyReason () | |
Get an explanatory message if this backend is read-only. More... | |
getRootStoragePath () | |
Get the root storage path of this backend. More... | |
getScopedFileLocks (array $paths, $type, StatusValue $status, $timeout=0) | |
Lock the files at the given storage paths in the backend. More... | |
getTopDirectoryList (array $params) | |
Same as FileBackend::getDirectoryList() except only lists directories that are immediately under the given directory. More... | |
getTopFileList (array $params) | |
Same as FileBackend::getFileList() except only lists files that are immediately under the given directory. More... | |
getWikiId () | |
Alias to getDomainId() More... | |
hasFeatures ( $bitfield) | |
Check if the backend medium supports a field of extra features. More... | |
isReadOnly () | |
Check if this backend is read-only. More... | |
lockFiles (array $paths, $type, $timeout=0) | |
Lock the files at the given storage paths in the backend. More... | |
move (array $params, array $opts=[]) | |
Performs a single move operation. More... | |
prepare (array $params) | |
Prepare a storage directory for usage. More... | |
publish (array $params) | |
Remove measures to block web access to a storage directory and the container it belongs to. More... | |
quickCopy (array $params) | |
Performs a single quick copy operation. More... | |
quickCreate (array $params) | |
Performs a single quick create operation. More... | |
quickDelete (array $params) | |
Performs a single quick delete operation. More... | |
quickDescribe (array $params) | |
Performs a single quick describe operation. More... | |
quickMove (array $params) | |
Performs a single quick move operation. More... | |
quickStore (array $params) | |
Performs a single quick store operation. More... | |
secure (array $params) | |
Take measures to block web access to a storage directory and the container it belongs to. More... | |
setLogger (LoggerInterface $logger) | |
store (array $params, array $opts=[]) | |
Performs a single store operation. More... | |
unlockFiles (array $paths, $type) | |
Unlock the files at the given storage paths in the backend. More... | |
Public Attributes | |
const | CACHE_CHEAP_SIZE = 500 |
const | CACHE_EXPENSIVE_SIZE = 5 |
const | CACHE_TTL = 10 |
Public Attributes inherited from FileBackend | |
const | ATTR_HEADERS = 1 |
Bitfield flags for supported features. More... | |
const | ATTR_METADATA = 2 |
const | ATTR_UNICODE_PATHS = 4 |
Protected Member Functions | |
deleteContainerCache ( $container) | |
Delete the cached info for a container. More... | |
deleteFileCache ( $path) | |
Delete the cached stat info for a file path. More... | |
directoriesAreVirtual () | |
Is this a key/value store where directories are just virtual? Virtual directories exists in so much as files exists that are prefixed with the directory path followed by a forward slash. More... | |
doClean (array $params) | |
doCleanInternal ( $container, $dir, array $params) | |
doClearCache (array $paths=null) | |
Clears any additional stat caches for storage paths. More... | |
doConcatenate (array $params) | |
doCopyInternal (array $params) | |
doCreateInternal (array $params) | |
doDeleteInternal (array $params) | |
doDescribeInternal (array $params) | |
doDirectoryExists ( $container, $dir, array $params) | |
doExecuteOpHandlesInternal (array $fileOpHandles) | |
doGetFileContentsMulti (array $params) | |
doGetFileSha1Base36 (array $params) | |
doGetFileStat (array $params) | |
doGetFileStatMulti (array $params) | |
Get file stat information (concurrently if possible) for several files. More... | |
doGetFileXAttributes (array $params) | |
doGetLocalCopyMulti (array $params) | |
doGetLocalReferenceMulti (array $params) | |
doMoveInternal (array $params) | |
doOperationsInternal (array $ops, array $opts) | |
doPrepare (array $params) | |
doPrepareInternal ( $container, $dir, array $params) | |
doPrimeContainerCache (array $containerInfo) | |
Fill the backend-specific process cache given an array of resolved container names and their corresponding cached info. More... | |
doPublish (array $params) | |
doPublishInternal ( $container, $dir, array $params) | |
doQuickOperationsInternal (array $ops) | |
doSecure (array $params) | |
doSecureInternal ( $container, $dir, array $params) | |
doStoreInternal (array $params) | |
doStreamFile (array $params) | |
fullContainerName ( $container) | |
Get the full container name, including the domain ID prefix. More... | |
getContainerHashLevels ( $container) | |
Get the sharding config for a container. More... | |
getContainerShard ( $container, $relPath) | |
Get the container name shard suffix for a given path. More... | |
getContainerSuffixes ( $container) | |
Get a list of full container shard suffixes for a container. More... | |
getContentType ( $storagePath, $content, $fsPath) | |
Get the content type to use in HEAD/GET requests for a file. More... | |
ingestFreshFileStats (array $stats, $latest) | |
Ingest file stat entries that just came from querying the backend (not cache) More... | |
primeContainerCache (array $items) | |
Do a batch lookup from cache for container stats for all containers used in a list of container names or storage paths objects. More... | |
primeFileCache (array $items) | |
Do a batch lookup from cache for file stats for all paths used in a list of storage paths or FileOp objects. More... | |
resolveContainerName ( $container) | |
Resolve a container name, checking if it's allowed by the backend. More... | |
resolveContainerPath ( $container, $relStoragePath) | |
Resolve a relative storage path, checking if it's allowed by the backend. More... | |
resolveStoragePath ( $storagePath) | |
Splits a storage path into an internal container name, an internal relative file name, and a container shard suffix. More... | |
resolveStoragePathReal ( $storagePath) | |
Like resolveStoragePath() except null values are returned if the container is sharded and the shard could not be determined or if the path ends with '/'. More... | |
sanitizeOpHeaders (array $op) | |
Normalize and filter HTTP headers from a file operation. More... | |
setConcurrencyFlags (array $opts) | |
Set the 'concurrency' option from a list of operation options. More... | |
setContainerCache ( $container, array $val) | |
Set the cached info for a container. More... | |
setFileCache ( $path, array $val) | |
Set the cached stat info for a file path. More... | |
Protected Member Functions inherited from FileBackend | |
newStatus (... $args) | |
Yields the result of the status wrapper callback on either: More... | |
resetOutputBuffer () | |
resolveFSFileObjects (array $ops) | |
Convert FSFile 'src' paths to string paths (with an 'srcRef' field set to the FSFile) More... | |
scopedProfileSection ( $section) | |
wrapStatus (StatusValue $sv) | |
Static Protected Member Functions | |
static | isValidContainerName ( $container) |
Check if a full container name is valid. More... | |
static | isValidShortContainerName ( $container) |
Check if a short container name is valid. More... | |
static | normalizeXAttributes (array $xattr) |
Normalize file headers/metadata to the FileBackend::getFileXAttributes() format. More... | |
Static Protected Member Functions inherited from FileBackend | |
static | normalizeContainerPath ( $path) |
Validate and normalize a relative storage path. More... | |
Protected Attributes | |
MapCacheLRU | $cheapCache |
Map of paths to small (RAM/disk) cache items. More... | |
MapCacheLRU | $expensiveCache |
Map of paths to large (RAM/disk) cache items. More... | |
$maxFileSize = 4294967296 | |
WANObjectCache | $memCache |
callable | $mimeCallback |
Method to get the MIME type of files. More... | |
array | $shardViaHashLevels = [] |
Map of container names to sharding config. More... | |
BagOStuff | $srvCache |
Protected Attributes inherited from FileBackend | |
int | $concurrency |
How many operations can be done in parallel. More... | |
string | $domainId |
Unique domain name. More... | |
FileJournal | $fileJournal |
LockManager | $lockManager |
LoggerInterface | $logger |
string | $name |
Unique backend name. More... | |
callable | $obResetFunc |
string | $parallelize |
When to do operations in parallel. More... | |
callable null | $profiler |
string | $readOnly |
Read-only explanation message. More... | |
callable | $statusWrapper |
callable | $streamMimeFunc |
TempFSFileFactory | $tmpFileFactory |
Static Protected Attributes | |
static string | $ABSENT_LATEST = 'FNE-L' |
File does not exist according to a "latest"-mode stat query. More... | |
static string | $ABSENT_NORMAL = 'FNE-N' |
File does not exist according to a normal stat query. More... | |
static false | $RES_ABSENT = false |
Idiom for "no result due to missing file" (since 1.34) More... | |
static null | $RES_ERROR = null |
Idiom for "no result due to I/O errors" (since 1.34) More... | |
Private Member Functions | |
containerCacheKey ( $container) | |
Get the cache key for a container. More... | |
fileCacheKey ( $path) | |
Get the cache key for a file path. More... | |
Additional Inherited Members | |
Static Public Member Functions inherited from FileBackend | |
static | extensionFromPath ( $path, $case='lowercase') |
Get the final extension from a storage or FS path. More... | |
static | isPathTraversalFree ( $path) |
Check if a relative path has no directory traversals. More... | |
static | isStoragePath ( $path) |
Check if a given path is a "mwstore://" path. More... | |
static | makeContentDisposition ( $type, $filename='') |
Build a Content-Disposition header value per RFC 6266. More... | |
static | normalizeStoragePath ( $storagePath) |
Normalize a storage path by cleaning up directory separators. More... | |
static | parentStoragePath ( $storagePath) |
Get the parent storage directory of a storage path. More... | |
static | splitStoragePath ( $storagePath) |
Split a storage path into a backend name, a container name, and a relative file path. More... | |
Base class for all backends using particular storage medium.
This class defines the methods as abstract that subclasses must implement. Outside callers should not use functions with "Internal" in the name.
The FileBackend operations are implemented using basic functions such as storeInternal(), copyInternal(), deleteInternal() and the like. This class is also responsible for path resolution and sanitization.
Definition at line 40 of file FileBackendStore.php.
FileBackendStore::__construct | ( | array | $config | ) |
array | $config |
Reimplemented from FileBackend.
Reimplemented in SwiftFileBackend, and FSFileBackend.
Definition at line 83 of file FileBackendStore.php.
References WANObjectCache\newEmpty().
|
final |
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 from FileBackend.
Definition at line 1468 of file FileBackendStore.php.
References $path, and doClearCache().
Referenced by copyInternal(), createInternal(), deleteInternal(), describeInternal(), SwiftFileBackend\doGetFileXAttributes(), doOperationsInternal(), doQuickOperationsInternal(), SwiftFileBackend\doStreamFile(), moveInternal(), and storeInternal().
|
final |
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 from FileBackend.
Definition at line 373 of file FileBackendStore.php.
References doConcatenate(), FileBackend\getScopedFileLocks(), LockManager\LOCK_UW, FileBackend\newStatus(), and FileBackend\scopedProfileSection().
|
private |
Get the cache key for a container.
string | $container | Resolved container name |
Definition at line 1773 of file FileBackendStore.php.
Referenced by primeContainerCache(), and setContainerCache().
|
final |
Copy a file from one storage path to another in the backend.
This will overwrite any file that exists at the destination. Do not call this function from places outside FileBackend and FileOp.
$params include:
array | $params |
Definition at line 220 of file FileBackendStore.php.
References clearCache(), deleteFileCache(), doCopyInternal(), and FileBackend\scopedProfileSection().
Referenced by doMoveInternal().
|
final |
Create a file in the backend with the given contents.
This will overwrite any file that exists at the destination. Do not call this function from places outside FileBackend and FileOp.
$params include:
array | $params |
Definition at line 133 of file FileBackendStore.php.
References clearCache(), deleteFileCache(), doCreateInternal(), maxFileSizeInternal(), FileBackend\newStatus(), and FileBackend\scopedProfileSection().
|
finalprotected |
Delete the cached info for a container.
The cache key is salted for a while to prevent race conditions.
string | $container | Resolved container name |
Definition at line 1793 of file FileBackendStore.php.
Referenced by doClean().
|
finalprotected |
Delete the cached stat info for a file path.
The cache key is salted for a while to prevent race conditions. Since negatives (404s) are not cached, this does not need to be called when a file is created at a path were there was none before.
string | $path | Storage path |
Definition at line 1889 of file FileBackendStore.php.
References $path, and FileBackend\normalizeStoragePath().
Referenced by SwiftFileBackend\addMissingHashMetadata(), copyInternal(), createInternal(), deleteInternal(), describeInternal(), SwiftFileBackend\doStreamFile(), moveInternal(), and storeInternal().
|
final |
Delete a file at the storage path.
Do not call this function from places outside FileBackend and FileOp.
$params include:
array | $params |
Definition at line 254 of file FileBackendStore.php.
References clearCache(), deleteFileCache(), doDeleteInternal(), and FileBackend\scopedProfileSection().
Referenced by doMoveInternal().
|
final |
Alter metadata for a file at the storage path.
Do not call this function from places outside FileBackend and FileOp.
$params include:
array | $params |
Definition at line 338 of file FileBackendStore.php.
References clearCache(), deleteFileCache(), doDescribeInternal(), FileBackend\newStatus(), and FileBackend\scopedProfileSection().
|
abstractprotected |
Is this a key/value store where directories are just virtual? Virtual directories exists in so much as files exists that are prefixed with the directory path followed by a forward slash.
Reimplemented in SwiftFileBackend, FSFileBackend, and MemoryFileBackend.
Referenced by doClean().
|
final |
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 from FileBackend.
Definition at line 1083 of file FileBackendStore.php.
References $res, doDirectoryExists(), getContainerSuffixes(), resolveStoragePath(), and FileBackend\splitStoragePath().
|
finalprotected |
array | $params |
Reimplemented from FileBackend.
Definition at line 576 of file FileBackendStore.php.
References deleteContainerCache(), directoriesAreVirtual(), doCleanInternal(), getContainerSuffixes(), FileBackend\getScopedFileLocks(), FileBackend\getTopDirectoryList(), LockManager\LOCK_EX, FileBackend\newStatus(), resolveStoragePath(), FileBackend\scopedProfileSection(), and FileBackend\splitStoragePath().
|
protected |
string | $container | |
string | $dir | |
array | $params |
Reimplemented in FSFileBackend, and SwiftFileBackend.
Definition at line 630 of file FileBackendStore.php.
References FileBackend\newStatus().
Referenced by doClean().
|
protected |
Clears any additional stat caches for storage paths.
array | null | $paths | Storage paths (optional) |
Reimplemented in FSFileBackend.
Definition at line 1492 of file FileBackendStore.php.
Referenced by clearCache().
|
protected |
array | $params |
Definition at line 400 of file FileBackendStore.php.
References $path, FileBackend\getLocalReference(), getLocalReferenceMulti(), and FileBackend\newStatus().
Referenced by concatenate().
|
abstractprotected |
array | $params |
Reimplemented in SwiftFileBackend, FSFileBackend, and MemoryFileBackend.
Referenced by copyInternal().
|
abstractprotected |
array | $params |
Reimplemented in SwiftFileBackend, FSFileBackend, and MemoryFileBackend.
Referenced by createInternal().
|
abstractprotected |
array | $params |
Reimplemented in SwiftFileBackend, FSFileBackend, and MemoryFileBackend.
Referenced by deleteInternal().
|
protected |
array | $params |
Reimplemented in SwiftFileBackend.
Definition at line 358 of file FileBackendStore.php.
References FileBackend\newStatus().
Referenced by describeInternal().
|
abstractprotected |
string | $container | Resolved container name |
string | $dir | Resolved path relative to container |
array | $params |
Reimplemented in FSFileBackend, SwiftFileBackend, and MemoryFileBackend.
Referenced by directoryExists().
|
protected |
FileBackendStoreOpHandle[] | $fileOpHandles |
FileBackendError |
Reimplemented in SwiftFileBackend, and FSFileBackend.
Definition at line 1415 of file FileBackendStore.php.
Referenced by executeOpHandlesInternal().
|
protected |
array | $params |
Reimplemented in SwiftFileBackend.
Definition at line 821 of file FileBackendStore.php.
References $content, $path, $RES_ABSENT, $RES_ERROR, and doGetLocalReferenceMulti().
Referenced by getFileContentsMulti().
|
protected |
array | $params |
Definition at line 928 of file FileBackendStore.php.
References $RES_ABSENT, $RES_ERROR, and FileBackend\getLocalReference().
Referenced by getFileSha1Base36().
|
abstractprotected |
array | $params |
Reimplemented in SwiftFileBackend, FSFileBackend, and MemoryFileBackend.
Referenced by getFileStat().
|
protected |
Get file stat information (concurrently if possible) for several files.
array | $params | Parameters include:
|
Reimplemented in SwiftFileBackend.
Definition at line 1522 of file FileBackendStore.php.
Referenced by preloadFileStat().
|
protected |
array | $params |
Reimplemented in SwiftFileBackend.
Definition at line 882 of file FileBackendStore.php.
Referenced by getFileXAttributes().
|
abstractprotected |
array | $params |
Reimplemented in SwiftFileBackend, FSFileBackend, and MemoryFileBackend.
Referenced by doGetLocalReferenceMulti(), and getLocalCopyMulti().
|
protected |
array | $params |
Reimplemented in FSFileBackend.
Definition at line 993 of file FileBackendStore.php.
References doGetLocalCopyMulti().
Referenced by doGetFileContentsMulti(), and getLocalReferenceMulti().
|
protected |
array | $params |
Reimplemented in SwiftFileBackend, and FSFileBackend.
Definition at line 309 of file FileBackendStore.php.
References copyInternal(), deleteInternal(), and FileBackend\normalizeStoragePath().
Referenced by moveInternal().
|
finalprotected |
array | $ops | |
array | $opts |
Reimplemented from FileBackend.
Definition at line 1252 of file FileBackendStore.php.
References FileOpBatch\attempt(), clearCache(), FormatJson\encode(), getOperationsInternal(), getPathsToLockForOpsInternal(), FileBackend\getScopedFileLocks(), FileBackend\newStatus(), preloadFileStat(), primeContainerCache(), FileBackend\scopedProfileSection(), and setConcurrencyFlags().
|
finalprotected |
array | $params |
Reimplemented from FileBackend.
Definition at line 468 of file FileBackendStore.php.
References doPrepareInternal(), getContainerSuffixes(), FileBackend\newStatus(), resolveStoragePath(), FileBackend\scopedProfileSection(), and FileBackend\splitStoragePath().
|
protected |
string | $container | |
string | $dir | |
array | $params |
Reimplemented in FSFileBackend, and SwiftFileBackend.
Definition at line 500 of file FileBackendStore.php.
References FileBackend\newStatus().
Referenced by doPrepare().
|
protected |
Fill the backend-specific process cache given an array of resolved container names and their corresponding cached info.
Only containers that actually exist should appear in the map.
array | $containerInfo | Map of resolved container names to cached info |
Reimplemented in SwiftFileBackend.
Definition at line 1848 of file FileBackendStore.php.
Referenced by primeContainerCache().
|
finalprotected |
array | $params |
Reimplemented from FileBackend.
Definition at line 540 of file FileBackendStore.php.
References doPublishInternal(), getContainerSuffixes(), FileBackend\newStatus(), resolveStoragePath(), FileBackend\scopedProfileSection(), and FileBackend\splitStoragePath().
|
protected |
string | $container | |
string | $dir | |
array | $params |
Reimplemented in FSFileBackend, and SwiftFileBackend.
Definition at line 572 of file FileBackendStore.php.
References FileBackend\newStatus().
Referenced by doPublish().
|
finalprotected |
array | $ops |
Reimplemented from FileBackend.
Definition at line 1320 of file FileBackendStore.php.
References FileBackend\$concurrency, clearCache(), executeOpHandlesInternal(), FileBackend\newStatus(), and FileBackend\scopedProfileSection().
|
finalprotected |
array | $params |
Reimplemented from FileBackend.
Definition at line 504 of file FileBackendStore.php.
References doSecureInternal(), getContainerSuffixes(), FileBackend\newStatus(), resolveStoragePath(), FileBackend\scopedProfileSection(), and FileBackend\splitStoragePath().
|
protected |
string | $container | |
string | $dir | |
array | $params |
Reimplemented in FSFileBackend, and SwiftFileBackend.
Definition at line 536 of file FileBackendStore.php.
References FileBackend\newStatus().
Referenced by doSecure().
|
abstractprotected |
array | $params |
Reimplemented in SwiftFileBackend, FSFileBackend, and MemoryFileBackend.
Referenced by storeInternal().
|
protected |
array | $params |
Reimplemented in SwiftFileBackend.
Definition at line 1054 of file FileBackendStore.php.
References $res, FileBackend\getLocalReference(), FileBackend\newStatus(), HTTPFileStreamer\send404Message(), HTTPFileStreamer\STREAM_ALLOW_OB, and HTTPFileStreamer\STREAM_HEADLESS.
Referenced by streamFile().
|
final |
Execute a list of FileBackendStoreOpHandle handles in parallel.
The resulting StatusValue object fields will correspond to the order in which the handles where given.
FileBackendStoreOpHandle[] | $fileOpHandles |
FileBackendError |
Definition at line 1387 of file FileBackendStore.php.
References doExecuteOpHandlesInternal(), and FileBackend\scopedProfileSection().
Referenced by SwiftFileBackend\doCopyInternal(), SwiftFileBackend\doCreateInternal(), SwiftFileBackend\doDeleteInternal(), SwiftFileBackend\doDescribeInternal(), SwiftFileBackend\doMoveInternal(), doQuickOperationsInternal(), and SwiftFileBackend\doStoreInternal().
|
private |
Get the cache key for a file path.
string | $path | Normalized storage path |
Definition at line 1857 of file FileBackendStore.php.
References $path.
Referenced by primeFileCache(), and setFileCache().
|
final |
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 from FileBackend.
Definition at line 634 of file FileBackendStore.php.
References getFileStat(), and FileBackend\scopedProfileSection().
Referenced by SwiftFileBackend\doStreamFile().
|
finalprotected |
Get the full container name, including the domain ID prefix.
string | $container |
Definition at line 1733 of file FileBackendStore.php.
Referenced by resolveStoragePath().
|
finalprotected |
Get the sharding config for a container.
If greater than 0, then all file storage paths within the container are required to be hashed accordingly.
string | $container |
Definition at line 1693 of file FileBackendStore.php.
Referenced by getContainerShard(), and getContainerSuffixes().
|
finalprotected |
Get the container name shard suffix for a given path.
Any empty suffix means the container is not sharded.
string | $container | Container name |
string | $relPath | Storage path relative to the container |
Definition at line 1641 of file FileBackendStore.php.
References $base, and getContainerHashLevels().
Referenced by resolveStoragePath().
|
finalprotected |
Get a list of full container shard suffixes for a container.
string | $container |
Definition at line 1714 of file FileBackendStore.php.
References $base, and getContainerHashLevels().
Referenced by directoryExists(), doClean(), doPrepare(), doPublish(), doSecure(), getDirectoryList(), and getFileList().
|
protected |
Get the content type to use in HEAD/GET requests for a file.
Definition at line 2010 of file FileBackendStore.php.
Referenced by SwiftFileBackend\doCreateInternal(), and SwiftFileBackend\doStoreInternal().
|
final |
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 from FileBackend.
Definition at line 1118 of file FileBackendStore.php.
References getContainerSuffixes(), getDirectoryListInternal(), resolveStoragePath(), and FileBackend\splitStoragePath().
|
abstract |
Do not call this function from places outside FileBackend.
string | $container | Resolved container name |
string | $dir | Resolved path relative to container |
array | $params |
Reimplemented in FSFileBackend, SwiftFileBackend, and MemoryFileBackend.
Referenced by getDirectoryList().
FileBackendStore::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.
array | $params | Parameters include:
|
Reimplemented from FileBackend.
Definition at line 801 of file FileBackendStore.php.
References $content, $path, doGetFileContentsMulti(), FileBackend\scopedProfileSection(), and setConcurrencyFlags().
FileBackendStore::getFileHttpUrl | ( | array | $params | ) |
array | $params |
Reimplemented from FileBackend.
Reimplemented in SwiftFileBackend.
Definition at line 1024 of file FileBackendStore.php.
|
final |
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 from FileBackend.
Definition at line 1148 of file FileBackendStore.php.
References getContainerSuffixes(), getFileListInternal(), resolveStoragePath(), and FileBackend\splitStoragePath().
|
abstract |
Do not call this function from places outside FileBackend.
string | $container | Resolved container name |
string | $dir | Resolved path relative to container |
array | $params |
Reimplemented in FSFileBackend, SwiftFileBackend, and MemoryFileBackend.
Referenced by getFileList().
|
final |
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 from FileBackend.
Definition at line 939 of file FileBackendStore.php.
References FileBackend\getLocalReference(), FSFile\placeholderProps(), and FileBackend\scopedProfileSection().
|
final |
Get a SHA-1 hash of the content of the file at a storage path in the backend.
array | $params | Parameters include:
|
Reimplemented from FileBackend.
Definition at line 886 of file FileBackendStore.php.
References $path, doGetFileSha1Base36(), FileBackend\normalizeStoragePath(), and FileBackend\scopedProfileSection().
|
final |
Get the size (bytes) of a file at a storage path in the backend.
array | $params | Parameters include:
|
Reimplemented from FileBackend.
Definition at line 658 of file FileBackendStore.php.
References getFileStat(), and FileBackend\scopedProfileSection().
|
final |
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 from FileBackend.
Definition at line 670 of file FileBackendStore.php.
References $path, doGetFileStat(), ingestFreshFileStats(), FileBackend\normalizeStoragePath(), primeFileCache(), and FileBackend\scopedProfileSection().
Referenced by SwiftFileBackend\doDescribeInternal(), SwiftFileBackend\doGetFileSha1base36(), SwiftFileBackend\doGetFileXAttributes(), fileExists(), getFileSize(), and getFileTimestamp().
|
final |
Get the last-modified timestamp of the file at a storage path.
array | $params | Parameters include:
|
Reimplemented from FileBackend.
Definition at line 646 of file FileBackendStore.php.
References getFileStat(), and FileBackend\scopedProfileSection().
|
final |
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 from FileBackend.
Definition at line 839 of file FileBackendStore.php.
References $path, doGetFileXAttributes(), FileBackend\normalizeStoragePath(), normalizeXAttributes(), and FileBackend\scopedProfileSection().
|
final |
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 from FileBackend.
Definition at line 997 of file FileBackendStore.php.
References $path, doGetLocalCopyMulti(), FileBackend\scopedProfileSection(), and setConcurrencyFlags().
|
final |
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 from FileBackend.
Definition at line 948 of file FileBackendStore.php.
References $path, doGetLocalReferenceMulti(), FileBackend\normalizeStoragePath(), FileBackend\scopedProfileSection(), and setConcurrencyFlags().
Referenced by doConcatenate().
|
final |
Return a list of FileOp objects from a list of operations.
Do not call this function from places outside FileBackend.
The result must have the same number of items as the input. An exception is thrown if an unsupported operation is requested.
array | $ops | Same format as doOperations() |
FileBackendError |
Definition at line 1189 of file FileBackendStore.php.
Referenced by doOperationsInternal(), and getScopedLocksForOps().
|
final |
Get a list of storage paths to lock for a list of operations Returns an array with LockManager::LOCK_UW (shared locks) and LockManager::LOCK_EX (exclusive locks) keys, each corresponding to a list of storage paths to be locked.
All returned paths are normalized.
array | $performOps | List of FileOp objects |
Definition at line 1228 of file FileBackendStore.php.
References LockManager\LOCK_EX, and LockManager\LOCK_UW.
Referenced by doOperationsInternal(), and getScopedLocksForOps().
FileBackendStore::getScopedLocksForOps | ( | array | $ops, |
StatusValue | $status | ||
) |
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 from FileBackend.
Definition at line 1246 of file FileBackendStore.php.
References getOperationsInternal(), getPathsToLockForOpsInternal(), and FileBackend\getScopedFileLocks().
|
finalprotected |
Ingest file stat entries that just came from querying the backend (not cache)
array[] | bool[] | null[] | $stats | Map of (path => doGetFileStat() stype result) |
bool | $latest | Whether doGetFileStat()/doGetFileStatMulti() had the 'latest' flag |
Definition at line 735 of file FileBackendStore.php.
References $path, $success, normalizeXAttributes(), and setFileCache().
Referenced by getFileStat(), and preloadFileStat().
|
abstract |
Check if a file can be created or changed at a given storage path in the backend.
FS backends should check that the parent directory exists, files can be written under it, and that any file already there is both readable and writable. Backends using key/value stores should check if the container exists.
string | $storagePath |
Reimplemented in FSFileBackend, SwiftFileBackend, and MemoryFileBackend.
|
final |
Check if a storage path maps to a single shard.
Container dirs like "a", where the container shards on "x/xy", can reside on several shards. Such paths are tricky to handle.
string | $storagePath | Storage path |
Definition at line 1679 of file FileBackendStore.php.
References resolveStoragePath().
|
staticfinalprotected |
Check if a full container name is valid.
This checks for length and illegal characters. Limiting the characters makes migrations to other stores easier.
string | $container |
Definition at line 1562 of file FileBackendStore.php.
Referenced by isValidShortContainerName().
|
staticfinalprotected |
Check if a short container name is valid.
This checks for length and illegal characters. This may disallow certain characters that can appear in the prefix used to make the full container name.
string | $container |
Definition at line 1545 of file FileBackendStore.php.
References isValidContainerName().
|
final |
Get the maximum allowable file size given backend medium restrictions and basic performance constraints.
Do not call this function from places outside FileBackend and FileOp.
Definition at line 99 of file FileBackendStore.php.
References $maxFileSize.
Referenced by createInternal(), and storeInternal().
|
final |
Move a file from one storage path to another in the backend.
This will overwrite any file that exists at the destination. Do not call this function from places outside FileBackend and FileOp.
$params include:
array | $params |
Definition at line 290 of file FileBackendStore.php.
References clearCache(), deleteFileCache(), doMoveInternal(), and FileBackend\scopedProfileSection().
|
staticfinalprotected |
Normalize file headers/metadata to the FileBackend::getFileXAttributes() format.
array | $xattr |
Definition at line 1967 of file FileBackendStore.php.
References FileBackend\$name.
Referenced by getFileXAttributes(), ingestFreshFileStats(), and primeFileCache().
|
final |
No-op file operation that does nothing.
Do not call this function from places outside FileBackend and FileOp.
array | $params |
Definition at line 369 of file FileBackendStore.php.
References FileBackend\newStatus().
|
final |
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 from FileBackend.
Definition at line 1457 of file FileBackendStore.php.
References $path, primeContainerCache(), primeFileCache(), and resolveStoragePath().
|
final |
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 from FileBackend.
Definition at line 1495 of file FileBackendStore.php.
References doGetFileStatMulti(), ingestFreshFileStats(), and FileBackend\scopedProfileSection().
Referenced by doOperationsInternal().
|
finalprotected |
Do a batch lookup from cache for container stats for all containers used in a list of container names or storage paths objects.
This loads the persistent cache values into the process cache.
array | $items |
Definition at line 1808 of file FileBackendStore.php.
References $path, containerCacheKey(), doPrimeContainerCache(), resolveStoragePath(), and FileBackend\scopedProfileSection().
Referenced by doOperationsInternal(), SwiftFileBackend\getContainerStat(), and preloadCache().
|
finalprotected |
Do a batch lookup from cache for file stats for all paths used in a list of storage paths or FileOp objects.
This loads the persistent cache values into the process cache.
array | $items | List of storage paths |
Definition at line 1908 of file FileBackendStore.php.
References $path, fileCacheKey(), FileBackend\normalizeStoragePath(), normalizeXAttributes(), resolveStoragePath(), and FileBackend\scopedProfileSection().
Referenced by getFileStat(), and preloadCache().
|
protected |
Resolve a container name, checking if it's allowed by the backend.
This is intended for internal use, such as encoding illegal chars. Subclasses can override this to be more restrictive.
string | $container |
Definition at line 1749 of file FileBackendStore.php.
Referenced by resolveStoragePath().
|
protected |
Resolve a relative storage path, checking if it's allowed by the backend.
This is intended for internal use, such as encoding illegal chars or perhaps getting absolute paths (e.g. FS based backends). Note that the relative path may be the empty string (e.g. the path is simply to the container).
string | $container | Container name |
string | $relStoragePath | Storage path relative to the container |
Reimplemented in SwiftFileBackend, and FSFileBackend.
Definition at line 1763 of file FileBackendStore.php.
Referenced by resolveStoragePath().
|
finalprotected |
Splits a storage path into an internal container name, an internal relative file name, and a container shard suffix.
Any shard suffix is already appended to the internal container name. This also checks that the storage path is valid and within this backend.
If the container is sharded but a suffix could not be determined, this means that the path can only refer to a directory and can only be scanned by looking in all the container shards.
string | $storagePath |
Definition at line 1583 of file FileBackendStore.php.
References fullContainerName(), getContainerShard(), FileBackend\normalizeContainerPath(), resolveContainerName(), resolveContainerPath(), and FileBackend\splitStoragePath().
Referenced by directoryExists(), doClean(), doPrepare(), doPublish(), doSecure(), getDirectoryList(), getFileList(), isSingleShardPathInternal(), preloadCache(), primeContainerCache(), primeFileCache(), and resolveStoragePathReal().
|
finalprotected |
Like resolveStoragePath() except null values are returned if the container is sharded and the shard could not be determined or if the path ends with '/'.
The latter case is illegal for FS backends and can confuse listings for object store backends.
This function is used when resolving paths that must be valid locations for files. Directory and listing functions should generally just use resolveStoragePath() instead.
string | $storagePath |
Definition at line 1624 of file FileBackendStore.php.
References resolveStoragePath().
Referenced by SwiftFileBackend\addMissingHashMetadata(), SwiftFileBackend\doCopyInternal(), SwiftFileBackend\doCreateInternal(), SwiftFileBackend\doDeleteInternal(), SwiftFileBackend\doDescribeInternal(), SwiftFileBackend\doGetFileContentsMulti(), SwiftFileBackend\doGetFileStatMulti(), SwiftFileBackend\doGetLocalCopyMulti(), SwiftFileBackend\doMoveInternal(), SwiftFileBackend\doStoreInternal(), SwiftFileBackend\doStreamFile(), SwiftFileBackend\getFileHttpUrl(), SwiftFileBackend\isPathUsableInternal(), MemoryFileBackend\resolveHashKey(), and FSFileBackend\resolveToFSPath().
|
protected |
Normalize and filter HTTP headers from a file operation.
This normalizes and strips long HTTP headers from a file operation. Most headers are just numbers, but some are allowed to be long. This function is useful for cleaning up headers and avoiding backend specific errors, especially in the middle of batch file operations.
array | $op | Same format as doOperation() |
Definition at line 1434 of file FileBackendStore.php.
References FileBackend\$name.
|
finalprotected |
Set the 'concurrency' option from a list of operation options.
array | $opts | Map of operation options |
Definition at line 1987 of file FileBackendStore.php.
References FileBackend\$concurrency.
Referenced by doOperationsInternal(), getFileContentsMulti(), getLocalCopyMulti(), and getLocalReferenceMulti().
|
finalprotected |
Set the cached info for a container.
string | $container | Resolved container name |
array | $val | Information to cache |
Definition at line 1783 of file FileBackendStore.php.
References containerCacheKey().
Referenced by SwiftFileBackend\getContainerStat().
|
finalprotected |
Set the cached stat info for a file path.
Negatives (404s) are not cached. By not caching negatives, we can skip cache salting for the case when a file is created at a path were there was none before.
string | $path | Storage path |
array | $val | Stat information to cache |
Definition at line 1869 of file FileBackendStore.php.
References $path, fileCacheKey(), and FileBackend\normalizeStoragePath().
Referenced by ingestFreshFileStats().
|
final |
Store a file into the backend from a file on disk.
This will overwrite any file that exists at the destination. Do not call this function from places outside FileBackend and FileOp.
$params include:
array | $params |
Definition at line 176 of file FileBackendStore.php.
References clearCache(), deleteFileCache(), doStoreInternal(), maxFileSizeInternal(), FileBackend\newStatus(), and FileBackend\scopedProfileSection().
|
final |
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 from FileBackend.
Definition at line 1028 of file FileBackendStore.php.
References doStreamFile(), FileBackend\newStatus(), print, and FileBackend\scopedProfileSection().
|
staticprotected |
File does not exist according to a "latest"-mode stat query.
Definition at line 70 of file FileBackendStore.php.
|
staticprotected |
File does not exist according to a normal stat query.
Definition at line 68 of file FileBackendStore.php.
|
protected |
Map of paths to small (RAM/disk) cache items.
Definition at line 46 of file FileBackendStore.php.
|
protected |
Map of paths to large (RAM/disk) cache items.
Definition at line 48 of file FileBackendStore.php.
|
protected |
Definition at line 56 of file FileBackendStore.php.
Referenced by maxFileSizeInternal().
|
protected |
Definition at line 42 of file FileBackendStore.php.
|
protected |
Method to get the MIME type of files.
Definition at line 54 of file FileBackendStore.php.
|
staticprotected |
Idiom for "no result due to missing file" (since 1.34)
Definition at line 63 of file FileBackendStore.php.
Referenced by SwiftFileBackend\doGetFileContentsMulti(), doGetFileContentsMulti(), doGetFileSha1Base36(), SwiftFileBackend\doGetFileSha1base36(), MemoryFileBackend\doGetFileStat(), FSFileBackend\doGetFileStat(), SwiftFileBackend\doGetFileStatMulti(), SwiftFileBackend\doGetFileXAttributes(), MemoryFileBackend\doGetLocalCopyMulti(), FSFileBackend\doGetLocalCopyMulti(), SwiftFileBackend\doGetLocalCopyMulti(), FSFileBackend\doGetLocalReferenceMulti(), and SwiftFileBackend\getContainerStat().
|
staticprotected |
Idiom for "no result due to I/O errors" (since 1.34)
Definition at line 65 of file FileBackendStore.php.
Referenced by FSFileBackend\doDirectoryExists(), SwiftFileBackend\doDirectoryExists(), SwiftFileBackend\doGetFileContentsMulti(), doGetFileContentsMulti(), doGetFileSha1Base36(), SwiftFileBackend\doGetFileSha1base36(), MemoryFileBackend\doGetFileStat(), FSFileBackend\doGetFileStat(), SwiftFileBackend\doGetFileStatMulti(), SwiftFileBackend\doGetFileXAttributes(), MemoryFileBackend\doGetLocalCopyMulti(), FSFileBackend\doGetLocalCopyMulti(), SwiftFileBackend\doGetLocalCopyMulti(), FSFileBackend\doGetLocalReferenceMulti(), SwiftFileBackend\getContainerStat(), FSFileBackend\getDirectoryListInternal(), and FSFileBackend\getFileListInternal().
|
protected |
Map of container names to sharding config.
Definition at line 51 of file FileBackendStore.php.
|
protected |
Definition at line 44 of file FileBackendStore.php.
const FileBackendStore::CACHE_CHEAP_SIZE = 500 |
Definition at line 59 of file FileBackendStore.php.
const FileBackendStore::CACHE_EXPENSIVE_SIZE = 5 |
Definition at line 60 of file FileBackendStore.php.
const FileBackendStore::CACHE_TTL = 10 |
Definition at line 58 of file FileBackendStore.php.