prettify:
authorBrion Vibber <brion@users.mediawiki.org>
Fri, 9 Mar 2007 15:26:41 +0000 (15:26 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Fri, 9 Mar 2007 15:26:41 +0000 (15:26 +0000)
* set_timeout() -> setTimeout()
* remove a couple obsolete references from dump code

includes/Database.php
includes/DatabasePostgres.php
maintenance/backup.inc
maintenance/dumpTextPass.php

index 96dcc1b..21fa09d 100644 (file)
@@ -1967,7 +1967,14 @@ class Database {
                return $b;
        }
 
-       function set_timeout($timeout) {
+       /**
+        * Override database's default connection timeout.
+        * May be useful for very long batch queries such as
+        * full-wiki dumps, where a single query reads out
+        * over hours or days.
+        * @param int $timeout in seconds
+        */
+       public function setTimeout( $timeout ) {
                $this->query( "SET net_read_timeout=$timeout" );
                $this->query( "SET net_write_timeout=$timeout" );
        }
index b55cbc1..68f2e02 100644 (file)
@@ -937,7 +937,8 @@ class DatabasePostgres extends Database {
                return array( $startOpts, $useIndex, $tailOpts );
        }
 
-       function set_timeout($timeout) {
+       public function setTimeout( $timeout ) {
+               /// @fixme no-op
        }
 
        function ping() {
index b770c5c..ee44954 100644 (file)
@@ -174,7 +174,7 @@ class BackupDumper {
 
                $this->initProgress( $history );
 
-               $db =& $this->backupDb();
+               $db = $this->backupDb();
                $exporter = new WikiExporter( $db, $history, WikiExporter::STREAM, $text );
 
                $wrapper = new ExportProgressFilter( $this->sink, $this );
@@ -214,15 +214,18 @@ class BackupDumper {
                $this->startTime = wfTime();
        }
 
-       function &backupDb() {
+       function backupDb() {
                global $wgDBadminuser, $wgDBadminpassword;
                global $wgDBname, $wgDebugDumpSql, $wgDBtype;
                $flags = ($wgDebugDumpSql ? DBO_DEBUG : 0) | DBO_DEFAULT; // god-damn hack
 
                $class = 'Database' . ucfirst($wgDBtype);
                $db = new $class( $this->backupServer(), $wgDBadminuser, $wgDBadminpassword, $wgDBname, false, $flags );
-               $timeout = 3600 * 24;
-               $db->set_timeout($timeout);
+               
+               // Discourage the server from disconnecting us if it takes a long time
+               // to read out the big ol' batch query.
+               $db->setTimeout( 3600 * 24 );
+               
                return $db;
        }
 
index ffbfd4e..494c5ad 100644 (file)
@@ -116,7 +116,7 @@ class TextPassDumper extends BackupDumper {
 
                $this->initProgress( $this->history );
 
-               $this->db =& $this->backupDb();
+               $this->db = $this->backupDb();
 
                $this->egress = new ExportProgressFilter( $this->sink, $this );