MediaWiki  1.28.1
FileBackendMultiWrite Class Reference

Proxy backend that mirrors writes to several internal backends. More...

Inheritance diagram for FileBackendMultiWrite:
Collaboration diagram for FileBackendMultiWrite:

Public Member Functions

 __construct (array $config)
 Construct a proxy backend that consists of several internal backends. More...
 
 accessibilityCheck (array $paths)
 Check that a set of file paths are usable across all internal backends. More...
 
 clearCache (array $paths=null)
 
 concatenate (array $params)
 
 consistencyCheck (array $paths)
 Check that a set of files are consistent across all internal backends. More...
 
 directoryExists (array $params)
 
 fileExists (array $params)
 
 getDirectoryList (array $params)
 
 getFeatures ()
 
 getFileContentsMulti (array $params)
 
 getFileHttpUrl (array $params)
 
 getFileList (array $params)
 
 getFileProps (array $params)
 
 getFileSha1Base36 (array $params)
 
 getFileSize (array $params)
 
 getFileStat (array $params)
 
 getFileTimestamp (array $params)
 
 getFileXAttributes (array $params)
 
 getLocalCopyMulti (array $params)
 
 getLocalReferenceMulti (array $params)
 
 getScopedLocksForOps (array $ops, StatusValue $status)
 
 preloadCache (array $paths)
 
 preloadFileStat (array $params)
 
 resyncFiles (array $paths, $resyncMode=true)
 Check that a set of files are consistent across all internal backends and re-synchronize those files against the "multi master" if needed. More...
 
 streamFile (array $params)
 
- Public Member Functions inherited from FileBackend
 __construct (array $config)
 Create a new backend instance from configuration. More...
 
 clean (array $params)
 Delete a storage directory if it is empty. More...
 
 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...
 
 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...
 
 directoryExists (array $params)
 Check if a directory exists at a given storage path. 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...
 
 fileExists (array $params)
 Check if a file exists at a storage path in the backend. More...
 
 getContainerStoragePath ($container)
 Get the storage path for the given container for this backend. More...
 
 getDirectoryList (array $params)
 Get an iterator to list all directories under a storage directory. 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...
 
 getFileContentsMulti (array $params)
 Like getFileContents() except it takes an array of storage paths and returns a map of storage paths to strings (or null on failure). More...
 
 getFileHttpUrl (array $params)
 Return an HTTP URL to a given file that requires no authentication to use. More...
 
 getFileList (array $params)
 Get an iterator to list all stored files under a storage directory. More...
 
 getFileProps (array $params)
 Get the properties of the file at a storage path in the backend. More...
 
 getFileSha1Base36 (array $params)
 Get a SHA-1 hash 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...
 
 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...
 
 getLocalCopyMulti (array $params)
 Like getLocalCopy() except it takes an array of storage paths and returns a map of storage paths to TempFSFile objects (or null on failure). More...
 
 getLocalReference (array $params)
 Returns a file system file, identical to the file at a storage path. More...
 
 getLocalReferenceMulti (array $params)
 Like getLocalReference() except it takes an array of storage paths and returns a map of storage paths to FSFile objects (or null on failure). 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...
 
 getScopedLocksForOps (array $ops, StatusValue $status)
 Get an array of scoped locks needed for a batch of file operations. 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...
 
 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...
 
 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...
 
 streamFile (array $params)
 Stream the file at a storage path in the backend. More...
 
 unlockFiles (array $paths, $type)
 Unlock the files at the given storage paths in the backend. More...
 

Public Attributes

const CHECK_SHA1 = 4
 
const CHECK_SIZE = 1
 
const CHECK_TIME = 2
 
- 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

 doClean (array $params)
 
 doDirectoryOp ($method, array $params)
 
 doOperationsInternal (array $ops, array $opts)
 
 doPrepare (array $params)
 
 doPublish (array $params)
 
 doQuickOperationsInternal (array $ops)
 
 doSecure (array $params)
 
 fileStoragePathsForOps (array $ops)
 Get a list of file storage paths to read or write for a list of operations. More...
 
 getReadIndexFromParams (array $params)
 
 hasVolatileSources (array $ops)
 
 substOpBatchPaths (array $ops, FileBackendStore $backend)
 Substitute the backend name in storage path parameters for a set of operations with that of a given internal backend. More...
 
 substOpPaths (array $ops, FileBackendStore $backend)
 Same as substOpBatchPaths() but for a single operation. More...
 
 substPaths ($paths, FileBackendStore $backend)
 Substitute the backend of storage paths with an internal backend's name. More...
 
 unsubstPaths ($paths)
 Substitute the backend of internal storage paths with the proxy backend's name. More...
 
