24 require_once __DIR__ .
'/Maintenance.php';
42 parent::__construct();
43 $this->mDescription =
"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' );
60 $containers = explode(
'|', $this->
getOption(
'containers' ) );
61 $subDir = rtrim( $this->
getOption(
'subdir',
'' ),
'/' );
63 $rateFile = $this->
getOption(
'ratefile' );
65 if ( $this->
hasOption(
'utf8only' ) && !extension_loaded(
'mbstring' ) ) {
66 $this->
error(
"Cannot check for UTF-8, mbstring extension missing.", 1 );
69 foreach ( $containers
as $container ) {
70 if ( $subDir !=
'' ) {
71 $backendRel =
"$container/$subDir";
72 $this->
output(
"Doing container '$container', directory '$subDir'...\n" );
74 $backendRel = $container;
75 $this->
output(
"Doing container '$container'...\n" );
78 if ( $this->
hasOption(
'missingonly' ) ) {
79 $this->
output(
"\tBuilding list of missing files..." );
81 $this->
output( count( $srcPathsRel ) .
" file(s) need to be copied.\n" );
83 $srcPathsRel = $src->getFileList(
array(
84 'dir' => $src->getRootStoragePath() .
"/$backendRel",
87 if ( $srcPathsRel ===
null ) {
88 $this->
error(
"Could not list files in $container.", 1 );
94 $this->
output(
"\tBuilding destination stat cache..." );
95 $dstPathsRel = $dst->getFileList(
array(
96 'dir' => $dst->getRootStoragePath() .
"/$backendRel",
99 if ( $dstPathsRel ===
null ) {
100 $this->
error(
"Could not list files in $container.", 1 );
102 $this->statCache =
array();
103 foreach ( $dstPathsRel
as $dstPathRel ) {
104 $path = $dst->getRootStoragePath() .
"/$backendRel/$dstPathRel";
105 $this->statCache[sha1(
$path )] = $dst->getFileStat(
array(
'src' =>
$path ) );
107 $this->
output(
"done [" . count( $this->statCache ) .
" file(s)]\n" );
110 $this->
output(
"\tCopying file(s)...\n" );
112 $batchPaths =
array();
113 foreach ( $srcPathsRel
as $srcPathRel ) {
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" );
119 $batchPaths[$srcPathRel] = 1;
120 if ( count( $batchPaths ) >= $this->mBatchSize ) {
121 $this->
copyFileBatch( array_keys( $batchPaths ), $backendRel, $src, $dst );
122 $batchPaths =
array();
126 if ( count( $batchPaths ) ) {
127 $this->
copyFileBatch( array_keys( $batchPaths ), $backendRel, $src, $dst );
128 $batchPaths =
array();
130 $this->
output(
"\tCopied $count file(s).\n" );
132 if ( $this->
hasOption(
'syncviadelete' ) ) {
133 $this->
output(
"\tBuilding list of excess destination files..." );
135 $this->
output( count( $delPathsRel ) .
" file(s) need to be deleted.\n" );
137 $this->
output(
"\tDeleting file(s)...\n" );
139 $batchPaths =
array();
140 foreach ( $delPathsRel
as $delPathRel ) {
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" );
146 $batchPaths[$delPathRel] = 1;
147 if ( count( $batchPaths ) >= $this->mBatchSize ) {
148 $this->
delFileBatch( array_keys( $batchPaths ), $backendRel, $dst );
149 $batchPaths =
array();
153 if ( count( $batchPaths ) ) {
154 $this->
delFileBatch( array_keys( $batchPaths ), $backendRel, $dst );
155 $batchPaths =
array();
158 $this->
output(
"\tDeleted $count file(s).\n" );
161 if ( $subDir !=
'' ) {
162 $this->
output(
"Finished container '$container', directory '$subDir'.\n" );
164 $this->
output(
"Finished container '$container'.\n" );
168 $this->
output(
"Done.\n" );
180 if ( $srcPathsRel ===
null ) {
181 $this->
error(
"Could not list files in source container.", 1 );
185 if ( $dstPathsRel ===
null ) {
186 $this->
error(
"Could not list files in destination container.", 1 );
189 $relFilesDstSha1 =
array();
190 foreach ( $dstPathsRel
as $dstPathRel ) {
191 $relFilesDstSha1[sha1( $dstPathRel )] = 1;
193 unset( $dstPathsRel );
195 $missingPathsRel =
array();
196 foreach ( $srcPathsRel
as $srcPathRel ) {
197 if ( !isset( $relFilesDstSha1[sha1( $srcPathRel )] ) ) {
198 $missingPathsRel[] = $srcPathRel;
201 unset( $srcPathsRel );
203 return $missingPathsRel;
218 $copiedRel =
array();
222 if ( $this->
hasOption(
'missingonly' ) ) {
224 foreach ( $srcPathsRel
as $srcPathRel ) {
227 $t_start = microtime(
true );
229 $ellapsed_ms = floor( ( microtime(
true ) - $t_start ) * 1000 );
230 $this->
output(
"\n\tDownloaded these file(s) [{$ellapsed_ms}ms]:\n\t" .
231 implode(
"\n\t", $srcPaths ) .
"\n\n" );
235 foreach ( $srcPathsRel
as $srcPathRel ) {
238 if ( $this->
hasOption(
'utf8only' ) && !mb_check_encoding( $srcPath,
'UTF-8' ) ) {
239 $this->
error(
"$wikiId: Detected illegal (non-UTF8) path for $srcPath." );
241 } elseif ( !$this->
hasOption(
'missingonly' )
242 && $this->
filesAreSame( $src, $dst, $srcPath, $dstPath )
244 $this->
output(
"\tAlready have $srcPathRel.\n" );
247 $fsFile = array_key_exists( $srcPath, $fsFiles )
253 $this->
error(
"$wikiId: File '$srcPath' was listed but does not exist." );
255 $this->
error(
"$wikiId: Could not get local copy of $srcPath." );
258 } elseif ( !$fsFile->exists() ) {
262 $this->
error(
"$wikiId: Detected possible illegal path for $srcPath." );
265 $fsFiles[] = $fsFile;
267 $status = $dst->
prepare(
array(
'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 );
272 $ops[] =
array(
'op' =>
'store',
273 'src' => $fsFile->getPath(),
'dst' => $dstPath,
'overwrite' => 1 );
274 $copiedRel[] = $srcPathRel;
278 $t_start = microtime(
true );
280 if ( !$status->isOK() ) {
284 $ellapsed_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 );
288 } elseif ( count( $copiedRel ) ) {
289 $this->
output(
"\n\tCopied these file(s) [{$ellapsed_ms}ms]:\n\t" .
290 implode(
"\n\t", $copiedRel ) .
"\n\n" );
304 $deletedRel =
array();
308 foreach ( $dstPathsRel
as $dstPathRel ) {
310 $ops[] =
array(
'op' =>
'delete',
'src' => $dstPath );
311 $deletedRel[] = $dstPathRel;
315 $t_start = microtime(
true );
317 if ( !$status->isOK() ) {
321 $ellapsed_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 );
325 } elseif ( count( $deletedRel ) ) {
326 $this->
output(
"\n\tDeleted these file(s) [{$ellapsed_ms}ms]:\n\t" .
327 implode(
"\n\t", $deletedRel ) .
"\n\n" );
339 $skipHash = $this->
hasOption(
'skiphash' );
341 $dPathSha1 = sha1( $dPath );
342 if ( $this->statCache !==
null ) {
344 $dstStat = isset( $this->statCache[$dPathSha1] )
345 ? $this->statCache[$dPathSha1]
353 && is_array( $dstStat )
354 && $srcStat[
'size'] === $dstStat[
'size']
359 } elseif ( isset( $srcStat[
'md5'] ) && isset( $dstStat[
'md5'] ) ) {
363 $same = ( $srcStat[
'md5'] === $dstStat[
'md5'] );
364 } elseif ( $skipHash ) {
369 $same = ( $srcStat[
'mtime'] <= $dstStat[
'mtime'] );