MediaWiki REL1_32
convertLinks.php
Go to the documentation of this file.
1<?php
25
26require_once __DIR__ . '/Maintenance.php';
27
38
39 public function __construct() {
40 parent::__construct();
41 $this->addDescription(
42 'Convert from the old links schema (string->ID) to the new schema (ID->ID). '
43 . 'The wiki should be put into read-only mode while this script executes' );
44
45 $this->addArg( 'logperformance', "Log performance to perfLogFilename.", false );
46 $this->addArg(
47 'perfLogFilename',
48 "Filename where performance is logged if --logperformance was set "
49 . "(defaults to 'convLinksPerf.txt').",
50 false
51 );
52 $this->addArg(
53 'keep-links-table',
54 "Don't overwrite the old links table with the new one, leave the new table at links_temp.",
55 false
56 );
57 $this->addArg(
58 'nokeys',
59 /* (What about InnoDB?) */
60 "Don't create keys, and so allow duplicates in the new links table.\n"
61 . "This gives a huge speed improvement for very large links tables which are MyISAM.",
62 false
63 );
64 }
65
66 public function getDbType() {
68 }
69
70 public function execute() {
71 $dbw = $this->getDB( DB_MASTER );
72
73 $type = $dbw->getType();
74 if ( $type != 'mysql' ) {
75 $this->output( "Link table conversion not necessary for $type\n" );
76
77 return;
78 }
79
80 # counters etc
81 $numBadLinks = $curRowsRead = 0;
82
83 # total tuples INSERTed into links_temp
84 $totalTuplesInserted = 0;
85
86 # whether or not to give progress reports while reading IDs from cur table
87 $reportCurReadProgress = true;
88
89 # number of rows between progress reports
90 $curReadReportInterval = 1000;
91
92 # whether or not to give progress reports during conversion
93 $reportLinksConvProgress = true;
94
95 # number of rows per INSERT
96 $linksConvInsertInterval = 1000;
97
98 $initialRowOffset = 0;
99
100 # not used yet; highest row number from links table to process
101 # $finalRowOffset = 0;
102
103 $overwriteLinksTable = !$this->hasOption( 'keep-links-table' );
104 $noKeys = $this->hasOption( 'noKeys' );
105 $this->logPerformance = $this->hasOption( 'logperformance' );
106 $perfLogFilename = $this->getArg( 'perfLogFilename', "convLinksPerf.txt" );
107
108 # --------------------------------------------------------------------
109
110 list( $cur, $links, $links_temp, $links_backup ) =
111 $dbw->tableNamesN( 'cur', 'links', 'links_temp', 'links_backup' );
112
113 if ( $dbw->tableExists( 'pagelinks' ) ) {
114 $this->output( "...have pagelinks; skipping old links table updates\n" );
115
116 return;
117 }
118
119 $res = $dbw->query( "SELECT l_from FROM $links LIMIT 1" );
120 if ( $dbw->fieldType( $res, 0 ) == "int" ) {
121 $this->output( "Schema already converted\n" );
122
123 return;
124 }
125
126 $res = $dbw->query( "SELECT COUNT(*) AS count FROM $links" );
127 $row = $dbw->fetchObject( $res );
128 $numRows = $row->count;
129 $dbw->freeResult( $res );
130
131 if ( $numRows == 0 ) {
132 $this->output( "Updating schema (no rows to convert)...\n" );
133 $this->createTempTable();
134 } else {
135 $fh = false;
136 if ( $this->logPerformance ) {
137 $fh = fopen( $perfLogFilename, "w" );
138 if ( !$fh ) {
139 $this->error( "Couldn't open $perfLogFilename" );
140 $this->logPerformance = false;
141 }
142 }
143 $baseTime = $startTime = microtime( true );
144 # Create a title -> cur_id map
145 $this->output( "Loading IDs from $cur table...\n" );
146 $this->performanceLog( $fh, "Reading $numRows rows from cur table...\n" );
147 $this->performanceLog( $fh, "rows read vs seconds elapsed:\n" );
148
149 $dbw->bufferResults( false );
150 $res = $dbw->query( "SELECT cur_namespace,cur_title,cur_id FROM $cur" );
151 $ids = [];
152
153 foreach ( $res as $row ) {
154 $title = $row->cur_title;
155 if ( $row->cur_namespace ) {
156 $title = MediaWikiServices::getInstance()->getContentLanguage()->
157 getNsText( $row->cur_namespace ) . ":$title";
158 }
159 $ids[$title] = $row->cur_id;
160 $curRowsRead++;
161 if ( $reportCurReadProgress ) {
162 if ( ( $curRowsRead % $curReadReportInterval ) == 0 ) {
163 $this->performanceLog(
164 $fh,
165 $curRowsRead . " " . ( microtime( true ) - $baseTime ) . "\n"
166 );
167 $this->output( "\t$curRowsRead rows of $cur table read.\n" );
168 }
169 }
170 }
171 $dbw->freeResult( $res );
172 $dbw->bufferResults( true );
173 $this->output( "Finished loading IDs.\n\n" );
174 $this->performanceLog(
175 $fh,
176 "Took " . ( microtime( true ) - $baseTime ) . " seconds to load IDs.\n\n"
177 );
178
179 # --------------------------------------------------------------------
180
181 # Now, step through the links table (in chunks of $linksConvInsertInterval rows),
182 # convert, and write to the new table.
183 $this->createTempTable();
184 $this->performanceLog( $fh, "Resetting timer.\n\n" );
185 $baseTime = microtime( true );
186 $this->output( "Processing $numRows rows from $links table...\n" );
187 $this->performanceLog( $fh, "Processing $numRows rows from $links table...\n" );
188 $this->performanceLog( $fh, "rows inserted vs seconds elapsed:\n" );
189
190 for ( $rowOffset = $initialRowOffset; $rowOffset < $numRows;
191 $rowOffset += $linksConvInsertInterval
192 ) {
193 $sqlRead = "SELECT * FROM $links ";
194 $sqlRead = $dbw->limitResult( $sqlRead, $linksConvInsertInterval, $rowOffset );
195 $res = $dbw->query( $sqlRead );
196 if ( $noKeys ) {
197 $sqlWrite = [ "INSERT INTO $links_temp (l_from,l_to) VALUES " ];
198 } else {
199 $sqlWrite = [ "INSERT IGNORE INTO $links_temp (l_from,l_to) VALUES " ];
200 }
201
202 $tuplesAdded = 0; # no tuples added to INSERT yet
203 foreach ( $res as $row ) {
204 $fromTitle = $row->l_from;
205 if ( array_key_exists( $fromTitle, $ids ) ) { # valid title
206 $from = $ids[$fromTitle];
207 $to = $row->l_to;
208 if ( $tuplesAdded != 0 ) {
209 $sqlWrite[] = ",";
210 }
211 $sqlWrite[] = "($from,$to)";
212 $tuplesAdded++;
213 } else { # invalid title
214 $numBadLinks++;
215 }
216 }
217 $dbw->freeResult( $res );
218 # $this->output( "rowOffset: $rowOffset\ttuplesAdded: "
219 # . "$tuplesAdded\tnumBadLinks: $numBadLinks\n" );
220 if ( $tuplesAdded != 0 ) {
221 if ( $reportLinksConvProgress ) {
222 $this->output( "Inserting $tuplesAdded tuples into $links_temp..." );
223 }
224 $dbw->query( implode( "", $sqlWrite ) );
225 $totalTuplesInserted += $tuplesAdded;
226 if ( $reportLinksConvProgress ) {
227 $this->output( " done. Total $totalTuplesInserted tuples inserted.\n" );
228 $this->performanceLog(
229 $fh,
230 $totalTuplesInserted . " " . ( microtime( true ) - $baseTime ) . "\n"
231 );
232 }
233 }
234 }
235 $this->output( "$totalTuplesInserted valid titles and "
236 . "$numBadLinks invalid titles were processed.\n\n" );
237 $this->performanceLog(
238 $fh,
239 "$totalTuplesInserted valid titles and $numBadLinks invalid titles were processed.\n"
240 );
241 $this->performanceLog(
242 $fh,
243 "Total execution time: " . ( microtime( true ) - $startTime ) . " seconds.\n"
244 );
245 if ( $this->logPerformance ) {
246 fclose( $fh );
247 }
248 }
249 # --------------------------------------------------------------------
250
251 if ( $overwriteLinksTable ) {
252 # Check for existing links_backup, and delete it if it exists.
253 $this->output( "Dropping backup links table if it exists..." );
254 $dbw->query( "DROP TABLE IF EXISTS $links_backup", __METHOD__ );
255 $this->output( " done.\n" );
256
257 # Swap in the new table, and move old links table to links_backup
258 $this->output( "Swapping tables '$links' to '$links_backup'; '$links_temp' to '$links'..." );
259 $dbw->query( "RENAME TABLE links TO $links_backup, $links_temp TO $links", __METHOD__ );
260 $this->output( " done.\n\n" );
261
262 $this->output( "Conversion complete. The old table remains at $links_backup;\n" );
263 $this->output( "delete at your leisure.\n" );
264 } else {
265 $this->output( "Conversion complete. The converted table is at $links_temp;\n" );
266 $this->output( "the original links table is unchanged.\n" );
267 }
268 }
269
270 private function createTempTable() {
271 $dbConn = $this->getDB( DB_MASTER );
272
273 if ( !( $dbConn->isOpen() ) ) {
274 $this->output( "Opening connection to database failed.\n" );
275
276 return;
277 }
278 $links_temp = $dbConn->tableName( 'links_temp' );
279
280 $this->output( "Dropping temporary links table if it exists..." );
281 $dbConn->query( "DROP TABLE IF EXISTS $links_temp" );
282 $this->output( " done.\n" );
283
284 $this->output( "Creating temporary links table..." );
285 if ( $this->hasOption( 'noKeys' ) ) {
286 $dbConn->query( "CREATE TABLE $links_temp ( " .
287 "l_from int(8) unsigned NOT NULL default '0', " .
288 "l_to int(8) unsigned NOT NULL default '0')" );
289 } else {
290 $dbConn->query( "CREATE TABLE $links_temp ( " .
291 "l_from int(8) unsigned NOT NULL default '0', " .
292 "l_to int(8) unsigned NOT NULL default '0', " .
293 "UNIQUE KEY l_from(l_from,l_to), " .
294 "KEY (l_to))" );
295 }
296 $this->output( " done.\n\n" );
297 }
298
299 private function performanceLog( $fh, $text ) {
300 if ( $this->logPerformance ) {
301 fwrite( $fh, $text );
302 }
303 }
304}
305
306$maintClass = ConvertLinks::class;
307require_once RUN_MAINTENANCE_IF_MAIN;
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
addArg( $arg, $description, $required=true)
Add some args that are needed.
output( $out, $channel=null)
Throw some output to the user.
getDB( $db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
hasOption( $name)
Checks to see if a particular option exists.
getArg( $argId=0, $default=null)
Get an argument.
addDescription( $text)
Set the description text.
MediaWikiServices is the service locator for the application scope of MediaWiki.
$res
Definition database.txt:21
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition deferred.txt:11
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults error
Definition hooks.txt:2683
namespace and then decline to actually register it file or subcat img or subcat $title
Definition hooks.txt:994
require_once RUN_MAINTENANCE_IF_MAIN
const DB_MASTER
Definition defines.php:26