- Protected Member Functions inherited from FileBackend
 doClean (array $params)
 
 doOperationsInternal (array $ops, array $opts)
 
 doPrepare (array $params)
 
 doPublish (array $params)
 
 doQuickOperationsInternal (array $ops)
 
 doSecure (array $params)
 
 getScopedPHPBehaviorForOps ()
 Enter file operation scope. More...
 
 newStatus ()
 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)
 

Protected Attributes

bool $asyncWrites = false
 
string bool $autoResync = false
 
FileBackendStore[] $backends = []
 Prioritized list of FileBackendStore objects. More...
 
int $masterIndex = -1
 Index of master backend. More...
 
int $readIndex = -1
 Index of read affinity backend. More...
 
int $syncChecks = 0
 Bitfield. More...
 
- 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...
 
object string $profiler
 Class name or object With profileIn/profileOut methods. More...
 
string $readOnly
 Read-only explanation message. More...
 
callable $statusWrapper
 
callable $streamMimeFunc
 
string $tmpDirectory
 Temporary file directory. 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...
 
- Static Protected Member Functions inherited from FileBackend
static normalizeContainerPath ($path)
 Validate and normalize a relative storage path. More...
 

Detailed Description

Proxy backend that mirrors writes to several internal backends.

This class defines a multi-write backend. Multiple backends can be registered to this proxy backend and it will act as a single backend. Use this when all access to those backends is through this proxy backend. At least one of the backends must be declared the "master" backend.

Only use this class when transitioning from one storage system to another.

Read operations are only done on the 'master' backend for consistency. Write operations are performed on all backends, starting with the master. This makes a best-effort to have transactional semantics, but since requests may sometimes fail, the use of "autoResync" or background scripts to fix inconsistencies is important.

Since
1.19

Definition at line 44 of file FileBackendMultiWrite.php.

Constructor & Destructor Documentation

FileBackendMultiWrite::__construct ( array  $config)

Construct a proxy backend that consists of several internal backends.

Locking, journaling, and read-only checks are handled by the proxy backend.

Additional $config params include:

  • backends : Array of backend config and multi-backend settings. Each value is the config used in the constructor of a FileBackendStore class, but with these additional settings:
    • class : The name of the backend class
    • isMultiMaster : This must be set for one backend.
    • readAffinity : Use this for reads without 'latest' set.
  • syncChecks : Integer bitfield of internal backend sync checks to perform. Possible bits include the FileBackendMultiWrite::CHECK_* constants. There are constants for SIZE, TIME, and SHA1. The checks are done before allowing any file operations.
  • autoResync : Automatically resync the clone backends to the master backend when pre-operation sync checks fail. This should only be used if the master backend is stable and not missing any files. Use "conservative" to limit resyncing to copying newer master backend files over older (or non-existing) clone backend files. Cases that cannot be handled will result in operation abortion.
  • replication : Set to 'async' to defer file operations on the non-master backends. This will apply such updates post-send for web requests. Note that any checks from "syncChecks" are still synchronous.
Parameters
array$config
Exceptions
FileBackendError

Definition at line 94 of file FileBackendMultiWrite.php.

References FileBackend\$domainId, FileBackend\$fileJournal, $masterIndex, FileBackend\$name, and as.

Member Function Documentation

FileBackendMultiWrite::accessibilityCheck ( array  $paths)

Check that a set of file paths are usable across all internal backends.

Parameters
array$pathsList of storage paths
Returns
StatusValue

Definition at line 302 of file FileBackendMultiWrite.php.

References $path, $status, as, FileBackend\newStatus(), and substPaths().

Referenced by doOperationsInternal().

FileBackendMultiWrite::clearCache ( array  $paths = null)

Definition at line 715 of file FileBackendMultiWrite.php.

References as, and substPaths().

Referenced by doOperationsInternal().

FileBackendMultiWrite::concatenate ( array  $params)
FileBackendMultiWrite::consistencyCheck ( array  $paths)

Check that a set of files are consistent across all internal backends.

Parameters
array$pathsList of storage paths
Returns
StatusValue

Definition at line 230 of file FileBackendMultiWrite.php.

References $masterIndex, $params, $path, $status, as, FileBackend\newStatus(), substOpPaths(), substPaths(), true, TS_UNIX, and wfTimestamp().

