48 $dbw = $this->getPrimaryDB();
49 $dbr = $this->getReplicaDB();
50 $maxID = $dbr->newSelectQueryBuilder()
51 ->select(
'MAX(old_id)' )
53 ->caller( __METHOD__ )->fetchField();
54 $blockSize = $this->getBatchSize();
55 $dryRun = $this->getOption(
'dry-run' );
58 $numBlocks = intval( $maxID / $blockSize ) + 1;
62 for ( $b = 0; $b < $numBlocks; $b++ ) {
63 $this->waitForReplication();
65 $this->output( sprintf(
"%5.2f%%\n", $b / $numBlocks * 100 ) );
66 $start = $blockSize * $b + 1;
67 $end = $blockSize * ( $b + 1 );
69 $res = $dbr->newSelectQueryBuilder()
70 ->select( [
'old_id',
'old_text',
'old_flags' ] )
73 "old_id>=$start AND old_id<=$end " .
74 "AND old_flags LIKE '%object%' AND old_flags NOT LIKE '%external%' " .
76 'AND LOWER(CONVERT(LEFT(old_text,22) USING latin1)) = \'o:15:"historyblobstub"\''
78 ->caller( __METHOD__ )->fetchResultSet();
79 foreach ( $res as $row ) {
80 $numResolved += $this->
resolveStub( $row, $dryRun ) ? 1 : 0;
84 $this->output(
"100%\n" );
85 $this->output(
"$numResolved of $numTotal stubs resolved\n" );
106 $stub = unserialize( $row->old_text );
107 $flags = SqlBlobStore::explodeFlags( $row->old_flags );
109 $dbr = $this->getReplicaDB();
112 print
"Error at old_id $id: found object of class " . get_class( $stub ) .
113 ", expecting HistoryBlobStub\n";
117 $mainId = $stub->getLocation();
119 print
"Error at old_id $id: falsey location\n";
123 # Get the main text row
124 $mainTextRow = $dbr->newSelectQueryBuilder()
125 ->select( [
'old_text',
'old_flags' ] )
127 ->where( [
'old_id' => $mainId ] )
128 ->caller( __METHOD__ )->fetchRow();
130 if ( !$mainTextRow ) {
131 print
"Error at old_id $id: can't find main text row old_id $mainId\n";
135 $mainFlags = SqlBlobStore::explodeFlags( $mainTextRow->old_flags );
136 $mainText = $mainTextRow->old_text;
138 if ( !in_array(
'external', $mainFlags ) ) {
139 print
"Error at old_id $id: target $mainId is not external\n";
142 if ( preg_match(
'!^DB://([^/]*)/([^/]*)/[0-9a-f]{32}$!', $mainText ) ) {
143 print
"Error at old_id $id: target $mainId is a CGZ pointer\n";
146 if ( preg_match(
'!^DB://([^/]*)/([^/]*)/[0-9]{1,6}$!', $mainText ) ) {
147 print
"Error at old_id $id: target $mainId is a DHB pointer\n";
150 if ( !preg_match(
'!^DB://([^/]*)/([^/]*)$!', $mainText ) ) {
151 print
"Error at old_id $id: target $mainId has unrecognised text\n";
155 # Preserve the legacy encoding flag, but switch from object to external
156 if ( in_array(
'utf-8', $flags ) ) {
157 $newFlags =
'utf-8,external';
159 $newFlags =
'external';
161 $newText = $mainText .
'/' . $stub->getHash();
165 $this->output(
"Resolve $id => $newFlags $newText\n" );
167 $updated = $this->undoLog->update(
170 'old_flags' => $newFlags,
171 'old_text' => $newText
177 $this->output(
"Updated of old_id $id failed to match\n" );