MediaWiki  1.27.2
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  if ( $this->hasOption( 'utf8only' ) && !extension_loaded( 'mbstring' ) ) {
66  $this->error( "Cannot check for UTF-8, mbstring extension missing.", 1 ); // die
67  }
68 
69  foreach ( $containers as $container ) {
70  if ( $subDir != '' ) {
71  $backendRel = "$container/$subDir";
72  $this->output( "Doing container '$container', directory '$subDir'...\n" );
73  } else {
74  $backendRel = $container;
75  $this->output( "Doing container '$container'...\n" );
76  }
77 
78  if ( $this->hasOption( 'missingonly' ) ) {
79  $this->output( "\tBuilding list of missing files..." );
80  $srcPathsRel = $this->getListingDiffRel( $src, $dst, $backendRel );
81  $this->output( count( $srcPathsRel ) . " file(s) need to be copied.\n" );
82  } else {
83  $srcPathsRel = $src->getFileList( [
84  'dir' => $src->getRootStoragePath() . "/$backendRel",
85  'adviseStat' => true // avoid HEADs
86  ] );
87  if ( $srcPathsRel === null ) {
88  $this->error( "Could not list files in $container.", 1 ); // die
89  }
90  }
91 
92  if ( $this->getOption( 'prestat' ) && !$this->hasOption( 'missingonly' ) ) {
93  // Build the stat cache for the destination files
94  $this->output( "\tBuilding destination stat cache..." );
95  $dstPathsRel = $dst->getFileList( [
96  'dir' => $dst->getRootStoragePath() . "/$backendRel",
97  'adviseStat' => true // avoid HEADs
98  ] );
99  if ( $dstPathsRel === null ) {
100  $this->error( "Could not list files in $container.", 1 ); // die
101  }
102  $this->statCache = [];
103  foreach ( $dstPathsRel as $dstPathRel ) {
104  $path = $dst->getRootStoragePath() . "/$backendRel/$dstPathRel";
105  $this->statCache[sha1( $path )] = $dst->getFileStat( [ 'src' => $path ] );
106  }
107  $this->output( "done [" . count( $this->statCache ) . " file(s)]\n" );
108  }
109 
110  $this->output( "\tCopying file(s)...\n" );
111  $count = 0;
112  $batchPaths = [];
113  foreach ( $srcPathsRel as $srcPathRel ) {
114  // Check up on the rate file periodically to adjust the concurrency
115  if ( $rateFile && ( !$count || ( $count % 500 ) == 0 ) ) {
116  $this->mBatchSize = max( 1, (int)file_get_contents( $rateFile ) );
117  $this->output( "\tBatch size is now {$this->mBatchSize}.\n" );
118  }
119  $batchPaths[$srcPathRel] = 1; // remove duplicates
120  if ( count( $batchPaths ) >= $this->mBatchSize ) {
121  $this->copyFileBatch( array_keys( $batchPaths ), $backendRel, $src, $dst );
122  $batchPaths = []; // done
123  }
124  ++$count;
125  }
126  if ( count( $batchPaths ) ) { // left-overs
127  $this->copyFileBatch( array_keys( $batchPaths ), $backendRel, $src, $dst );
128  $batchPaths = []; // done
129  }
130  $this->output( "\tCopied $count file(s).\n" );
131 
132  if ( $this->hasOption( 'syncviadelete' ) ) {
133  $this->output( "\tBuilding list of excess destination files..." );
134  $delPathsRel = $this->getListingDiffRel( $dst, $src, $backendRel );
135  $this->output( count( $delPathsRel ) . " file(s) need to be deleted.\n" );
136 
137  $this->output( "\tDeleting file(s)...\n" );
138  $count = 0;
139  $batchPaths = [];
140  foreach ( $delPathsRel as $delPathRel ) {
141  // Check up on the rate file periodically to adjust the concurrency
142  if ( $rateFile && ( !$count || ( $count % 500 ) == 0 ) ) {
143  $this->mBatchSize = max( 1, (int)file_get_contents( $rateFile ) );
144  $this->output( "\tBatch size is now {$this->mBatchSize}.\n" );
145  }
146  $batchPaths[$delPathRel] = 1; // remove duplicates
147  if ( count( $batchPaths ) >= $this->mBatchSize ) {
148  $this->delFileBatch( array_keys( $batchPaths ), $backendRel, $dst );
149  $batchPaths = []; // done
150  }
151  ++$count;
152  }
153  if ( count( $batchPaths ) ) { // left-overs
154  $this->delFileBatch( array_keys( $batchPaths ), $backendRel, $dst );
155  $batchPaths = []; // done
156  }
157 
158  $this->output( "\tDeleted $count file(s).\n" );
159  }
160 
161  if ( $subDir != '' ) {
162  $this->output( "Finished container '$container', directory '$subDir'.\n" );
163  } else {
164  $this->output( "Finished container '$container'.\n" );
165  }
166  }
167 
168  $this->output( "Done.\n" );
169  }
170 
177  protected function getListingDiffRel( FileBackend $src, FileBackend $dst, $backendRel ) {
178  $srcPathsRel = $src->getFileList( [
179  'dir' => $src->getRootStoragePath() . "/$backendRel" ] );
180  if ( $srcPathsRel === null ) {
181  $this->error( "Could not list files in source container.", 1 ); // die
182  }
183  $dstPathsRel = $dst->getFileList( [
184  'dir' => $dst->getRootStoragePath() . "/$backendRel" ] );
185  if ( $dstPathsRel === null ) {
186  $this->error( "Could not list files in destination container.", 1 ); // die
187  }
188  // Get the list of destination files
189  $relFilesDstSha1 = [];
190  foreach ( $dstPathsRel as $dstPathRel ) {
191  $relFilesDstSha1[sha1( $dstPathRel )] = 1;
192  }
193  unset( $dstPathsRel ); // free
194  // Get the list of missing files
195  $missingPathsRel = [];
196  foreach ( $srcPathsRel as $srcPathRel ) {
197  if ( !isset( $relFilesDstSha1[sha1( $srcPathRel )] ) ) {
198  $missingPathsRel[] = $srcPathRel;
199  }
200  }
201  unset( $srcPathsRel ); // free
202 
203  return $missingPathsRel;
204  }
205 
213  protected function copyFileBatch(
214  array $srcPathsRel, $backendRel, FileBackend $src, FileBackend $dst
215  ) {
216  $ops = [];
217  $fsFiles = [];
218  $copiedRel = []; // for output message
219  $wikiId = $src->getWikiId();
220 
221  // Download the batch of source files into backend cache...
222  if ( $this->hasOption( 'missingonly' ) ) {
223  $srcPaths = [];
224  foreach ( $srcPathsRel as $srcPathRel ) {
225  $srcPaths[] = $src->getRootStoragePath() . "/$backendRel/$srcPathRel";
226  }
227  $t_start = microtime( true );
228  $fsFiles = $src->getLocalReferenceMulti( [ 'srcs' => $srcPaths, 'latest' => 1 ] );
229  $elapsed_ms = floor( ( microtime( true ) - $t_start ) * 1000 );
230  $this->output( "\n\tDownloaded these file(s) [{$elapsed_ms}ms]:\n\t" .
231  implode( "\n\t", $srcPaths ) . "\n\n" );
232  }
233 
234  // Determine what files need to be copied over...
235  foreach ( $srcPathsRel as $srcPathRel ) {
236  $srcPath = $src->getRootStoragePath() . "/$backendRel/$srcPathRel";
237  $dstPath = $dst->getRootStoragePath() . "/$backendRel/$srcPathRel";
238  if ( $this->hasOption( 'utf8only' ) && !mb_check_encoding( $srcPath, 'UTF-8' ) ) {
239  $this->error( "$wikiId: Detected illegal (non-UTF8) path for $srcPath." );
240  continue;
241  } elseif ( !$this->hasOption( 'missingonly' )
242  && $this->filesAreSame( $src, $dst, $srcPath, $dstPath )
243  ) {
244  $this->output( "\tAlready have $srcPathRel.\n" );
245  continue; // assume already copied...
246  }
247  $fsFile = array_key_exists( $srcPath, $fsFiles )
248  ? $fsFiles[$srcPath]
249  : $src->getLocalReference( [ 'src' => $srcPath, 'latest' => 1 ] );
250  if ( !$fsFile ) {
251  $src->clearCache( [ $srcPath ] );
252  if ( $src->fileExists( [ 'src' => $srcPath, 'latest' => 1 ] ) === false ) {
253  $this->error( "$wikiId: File '$srcPath' was listed but does not exist." );
254  } else {
255  $this->error( "$wikiId: Could not get local copy of $srcPath." );
256  }
257  continue;
258  } elseif ( !$fsFile->exists() ) {
259  // FSFileBackends just return the path for getLocalReference() and paths with
260  // illegal slashes may get normalized to a different path. This can cause the
261  // local reference to not exist...skip these broken files.
262  $this->error( "$wikiId: Detected possible illegal path for $srcPath." );
263  continue;
264  }
265  $fsFiles[] = $fsFile; // keep TempFSFile objects alive as needed
266  // Note: prepare() is usually fast for key/value backends
267  $status = $dst->prepare( [ 'dir' => dirname( $dstPath ), 'bypassReadOnly' => 1 ] );
268  if ( !$status->isOK() ) {
269  $this->error( print_r( $status->getErrorsArray(), true ) );
270  $this->error( "$wikiId: Could not copy $srcPath to $dstPath.", 1 ); // die
271  }
272  $ops[] = [ 'op' => 'store',
273  'src' => $fsFile->getPath(), 'dst' => $dstPath, 'overwrite' => 1 ];
274  $copiedRel[] = $srcPathRel;
275  }
276 
277  // Copy in the batch of source files...
278  $t_start = microtime( true );
279  $status = $dst->doQuickOperations( $ops, [ 'bypassReadOnly' => 1 ] );
280  if ( !$status->isOK() ) {
281  sleep( 10 ); // wait and retry copy again
282  $status = $dst->doQuickOperations( $ops, [ 'bypassReadOnly' => 1 ] );
283  }
284  $elapsed_ms = floor( ( microtime( true ) - $t_start ) * 1000 );
285  if ( !$status->isOK() ) {
286  $this->error( print_r( $status->getErrorsArray(), true ) );
287  $this->error( "$wikiId: Could not copy file batch.", 1 ); // die
288  } elseif ( count( $copiedRel ) ) {
289  $this->output( "\n\tCopied these file(s) [{$elapsed_ms}ms]:\n\t" .
290  implode( "\n\t", $copiedRel ) . "\n\n" );
291  }
292  }
293 
300  protected function delFileBatch(
301  array $dstPathsRel, $backendRel, FileBackend $dst
302  ) {
303  $ops = [];
304  $deletedRel = []; // for output message
305  $wikiId = $dst->getWikiId();
306 
307  // Determine what files need to be copied over...
308  foreach ( $dstPathsRel as $dstPathRel ) {
309  $dstPath = $dst->getRootStoragePath() . "/$backendRel/$dstPathRel";
310  $ops[] = [ 'op' => 'delete', 'src' => $dstPath ];
311  $deletedRel[] = $dstPathRel;
312  }
313 
314  // Delete the batch of source files...
315  $t_start = microtime( true );
316  $status = $dst->doQuickOperations( $ops, [ 'bypassReadOnly' => 1 ] );
317  if ( !$status->isOK() ) {
318  sleep( 10 ); // wait and retry copy again
319  $status = $dst->doQuickOperations( $ops, [ 'bypassReadOnly' => 1 ] );
320  }
321  $elapsed_ms = floor( ( microtime( true ) - $t_start ) * 1000 );
322  if ( !$status->isOK() ) {
323  $this->error( print_r( $status->getErrorsArray(), true ) );
324  $this->error( "$wikiId: Could not delete file batch.", 1 ); // die
325  } elseif ( count( $deletedRel ) ) {
326  $this->output( "\n\tDeleted these file(s) [{$elapsed_ms}ms]:\n\t" .
327  implode( "\n\t", $deletedRel ) . "\n\n" );
328  }
329  }
330 
338  protected function filesAreSame( FileBackend $src, FileBackend $dst, $sPath, $dPath ) {
339  $skipHash = $this->hasOption( 'skiphash' );
340  $srcStat = $src->getFileStat( [ 'src' => $sPath ] );
341  $dPathSha1 = sha1( $dPath );
342  if ( $this->statCache !== null ) {
343  // All dst files are already in stat cache
344  $dstStat = isset( $this->statCache[$dPathSha1] )
345  ? $this->statCache[$dPathSha1]
346  : false;
347  } else {
348  $dstStat = $dst->getFileStat( [ 'src' => $dPath ] );
349  }
350  // Initial fast checks to see if files are obviously different
351  $sameFast = (
352  is_array( $srcStat ) // sanity check that source exists
353  && is_array( $dstStat ) // dest exists
354  && $srcStat['size'] === $dstStat['size']
355  );
356  // More thorough checks against files
357  if ( !$sameFast ) {
358  $same = false; // no need to look farther
359  } elseif ( isset( $srcStat['md5'] ) && isset( $dstStat['md5'] ) ) {
360  // If MD5 was already in the stat info, just use it.
361  // This is useful as many objects stores can return this in object listing,
362  // so we can use it to avoid slow per-file HEADs.
363  $same = ( $srcStat['md5'] === $dstStat['md5'] );
364  } elseif ( $skipHash ) {
365  // This mode is good for copying to a backup location or resyncing clone
366  // backends in FileBackendMultiWrite (since they get writes second, they have
367  // higher timestamps). However, when copying the other way, this hits loads of
368  // false positives (possibly 100%) and wastes a bunch of time on GETs/PUTs.
369  $same = ( $srcStat['mtime'] <= $dstStat['mtime'] );
370  } else {
371  // This is the slowest method which does many per-file HEADs (unless an object
372  // store tracks SHA-1 in listings).
373  $same = ( $src->getFileSha1Base36( [ 'src' => $sPath, 'latest' => 1 ] )
374  === $dst->getFileSha1Base36( [ 'src' => $dPath, 'latest' => 1 ] ) );
375  }
376 
377  return $same;
378  }
379 }
380 
381 $maintClass = 'CopyFileBackend';
382 require_once RUN_MAINTENANCE_IF_MAIN;
Copy all files in one container of one backend to another.
the array() calling protocol came about after MediaWiki 1.4rc1.
getFileStat(array $params)
Get quick information about a file at a storage path in the backend.
getWikiId()
Get the wiki identifier used for this backend (possibly empty).
processing should stop and the error should be shown to the user * false
Definition: hooks.txt:189
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
Definition: maintenance.txt:39
hasOption($name)
Checks to see if a particular param exists.
require_once RUN_MAINTENANCE_IF_MAIN
Definition: maintenance.txt:50
getLocalReferenceMulti(array $params)
Like getLocalReference() except it takes an array of storage paths and returns a map of storage paths...
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:1798
addOption($name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
fileExists(array $params)
Check if a file exists at a storage path in the backend.
array null $statCache
(path sha1 => stat) Pre-computed dst stat entries from listings
getFileSha1Base36(array $params)
Get a SHA-1 hash of the file at a storage path in the backend.
addDescription($text)
Set the description text.
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
doQuickOperations(array $ops, array $opts=[])
Perform a set of independent file operations on some files.
prepare(array $params)
Prepare a storage directory for usage.
getListingDiffRel(FileBackend $src, FileBackend $dst, $backendRel)
getOption($name, $default=null)
Get an option, or return the default.
output($out, $channel=null)
Throw some output to the user.
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
getRootStoragePath()
Get the root storage path of this backend.
error($err, $die=0)
Throw an error to the user.
Base class for all file backend classes (including multi-write backends).
Definition: FileBackend.php:85
getFileList(array $params)
Get an iterator to list all stored files under a storage directory.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set $status
Definition: hooks.txt:1004
filesAreSame(FileBackend $src, FileBackend $dst, $sPath, $dPath)
$count
$maintClass
clearCache(array $paths=null)
Invalidate any in-process file stat and property cache.
setBatchSize($s=0)
Set the batch size.
copyFileBatch(array $srcPathsRel, $backendRel, FileBackend $src, FileBackend $dst)
delFileBatch(array $dstPathsRel, $backendRel, FileBackend $dst)
getLocalReference(array $params)
Returns a file system file, identical to the file at a storage path.