Referenced by doOperationsInternal().

FileBackendMultiWrite::directoryExists ( array  $params)

Definition at line 693 of file FileBackendMultiWrite.php.

References $masterIndex, and substOpPaths().

FileBackendMultiWrite::doClean ( array  $params)
protected

Definition at line 541 of file FileBackendMultiWrite.php.

References doDirectoryOp().

FileBackendMultiWrite::doDirectoryOp (   $method,
array  $params 
)
protected
Parameters
string$methodOne of (doPrepare,doSecure,doPublish,doClean)
array$paramsMethod arguments
Returns
StatusValue

Definition at line 550 of file FileBackendMultiWrite.php.

References $masterIndex, $status, DeferredUpdates\addCallableUpdate(), as, FileBackend\newStatus(), substOpPaths(), and use.

Referenced by doClean(), doPrepare(), doPublish(), and doSecure().

FileBackendMultiWrite::doPrepare ( array  $params)
protected

Definition at line 529 of file FileBackendMultiWrite.php.

References doDirectoryOp().

FileBackendMultiWrite::doPublish ( array  $params)
protected

Definition at line 537 of file FileBackendMultiWrite.php.

References doDirectoryOp().

FileBackendMultiWrite::doQuickOperationsInternal ( array  $ops)
protected
FileBackendMultiWrite::doSecure ( array  $params)
protected

Definition at line 533 of file FileBackendMultiWrite.php.

References doDirectoryOp().

FileBackendMultiWrite::fileExists ( array  $params)

Definition at line 588 of file FileBackendMultiWrite.php.

References getReadIndexFromParams(), and substOpPaths().

Referenced by fileStoragePathsForOps().

FileBackendMultiWrite::fileStoragePathsForOps ( array  $ops)
protected

Get a list of file storage paths to read or write for a list of operations.

Parameters
array$opsSame format as doOperations()
Returns
array List of storage paths to files (does not include directories)

Definition at line 394 of file FileBackendMultiWrite.php.

References as, and fileExists().

Referenced by doOperationsInternal().

FileBackendMultiWrite::getDirectoryList ( array  $params)

Definition at line 699 of file FileBackendMultiWrite.php.

References $masterIndex, and substOpPaths().

FileBackendMultiWrite::getFeatures ( )

Definition at line 711 of file FileBackendMultiWrite.php.

References $masterIndex.

FileBackendMultiWrite::getFileContentsMulti ( array  $params)
FileBackendMultiWrite::getFileHttpUrl ( array  $params)

Definition at line 686 of file FileBackendMultiWrite.php.

References getReadIndexFromParams(), and substOpPaths().

FileBackendMultiWrite::getFileList ( array  $params)

Definition at line 705 of file FileBackendMultiWrite.php.

References $masterIndex, and substOpPaths().

FileBackendMultiWrite::getFileProps ( array  $params)

Definition at line 644 of file FileBackendMultiWrite.php.

References getReadIndexFromParams(), and substOpPaths().

FileBackendMultiWrite::getFileSha1Base36 ( array  $params)

Definition at line 637 of file FileBackendMultiWrite.php.

References getReadIndexFromParams(), and substOpPaths().

FileBackendMultiWrite::getFileSize ( array  $params)

Definition at line 602 of file FileBackendMultiWrite.php.

References getReadIndexFromParams(), and substOpPaths().

FileBackendMultiWrite::getFileStat ( array  $params)

Definition at line 609 of file FileBackendMultiWrite.php.

References getReadIndexFromParams(), and substOpPaths().

FileBackendMultiWrite::getFileTimestamp ( array  $params)

Definition at line 595 of file FileBackendMultiWrite.php.

References getReadIndexFromParams(), and substOpPaths().

FileBackendMultiWrite::getFileXAttributes ( array  $params)

Definition at line 616 of file FileBackendMultiWrite.php.

References getReadIndexFromParams(), and substOpPaths().

FileBackendMultiWrite::getLocalCopyMulti ( array  $params)
FileBackendMultiWrite::getLocalReferenceMulti ( array  $params)
FileBackendMultiWrite::getReadIndexFromParams ( array  $params)
protected
Parameters
array$params
Returns
int The master or read affinity backend index, based on $params['latest']

Definition at line 753 of file FileBackendMultiWrite.php.

References $readIndex.

Referenced by concatenate(), fileExists(), getFileContentsMulti(), getFileHttpUrl(), getFileProps(), getFileSha1Base36(), getFileSize(), getFileStat(), getFileTimestamp(), getFileXAttributes(), getLocalCopyMulti(), getLocalReferenceMulti(), preloadFileStat(), and streamFile().

