123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308 |
- <?php
- /**
- * Sync one file backend to another based on the journal of later.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- * http://www.gnu.org/copyleft/gpl.html
- *
- * @file
- * @ingroup Maintenance
- */
- require_once __DIR__ . '/Maintenance.php';
- /**
- * Maintenance script that syncs one file backend to another based on
- * the journal of later.
- *
- * @ingroup Maintenance
- */
- class SyncFileBackend extends Maintenance {
- public function __construct() {
- parent::__construct();
- $this->addDescription( 'Sync one file backend with another using the journal' );
- $this->addOption( 'src', 'Name of backend to sync from', true, true );
- $this->addOption( 'dst', 'Name of destination backend to sync', false, true );
- $this->addOption( 'start', 'Starting journal ID', false, true );
- $this->addOption( 'end', 'Ending journal ID', false, true );
- $this->addOption( 'posdir', 'Directory to read/record journal positions', false, true );
- $this->addOption( 'posdump', 'Just dump current journal position into the position dir.' );
- $this->addOption( 'postime', 'For position dumps, get the ID at this time', false, true );
- $this->addOption( 'backoff', 'Stop at entries younger than this age (sec).', false, true );
- $this->addOption( 'verbose', 'Verbose mode', false, false, 'v' );
- $this->setBatchSize( 50 );
- }
- public function execute() {
- $src = FileBackendGroup::singleton()->get( $this->getOption( 'src' ) );
- $posDir = $this->getOption( 'posdir' );
- $posFile = $posDir ? $posDir . '/' . wfWikiID() : false;
- if ( $this->hasOption( 'posdump' ) ) {
- // Just dump the current position into the specified position dir
- if ( !$this->hasOption( 'posdir' ) ) {
- $this->error( "Param posdir required!", 1 );
- }
- if ( $this->hasOption( 'postime' ) ) {
- $id = (int)$src->getJournal()->getPositionAtTime( $this->getOption( 'postime' ) );
- $this->output( "Requested journal position is $id.\n" );
- } else {
- $id = (int)$src->getJournal()->getCurrentPosition();
- $this->output( "Current journal position is $id.\n" );
- }
- if ( file_put_contents( $posFile, $id, LOCK_EX ) !== false ) {
- $this->output( "Saved journal position file.\n" );
- } else {
- $this->output( "Could not save journal position file.\n" );
- }
- if ( $this->isQuiet() ) {
- print $id; // give a single machine-readable number
- }
- return;
- }
- if ( !$this->hasOption( 'dst' ) ) {
- $this->error( "Param dst required!", 1 );
- }
- $dst = FileBackendGroup::singleton()->get( $this->getOption( 'dst' ) );
- $start = $this->getOption( 'start', 0 );
- if ( !$start && $posFile && is_dir( $posDir ) ) {
- $start = is_file( $posFile )
- ? (int)trim( file_get_contents( $posFile ) )
- : 0;
- ++$start; // we already did this ID, start with the next one
- $startFromPosFile = true;
- } else {
- $startFromPosFile = false;
- }
- if ( $this->hasOption( 'backoff' ) ) {
- $time = time() - $this->getOption( 'backoff', 0 );
- $end = (int)$src->getJournal()->getPositionAtTime( $time );
- } else {
- $end = $this->getOption( 'end', INF );
- }
- $this->output( "Synchronizing backend '{$dst->getName()}' to '{$src->getName()}'...\n" );
- $this->output( "Starting journal position is $start.\n" );
- if ( is_finite( $end ) ) {
- $this->output( "Ending journal position is $end.\n" );
- }
- // Periodically update the position file
- $callback = function ( $pos ) use ( $startFromPosFile, $posFile, $start ) {
- if ( $startFromPosFile && $pos >= $start ) { // successfully advanced
- file_put_contents( $posFile, $pos, LOCK_EX );
- }
- };
- // Actually sync the dest backend with the reference backend
- $lastOKPos = $this->syncBackends( $src, $dst, $start, $end, $callback );
- // Update the sync position file
- if ( $startFromPosFile && $lastOKPos >= $start ) { // successfully advanced
- if ( file_put_contents( $posFile, $lastOKPos, LOCK_EX ) !== false ) {
- $this->output( "Updated journal position file.\n" );
- } else {
- $this->output( "Could not update journal position file.\n" );
- }
- }
- if ( $lastOKPos === false ) {
- if ( !$start ) {
- $this->output( "No journal entries found.\n" );
- } else {
- $this->output( "No new journal entries found.\n" );
- }
- } else {
- $this->output( "Stopped synchronization at journal position $lastOKPos.\n" );
- }
- if ( $this->isQuiet() ) {
- print $lastOKPos; // give a single machine-readable number
- }
- }
- /**
- * Sync $dst backend to $src backend based on the $src logs given after $start.
- * Returns the journal entry ID this advanced to and handled (inclusive).
- *
- * @param FileBackend $src
- * @param FileBackend $dst
- * @param int $start Starting journal position
- * @param int $end Starting journal position
- * @param Closure $callback Callback to update any position file
- * @return int|bool Journal entry ID or false if there are none
- */
- protected function syncBackends(
- FileBackend $src, FileBackend $dst, $start, $end, Closure $callback
- ) {
- $lastOKPos = 0; // failed
- $first = true; // first batch
- if ( $start > $end ) { // sanity
- $this->error( "Error: given starting ID greater than ending ID.", 1 );
- }
- $next = null;
- do {
- $limit = min( $this->mBatchSize, $end - $start + 1 ); // don't go pass ending ID
- $this->output( "Doing id $start to " . ( $start + $limit - 1 ) . "...\n" );
- $entries = $src->getJournal()->getChangeEntries( $start, $limit, $next );
- $start = $next; // start where we left off next time
- if ( $first && !count( $entries ) ) {
- return false; // nothing to do
- }
- $first = false;
- $lastPosInBatch = 0;
- $pathsInBatch = []; // changed paths
- foreach ( $entries as $entry ) {
- if ( $entry['op'] !== 'null' ) { // null ops are just for reference
- $pathsInBatch[$entry['path']] = 1; // remove duplicates
- }
- $lastPosInBatch = $entry['id'];
- }
- $status = $this->syncFileBatch( array_keys( $pathsInBatch ), $src, $dst );
- if ( $status->isOK() ) {
- $lastOKPos = max( $lastOKPos, $lastPosInBatch );
- $callback( $lastOKPos ); // update position file
- } else {
- $this->error( print_r( $status->getErrorsArray(), true ) );
- break; // no gaps; everything up to $lastPos must be OK
- }
- if ( !$start ) {
- $this->output( "End of journal entries.\n" );
- }
- } while ( $start && $start <= $end );
- return $lastOKPos;
- }
- /**
- * Sync particular files of backend $src to the corresponding $dst backend files
- *
- * @param array $paths
- * @param FileBackend $src
- * @param FileBackend $dst
- * @return Status
- */
- protected function syncFileBatch( array $paths, FileBackend $src, FileBackend $dst ) {
- $status = Status::newGood();
- if ( !count( $paths ) ) {
- return $status; // nothing to do
- }
- // Source: convert internal backend names (FileBackendMultiWrite) to the public one
- $sPaths = $this->replaceNamePaths( $paths, $src );
- // Destination: get corresponding path name
- $dPaths = $this->replaceNamePaths( $paths, $dst );
- // Lock the live backend paths from modification
- $sLock = $src->getScopedFileLocks( $sPaths, LockManager::LOCK_UW, $status );
- $eLock = $dst->getScopedFileLocks( $dPaths, LockManager::LOCK_EX, $status );
- if ( !$status->isOK() ) {
- return $status;
- }
- $src->preloadFileStat( [ 'srcs' => $sPaths, 'latest' => 1 ] );
- $dst->preloadFileStat( [ 'srcs' => $dPaths, 'latest' => 1 ] );
- $ops = [];
- $fsFiles = [];
- foreach ( $sPaths as $i => $sPath ) {
- $dPath = $dPaths[$i]; // destination
- $sExists = $src->fileExists( [ 'src' => $sPath, 'latest' => 1 ] );
- if ( $sExists === true ) { // exists in source
- if ( $this->filesAreSame( $src, $dst, $sPath, $dPath ) ) {
- continue; // avoid local copies for non-FS backends
- }
- // Note: getLocalReference() is fast for FS backends
- $fsFile = $src->getLocalReference( [ 'src' => $sPath, 'latest' => 1 ] );
- if ( !$fsFile ) {
- $this->error( "Unable to sync '$dPath': could not get local copy." );
- $status->fatal( 'backend-fail-internal', $src->getName() );
- return $status;
- }
- $fsFiles[] = $fsFile; // keep TempFSFile objects alive as needed
- // Note: prepare() is usually fast for key/value backends
- $status->merge( $dst->prepare( [
- 'dir' => dirname( $dPath ), 'bypassReadOnly' => 1 ] ) );
- if ( !$status->isOK() ) {
- return $status;
- }
- $ops[] = [ 'op' => 'store',
- 'src' => $fsFile->getPath(), 'dst' => $dPath, 'overwrite' => 1 ];
- } elseif ( $sExists === false ) { // does not exist in source
- $ops[] = [ 'op' => 'delete', 'src' => $dPath, 'ignoreMissingSource' => 1 ];
- } else { // error
- $this->error( "Unable to sync '$dPath': could not stat file." );
- $status->fatal( 'backend-fail-internal', $src->getName() );
- return $status;
- }
- }
- $t_start = microtime( true );
- $status = $dst->doQuickOperations( $ops, [ 'bypassReadOnly' => 1 ] );
- if ( !$status->isOK() ) {
- sleep( 10 ); // wait and retry copy again
- $status = $dst->doQuickOperations( $ops, [ 'bypassReadOnly' => 1 ] );
- }
- $ellapsed_ms = floor( ( microtime( true ) - $t_start ) * 1000 );
- if ( $status->isOK() && $this->getOption( 'verbose' ) ) {
- $this->output( "Synchronized these file(s) [{$ellapsed_ms}ms]:\n" .
- implode( "\n", $dPaths ) . "\n" );
- }
- return $status;
- }
- /**
- * Substitute the backend name of storage paths with that of a given one
- *
- * @param array|string $paths List of paths or single string path
- * @param FileBackend $backend
- * @return array|string
- */
- protected function replaceNamePaths( $paths, FileBackend $backend ) {
- return preg_replace(
- '!^mwstore://([^/]+)!',
- StringUtils::escapeRegexReplacement( "mwstore://" . $backend->getName() ),
- $paths // string or array
- );
- }
- protected function filesAreSame( FileBackend $src, FileBackend $dst, $sPath, $dPath ) {
- return (
- ( $src->getFileSize( [ 'src' => $sPath ] )
- === $dst->getFileSize( [ 'src' => $dPath ] ) // short-circuit
- ) && ( $src->getFileSha1Base36( [ 'src' => $sPath ] )
- === $dst->getFileSha1Base36( [ 'src' => $dPath ] )
- )
- );
- }
- }
- $maintClass = "SyncFileBackend";
- require_once RUN_MAINTENANCE_IF_MAIN;
|