9 * @brief Base class for all backends using particular storage medium.
11 * This class defines the methods as abstract that subclasses must implement.
12 * Outside callers should *not* use functions with "Internal" in the name.
14 * The FileBackend operations are implemented using basic functions
15 * such as storeInternal(), copyInternal(), deleteInternal() and the like.
16 * This class is also responsible for path resolution and sanitization.
18 * @ingroup FileBackend
21 abstract class FileBackendStore
extends FileBackend
{
22 /** @var Array Map of paths to small (RAM/disk) cache items */
23 protected $cache = array(); // (storage path => key => value)
24 protected $maxCacheSize = 100; // integer; max paths with entries
25 /** @var Array Map of paths to large (RAM/disk) cache items */
26 protected $expensiveCache = array(); // (storage path => key => value)
27 protected $maxExpensiveCacheSize = 10; // integer; max paths with entries
29 /** @var Array Map of container names to sharding settings */
30 protected $shardViaHashLevels = array(); // (container name => config array)
32 protected $maxFileSize = 4294967296; // integer bytes (4GiB)
35 * Get the maximum allowable file size given backend
36 * medium restrictions and basic performance constraints.
37 * Do not call this function from places outside FileBackend and FileOp.
39 * @return integer Bytes
41 final public function maxFileSizeInternal() {
42 return $this->maxFileSize
;
46 * Check if a file can be created at a given storage path.
47 * FS backends should check if the parent directory exists and the file is writable.
48 * Backends using key/value stores should check if the container exists.
50 * @param $storagePath string
53 abstract public function isPathUsableInternal( $storagePath );
56 * Create a file in the backend with the given contents.
57 * Do not call this function from places outside FileBackend and FileOp.
60 * content : the raw file contents
61 * dst : destination storage path
62 * overwrite : overwrite any file that exists at the destination
64 * @param $params Array
67 final public function createInternal( array $params ) {
68 wfProfileIn( __METHOD__
);
69 wfProfileIn( __METHOD__
. '-' . $this->name
);
70 if ( strlen( $params['content'] ) > $this->maxFileSizeInternal() ) {
71 $status = Status
::newFatal( 'backend-fail-maxsize',
72 $params['dst'], $this->maxFileSizeInternal() );
74 $status = $this->doCreateInternal( $params );
75 $this->clearCache( array( $params['dst'] ) );
77 wfProfileOut( __METHOD__
. '-' . $this->name
);
78 wfProfileOut( __METHOD__
);
83 * @see FileBackendStore::createInternal()
85 abstract protected function doCreateInternal( array $params );
88 * Store a file into the backend from a file on disk.
89 * Do not call this function from places outside FileBackend and FileOp.
92 * src : source path on disk
93 * dst : destination storage path
94 * overwrite : overwrite any file that exists at the destination
96 * @param $params Array
99 final public function storeInternal( array $params ) {
100 wfProfileIn( __METHOD__
);
101 wfProfileIn( __METHOD__
. '-' . $this->name
);
102 if ( filesize( $params['src'] ) > $this->maxFileSizeInternal() ) {
103 $status = Status
::newFatal( 'backend-fail-store', $params['dst'] );
105 $status = $this->doStoreInternal( $params );
106 $this->clearCache( array( $params['dst'] ) );
108 wfProfileOut( __METHOD__
. '-' . $this->name
);
109 wfProfileOut( __METHOD__
);
114 * @see FileBackendStore::storeInternal()
116 abstract protected function doStoreInternal( array $params );
119 * Copy a file from one storage path to another in the backend.
120 * Do not call this function from places outside FileBackend and FileOp.
123 * src : source storage path
124 * dst : destination storage path
125 * overwrite : overwrite any file that exists at the destination
127 * @param $params Array
130 final public function copyInternal( array $params ) {
131 wfProfileIn( __METHOD__
);
132 wfProfileIn( __METHOD__
. '-' . $this->name
);
133 $status = $this->doCopyInternal( $params );
134 $this->clearCache( array( $params['dst'] ) );
135 wfProfileOut( __METHOD__
. '-' . $this->name
);
136 wfProfileOut( __METHOD__
);
141 * @see FileBackendStore::copyInternal()
143 abstract protected function doCopyInternal( array $params );
146 * Delete a file at the storage path.
147 * Do not call this function from places outside FileBackend and FileOp.
150 * src : source storage path
151 * ignoreMissingSource : do nothing if the source file does not exist
153 * @param $params Array
156 final public function deleteInternal( array $params ) {
157 wfProfileIn( __METHOD__
);
158 wfProfileIn( __METHOD__
. '-' . $this->name
);
159 $status = $this->doDeleteInternal( $params );
160 $this->clearCache( array( $params['src'] ) );
161 wfProfileOut( __METHOD__
. '-' . $this->name
);
162 wfProfileOut( __METHOD__
);
167 * @see FileBackendStore::deleteInternal()
169 abstract protected function doDeleteInternal( array $params );
172 * Move a file from one storage path to another in the backend.
173 * Do not call this function from places outside FileBackend and FileOp.
176 * src : source storage path
177 * dst : destination storage path
178 * overwrite : overwrite any file that exists at the destination
180 * @param $params Array
183 final public function moveInternal( array $params ) {
184 wfProfileIn( __METHOD__
);
185 wfProfileIn( __METHOD__
. '-' . $this->name
);
186 $status = $this->doMoveInternal( $params );
187 $this->clearCache( array( $params['src'], $params['dst'] ) );
188 wfProfileOut( __METHOD__
. '-' . $this->name
);
189 wfProfileOut( __METHOD__
);
194 * @see FileBackendStore::moveInternal()
197 protected function doMoveInternal( array $params ) {
198 // Copy source to dest
199 $status = $this->copyInternal( $params );
200 if ( $status->isOK() ) {
201 // Delete source (only fails due to races or medium going down)
202 $status->merge( $this->deleteInternal( array( 'src' => $params['src'] ) ) );
203 $status->setResult( true, $status->value
); // ignore delete() errors
209 * @see FileBackend::concatenate()
212 final public function concatenate( array $params ) {
213 wfProfileIn( __METHOD__
);
214 wfProfileIn( __METHOD__
. '-' . $this->name
);
215 $status = Status
::newGood();
217 // Try to lock the source files for the scope of this function
218 $scopeLockS = $this->getScopedFileLocks( $params['srcs'], LockManager
::LOCK_UW
, $status );
219 if ( $status->isOK() ) {
220 // Actually do the concatenation
221 $status->merge( $this->doConcatenate( $params ) );
224 wfProfileOut( __METHOD__
. '-' . $this->name
);
225 wfProfileOut( __METHOD__
);
230 * @see FileBackendStore::concatenate()
233 protected function doConcatenate( array $params ) {
234 $status = Status
::newGood();
235 $tmpPath = $params['dst']; // convenience
237 // Check that the specified temp file is valid...
238 wfSuppressWarnings();
239 $ok = ( is_file( $tmpPath ) && !filesize( $tmpPath ) );
241 if ( !$ok ) { // not present or not empty
242 $status->fatal( 'backend-fail-opentemp', $tmpPath );
246 // Build up the temp file using the source chunks (in order)...
247 $tmpHandle = fopen( $tmpPath, 'ab' );
248 if ( $tmpHandle === false ) {
249 $status->fatal( 'backend-fail-opentemp', $tmpPath );
252 foreach ( $params['srcs'] as $virtualSource ) {
253 // Get a local FS version of the chunk
254 $tmpFile = $this->getLocalReference( array( 'src' => $virtualSource ) );
256 $status->fatal( 'backend-fail-read', $virtualSource );
259 // Get a handle to the local FS version
260 $sourceHandle = fopen( $tmpFile->getPath(), 'r' );
261 if ( $sourceHandle === false ) {
262 fclose( $tmpHandle );
263 $status->fatal( 'backend-fail-read', $virtualSource );
266 // Append chunk to file (pass chunk size to avoid magic quotes)
267 if ( !stream_copy_to_stream( $sourceHandle, $tmpHandle ) ) {
268 fclose( $sourceHandle );
269 fclose( $tmpHandle );
270 $status->fatal( 'backend-fail-writetemp', $tmpPath );
273 fclose( $sourceHandle );
275 if ( !fclose( $tmpHandle ) ) {
276 $status->fatal( 'backend-fail-closetemp', $tmpPath );
280 clearstatcache(); // temp file changed
286 * @see FileBackend::doPrepare()
289 final protected function doPrepare( array $params ) {
290 wfProfileIn( __METHOD__
);
291 wfProfileIn( __METHOD__
. '-' . $this->name
);
293 $status = Status
::newGood();
294 list( $fullCont, $dir, $shard ) = $this->resolveStoragePath( $params['dir'] );
295 if ( $dir === null ) {
296 $status->fatal( 'backend-fail-invalidpath', $params['dir'] );
297 wfProfileOut( __METHOD__
. '-' . $this->name
);
298 wfProfileOut( __METHOD__
);
299 return $status; // invalid storage path
302 if ( $shard !== null ) { // confined to a single container/shard
303 $status->merge( $this->doPrepareInternal( $fullCont, $dir, $params ) );
304 } else { // directory is on several shards
305 wfDebug( __METHOD__
. ": iterating over all container shards.\n" );
306 list( $b, $shortCont, $r ) = self
::splitStoragePath( $params['dir'] );
307 foreach ( $this->getContainerSuffixes( $shortCont ) as $suffix ) {
308 $status->merge( $this->doPrepareInternal( "{$fullCont}{$suffix}", $dir, $params ) );
312 wfProfileOut( __METHOD__
. '-' . $this->name
);
313 wfProfileOut( __METHOD__
);
318 * @see FileBackendStore::doPrepare()
321 protected function doPrepareInternal( $container, $dir, array $params ) {
322 return Status
::newGood();
326 * @see FileBackend::doSecure()
329 final protected function doSecure( array $params ) {
330 wfProfileIn( __METHOD__
);
331 wfProfileIn( __METHOD__
. '-' . $this->name
);
332 $status = Status
::newGood();
334 list( $fullCont, $dir, $shard ) = $this->resolveStoragePath( $params['dir'] );
335 if ( $dir === null ) {
336 $status->fatal( 'backend-fail-invalidpath', $params['dir'] );
337 wfProfileOut( __METHOD__
. '-' . $this->name
);
338 wfProfileOut( __METHOD__
);
339 return $status; // invalid storage path
342 if ( $shard !== null ) { // confined to a single container/shard
343 $status->merge( $this->doSecureInternal( $fullCont, $dir, $params ) );
344 } else { // directory is on several shards
345 wfDebug( __METHOD__
. ": iterating over all container shards.\n" );
346 list( $b, $shortCont, $r ) = self
::splitStoragePath( $params['dir'] );
347 foreach ( $this->getContainerSuffixes( $shortCont ) as $suffix ) {
348 $status->merge( $this->doSecureInternal( "{$fullCont}{$suffix}", $dir, $params ) );
352 wfProfileOut( __METHOD__
. '-' . $this->name
);
353 wfProfileOut( __METHOD__
);
358 * @see FileBackendStore::doSecure()
361 protected function doSecureInternal( $container, $dir, array $params ) {
362 return Status
::newGood();
366 * @see FileBackend::doClean()
369 final protected function doClean( array $params ) {
370 wfProfileIn( __METHOD__
);
371 wfProfileIn( __METHOD__
. '-' . $this->name
);
372 $status = Status
::newGood();
374 list( $fullCont, $dir, $shard ) = $this->resolveStoragePath( $params['dir'] );
375 if ( $dir === null ) {
376 $status->fatal( 'backend-fail-invalidpath', $params['dir'] );
377 wfProfileOut( __METHOD__
. '-' . $this->name
);
378 wfProfileOut( __METHOD__
);
379 return $status; // invalid storage path
382 // Attempt to lock this directory...
383 $filesLockEx = array( $params['dir'] );
384 $scopedLockE = $this->getScopedFileLocks( $filesLockEx, LockManager
::LOCK_EX
, $status );
385 if ( !$status->isOK() ) {
386 wfProfileOut( __METHOD__
. '-' . $this->name
);
387 wfProfileOut( __METHOD__
);
388 return $status; // abort
391 if ( $shard !== null ) { // confined to a single container/shard
392 $status->merge( $this->doCleanInternal( $fullCont, $dir, $params ) );
393 } else { // directory is on several shards
394 wfDebug( __METHOD__
. ": iterating over all container shards.\n" );
395 list( $b, $shortCont, $r ) = self
::splitStoragePath( $params['dir'] );
396 foreach ( $this->getContainerSuffixes( $shortCont ) as $suffix ) {
397 $status->merge( $this->doCleanInternal( "{$fullCont}{$suffix}", $dir, $params ) );
401 wfProfileOut( __METHOD__
. '-' . $this->name
);
402 wfProfileOut( __METHOD__
);
407 * @see FileBackendStore::doClean()
410 protected function doCleanInternal( $container, $dir, array $params ) {
411 return Status
::newGood();
415 * @see FileBackend::fileExists()
418 final public function fileExists( array $params ) {
419 wfProfileIn( __METHOD__
);
420 wfProfileIn( __METHOD__
. '-' . $this->name
);
421 $stat = $this->getFileStat( $params );
422 wfProfileOut( __METHOD__
. '-' . $this->name
);
423 wfProfileOut( __METHOD__
);
424 return ( $stat === null ) ?
null : (bool)$stat; // null => failure
428 * @see FileBackend::getFileTimestamp()
431 final public function getFileTimestamp( array $params ) {
432 wfProfileIn( __METHOD__
);
433 wfProfileIn( __METHOD__
. '-' . $this->name
);
434 $stat = $this->getFileStat( $params );
435 wfProfileOut( __METHOD__
. '-' . $this->name
);
436 wfProfileOut( __METHOD__
);
437 return $stat ?
$stat['mtime'] : false;
441 * @see FileBackend::getFileSize()
444 final public function getFileSize( array $params ) {
445 wfProfileIn( __METHOD__
);
446 wfProfileIn( __METHOD__
. '-' . $this->name
);
447 $stat = $this->getFileStat( $params );
448 wfProfileOut( __METHOD__
. '-' . $this->name
);
449 wfProfileOut( __METHOD__
);
450 return $stat ?
$stat['size'] : false;
454 * @see FileBackend::getFileStat()
457 final public function getFileStat( array $params ) {
458 wfProfileIn( __METHOD__
);
459 wfProfileIn( __METHOD__
. '-' . $this->name
);
460 $path = self
::normalizeStoragePath( $params['src'] );
461 if ( $path === null ) {
462 wfProfileOut( __METHOD__
. '-' . $this->name
);
463 wfProfileOut( __METHOD__
);
464 return false; // invalid storage path
466 $latest = !empty( $params['latest'] );
467 if ( isset( $this->cache
[$path]['stat'] ) ) {
468 // If we want the latest data, check that this cached
469 // value was in fact fetched with the latest available data.
470 if ( !$latest ||
$this->cache
[$path]['stat']['latest'] ) {
471 $this->pingCache( $path ); // LRU
472 wfProfileOut( __METHOD__
. '-' . $this->name
);
473 wfProfileOut( __METHOD__
);
474 return $this->cache
[$path]['stat'];
477 wfProfileIn( __METHOD__
. '-miss' );
478 wfProfileIn( __METHOD__
. '-miss-' . $this->name
);
479 $stat = $this->doGetFileStat( $params );
480 wfProfileOut( __METHOD__
. '-miss-' . $this->name
);
481 wfProfileOut( __METHOD__
. '-miss' );
482 if ( is_array( $stat ) ) { // don't cache negatives
483 $this->trimCache(); // limit memory
484 $this->cache
[$path]['stat'] = $stat;
485 $this->cache
[$path]['stat']['latest'] = $latest;
487 wfProfileOut( __METHOD__
. '-' . $this->name
);
488 wfProfileOut( __METHOD__
);
493 * @see FileBackendStore::getFileStat()
495 abstract protected function doGetFileStat( array $params );
498 * @see FileBackend::getFileContents()
499 * @return bool|string
501 public function getFileContents( array $params ) {
502 wfProfileIn( __METHOD__
);
503 wfProfileIn( __METHOD__
. '-' . $this->name
);
504 $tmpFile = $this->getLocalReference( $params );
506 wfProfileOut( __METHOD__
. '-' . $this->name
);
507 wfProfileOut( __METHOD__
);
510 wfSuppressWarnings();
511 $data = file_get_contents( $tmpFile->getPath() );
513 wfProfileOut( __METHOD__
. '-' . $this->name
);
514 wfProfileOut( __METHOD__
);
519 * @see FileBackend::getFileSha1Base36()
520 * @return bool|string
522 final public function getFileSha1Base36( array $params ) {
523 wfProfileIn( __METHOD__
);
524 wfProfileIn( __METHOD__
. '-' . $this->name
);
525 $path = $params['src'];
526 if ( isset( $this->cache
[$path]['sha1'] ) ) {
527 $this->pingCache( $path ); // LRU
528 wfProfileOut( __METHOD__
. '-' . $this->name
);
529 wfProfileOut( __METHOD__
);
530 return $this->cache
[$path]['sha1'];
532 wfProfileIn( __METHOD__
. '-miss' );
533 wfProfileIn( __METHOD__
. '-miss-' . $this->name
);
534 $hash = $this->doGetFileSha1Base36( $params );
535 wfProfileOut( __METHOD__
. '-miss-' . $this->name
);
536 wfProfileOut( __METHOD__
. '-miss' );
537 if ( $hash ) { // don't cache negatives
538 $this->trimCache(); // limit memory
539 $this->cache
[$path]['sha1'] = $hash;
541 wfProfileOut( __METHOD__
. '-' . $this->name
);
542 wfProfileOut( __METHOD__
);
547 * @see FileBackendStore::getFileSha1Base36()
550 protected function doGetFileSha1Base36( array $params ) {
551 $fsFile = $this->getLocalReference( $params );
555 return $fsFile->getSha1Base36();
560 * @see FileBackend::getFileProps()
563 final public function getFileProps( array $params ) {
564 wfProfileIn( __METHOD__
);
565 wfProfileIn( __METHOD__
. '-' . $this->name
);
566 $fsFile = $this->getLocalReference( $params );
567 $props = $fsFile ?
$fsFile->getProps() : FSFile
::placeholderProps();
568 wfProfileOut( __METHOD__
. '-' . $this->name
);
569 wfProfileOut( __METHOD__
);
574 * @see FileBackend::getLocalReference()
575 * @return TempFSFile|null
577 public function getLocalReference( array $params ) {
578 wfProfileIn( __METHOD__
);
579 wfProfileIn( __METHOD__
. '-' . $this->name
);
580 $path = $params['src'];
581 if ( isset( $this->expensiveCache
[$path]['localRef'] ) ) {
582 $this->pingExpensiveCache( $path );
583 wfProfileOut( __METHOD__
. '-' . $this->name
);
584 wfProfileOut( __METHOD__
);
585 return $this->expensiveCache
[$path]['localRef'];
587 $tmpFile = $this->getLocalCopy( $params );
588 if ( $tmpFile ) { // don't cache negatives
589 $this->trimExpensiveCache(); // limit memory
590 $this->expensiveCache
[$path]['localRef'] = $tmpFile;
592 wfProfileOut( __METHOD__
. '-' . $this->name
);
593 wfProfileOut( __METHOD__
);
598 * @see FileBackend::streamFile()
601 final public function streamFile( array $params ) {
602 wfProfileIn( __METHOD__
);
603 wfProfileIn( __METHOD__
. '-' . $this->name
);
604 $status = Status
::newGood();
606 $info = $this->getFileStat( $params );
607 if ( !$info ) { // let StreamFile handle the 404
608 $status->fatal( 'backend-fail-notexists', $params['src'] );
611 // Set output buffer and HTTP headers for stream
612 $extraHeaders = isset( $params['headers'] ) ?
$params['headers'] : array();
613 $res = StreamFile
::prepareForStream( $params['src'], $info, $extraHeaders );
614 if ( $res == StreamFile
::NOT_MODIFIED
) {
615 // do nothing; client cache is up to date
616 } elseif ( $res == StreamFile
::READY_STREAM
) {
617 wfProfileIn( __METHOD__
. '-send' );
618 wfProfileIn( __METHOD__
. '-send-' . $this->name
);
619 $status = $this->doStreamFile( $params );
620 wfProfileOut( __METHOD__
. '-send-' . $this->name
);
621 wfProfileOut( __METHOD__
. '-send' );
623 $status->fatal( 'backend-fail-stream', $params['src'] );
626 wfProfileOut( __METHOD__
. '-' . $this->name
);
627 wfProfileOut( __METHOD__
);
632 * @see FileBackendStore::streamFile()
635 protected function doStreamFile( array $params ) {
636 $status = Status
::newGood();
638 $fsFile = $this->getLocalReference( $params );
640 $status->fatal( 'backend-fail-stream', $params['src'] );
641 } elseif ( !readfile( $fsFile->getPath() ) ) {
642 $status->fatal( 'backend-fail-stream', $params['src'] );
649 * @copydoc FileBackend::getFileList()
650 * @return Array|null|Traversable
652 final public function getFileList( array $params ) {
653 list( $fullCont, $dir, $shard ) = $this->resolveStoragePath( $params['dir'] );
654 if ( $dir === null ) { // invalid storage path
657 if ( $shard !== null ) {
658 // File listing is confined to a single container/shard
659 return $this->getFileListInternal( $fullCont, $dir, $params );
661 wfDebug( __METHOD__
. ": iterating over all container shards.\n" );
662 // File listing spans multiple containers/shards
663 list( $b, $shortCont, $r ) = self
::splitStoragePath( $params['dir'] );
664 return new FileBackendStoreShardListIterator( $this,
665 $fullCont, $dir, $this->getContainerSuffixes( $shortCont ), $params );
670 * Do not call this function from places outside FileBackend
672 * @see FileBackendStore::getFileList()
674 * @param $container string Resolved container name
675 * @param $dir string Resolved path relative to container
676 * @param $params Array
677 * @return Traversable|Array|null
679 abstract public function getFileListInternal( $container, $dir, array $params );
682 * Get the list of supported operations and their corresponding FileOp classes.
686 protected function supportedOperations() {
688 'store' => 'StoreFileOp',
689 'copy' => 'CopyFileOp',
690 'move' => 'MoveFileOp',
691 'delete' => 'DeleteFileOp',
692 'create' => 'CreateFileOp',
693 'null' => 'NullFileOp'
698 * Return a list of FileOp objects from a list of operations.
699 * Do not call this function from places outside FileBackend.
701 * The result must have the same number of items as the input.
702 * An exception is thrown if an unsupported operation is requested.
704 * @param $ops Array Same format as doOperations()
705 * @return Array List of FileOp objects
706 * @throws MWException
708 final public function getOperations( array $ops ) {
709 $supportedOps = $this->supportedOperations();
711 $performOps = array(); // array of FileOp objects
712 // Build up ordered array of FileOps...
713 foreach ( $ops as $operation ) {
714 $opName = $operation['op'];
715 if ( isset( $supportedOps[$opName] ) ) {
716 $class = $supportedOps[$opName];
717 // Get params for this operation
718 $params = $operation;
719 // Append the FileOp class
720 $performOps[] = new $class( $this, $params );
722 throw new MWException( "Operation `$opName` is not supported." );
730 * @see FileBackend::doOperationsInternal()
733 protected function doOperationsInternal( array $ops, array $opts ) {
734 wfProfileIn( __METHOD__
);
735 wfProfileIn( __METHOD__
. '-' . $this->name
);
736 $status = Status
::newGood();
738 // Build up a list of FileOps...
739 $performOps = $this->getOperations( $ops );
741 // Acquire any locks as needed...
742 if ( empty( $opts['nonLocking'] ) ) {
743 // Build up a list of files to lock...
744 $filesLockEx = $filesLockSh = array();
745 foreach ( $performOps as $fileOp ) {
746 $filesLockSh = array_merge( $filesLockSh, $fileOp->storagePathsRead() );
747 $filesLockEx = array_merge( $filesLockEx, $fileOp->storagePathsChanged() );
749 // Optimization: if doing an EX lock anyway, don't also set an SH one
750 $filesLockSh = array_diff( $filesLockSh, $filesLockEx );
751 // Get a shared lock on the parent directory of each path changed
752 $filesLockSh = array_merge( $filesLockSh, array_map( 'dirname', $filesLockEx ) );
753 // Try to lock those files for the scope of this function...
754 $scopeLockS = $this->getScopedFileLocks( $filesLockSh, LockManager
::LOCK_UW
, $status );
755 $scopeLockE = $this->getScopedFileLocks( $filesLockEx, LockManager
::LOCK_EX
, $status );
756 if ( !$status->isOK() ) {
757 wfProfileOut( __METHOD__
. '-' . $this->name
);
758 wfProfileOut( __METHOD__
);
759 return $status; // abort
763 // Clear any cache entries (after locks acquired)
766 // Actually attempt the operation batch...
767 $subStatus = FileOp
::attemptBatch( $performOps, $opts, $this->fileJournal
);
769 // Merge errors into status fields
770 $status->merge( $subStatus );
771 $status->success
= $subStatus->success
; // not done in merge()
773 wfProfileOut( __METHOD__
. '-' . $this->name
);
774 wfProfileOut( __METHOD__
);
779 * @see FileBackend::clearCache()
781 final public function clearCache( array $paths = null ) {
782 if ( is_array( $paths ) ) {
783 $paths = array_map( 'FileBackend::normalizeStoragePath', $paths );
784 $paths = array_filter( $paths, 'strlen' ); // remove nulls
786 if ( $paths === null ) {
787 $this->cache
= array();
788 $this->expensiveCache
= array();
790 foreach ( $paths as $path ) {
791 unset( $this->cache
[$path] );
792 unset( $this->expensiveCache
[$path] );
795 $this->doClearCache( $paths );
799 * Clears any additional stat caches for storage paths
801 * @see FileBackend::clearCache()
803 * @param $paths Array Storage paths (optional)
806 protected function doClearCache( array $paths = null ) {}
809 * Move a cache entry to the top (such as when accessed)
811 * @param $path string Storage path
813 protected function pingCache( $path ) {
814 if ( isset( $this->cache
[$path] ) ) {
815 $tmp = $this->cache
[$path];
816 unset( $this->cache
[$path] );
817 $this->cache
[$path] = $tmp;
822 * Prune the inexpensive cache if it is too big to add an item
826 protected function trimCache() {
827 if ( count( $this->cache
) >= $this->maxCacheSize
) {
828 reset( $this->cache
);
829 unset( $this->cache
[key( $this->cache
)] );
834 * Move a cache entry to the top (such as when accessed)
836 * @param $path string Storage path
838 protected function pingExpensiveCache( $path ) {
839 if ( isset( $this->expensiveCache
[$path] ) ) {
840 $tmp = $this->expensiveCache
[$path];
841 unset( $this->expensiveCache
[$path] );
842 $this->expensiveCache
[$path] = $tmp;
847 * Prune the expensive cache if it is too big to add an item
851 protected function trimExpensiveCache() {
852 if ( count( $this->expensiveCache
) >= $this->maxExpensiveCacheSize
) {
853 reset( $this->expensiveCache
);
854 unset( $this->expensiveCache
[key( $this->expensiveCache
)] );
859 * Check if a container name is valid.
860 * This checks for for length and illegal characters.
862 * @param $container string
865 final protected static function isValidContainerName( $container ) {
866 // This accounts for Swift and S3 restrictions while leaving room
867 // for things like '.xxx' (hex shard chars) or '.seg' (segments).
868 // This disallows directory separators or traversal characters.
869 // Note that matching strings URL encode to the same string;
870 // in Swift, the length restriction is *after* URL encoding.
871 return preg_match( '/^[a-z0-9][a-z0-9-_]{0,199}$/i', $container );
875 * Splits a storage path into an internal container name,
876 * an internal relative file name, and a container shard suffix.
877 * Any shard suffix is already appended to the internal container name.
878 * This also checks that the storage path is valid and within this backend.
880 * If the container is sharded but a suffix could not be determined,
881 * this means that the path can only refer to a directory and can only
882 * be scanned by looking in all the container shards.
884 * @param $storagePath string
885 * @return Array (container, path, container suffix) or (null, null, null) if invalid
887 final protected function resolveStoragePath( $storagePath ) {
888 list( $backend, $container, $relPath ) = self
::splitStoragePath( $storagePath );
889 if ( $backend === $this->name
) { // must be for this backend
890 $relPath = self
::normalizeContainerPath( $relPath );
891 if ( $relPath !== null ) {
892 // Get shard for the normalized path if this container is sharded
893 $cShard = $this->getContainerShard( $container, $relPath );
894 // Validate and sanitize the relative path (backend-specific)
895 $relPath = $this->resolveContainerPath( $container, $relPath );
896 if ( $relPath !== null ) {
897 // Prepend any wiki ID prefix to the container name
898 $container = $this->fullContainerName( $container );
899 if ( self
::isValidContainerName( $container ) ) {
900 // Validate and sanitize the container name (backend-specific)
901 $container = $this->resolveContainerName( "{$container}{$cShard}" );
902 if ( $container !== null ) {
903 return array( $container, $relPath, $cShard );
909 return array( null, null, null );
913 * Like resolveStoragePath() except null values are returned if
914 * the container is sharded and the shard could not be determined.
916 * @see FileBackendStore::resolveStoragePath()
918 * @param $storagePath string
919 * @return Array (container, path) or (null, null) if invalid
921 final protected function resolveStoragePathReal( $storagePath ) {
922 list( $container, $relPath, $cShard ) = $this->resolveStoragePath( $storagePath );
923 if ( $cShard !== null ) {
924 return array( $container, $relPath );
926 return array( null, null );
930 * Get the container name shard suffix for a given path.
931 * Any empty suffix means the container is not sharded.
933 * @param $container string Container name
934 * @param $relStoragePath string Storage path relative to the container
935 * @return string|null Returns null if shard could not be determined
937 final protected function getContainerShard( $container, $relPath ) {
938 list( $levels, $base, $repeat ) = $this->getContainerHashLevels( $container );
939 if ( $levels == 1 ||
$levels == 2 ) {
940 // Hash characters are either base 16 or 36
941 $char = ( $base == 36 ) ?
'[0-9a-z]' : '[0-9a-f]';
942 // Get a regex that represents the shard portion of paths.
943 // The concatenation of the captures gives us the shard.
944 if ( $levels === 1 ) { // 16 or 36 shards per container
945 $hashDirRegex = '(' . $char . ')';
946 } else { // 256 or 1296 shards per container
947 if ( $repeat ) { // verbose hash dir format (e.g. "a/ab/abc")
948 $hashDirRegex = $char . '/(' . $char . '{2})';
949 } else { // short hash dir format (e.g. "a/b/c")
950 $hashDirRegex = '(' . $char . ')/(' . $char . ')';
953 // Allow certain directories to be above the hash dirs so as
954 // to work with FileRepo (e.g. "archive/a/ab" or "temp/a/ab").
955 // They must be 2+ chars to avoid any hash directory ambiguity.
957 if ( preg_match( "!^(?:[^/]{2,}/)*$hashDirRegex(?:/|$)!", $relPath, $m ) ) {
958 return '.' . implode( '', array_slice( $m, 1 ) );
960 return null; // failed to match
962 return ''; // no sharding
966 * Get the sharding config for a container.
967 * If greater than 0, then all file storage paths within
968 * the container are required to be hashed accordingly.
970 * @param $container string
971 * @return Array (integer levels, integer base, repeat flag) or (0, 0, false)
973 final protected function getContainerHashLevels( $container ) {
974 if ( isset( $this->shardViaHashLevels
[$container] ) ) {
975 $config = $this->shardViaHashLevels
[$container];
976 $hashLevels = (int)$config['levels'];
977 if ( $hashLevels == 1 ||
$hashLevels == 2 ) {
978 $hashBase = (int)$config['base'];
979 if ( $hashBase == 16 ||
$hashBase == 36 ) {
980 return array( $hashLevels, $hashBase, $config['repeat'] );
984 return array( 0, 0, false ); // no sharding
988 * Get a list of full container shard suffixes for a container
990 * @param $container string
993 final protected function getContainerSuffixes( $container ) {
995 list( $digits, $base ) = $this->getContainerHashLevels( $container );
997 $numShards = pow( $base, $digits );
998 for ( $index = 0; $index < $numShards; $index++
) {
999 $shards[] = '.' . wfBaseConvert( $index, 10, $base, $digits );
1006 * Get the full container name, including the wiki ID prefix
1008 * @param $container string
1011 final protected function fullContainerName( $container ) {
1012 if ( $this->wikiId
!= '' ) {
1013 return "{$this->wikiId}-$container";
1020 * Resolve a container name, checking if it's allowed by the backend.
1021 * This is intended for internal use, such as encoding illegal chars.
1022 * Subclasses can override this to be more restrictive.
1024 * @param $container string
1025 * @return string|null
1027 protected function resolveContainerName( $container ) {
1032 * Resolve a relative storage path, checking if it's allowed by the backend.
1033 * This is intended for internal use, such as encoding illegal chars or perhaps
1034 * getting absolute paths (e.g. FS based backends). Note that the relative path
1035 * may be the empty string (e.g. the path is simply to the container).
1037 * @param $container string Container name
1038 * @param $relStoragePath string Storage path relative to the container
1039 * @return string|null Path or null if not valid
1041 protected function resolveContainerPath( $container, $relStoragePath ) {
1042 return $relStoragePath;
1047 * FileBackendStore helper function to handle file listings that span container shards.
1048 * Do not use this class from places outside of FileBackendStore.
1050 * @ingroup FileBackend
1052 class FileBackendStoreShardListIterator
implements Iterator
{
1053 /* @var FileBackendStore */
1058 protected $shardSuffixes;
1059 protected $container; // string
1060 protected $directory; // string
1062 /* @var Traversable */
1064 protected $curShard = 0; // integer
1065 protected $pos = 0; // integer
1068 * @param $backend FileBackendStore
1069 * @param $container string Full storage container name
1070 * @param $dir string Storage directory relative to container
1071 * @param $suffixes Array List of container shard suffixes
1072 * @param $params Array
1074 public function __construct(
1075 FileBackendStore
$backend, $container, $dir, array $suffixes, array $params
1077 $this->backend
= $backend;
1078 $this->container
= $container;
1079 $this->directory
= $dir;
1080 $this->shardSuffixes
= $suffixes;
1081 $this->params
= $params;
1085 * @see Iterator::current()
1086 * @return string|bool String or false
1088 public function current() {
1089 if ( is_array( $this->iter
) ) {
1090 return current( $this->iter
);
1092 return $this->iter
->current();
1097 * @see Iterator::key()
1100 public function key() {
1105 * @see Iterator::next()
1108 public function next() {
1110 if ( is_array( $this->iter
) ) {
1111 next( $this->iter
);
1113 $this->iter
->next();
1115 // Find the next non-empty shard if no elements are left
1116 $this->nextShardIteratorIfNotValid();
1120 * @see Iterator::rewind()
1123 public function rewind() {
1125 $this->curShard
= 0;
1126 $this->setIteratorFromCurrentShard();
1127 // Find the next non-empty shard if this one has no elements
1128 $this->nextShardIteratorIfNotValid();
1132 * @see Iterator::valid()
1135 public function valid() {
1136 if ( $this->iter
== null ) {
1137 return false; // some failure?
1138 } elseif ( is_array( $this->iter
) ) {
1139 return ( current( $this->iter
) !== false ); // no paths can have this value
1141 return $this->iter
->valid();
1146 * If the list iterator for this container shard is out of items,
1147 * then move on to the next container that has items.
1148 * If there are none, then it advances to the last container.
1150 protected function nextShardIteratorIfNotValid() {
1151 while ( !$this->valid() ) {
1152 if ( ++
$this->curShard
>= count( $this->shardSuffixes
) ) {
1153 break; // no more container shards
1155 $this->setIteratorFromCurrentShard();
1160 * Set the list iterator to that of the current container shard
1162 protected function setIteratorFromCurrentShard() {
1163 $suffix = $this->shardSuffixes
[$this->curShard
];
1164 $this->iter
= $this->backend
->getFileListInternal(
1165 "{$this->container}{$suffix}", $this->directory
, $this->params
);