added PPCustomFrame classes to restore ability to use replaceVariables with a custom...
[lhc/web/wiklou.git] / maintenance / importDump.php
index 2071a31..d74e32b 100644 (file)
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  * http://www.gnu.org/copyleft/gpl.html
  *
- * @addtogroup Maintenance
+ * @file
+ * @ingroup Maintenance
  */
 
 $optionsWithArgs = array( 'report' );
 
 require_once( 'commandLine.inc' );
 
+/**
+ * @ingroup Maintenance
+ */
 class BackupReader {
        var $reportingInterval = 100;
        var $reporting = true;
@@ -32,6 +36,7 @@ class BackupReader {
        var $revCount  = 0;
        var $dryRun    = false;
        var $debug     = false;
+       var $uploads   = false;
 
        function BackupReader() {
                $this->stderr = fopen( "php://stderr", "wt" );
@@ -59,13 +64,18 @@ class BackupReader {
                }
        }
        
-       function handleUpload( $data ) {
-               $this->uploadCount++;
-               //$this->report();
-               $this->progress( "upload: " . $data->getFilename() );
-               
-               if( !$this->dryRun ) {
-                       call_user_func( $this->uploadCallback, $data );
+       function handleUpload( $revision ) {
+               if( $this->uploads ) {
+                       $this->uploadCount++;
+                       //$this->report();
+                       $this->progress( "upload: " . $revision->getFilename() );
+                       
+                       if( !$this->dryRun ) {
+                               // bluuuh hack
+                               //call_user_func( $this->uploadCallback, $revision );
+                               $dbw = wfGetDB( DB_MASTER );
+                               return $dbw->deadlockLoop( array( $revision, 'importUpload' ) );
+                       }
                }
        }
 
@@ -140,6 +150,9 @@ if( isset( $options['dry-run'] ) ) {
 if( isset( $options['debug'] ) ) {
        $reader->debug = true;
 }
+if( isset( $options['uploads'] ) ) {
+       $reader->uploads = true; // experimental!
+}
 
 if( isset( $args[0] ) ) {
        $result = $reader->importFromFile( $args[0] );