* Fix regression in streaming page dump generation
[lhc/web/wiklou.git] / maintenance / backup.inc
1 <?php
2 /**
3 * Copyright (C) 2005 Brion Vibber <brion@pobox.com>
4 * http://www.mediawiki.org/
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 * http://www.gnu.org/copyleft/gpl.html
20 *
21 * @package MediaWiki
22 * @subpackage SpecialPage
23 */
24
25 class DumpDBZip2Output extends DumpPipeOutput {
26 function DumpDBZip2Output( $file ) {
27 parent::DumpPipeOutput( "dbzip2", $file );
28 }
29 }
30
31 class BackupDumper {
32 var $reportingInterval = 100;
33 var $reporting = true;
34 var $pageCount = 0;
35 var $revCount = 0;
36 var $server = null; // use default
37 var $pages = null; // all pages
38 var $skipHeader = false; // don't output <mediawiki> and <siteinfo>
39 var $skipFooter = false; // don't output </mediawiki>
40 var $startId = 0;
41 var $endId = 0;
42 var $sink = null; // Output filters
43 var $stubText = false; // include rev_text_id instead of text; for 2-pass dump
44
45 function BackupDumper( $args ) {
46 $this->stderr = fopen( "php://stderr", "wt" );
47
48 // Built-in output and filter plugins
49 $this->registerOutput( 'file', 'DumpFileOutput' );
50 $this->registerOutput( 'gzip', 'DumpGZipOutput' );
51 $this->registerOutput( 'bzip2', 'DumpBZip2Output' );
52 $this->registerOutput( 'dbzip2', 'DumpDBZip2Output' );
53 $this->registerOutput( '7zip', 'Dump7ZipOutput' );
54
55 $this->registerFilter( 'latest', 'DumpLatestFilter' );
56 $this->registerFilter( 'notalk', 'DumpNotalkFilter' );
57 $this->registerFilter( 'namespace', 'DumpNamespaceFilter' );
58
59 $this->sink = $this->processArgs( $args );
60 }
61
62 /**
63 * @param string $name
64 * @param string $class name of output filter plugin class
65 */
66 function registerOutput( $name, $class ) {
67 $this->outputTypes[$name] = $class;
68 }
69
70 /**
71 * @param string $name
72 * @param string $class name of filter plugin class
73 */
74 function registerFilter( $name, $class ) {
75 $this->filterTypes[$name] = $class;
76 }
77
78 /**
79 * Load a plugin and register it
80 * @param string $class Name of plugin class; must have a static 'register'
81 * method that takes a BackupDumper as a parameter.
82 * @param string $file Full or relative path to the PHP file to load, or empty
83 */
84 function loadPlugin( $class, $file ) {
85 if( $file != '' ) {
86 require_once( $file );
87 }
88 $register = array( $class, 'register' );
89 call_user_func_array( $register, array( &$this ) );
90 }
91
92 /**
93 * @param array $args
94 * @return array
95 * @static
96 */
97 function processArgs( $args ) {
98 $sink = null;
99 $sinks = array();
100 foreach( $args as $arg ) {
101 if( preg_match( '/^--(.+?)(?:=(.+?)(?::(.+?))?)?$/', $arg, $matches ) ) {
102 @list( $full, $opt, $val, $param ) = $matches;
103 switch( $opt ) {
104 case "plugin":
105 $this->loadPlugin( $val, $param );
106 break;
107 case "output":
108 if( !is_null( $sink ) ) {
109 $sinks[] = $sink;
110 }
111 if( !isset( $this->outputTypes[$val] ) ) {
112 wfDie( "Unrecognized output sink type '$val'\n" );
113 }
114 $type = $this->outputTypes[$val];
115 $sink = new $type( $param );
116 break;
117 case "filter":
118 if( is_null( $sink ) ) {
119 $this->progress( "Warning: assuming stdout for filter output\n" );
120 $sink = new DumpOutput();
121 }
122 if( !isset( $this->filterTypes[$val] ) ) {
123 wfDie( "Unrecognized filter type '$val'\n" );
124 }
125 $type = $this->filterTypes[$val];
126 $filter = new $type( $sink, $param );
127
128 // references are lame in php...
129 unset( $sink );
130 $sink = $filter;
131
132 break;
133 case "report":
134 $this->reportingInterval = intval( $val );
135 break;
136 case "server":
137 $this->server = $val;
138 break;
139 case "force-normal":
140 if( !function_exists( 'utf8_normalize' ) ) {
141 dl( "php_utfnormal.so" );
142 if( !function_exists( 'utf8_normalize' ) ) {
143 wfDie( "Failed to load UTF-8 normalization extension. " .
144 "Install or remove --force-normal parameter to use slower code.\n" );
145 }
146 }
147 break;
148 default:
149 $this->processOption( $opt, $val, $param );
150 }
151 }
152 }
153
154 if( is_null( $sink ) ) {
155 $sink = new DumpOutput();
156 }
157 $sinks[] = $sink;
158
159 if( count( $sinks ) > 1 ) {
160 return new DumpMultiWriter( $sinks );
161 } else {
162 return $sink;
163 }
164 }
165
166 function processOption( $opt, $val, $param ) {
167 // extension point for subclasses to add options
168 }
169
170 function dump( $history, $text = MW_EXPORT_TEXT ) {
171 # Notice messages will foul up your XML output even if they're
172 # relatively harmless.
173 ini_set( 'display_errors', false );
174
175 $this->initProgress( $history );
176
177 $db =& $this->backupDb();
178 $exporter = new WikiExporter( $db, $history, WikiExporter::STREAM, $text );
179
180 $wrapper = new ExportProgressFilter( $this->sink, $this );
181 $exporter->setOutputSink( $wrapper );
182
183 if( !$this->skipHeader )
184 $exporter->openStream();
185
186 if( is_null( $this->pages ) ) {
187 if( $this->startId || $this->endId ) {
188 $exporter->pagesByRange( $this->startId, $this->endId );
189 } else {
190 $exporter->allPages();
191 }
192 } else {
193 $exporter->pagesByName( $this->pages );
194 }
195
196 if( !$this->skipFooter )
197 $exporter->closeStream();
198
199 $this->report( true );
200 }
201
202 /**
203 * Initialise starting time and maximum revision count.
204 * We'll make ETA calculations based an progress, assuming relatively
205 * constant per-revision rate.
206 * @param int $history WikiExporter::CURRENT or WikiExporter::FULL
207 */
208 function initProgress( $history = WikiExporter::FULL ) {
209 $table = ($history == WikiExporter::CURRENT) ? 'page' : 'revision';
210 $field = ($history == WikiExporter::CURRENT) ? 'page_id' : 'rev_id';
211
212 $dbr =& wfGetDB( DB_SLAVE );
213 $this->maxCount = $dbr->selectField( $table, "MAX($field)", '', 'BackupDumper::dump' );
214 $this->startTime = wfTime();
215 }
216
217 function &backupDb() {
218 global $wgDBadminuser, $wgDBadminpassword;
219 global $wgDBname, $wgDebugDumpSql;
220 $flags = ($wgDebugDumpSql ? DBO_DEBUG : 0) | DBO_DEFAULT; // god-damn hack
221 $db = new Database( $this->backupServer(), $wgDBadminuser, $wgDBadminpassword, $wgDBname, false, $flags );
222 $timeout = 3600 * 24;
223 $db->query( "SET net_read_timeout=$timeout" );
224 $db->query( "SET net_write_timeout=$timeout" );
225 return $db;
226 }
227
228 function backupServer() {
229 global $wgDBserver;
230 return $this->server
231 ? $this->server
232 : $wgDBserver;
233 }
234
235 function reportPage() {
236 $this->pageCount++;
237 }
238
239 function revCount() {
240 $this->revCount++;
241 $this->report();
242 }
243
244 function report( $final = false ) {
245 if( $final xor ( $this->revCount % $this->reportingInterval == 0 ) ) {
246 $this->showReport();
247 }
248 }
249
250 function showReport() {
251 if( $this->reporting ) {
252 $delta = wfTime() - $this->startTime;
253 $now = wfTimestamp( TS_DB );
254 if( $delta ) {
255 $rate = $this->pageCount / $delta;
256 $revrate = $this->revCount / $delta;
257 $portion = $this->revCount / $this->maxCount;
258 $eta = $this->startTime + $delta / $portion;
259 $etats = wfTimestamp( TS_DB, intval( $eta ) );
260 } else {
261 $rate = '-';
262 $revrate = '-';
263 $etats = '-';
264 }
265 $this->progress( sprintf( "%s: %s %d pages (%0.3f/sec), %d revs (%0.3f/sec), ETA %s [max %d]",
266 $now, wfWikiID(), $this->pageCount, $rate, $this->revCount, $revrate, $etats, $this->maxCount ) );
267 }
268 }
269
270 function progress( $string ) {
271 fwrite( $this->stderr, $string . "\n" );
272 }
273 }
274
275 class ExportProgressFilter extends DumpFilter {
276 function ExportProgressFilter( &$sink, &$progress ) {
277 parent::DumpFilter( $sink );
278 $this->progress = $progress;
279 }
280
281 function writeClosePage( $string ) {
282 parent::writeClosePage( $string );
283 $this->progress->reportPage();
284 }
285
286 function writeRevision( $rev, $string ) {
287 parent::writeRevision( $rev, $string );
288 $this->progress->revCount();
289 }
290 }
291
292 ?>