Revert r87635, r87637, r87639, r87643 (MW_MIN_PHP_VERSION etc.): breaks HipHop support.
[lhc/web/wiklou.git] / includes / installer / DatabaseUpdater.php
1 <?php
2 /**
3 * DBMS-specific updater helper.
4 *
5 * @file
6 * @ingroup Deployment
7 */
8
9 require_once( dirname(__FILE__) . '/../../maintenance/Maintenance.php' );
10
11 /*
12 * Class for handling database updates. Roughly based off of updaters.inc, with
13 * a few improvements :)
14 *
15 * @ingroup Deployment
16 * @since 1.17
17 */
18 abstract class DatabaseUpdater {
19
20 /**
21 * Array of updates to perform on the database
22 *
23 * @var array
24 */
25 protected $updates = array();
26
27 /**
28 * List of extension-provided database updates
29 * @var array
30 */
31 protected $extensionUpdates = array();
32
33 /**
34 * Used to hold schema files during installation process
35 * @var array
36 */
37 protected $newExtensions = array();
38
39 /**
40 * Handle to the database subclass
41 *
42 * @var DatabaseBase
43 */
44 protected $db;
45
46 protected $shared = false;
47
48 protected $postDatabaseUpdateMaintenance = array(
49 'DeleteDefaultMessages'
50 );
51
52 /**
53 * Constructor
54 *
55 * @param $db DatabaseBase object to perform updates on
56 * @param $shared bool Whether to perform updates on shared tables
57 * @param $maintenance Maintenance Maintenance object which created us
58 */
59 protected function __construct( DatabaseBase &$db, $shared, Maintenance $maintenance = null ) {
60 $this->db = $db;
61 $this->db->setFlag( DBO_DDLMODE ); // For Oracle's handling of schema files
62 $this->shared = $shared;
63 if ( $maintenance ) {
64 $this->maintenance = $maintenance;
65 } else {
66 $this->maintenance = new FakeMaintenance;
67 }
68 $this->initOldGlobals();
69 wfRunHooks( 'LoadExtensionSchemaUpdates', array( $this ) );
70 }
71
72 /**
73 * Initialize all of the old globals. One day this should all become
74 * something much nicer
75 */
76 private function initOldGlobals() {
77 global $wgExtNewTables, $wgExtNewFields, $wgExtPGNewFields,
78 $wgExtPGAlteredFields, $wgExtNewIndexes, $wgExtModifiedFields;
79
80 # For extensions only, should be populated via hooks
81 # $wgDBtype should be checked to specifiy the proper file
82 $wgExtNewTables = array(); // table, dir
83 $wgExtNewFields = array(); // table, column, dir
84 $wgExtPGNewFields = array(); // table, column, column attributes; for PostgreSQL
85 $wgExtPGAlteredFields = array(); // table, column, new type, conversion method; for PostgreSQL
86 $wgExtNewIndexes = array(); // table, index, dir
87 $wgExtModifiedFields = array(); // table, index, dir
88 }
89
90 /**
91 * @throws MWException
92 * @param DatabaseBase $db
93 * @param bool $shared
94 * @param null $maintenance
95 * @return DatabaseUpdater
96 */
97 public static function newForDB( &$db, $shared = false, $maintenance = null ) {
98 $type = $db->getType();
99 if( in_array( $type, Installer::getDBTypes() ) ) {
100 $class = ucfirst( $type ) . 'Updater';
101 return new $class( $db, $shared, $maintenance );
102 } else {
103 throw new MWException( __METHOD__ . ' called for unsupported $wgDBtype' );
104 }
105 }
106
107 /**
108 * Get a database connection to run updates
109 *
110 * @return DatabaseBase
111 */
112 public function getDB() {
113 return $this->db;
114 }
115
116 /**
117 * Output some text. If we're running from web, escape the text first.
118 *
119 * @param $str String: Text to output
120 */
121 public function output( $str ) {
122 if ( $this->maintenance->isQuiet() ) {
123 return;
124 }
125 global $wgCommandLineMode;
126 if( !$wgCommandLineMode ) {
127 $str = htmlspecialchars( $str );
128 }
129 echo $str;
130 flush();
131 }
132
133 /**
134 * Add a new update coming from an extension. This should be called by
135 * extensions while executing the LoadExtensionSchemaUpdates hook.
136 *
137 * @param $update Array: the update to run. Format is the following:
138 * first item is the callback function, it also can be a
139 * simple string with the name of a function in this class,
140 * following elements are parameters to the function.
141 * Note that callback functions will receive this object as
142 * first parameter.
143 */
144 public function addExtensionUpdate( Array $update ) {
145 $this->extensionUpdates[] = $update;
146 }
147
148 /**
149 * Convenience wrapper for addExtensionUpdate() when adding a new table (which
150 * is the most common usage of updaters in an extension)
151 * @param $tableName String Name of table to create
152 * @param $sqlPath String Full path to the schema file
153 */
154 public function addExtensionTable( $tableName, $sqlPath ) {
155 $this->extensionUpdates[] = array( 'addTable', $tableName, $sqlPath, true );
156 }
157
158 /**
159 * Add a brand new extension to MediaWiki. Used during the initial install
160 * @param $ext String Name of extension
161 * @param $sqlPath String Full path to the schema file
162 */
163 public function addNewExtension( $ext, $sqlPath ) {
164 $this->newExtensions[ strtolower( $ext ) ] = $sqlPath;
165 }
166
167 /**
168 * Get the list of extensions that registered a schema with our DB type
169 * @return array
170 */
171 public function getNewExtensions() {
172 return $this->newExtensions;
173 }
174
175 /**
176 * Get the list of extension-defined updates
177 *
178 * @return Array
179 */
180 protected function getExtensionUpdates() {
181 return $this->extensionUpdates;
182 }
183
184 public function getPostDatabaseUpdateMaintenance() {
185 return $this->postDatabaseUpdateMaintenance;
186 }
187
188 /**
189 * Do all the updates
190 *
191 * @param $what Array: what updates to perform
192 */
193 public function doUpdates( $what = array( 'core', 'extensions', 'purge' ) ) {
194 global $wgVersion;
195
196 $what = array_flip( $what );
197 if ( isset( $what['core'] ) ) {
198 $this->runUpdates( $this->getCoreUpdateList(), false );
199 }
200 if ( isset( $what['extensions'] ) ) {
201 $this->runUpdates( $this->getOldGlobalUpdates(), false );
202 $this->runUpdates( $this->getExtensionUpdates(), true );
203 }
204
205 $this->setAppliedUpdates( $wgVersion, $this->updates );
206
207 if( isset( $what['purge'] ) ) {
208 $this->purgeCache();
209 }
210 if ( isset( $what['core'] ) ) {
211 $this->checkStats();
212 }
213 }
214
215 /**
216 * Helper function for doUpdates()
217 *
218 * @param $updates Array of updates to run
219 * @param $passSelf Boolean: whether to pass this object we calling external
220 * functions
221 */
222 private function runUpdates( array $updates, $passSelf ) {
223 foreach ( $updates as $params ) {
224 $func = array_shift( $params );
225 if( !is_array( $func ) && method_exists( $this, $func ) ) {
226 $func = array( $this, $func );
227 } elseif ( $passSelf ) {
228 array_unshift( $params, $this );
229 }
230 call_user_func_array( $func, $params );
231 flush();
232 }
233 $this->updates = array_merge( $this->updates, $updates );
234 }
235
236 protected function setAppliedUpdates( $version, $updates = array() ) {
237 if( !$this->canUseNewUpdatelog() ) {
238 return;
239 }
240 $key = "updatelist-$version-" . time();
241 $this->db->insert( 'updatelog',
242 array( 'ul_key' => $key, 'ul_value' => serialize( $updates ) ),
243 __METHOD__ );
244 }
245
246 /**
247 * Helper function: check if the given key is present in the updatelog table.
248 * Obviously, only use this for updates that occur after the updatelog table was
249 * created!
250 * @param $key String Name of the key to check for
251 */
252 public function updateRowExists( $key ) {
253 $row = $this->db->selectRow(
254 'updatelog',
255 '1',
256 array( 'ul_key' => $key ),
257 __METHOD__
258 );
259 return (bool)$row;
260 }
261
262 /**
263 * Helper function: Add a key to the updatelog table
264 * Obviously, only use this for updates that occur after the updatelog table was
265 * created!
266 * @param $key String Name of key to insert
267 * @param $val String [optional] value to insert along with the key
268 */
269 public function insertUpdateRow( $key, $val = null ) {
270 $values = array( 'ul_key' => $key );
271 if( $val && $this->canUseNewUpdatelog() ) {
272 $values['ul_value'] = $val;
273 }
274 $this->db->insert( 'updatelog', $values, __METHOD__, 'IGNORE' );
275 }
276
277 /**
278 * Updatelog was changed in 1.17 to have a ul_value column so we can record
279 * more information about what kind of updates we've done (that's what this
280 * class does). Pre-1.17 wikis won't have this column, and really old wikis
281 * might not even have updatelog at all
282 *
283 * @return boolean
284 */
285 protected function canUseNewUpdatelog() {
286 return $this->db->tableExists( 'updatelog' ) &&
287 $this->db->fieldExists( 'updatelog', 'ul_value' );
288 }
289
290 /**
291 * Before 1.17, we used to handle updates via stuff like
292 * $wgExtNewTables/Fields/Indexes. This is nasty :) We refactored a lot
293 * of this in 1.17 but we want to remain back-compatible for a while. So
294 * load up these old global-based things into our update list.
295 */
296 protected function getOldGlobalUpdates() {
297 global $wgExtNewFields, $wgExtNewTables, $wgExtModifiedFields,
298 $wgExtNewIndexes, $wgSharedDB, $wgSharedTables;
299
300 $doUser = $this->shared ?
301 $wgSharedDB && in_array( 'user', $wgSharedTables ) :
302 !$wgSharedDB || !in_array( 'user', $wgSharedTables );
303
304 $updates = array();
305
306 foreach ( $wgExtNewTables as $tableRecord ) {
307 $updates[] = array(
308 'addTable', $tableRecord[0], $tableRecord[1], true
309 );
310 }
311
312 foreach ( $wgExtNewFields as $fieldRecord ) {
313 if ( $fieldRecord[0] != 'user' || $doUser ) {
314 $updates[] = array(
315 'addField', $fieldRecord[0], $fieldRecord[1],
316 $fieldRecord[2], true
317 );
318 }
319 }
320
321 foreach ( $wgExtNewIndexes as $fieldRecord ) {
322 $updates[] = array(
323 'addIndex', $fieldRecord[0], $fieldRecord[1],
324 $fieldRecord[2], true
325 );
326 }
327
328 foreach ( $wgExtModifiedFields as $fieldRecord ) {
329 $updates[] = array(
330 'modifyField', $fieldRecord[0], $fieldRecord[1],
331 $fieldRecord[2], true
332 );
333 }
334
335 return $updates;
336 }
337
338 /**
339 * Get an array of updates to perform on the database. Should return a
340 * multi-dimensional array. The main key is the MediaWiki version (1.12,
341 * 1.13...) with the values being arrays of updates, identical to how
342 * updaters.inc did it (for now)
343 *
344 * @return Array
345 */
346 protected abstract function getCoreUpdateList();
347
348 /**
349 * Applies a SQL patch
350 * @param $path String Path to the patch file
351 * @param $isFullPath Boolean Whether to treat $path as a relative or not
352 */
353 protected function applyPatch( $path, $isFullPath = false ) {
354 if ( $isFullPath ) {
355 $this->db->sourceFile( $path );
356 } else {
357 $this->db->sourceFile( $this->db->patchPath( $path ) );
358 }
359 }
360
361 /**
362 * Add a new table to the database
363 * @param $name String Name of the new table
364 * @param $patch String Path to the patch file
365 * @param $fullpath Boolean Whether to treat $patch path as a relative or not
366 */
367 protected function addTable( $name, $patch, $fullpath = false ) {
368 if ( $this->db->tableExists( $name ) ) {
369 $this->output( "...$name table already exists.\n" );
370 } else {
371 $this->output( "Creating $name table..." );
372 $this->applyPatch( $patch, $fullpath );
373 $this->output( "ok\n" );
374 }
375 }
376
377 /**
378 * Add a new field to an existing table
379 * @param $table String Name of the table to modify
380 * @param $field String Name of the new field
381 * @param $patch String Path to the patch file
382 * @param $fullpath Boolean Whether to treat $patch path as a relative or not
383 */
384 protected function addField( $table, $field, $patch, $fullpath = false ) {
385 if ( !$this->db->tableExists( $table ) ) {
386 $this->output( "...$table table does not exist, skipping new field patch\n" );
387 } elseif ( $this->db->fieldExists( $table, $field ) ) {
388 $this->output( "...have $field field in $table table.\n" );
389 } else {
390 $this->output( "Adding $field field to table $table..." );
391 $this->applyPatch( $patch, $fullpath );
392 $this->output( "ok\n" );
393 }
394 }
395
396 /**
397 * Add a new index to an existing table
398 * @param $table String Name of the table to modify
399 * @param $index String Name of the new index
400 * @param $patch String Path to the patch file
401 * @param $fullpath Boolean Whether to treat $patch path as a relative or not
402 */
403 protected function addIndex( $table, $index, $patch, $fullpath = false ) {
404 if ( $this->db->indexExists( $table, $index ) ) {
405 $this->output( "...$index key already set on $table table.\n" );
406 } else {
407 $this->output( "Adding $index key to table $table... " );
408 $this->applyPatch( $patch, $fullpath );
409 $this->output( "ok\n" );
410 }
411 }
412
413 /**
414 * Drop a field from an existing table
415 *
416 * @param $table String Name of the table to modify
417 * @param $field String Name of the old field
418 * @param $patch String Path to the patch file
419 * @param $fullpath Boolean Whether to treat $patch path as a relative or not
420 */
421 protected function dropField( $table, $field, $patch, $fullpath = false ) {
422 if ( $this->db->fieldExists( $table, $field ) ) {
423 $this->output( "Table $table contains $field field. Dropping... " );
424 $this->applyPatch( $patch, $fullpath );
425 $this->output( "ok\n" );
426 } else {
427 $this->output( "...$table table does not contain $field field.\n" );
428 }
429 }
430
431 /**
432 * Drop an index from an existing table
433 *
434 * @param $table String: Name of the table to modify
435 * @param $index String: Name of the old index
436 * @param $patch String: Path to the patch file
437 * @param $fullpath Boolean: Whether to treat $patch path as a relative or not
438 */
439 protected function dropIndex( $table, $index, $patch, $fullpath = false ) {
440 if ( $this->db->indexExists( $table, $index ) ) {
441 $this->output( "Dropping $index from table $table... " );
442 $this->applyPatch( $patch, $fullpath );
443 $this->output( "ok\n" );
444 } else {
445 $this->output( "...$index key doesn't exist.\n" );
446 }
447 }
448
449 /**
450 * Modify an existing field
451 *
452 * @param $table String: name of the table to which the field belongs
453 * @param $field String: name of the field to modify
454 * @param $patch String: path to the patch file
455 * @param $fullpath Boolean: whether to treat $patch path as a relative or not
456 */
457 public function modifyField( $table, $field, $patch, $fullpath = false ) {
458 $updateKey = "$table-$field-$patch";
459 if ( !$this->db->tableExists( $table ) ) {
460 $this->output( "...$table table does not exist, skipping modify field patch\n" );
461 } elseif ( !$this->db->fieldExists( $table, $field ) ) {
462 $this->output( "...$field field does not exist in $table table, skipping modify field patch\n" );
463 } elseif( $this->updateRowExists( $updateKey ) ) {
464 $this->output( "...$field in table $table already modified by patch $patch\n" );
465 } else {
466 $this->output( "Modifying $field field of table $table..." );
467 $this->applyPatch( $patch, $fullpath );
468 $this->insertUpdateRow( $updateKey );
469 $this->output( "ok\n" );
470 }
471 }
472
473 /**
474 * Purge the objectcache table
475 */
476 protected function purgeCache() {
477 # We can't guarantee that the user will be able to use TRUNCATE,
478 # but we know that DELETE is available to us
479 $this->output( "Purging caches..." );
480 $this->db->delete( 'objectcache', '*', __METHOD__ );
481 $this->output( "done.\n" );
482 }
483
484 /**
485 * Check the site_stats table is not properly populated.
486 */
487 protected function checkStats() {
488 $this->output( "Checking site_stats row..." );
489 $row = $this->db->selectRow( 'site_stats', '*', array( 'ss_row_id' => 1 ), __METHOD__ );
490 if ( $row === false ) {
491 $this->output( "data is missing! rebuilding...\n" );
492 } elseif ( isset( $row->site_stats ) && $row->ss_total_pages == -1 ) {
493 $this->output( "missing ss_total_pages, rebuilding...\n" );
494 } else {
495 $this->output( "done.\n" );
496 return;
497 }
498 SiteStatsInit::doAllAndCommit( false );
499 }
500
501 # Common updater functions
502
503 protected function doActiveUsersInit() {
504 $activeUsers = $this->db->selectField( 'site_stats', 'ss_active_users', false, __METHOD__ );
505 if ( $activeUsers == -1 ) {
506 $activeUsers = $this->db->selectField( 'recentchanges',
507 'COUNT( DISTINCT rc_user_text )',
508 array( 'rc_user != 0', 'rc_bot' => 0, "rc_log_type != 'newusers'" ), __METHOD__
509 );
510 $this->db->update( 'site_stats',
511 array( 'ss_active_users' => intval( $activeUsers ) ),
512 array( 'ss_row_id' => 1 ), __METHOD__, array( 'LIMIT' => 1 )
513 );
514 }
515 $this->output( "...ss_active_users user count set...\n" );
516 }
517
518 protected function doLogUsertextPopulation() {
519 if ( $this->updateRowExists( 'populate log_usertext' ) ) {
520 $this->output( "...log_user_text field already populated.\n" );
521 return;
522 }
523
524 $this->output(
525 "Populating log_user_text field, printing progress markers. For large\n" .
526 "databases, you may want to hit Ctrl-C and do this manually with\n" .
527 "maintenance/populateLogUsertext.php.\n" );
528 $task = $this->maintenance->runChild( 'PopulateLogUsertext' );
529 $task->execute();
530 $this->output( "Done populating log_user_text field.\n" );
531 }
532
533 protected function doLogSearchPopulation() {
534 if ( $this->updateRowExists( 'populate log_search' ) ) {
535 $this->output( "...log_search table already populated.\n" );
536 return;
537 }
538
539 $this->output(
540 "Populating log_search table, printing progress markers. For large\n" .
541 "databases, you may want to hit Ctrl-C and do this manually with\n" .
542 "maintenance/populateLogSearch.php.\n" );
543 $task = $this->maintenance->runChild( 'PopulateLogSearch' );
544 $task->execute();
545 $this->output( "Done populating log_search table.\n" );
546 }
547
548 protected function doUpdateTranscacheField() {
549 if ( $this->updateRowExists( 'convert transcache field' ) ) {
550 $this->output( "...transcache tc_time already converted.\n" );
551 return;
552 }
553
554 $this->output( "Converting tc_time from UNIX epoch to MediaWiki timestamp... " );
555 $this->applyPatch( 'patch-tc-timestamp.sql' );
556 $this->output( "ok\n" );
557 }
558
559 protected function doCollationUpdate() {
560 global $wgCategoryCollation;
561 if ( $this->db->selectField(
562 'categorylinks',
563 'COUNT(*)',
564 'cl_collation != ' . $this->db->addQuotes( $wgCategoryCollation ),
565 __METHOD__
566 ) == 0 ) {
567 $this->output( "...collations up-to-date.\n" );
568 return;
569 }
570
571 $task = $this->maintenance->runChild( 'UpdateCollation' );
572 $task->execute();
573 }
574 }