Go to the documentation of this file.
58 parent::__construct( $config );
59 $this->backend = $config[
'backend'];
60 $this->repoName = $config[
'repoName'];
61 $this->dbHandleFunc = $config[
'dbHandleFactory'];
86 return current( $paths );
104 foreach ( $paths as $i =>
$path ) {
105 if ( !$latest && $this->resolvedPathCache->hasField(
$path,
'target', 10 ) ) {
106 $resolved[$i] = $this->resolvedPathCache->getField(
$path,
'target' );
112 if ( $container ===
"{$this->repoName}-public" ) {
114 if ( strpos(
$path,
'!' ) !==
false ) {
115 $sha1 = $db->selectField(
'oldimage',
'oi_sha1',
116 [
'oi_archive_name' =>
$name ],
120 $sha1 = $db->selectField(
'image',
'img_sha1',
121 [
'img_name' =>
$name ],
125 if ( !strlen( $sha1 ) ) {
126 $resolved[$i] =
$path;
130 $this->resolvedPathCache->setField(
$path,
'target', $resolved[$i] );
131 } elseif ( $container ===
"{$this->repoName}-deleted" ) {
133 $sha1 = substr(
$name, 0, strpos(
$name,
'.' ) );
135 $this->resolvedPathCache->setField(
$path,
'target', $resolved[$i] );
137 $resolved[$i] =
$path;
142 foreach ( $paths as $i =>
$path ) {
143 $res[$i] = $resolved[$i];
150 return $this->backend->doOperationsInternal( $this->
mungeOpPaths( $ops ), $opts );
154 return $this->backend->doQuickOperationsInternal( $this->
mungeOpPaths( $ops ) );
158 return $this->backend->doPrepare( $params );
162 return $this->backend->doSecure( $params );
166 return $this->backend->doPublish( $params );
170 return $this->backend->doClean( $params );
212 $params[
'headers'][] =
"Content-type: $type";
234 return $this->backend->directoryExists( $params );
238 return $this->backend->getDirectoryList( $params );
242 return $this->backend->getFileList( $params );
246 return $this->backend->getFeatures();
250 $this->backend->clearCache(
null );
255 $this->backend->preloadCache( $paths );
263 return $this->backend->getScopedLocksForOps( $ops,
$status );
275 if ( strlen( $sha1 ) < 3 ) {
276 throw new InvalidArgumentException(
"Invalid file SHA-1." );
278 return $this->backend->getContainerStoragePath(
"{$this->repoName}-original" ) .
279 "/{$sha1[0]}/{$sha1[1]}/{$sha1[2]}/{$sha1}";
288 protected function getDB( $index ) {
289 if ( !isset( $this->dbs[$index] ) ) {
291 $this->dbs[$index] = $func( $index );
293 return $this->dbs[$index];
304 $latest = !empty( $params[
'latest'] );
306 if ( isset( $params[
'src'] ) ) {
307 $params[
'src'] = $this->
getBackendPath( $params[
'src'], $latest );
310 if ( isset( $params[
'srcs'] ) ) {
314 return $this->backend->$function( $params );
325 $origPaths = $params[
'srcs'];
326 $params[
'srcs'] = $this->
getBackendPaths( $params[
'srcs'], !empty( $params[
'latest'] ) );
327 $pathMap = array_combine( $params[
'srcs'], $origPaths );
329 $results = $this->backend->$function( $params );
332 foreach ( $results as
$path => $result ) {
333 $contents[$pathMap[
$path]] = $result;
349 static $srcRefOps = [
'store',
'copy',
'describe' ];
350 foreach ( $ops as &$op ) {
351 if ( isset( $op[
'src'] ) && in_array( $op[
'op'], $srcRefOps ) ) {
354 if ( isset( $op[
'srcs'] ) ) {
static splitStoragePath( $storagePath)
Split a storage path into a backend name, a container name, and a relative file path.
translateSrcParams( $function, array $params)
Translates paths found in the "src" or "srcs" keys of a params array.
directoryExists(array $params)
Check if a directory exists at a given storage path.
Generic operation result class Has warning/error list, boolean status and arbitrary value.
Base class for all file backend classes (including multi-write backends).
static contentTypeFromPath( $filename, $safe=true)
Determine the file type of a file based on the path.
preloadFileStat(array $params)
Preload file stat information (concurrently if possible) into in-process cache.
getLocalReferenceMulti(array $params)
Like getLocalReference() except it takes an array of storage paths and yields an order-preserved map ...
getName()
Get the unique backend name.
getDomainId()
Get the domain identifier used for this backend (possibly empty).
getScopedLocksForOps(array $ops, StatusValue $status)
Get an array of scoped locks needed for a batch of file operations.
getFeatures()
Get the a bitfield of extra features supported by the backend medium.
doOperationsInternal(array $ops, array $opts)
getDirectoryList(array $params)
Get an iterator to list all directories under a storage directory.
getFileStat(array $params)
Get quick information about a file at a storage path in the backend.
getFileHttpUrl(array $params)
Return an HTTP URL to a given file that requires no authentication to use.
getFileXAttributes(array $params)
Get metadata about a file at a storage path in the backend.
translateArrayResults( $function, array $params)
Translates paths when the backend function returns results keyed by paths.
getFileList(array $params)
Get an iterator to list all stored files under a storage directory.
getBackendPath( $path, $latest=true)
Translate a legacy "title" path to it's "sha1" counterpart.
getDB( $index)
Get a connection to the repo file registry DB.
getInternalBackend()
Get the underlying FileBackend that is being wrapped.
__construct(array $config)
Create a new backend instance from configuration.
Handles a simple LRU key/value map with a maximum number of entries.
doQuickOperationsInternal(array $ops)
getFileProps(array $params)
Get the properties 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.
concatenate(array $params)
Concatenate a list of storage files into a single file system file.
fileExists(array $params)
Check if a file exists at a storage path in the backend.
mungeOpPaths(array $ops)
Translate legacy "title" source paths to their "sha1" counterparts.
getLocalCopyMulti(array $params)
Like getLocalCopy() except it takes an array of storage paths and yields an order preserved-map of st...
getPathForSHA1( $sha1)
Get the ultimate original storage path for a file.
string $name
Unique backend name.
getFileContentsMulti(array $params)
Like getFileContents() except it takes an array of storage paths and returns an order preserved map o...
preloadCache(array $paths)
Preload persistent file stat cache and property cache into in-process cache.
clearCache(array $paths=null)
Invalidate any in-process file stat and property cache.
Proxy backend that manages file layout rewriting for FileRepo.
getFileTimestamp(array $params)
Get the last-modified timestamp of the file at a storage path.
getBackendPaths(array $paths, $latest=true)
Translate legacy "title" paths to their "sha1" counterparts.
getFileSha1Base36(array $params)
Get a SHA-1 hash of the content of the file at a storage path in the backend.
MapCacheLRU $resolvedPathCache
streamFile(array $params)
Stream the content of the file at a storage path in the backend.