MediaWiki  1.30.0
copyFileBackend.php
Go to the documentation of this file.
1 <?php
24 require_once __DIR__ . '/Maintenance.php';
25 
39  protected $statCache = null;
40 
41  public function __construct() {
42  parent::__construct();
43  $this->addDescription( 'Copy files in one backend to another.' );
44  $this->addOption( 'src', 'Backend containing the source files', true, true );
45  $this->addOption( 'dst', 'Backend where files should be copied to', true, true );
46  $this->addOption( 'containers', 'Pipe separated list of containers', true, true );
47  $this->addOption( 'subdir', 'Only do items in this child directory', false, true );
48  $this->addOption( 'ratefile', 'File to check periodically for batch size', false, true );
49  $this->addOption( 'prestat', 'Stat the destination files first (try to use listings)' );
50  $this->addOption( 'skiphash', 'Skip SHA-1 sync checks for files' );
51  $this->addOption( 'missingonly', 'Only copy files missing from destination listing' );
52  $this->addOption( 'syncviadelete', 'Delete destination files missing from source listing' );
53  $this->addOption( 'utf8only', 'Skip source files that do not have valid UTF-8 names' );
54  $this->setBatchSize( 50 );
55  }
56 
57  public function execute() {
58  $src = FileBackendGroup::singleton()->get( $this->getOption( 'src' ) );
59  $dst = FileBackendGroup::singleton()->get( $this->getOption( 'dst' ) );
60  $containers = explode( '|', $this->getOption( 'containers' ) );
61  $subDir = rtrim( $this->getOption( 'subdir', '' ), '/' );
62 
63  $rateFile = $this->getOption( 'ratefile' );
64 
65  foreach ( $containers as $container ) {
66  if ( $subDir != '' ) {
67  $backendRel = "$container/$subDir";
68  $this->output( "Doing container '$container', directory '$subDir'...\n" );
69  } else {
70  $backendRel = $container;
71  $this->output( "Doing container '$container'...\n" );
72  }
73 
74  if ( $this->hasOption( 'missingonly' ) ) {
75  $this->output( "\tBuilding list of missing files..." );
76  $srcPathsRel = $this->getListingDiffRel( $src, $dst, $backendRel );
77  $this->output( count( $srcPathsRel ) . " file(s) need to be copied.\n" );
78  } else {
79  $srcPathsRel = $src->getFileList( [
80  'dir' => $src->getRootStoragePath() . "/$backendRel",
81  'adviseStat' => true // avoid HEADs
82  ] );
83  if ( $srcPathsRel === null ) {
84  $this->error( "Could not list files in $container.", 1 ); // die
85  }
86  }
87 
88  if ( $this->getOption( 'prestat' ) && !$this->hasOption( 'missingonly' ) ) {
89  // Build the stat cache for the destination files
90  $this->output( "\tBuilding destination stat cache..." );
91  $dstPathsRel = $dst->getFileList( [
92  'dir' => $dst->getRootStoragePath() . "/$backendRel",
93  'adviseStat' => true // avoid HEADs
94  ] );
95  if ( $dstPathsRel === null ) {
96  $this->error( "Could not list files in $container.", 1 ); // die
97  }
98  $this->statCache = [];
99  foreach ( $dstPathsRel as $dstPathRel ) {
100  $path = $dst->getRootStoragePath() . "/$backendRel/$dstPathRel";
101  $this->statCache[sha1( $path )] = $dst->getFileStat( [ 'src' => $path ] );
102  }
103  $this->output( "done [" . count( $this->statCache ) . " file(s)]\n" );
104  }
105 
106  $this->output( "\tCopying file(s)...\n" );
107  $count = 0;
108  $batchPaths = [];
109  foreach ( $srcPathsRel as $srcPathRel ) {
110  // Check up on the rate file periodically to adjust the concurrency
111  if ( $rateFile && ( !$count || ( $count % 500 ) == 0 ) ) {
112  $this->mBatchSize = max( 1, (int)file_get_contents( $rateFile ) );
113  $this->output( "\tBatch size is now {$this->mBatchSize}.\n" );
114  }
115  $batchPaths[$srcPathRel] = 1; // remove duplicates
116  if ( count( $batchPaths ) >= $this->mBatchSize ) {
117  $this->copyFileBatch( array_keys( $batchPaths ), $backendRel, $src, $dst );
118  $batchPaths = []; // done
119  }
120  ++$count;
121  }
122  if ( count( $batchPaths ) ) { // left-overs
123  $this->copyFileBatch( array_keys( $batchPaths ), $backendRel, $src, $dst );
124  $batchPaths = []; // done
125  }
126  $this->output( "\tCopied $count file(s).\n" );
127 
128  if ( $this->hasOption( 'syncviadelete' ) ) {
129  $this->output( "\tBuilding list of excess destination files..." );
130  $delPathsRel = $this->getListingDiffRel( $dst, $src, $backendRel );
131  $this->output( count( $delPathsRel ) . " file(s) need to be deleted.\n" );
132 
133  $this->output( "\tDeleting file(s)...\n" );
134  $count = 0;
135  $batchPaths = [];
136  foreach ( $delPathsRel as $delPathRel ) {
137  // Check up on the rate file periodically to adjust the concurrency
138  if ( $rateFile && ( !$count || ( $count % 500 ) == 0 ) ) {
139  $this->mBatchSize = max( 1, (int)file_get_contents( $rateFile ) );
140  $this->output( "\tBatch size is now {$this->mBatchSize}.\n" );
141  }
142  $batchPaths[$delPathRel] = 1; // remove duplicates
143  if ( count( $batchPaths ) >= $this->mBatchSize ) {
144  $this->delFileBatch( array_keys( $batchPaths ), $backendRel, $dst );
145  $batchPaths = []; // done
146  }
147  ++$count;
148  }
149  if ( count( $batchPaths ) ) { // left-overs
150  $this->delFileBatch( array_keys( $batchPaths ), $backendRel, $dst );
151  $batchPaths = []; // done
152  }
153 
154  $this->output( "\tDeleted $count file(s).\n" );
155  }
156 
157  if ( $subDir != '' ) {
158  $this->output( "Finished container '$container', directory '$subDir'.\n" );
159  } else {
160  $this->output( "Finished container '$container'.\n" );
161  }
162  }
163 
164  $this->output( "Done.\n" );
165  }
166 
173  protected function getListingDiffRel( FileBackend $src, FileBackend $dst, $backendRel ) {
174  $srcPathsRel = $src->getFileList( [
175  'dir' => $src->getRootStoragePath() . "/$backendRel" ] );
176  if ( $srcPathsRel === null ) {
177  $this->error( "Could not list files in source container.", 1 ); // die
178  }
179  $dstPathsRel = $dst->getFileList( [
180  'dir' => $dst->getRootStoragePath() . "/$backendRel" ] );
181  if ( $dstPathsRel === null ) {
182  $this->error( "Could not list files in destination container.", 1 ); // die
183  }
184  // Get the list of destination files
185  $relFilesDstSha1 = [];
186  foreach ( $dstPathsRel as $dstPathRel ) {
187  $relFilesDstSha1[sha1( $dstPathRel )] = 1;
188  }
189  unset( $dstPathsRel ); // free
190  // Get the list of missing files
191  $missingPathsRel = [];
192  foreach ( $srcPathsRel as $srcPathRel ) {
193  if ( !isset( $relFilesDstSha1[sha1( $srcPathRel )] ) ) {
194  $missingPathsRel[] = $srcPathRel;
195  }
196  }
197  unset( $srcPathsRel ); // free
198 
199  return $missingPathsRel;
200  }
201 
209  protected function copyFileBatch(
210  array $srcPathsRel, $backendRel, FileBackend $src, FileBackend $dst
211  ) {
212  $ops = [];
213  $fsFiles = [];
214  $copiedRel = []; // for output message
215  $wikiId = $src->getWikiId();
216 
217  // Download the batch of source files into backend cache...
218  if ( $this->hasOption( 'missingonly' ) ) {
219  $srcPaths = [];
220  foreach ( $srcPathsRel as $srcPathRel ) {
221  $srcPaths[] = $src->getRootStoragePath() . "/$backendRel/$srcPathRel";
222  }
223  $t_start = microtime( true );
224  $fsFiles = $src->getLocalReferenceMulti( [ 'srcs' => $srcPaths, 'latest' => 1 ] );
225  $elapsed_ms = floor( ( microtime( true ) - $t_start ) * 1000 );
226  $this->output( "\n\tDownloaded these file(s) [{$elapsed_ms}ms]:\n\t" .
227  implode( "\n\t", $srcPaths ) . "\n\n" );
228  }
229 
230  // Determine what files need to be copied over...
231  foreach ( $srcPathsRel as $srcPathRel ) {
232  $srcPath = $src->getRootStoragePath() . "/$backendRel/$srcPathRel";
233  $dstPath = $dst->getRootStoragePath() . "/$backendRel/$srcPathRel";
234  if ( $this->hasOption( 'utf8only' ) && !mb_check_encoding( $srcPath, 'UTF-8' ) ) {
235  $this->error( "$wikiId: Detected illegal (non-UTF8) path for $srcPath." );
236  continue;
237  } elseif ( !$this->hasOption( 'missingonly' )
238  && $this->filesAreSame( $src, $dst, $srcPath, $dstPath )
239  ) {
240  $this->output( "\tAlready have $srcPathRel.\n" );
241  continue; // assume already copied...
242  }
243  $fsFile = array_key_exists( $srcPath, $fsFiles )
244  ? $fsFiles[$srcPath]
245  : $src->getLocalReference( [ 'src' => $srcPath, 'latest' => 1 ] );
246  if ( !$fsFile ) {
247  $src->clearCache( [ $srcPath ] );
248  if ( $src->fileExists( [ 'src' => $srcPath, 'latest' => 1 ] ) === false ) {
249  $this->error( "$wikiId: File '$srcPath' was listed but does not exist." );
250  } else {
251  $this->error( "$wikiId: Could not get local copy of $srcPath." );
252  }
253  continue;
254  } elseif ( !$fsFile->exists() ) {
255  // FSFileBackends just return the path for getLocalReference() and paths with
256  // illegal slashes may get normalized to a different path. This can cause the
257  // local reference to not exist...skip these broken files.
258  $this->error( "$wikiId: Detected possible illegal path for $srcPath." );
259  continue;
260  }
261  $fsFiles[] = $fsFile; // keep TempFSFile objects alive as needed
262  // Note: prepare() is usually fast for key/value backends
263  $status = $dst->prepare( [ 'dir' => dirname( $dstPath ), 'bypassReadOnly' => 1 ] );
264  if ( !$status->isOK() ) {
265  $this->error( print_r( $status->getErrorsArray(), true ) );
266  $this->error( "$wikiId: Could not copy $srcPath to $dstPath.", 1 ); // die
267  }
268  $ops[] = [ 'op' => 'store',
269  'src' => $fsFile->getPath(), 'dst' => $dstPath, 'overwrite' => 1 ];
270  $copiedRel[] = $srcPathRel;
271  }
272 
273  // Copy in the batch of source files...
274  $t_start = microtime( true );
275  $status = $dst->doQuickOperations( $ops, [ 'bypassReadOnly' => 1 ] );
276  if ( !$status->isOK() ) {
277  sleep( 10 ); // wait and retry copy again
278  $status = $dst->doQuickOperations( $ops, [ 'bypassReadOnly' => 1 ] );
279  }
280  $elapsed_ms = floor( ( microtime( true ) - $t_start ) * 1000 );
281  if ( !$status->isOK() ) {
282  $this->error( print_r( $status->getErrorsArray(), true ) );
283  $this->error( "$wikiId: Could not copy file batch.", 1 ); // die
284  } elseif ( count( $copiedRel ) ) {
285  $this->output( "\n\tCopied these file(s) [{$elapsed_ms}ms]:\n\t" .
286  implode( "\n\t", $copiedRel ) . "\n\n" );
287  }
288  }
289 
296  protected function delFileBatch(
297  array $dstPathsRel, $backendRel, FileBackend $dst
298  ) {
299  $ops = [];
300  $deletedRel = []; // for output message
301  $wikiId = $dst->getWikiId();
302 
303  // Determine what files need to be copied over...
304  foreach ( $dstPathsRel as $dstPathRel ) {
305  $dstPath = $dst->getRootStoragePath() . "/$backendRel/$dstPathRel";
306  $ops[] = [ 'op' => 'delete', 'src' => $dstPath ];
307  $deletedRel[] = $dstPathRel;
308  }
309 
310  // Delete the batch of source files...
311  $t_start = microtime( true );
312  $status = $dst->doQuickOperations( $ops, [ 'bypassReadOnly' => 1 ] );
313  if ( !$status->isOK() ) {
314  sleep( 10 ); // wait and retry copy again
315  $status = $dst->doQuickOperations( $ops, [ 'bypassReadOnly' => 1 ] );
316  }
317  $elapsed_ms = floor( ( microtime( true ) - $t_start ) * 1000 );
318  if ( !$status->isOK() ) {
319  $this->error( print_r( $status->getErrorsArray(), true ) );
320  $this->error( "$wikiId: Could not delete file batch.", 1 ); // die
321  } elseif ( count( $deletedRel ) ) {
322  $this->output( "\n\tDeleted these file(s) [{$elapsed_ms}ms]:\n\t" .
323  implode( "\n\t", $deletedRel ) . "\n\n" );
324  }
325  }
326 
334  protected function filesAreSame( FileBackend $src, FileBackend $dst, $sPath, $dPath ) {
335  $skipHash = $this->hasOption( 'skiphash' );
336  $srcStat = $src->getFileStat( [ 'src' => $sPath ] );
337  $dPathSha1 = sha1( $dPath );
338  if ( $this->statCache !== null ) {
339  // All dst files are already in stat cache
340  $dstStat = isset( $this->statCache[$dPathSha1] )
341  ? $this->statCache[$dPathSha1]
342  : false;
343  } else {
344  $dstStat = $dst->getFileStat( [ 'src' => $dPath ] );
345  }
346  // Initial fast checks to see if files are obviously different
347  $sameFast = (
348  is_array( $srcStat ) // sanity check that source exists
349  && is_array( $dstStat ) // dest exists
350  && $srcStat['size'] === $dstStat['size']
351  );
352  // More thorough checks against files
353  if ( !$sameFast ) {
354  $same = false; // no need to look farther
355  } elseif ( isset( $srcStat['md5'] ) && isset( $dstStat['md5'] ) ) {
356  // If MD5 was already in the stat info, just use it.
357  // This is useful as many objects stores can return this in object listing,
358  // so we can use it to avoid slow per-file HEADs.
359  $same = ( $srcStat['md5'] === $dstStat['md5'] );
360  } elseif ( $skipHash ) {
361  // This mode is good for copying to a backup location or resyncing clone
362  // backends in FileBackendMultiWrite (since they get writes second, they have
363  // higher timestamps). However, when copying the other way, this hits loads of
364  // false positives (possibly 100%) and wastes a bunch of time on GETs/PUTs.
365  $same = ( $srcStat['mtime'] <= $dstStat['mtime'] );
366  } else {
367  // This is the slowest method which does many per-file HEADs (unless an object
368  // store tracks SHA-1 in listings).
369  $same = ( $src->getFileSha1Base36( [ 'src' => $sPath, 'latest' => 1 ] )
370  === $dst->getFileSha1Base36( [ 'src' => $dPath, 'latest' => 1 ] ) );
371  }
372 
373  return $same;
374  }
375 }
376 
377 $maintClass = 'CopyFileBackend';
378 require_once RUN_MAINTENANCE_IF_MAIN;
CopyFileBackend
Copy all files in one container of one backend to another.
Definition: copyFileBackend.php:37
false
processing should stop and the error should be shown to the user * false
Definition: hooks.txt:187
FileBackend
Base class for all file backend classes (including multi-write backends).
Definition: FileBackend.php:92
captcha-old.count
count
Definition: captcha-old.py:249
FileBackend\getLocalReferenceMulti
getLocalReferenceMulti(array $params)
Like getLocalReference() except it takes an array of storage paths and returns a map of storage paths...
Maintenance\addDescription
addDescription( $text)
Set the description text.
Definition: Maintenance.php:287
FileBackend\getFileStat
getFileStat(array $params)
Get quick information about a file at a storage path in the backend.
$status
Status::newGood()` to allow deletion, and then `return false` from the hook function. Ensure you consume the 'ChangeTagAfterDelete' hook to carry out custom deletion actions. $tag:name of the tag $user:user initiating the action & $status:Status object. See above. 'ChangeTagsListActive':Allows you to nominate which of the tags your extension uses are in active use. & $tags:list of all active tags. Append to this array. 'ChangeTagsAfterUpdateTags':Called after tags have been updated with the ChangeTags::updateTags function. Params:$addedTags:tags effectively added in the update $removedTags:tags effectively removed in the update $prevTags:tags that were present prior to the update $rc_id:recentchanges table id $rev_id:revision table id $log_id:logging table id $params:tag params $rc:RecentChange being tagged when the tagging accompanies the action or null $user:User who performed the tagging when the tagging is subsequent to the action or null 'ChangeTagsAllowedAdd':Called when checking if a user can add tags to a change. & $allowedTags:List of all the tags the user is allowed to add. Any tags the user wants to add( $addTags) that are not in this array will cause it to fail. You may add or remove tags to this array as required. $addTags:List of tags user intends to add. $user:User who is adding the tags. 'ChangeUserGroups':Called before user groups are changed. $performer:The User who will perform the change $user:The User whose groups will be changed & $add:The groups that will be added & $remove:The groups that will be removed 'Collation::factory':Called if $wgCategoryCollation is an unknown collation. $collationName:Name of the collation in question & $collationObject:Null. Replace with a subclass of the Collation class that implements the collation given in $collationName. 'ConfirmEmailComplete':Called after a user 's email has been confirmed successfully. $user:user(object) whose email is being confirmed 'ContentAlterParserOutput':Modify parser output for a given content object. Called by Content::getParserOutput after parsing has finished. Can be used for changes that depend on the result of the parsing but have to be done before LinksUpdate is called(such as adding tracking categories based on the rendered HTML). $content:The Content to render $title:Title of the page, as context $parserOutput:ParserOutput to manipulate 'ContentGetParserOutput':Customize parser output for a given content object, called by AbstractContent::getParserOutput. May be used to override the normal model-specific rendering of page content. $content:The Content to render $title:Title of the page, as context $revId:The revision ID, as context $options:ParserOptions for rendering. To avoid confusing the parser cache, the output can only depend on parameters provided to this hook function, not on global state. $generateHtml:boolean, indicating whether full HTML should be generated. If false, generation of HTML may be skipped, but other information should still be present in the ParserOutput object. & $output:ParserOutput, to manipulate or replace 'ContentHandlerDefaultModelFor':Called when the default content model is determined for a given title. May be used to assign a different model for that title. $title:the Title in question & $model:the model name. Use with CONTENT_MODEL_XXX constants. 'ContentHandlerForModelID':Called when a ContentHandler is requested for a given content model name, but no entry for that model exists in $wgContentHandlers. Note:if your extension implements additional models via this hook, please use GetContentModels hook to make them known to core. $modeName:the requested content model name & $handler:set this to a ContentHandler object, if desired. 'ContentModelCanBeUsedOn':Called to determine whether that content model can be used on a given page. This is especially useful to prevent some content models to be used in some special location. $contentModel:ID of the content model in question $title:the Title in question. & $ok:Output parameter, whether it is OK to use $contentModel on $title. Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok. 'ContribsPager::getQueryInfo':Before the contributions query is about to run & $pager:Pager object for contributions & $queryInfo:The query for the contribs Pager 'ContribsPager::reallyDoQuery':Called before really executing the query for My Contributions & $data:an array of results of all contribs queries $pager:The ContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'ContributionsLineEnding':Called before a contributions HTML line is finished $page:SpecialPage object for contributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'ContributionsToolLinks':Change tool links above Special:Contributions $id:User identifier $title:User page title & $tools:Array of tool links $specialPage:SpecialPage instance for context and services. Can be either SpecialContributions or DeletedContributionsPage. Extensions should type hint against a generic SpecialPage though. 'ConvertContent':Called by AbstractContent::convert when a conversion to another content model is requested. Handler functions that modify $result should generally return false to disable further attempts at conversion. $content:The Content object to be converted. $toModel:The ID of the content model to convert to. $lossy:boolean indicating whether lossy conversion is allowed. & $result:Output parameter, in case the handler function wants to provide a converted Content object. Note that $result->getContentModel() must return $toModel. 'CustomEditor':When invoking the page editor Return true to allow the normal editor to be used, or false if implementing a custom editor, e.g. for a special namespace, etc. $article:Article being edited $user:User performing the edit 'DatabaseOraclePostInit':Called after initialising an Oracle database $db:the DatabaseOracle object 'DeletedContribsPager::reallyDoQuery':Called before really executing the query for Special:DeletedContributions Similar to ContribsPager::reallyDoQuery & $data:an array of results of all contribs queries $pager:The DeletedContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'DeletedContributionsLineEnding':Called before a DeletedContributions HTML line is finished. Similar to ContributionsLineEnding $page:SpecialPage object for DeletedContributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'DifferenceEngineAfterLoadNewText':called in DifferenceEngine::loadNewText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before returning true from this function. $differenceEngine:DifferenceEngine object 'DifferenceEngineLoadTextAfterNewContentIsLoaded':called in DifferenceEngine::loadText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before checking if the variable 's value is null. This hook can be used to inject content into said class member variable. $differenceEngine:DifferenceEngine object 'DifferenceEngineMarkPatrolledLink':Allows extensions to change the "mark as patrolled" link which is shown both on the diff header as well as on the bottom of a page, usually wrapped in a span element which has class="patrollink". $differenceEngine:DifferenceEngine object & $markAsPatrolledLink:The "mark as patrolled" link HTML(string) $rcid:Recent change ID(rc_id) for this change(int) 'DifferenceEngineMarkPatrolledRCID':Allows extensions to possibly change the rcid parameter. For example the rcid might be set to zero due to the user being the same as the performer of the change but an extension might still want to show it under certain conditions. & $rcid:rc_id(int) of the change or 0 $differenceEngine:DifferenceEngine object $change:RecentChange object $user:User object representing the current user 'DifferenceEngineNewHeader':Allows extensions to change the $newHeader variable, which contains information about the new revision, such as the revision 's author, whether the revision was marked as a minor edit or not, etc. $differenceEngine:DifferenceEngine object & $newHeader:The string containing the various #mw-diff-otitle[1-5] divs, which include things like revision author info, revision comment, RevisionDelete link and more $formattedRevisionTools:Array containing revision tools, some of which may have been injected with the DiffRevisionTools hook $nextlink:String containing the link to the next revision(if any) $status
Definition: hooks.txt:1245
RUN_MAINTENANCE_IF_MAIN
require_once RUN_MAINTENANCE_IF_MAIN
Definition: maintenance.txt:50
Maintenance
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
Definition: maintenance.txt:39
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
FileBackendGroup\singleton
static singleton()
Definition: FileBackendGroup.php:45
CopyFileBackend\delFileBatch
delFileBatch(array $dstPathsRel, $backendRel, FileBackend $dst)
Definition: copyFileBackend.php:296
Maintenance\addOption
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
Definition: Maintenance.php:215
FileBackend\getFileSha1Base36
getFileSha1Base36(array $params)
Get a SHA-1 hash of the file at a storage path in the backend.
CopyFileBackend\execute
execute()
Do the actual work.
Definition: copyFileBackend.php:57
FileBackend\doQuickOperations
doQuickOperations(array $ops, array $opts=[])
Perform a set of independent file operations on some files.
Definition: FileBackend.php:661
FileBackend\fileExists
fileExists(array $params)
Check if a file exists at a storage path in the backend.
CopyFileBackend\copyFileBatch
copyFileBatch(array $srcPathsRel, $backendRel, FileBackend $src, FileBackend $dst)
Definition: copyFileBackend.php:209
FileBackend\prepare
prepare(array $params)
Prepare a storage directory for usage.
Definition: FileBackend.php:817
FileBackend\clearCache
clearCache(array $paths=null)
Invalidate any in-process file stat and property cache.
FileBackend\getFileList
getFileList(array $params)
Get an iterator to list all stored files under a storage directory.
FileBackend\getRootStoragePath
getRootStoragePath()
Get the root storage path of this backend.
Definition: FileBackend.php:1382
Maintenance\getOption
getOption( $name, $default=null)
Get an option, or return the default.
Definition: Maintenance.php:250
$path
$path
Definition: NoLocalSettings.php:26
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
true
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return true
Definition: hooks.txt:1965
Maintenance\error
error( $err, $die=0)
Throw an error to the user.
Definition: Maintenance.php:392
Maintenance\output
output( $out, $channel=null)
Throw some output to the user.
Definition: Maintenance.php:373
CopyFileBackend\getListingDiffRel
getListingDiffRel(FileBackend $src, FileBackend $dst, $backendRel)
Definition: copyFileBackend.php:173
FileBackend\getLocalReference
getLocalReference(array $params)
Returns a file system file, identical to the file at a storage path.
Definition: FileBackend.php:1098
CopyFileBackend\__construct
__construct()
Default constructor.
Definition: copyFileBackend.php:41
CopyFileBackend\filesAreSame
filesAreSame(FileBackend $src, FileBackend $dst, $sPath, $dPath)
Definition: copyFileBackend.php:334
Maintenance\hasOption
hasOption( $name)
Checks to see if a particular param exists.
Definition: Maintenance.php:236
FileBackend\getWikiId
getWikiId()
Alias to getDomainId()
Definition: FileBackend.php:232
$maintClass
$maintClass
Definition: copyFileBackend.php:377
array
the array() calling protocol came about after MediaWiki 1.4rc1.
Maintenance\setBatchSize
setBatchSize( $s=0)
Set the batch size.
Definition: Maintenance.php:314
CopyFileBackend\$statCache
array null $statCache
(path sha1 => stat) Pre-computed dst stat entries from listings
Definition: copyFileBackend.php:39