wiki.techinc.nl/maintenance/benchmarks/benchmarkCommentFormatter.php
Umherirrender 44fd53fee3 Using @return never documentation on always-throw-function
This helps phan to detect unreachable code and also impossible types
after the functions.
It helps phan to avoid false positives for array keys
when the keys are checked before

Bug: T240141
Change-Id: I895f70e82b3053a46cd44135b15437e6f82a07b2
2021-09-07 17:29:03 +02:00

49 lines
1.3 KiB
PHP

<?php
require_once __DIR__ . '/../includes/Benchmarker.php';
class BenchmarkCommentFormatter extends Benchmarker {
public function __construct() {
parent::__construct();
$this->addDescription( 'Benchmark Linker::formatComment()' );
$this->addOption( 'file', 'A JSON API result from list=recentchanges',
false, true );
}
public function execute() {
$file = $this->getOption( 'file',
__DIR__ . '/data/CommentFormatter/rc100-2021-07-29.json' );
$json = file_get_contents( $file );
if ( !$json ) {
$this->fatalError( "Unable to read input file \"$file\"" );
}
$result = json_decode( $json, true );
if ( !isset( $result['query']['recentchanges'] ) ) {
$this->fatalError( "Invalid JSON data" );
}
$entries = $result['query']['recentchanges'];
$inputs = [];
foreach ( $entries as $entry ) {
$inputs[] = [
'comment' => $entry['comment'],
'title' => Title::newFromText( $entry['title'] )
];
}
$this->bench( [
'Linker::formatComment' => [
'function' => static function () use ( $inputs ) {
Title::clearCaches();
foreach ( $inputs as $input ) {
Linker::formatComment(
$input['comment'],
$input['title']
);
}
},
],
] );
}
}
$maintClass = BenchmarkCommentFormatter::class;
require_once RUN_MAINTENANCE_IF_MAIN;