MediaWiki REL1_28
testCompression.php
Go to the documentation of this file.
1<?php
24$optionsWithArgs = [ 'start', 'limit', 'type' ];
25require __DIR__ . '/../commandLine.inc';
26
27if ( !isset( $args[0] ) ) {
28 echo "Usage: php testCompression.php [--type=<type>] [--start=<start-date>] " .
29 "[--limit=<num-revs>] <page-title>\n";
30 exit( 1 );
31}
32
33$lang = Language::factory( 'en' );
34$title = Title::newFromText( $args[0] );
35if ( isset( $options['start'] ) ) {
36 $start = wfTimestamp( TS_MW, strtotime( $options['start'] ) );
37 echo "Starting from " . $lang->timeanddate( $start ) . "\n";
38} else {
39 $start = '19700101000000';
40}
41if ( isset( $options['limit'] ) ) {
42 $limit = $options['limit'];
43 $untilHappy = false;
44} else {
45 $limit = 1000;
47}
48$type = isset( $options['type'] ) ? $options['type'] : 'ConcatenatedGzipHistoryBlob';
49
50$dbr = $this->getDB( DB_REPLICA );
51$res = $dbr->select(
52 [ 'page', 'revision', 'text' ],
53 '*',
54 [
55 'page_namespace' => $title->getNamespace(),
56 'page_title' => $title->getDBkey(),
57 'page_id=rev_page',
58 'rev_timestamp > ' . $dbr->addQuotes( $dbr->timestamp( $start ) ),
59 'rev_text_id=old_id'
60 ], __FILE__, [ 'LIMIT' => $limit ]
61);
62
65$keys = [];
67$t = -microtime( true );
68foreach ( $res as $row ) {
69 $revision = new Revision( $row );
70 $text = $revision->getSerializedData();
71 $uncompressedSize += strlen( $text );
72 $hashes[$row->rev_id] = md5( $text );
73 $keys[$row->rev_id] = $blob->addItem( $text );
74 if ( $untilHappy && !$blob->isHappy() ) {
75 break;
76 }
77}
78
80$t += microtime( true );
81# print_r( $blob->mDiffMap );
82
83printf( "%s\nCompression ratio for %d revisions: %5.2f, %s -> %d\n",
84 $type,
85 count( $hashes ),
87 $lang->formatSize( $uncompressedSize ),
88 strlen( $serialized )
89);
90printf( "Compression time: %5.2f ms\n", $t * 1000 );
91
92$t = -microtime( true );
94foreach ( $keys as $id => $key ) {
95 $text = $blob->getItem( $key );
96 if ( md5( $text ) != $hashes[$id] ) {
97 echo "Content hash mismatch for rev_id $id\n";
98 # var_dump( $text );
99 }
100}
101$t += microtime( true );
102printf( "Decompression time: %5.2f ms\n", $t * 1000 );
serialize()
unserialize( $serialized)
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
if( $line===false) $args
Definition cdb.php:64
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context $options
Definition hooks.txt:1096
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context the output can only depend on parameters provided to this hook not on global state indicating whether full HTML should be generated If generation of HTML may be but other information should still be present in the ParserOutput object to manipulate or replace but no entry for that model exists in $wgContentHandlers if desired whether it is OK to use $contentModel on $title Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok inclusive $limit
Definition hooks.txt:1135
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition injection.txt:37
const DB_REPLICA
Definition defines.php:22
foreach( $res as $row) $serialized
$optionsWithArgs
if(!isset( $args[0])) $lang
$uncompressedSize
$untilHappy
const TS_MW
MediaWiki concatenated string timestamp (YYYYMMDDHHMMSS)
Definition defines.php:11