FileBackendMultiWrite::getScopedLocksForOps ( array  $ops,
StatusValue  $status 
)
FileBackendMultiWrite::hasVolatileSources ( array  $ops)
protected
Parameters
array$opsFile operations for FileBackend::doOperations()
Returns
bool Whether there are file path sources with outside lifetime/ownership

Definition at line 486 of file FileBackendMultiWrite.php.

References as.

Referenced by doOperationsInternal(), and doQuickOperationsInternal().

FileBackendMultiWrite::preloadCache ( array  $paths)

Definition at line 722 of file FileBackendMultiWrite.php.

References $readIndex, and substPaths().

FileBackendMultiWrite::preloadFileStat ( array  $params)

Definition at line 727 of file FileBackendMultiWrite.php.

References getReadIndexFromParams(), and substOpPaths().

FileBackendMultiWrite::resyncFiles ( array  $paths,
  $resyncMode = true 
)

Check that a set of files are consistent across all internal backends and re-synchronize those files against the "multi master" if needed.

Parameters
array$pathsList of storage paths
string | bool$resyncModeFalse, True, or "conservative"; see __construct()
Returns
StatusValue

Definition at line 328 of file FileBackendMultiWrite.php.

References $masterIndex, $path, $status, as, FormatJson\encode(), name, FileBackend\newStatus(), substPaths(), and wfDebugLog().

Referenced by doOperationsInternal().

FileBackendMultiWrite::streamFile ( array  $params)

Definition at line 651 of file FileBackendMultiWrite.php.

References getReadIndexFromParams(), and substOpPaths().

FileBackendMultiWrite::substOpBatchPaths ( array  $ops,
FileBackendStore  $backend 
)
protected

Substitute the backend name in storage path parameters for a set of operations with that of a given internal backend.

Parameters
array$opsList of file operation arrays
FileBackendStore$backend
Returns
array

Definition at line 425 of file FileBackendMultiWrite.php.

References as, and substPaths().

Referenced by doOperationsInternal(), doQuickOperationsInternal(), getScopedLocksForOps(), and substOpPaths().

FileBackendMultiWrite::substPaths (   $paths,
FileBackendStore  $backend 
)
protected

Substitute the backend of storage paths with an internal backend's name.

Parameters
array | string$pathsList of paths or single string path
FileBackendStore$backend
Returns
array|string

Definition at line 460 of file FileBackendMultiWrite.php.

References StringUtils\escapeRegexReplacement(), and name.

Referenced by accessibilityCheck(), clearCache(), consistencyCheck(), preloadCache(), resyncFiles(), and substOpBatchPaths().

FileBackendMultiWrite::unsubstPaths (   $paths)
protected

Substitute the backend of internal storage paths with the proxy backend's name.

Parameters
array | string$pathsList of paths or single string path
Returns
array|string

Definition at line 474 of file FileBackendMultiWrite.php.

References StringUtils\escapeRegexReplacement().

Referenced by getFileContentsMulti(), getLocalCopyMulti(), getLocalReferenceMulti(), and getScopedLocksForOps().

Member Data Documentation

bool FileBackendMultiWrite::$asyncWrites = false
protected

Definition at line 59 of file FileBackendMultiWrite.php.

string bool FileBackendMultiWrite::$autoResync = false
protected

Definition at line 56 of file FileBackendMultiWrite.php.

FileBackendStore [] FileBackendMultiWrite::$backends = []
protected

Prioritized list of FileBackendStore objects.

Definition at line 46 of file FileBackendMultiWrite.php.

int FileBackendMultiWrite::$masterIndex = -1
protected
int FileBackendMultiWrite::$readIndex = -1
protected

Index of read affinity backend.

Definition at line 51 of file FileBackendMultiWrite.php.

Referenced by getReadIndexFromParams(), and preloadCache().

int FileBackendMultiWrite::$syncChecks = 0
protected

Bitfield.

Definition at line 54 of file FileBackendMultiWrite.php.

const FileBackendMultiWrite::CHECK_SHA1 = 4

Definition at line 64 of file FileBackendMultiWrite.php.

const FileBackendMultiWrite::CHECK_SIZE = 1

Definition at line 62 of file FileBackendMultiWrite.php.

const FileBackendMultiWrite::CHECK_TIME = 2

Definition at line 63 of file FileBackendMultiWrite.php.


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