MediaWiki  1.28.3
testCompression.php
Go to the documentation of this file.
1 <?php
24 $optionsWithArgs = [ 'start', 'limit', 'type' ];
25 require __DIR__ . '/../commandLine.inc';
26 
27 if ( !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 
35 if ( 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 }
41 if ( isset( $options['limit'] ) ) {
42  $limit = $options['limit'];
43  $untilHappy = false;
44 } else {
45  $limit = 1000;
46  $untilHappy = true;
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 
63 $blob = new $type;
64 $hashes = [];
65 $keys = [];
67 $t = -microtime( true );
68 foreach ( $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 
83 printf( "%s\nCompression ratio for %d revisions: %5.2f, %s -> %d\n",
84  $type,
85  count( $hashes ),
86  $uncompressedSize / strlen( $serialized ),
87  $lang->formatSize( $uncompressedSize ),
88  strlen( $serialized )
89 );
90 printf( "Compression time: %5.2f ms\n", $t * 1000 );
91 
92 $t = -microtime( true );
94 foreach ( $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 );
102 printf( "Decompression time: %5.2f ms\n", $t * 1000 );
$optionsWithArgs
if(!isset($args[0])) $lang
$untilHappy
static newFromText($text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:262
if($line===false) $args
Definition: cdb.php:64
wfTimestamp($outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
unserialize($serialized)
Definition: ApiMessage.php:102
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:1050
const TS_MW
MediaWiki concatenated string timestamp (YYYYMMDDHHMMSS)
Definition: defines.php:11
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
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:35
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:1050
$uncompressedSize
const DB_REPLICA
Definition: defines.php:22
serialize()
Definition: ApiMessage.php:94
foreach($res as $row) $serialized
static factory($code)
Get a cached or new language object for a given language code.
Definition: Language.php:181