MediaWiki  master
benchmarkJSMinPlus.php
Go to the documentation of this file.
1 <?php
22 require_once __DIR__ . '/../includes/Benchmarker.php';
23 
30  protected $defaultCount = 10;
31 
32  public function __construct() {
33  parent::__construct();
34  $this->addDescription( 'Benchmarks JSMinPlus.' );
35  $this->addOption( 'file', 'Path to JS file. Default: jquery', false, true );
36  }
37 
38  public function execute() {
39  $file = $this->getOption( 'file', __DIR__ . '/data/jsmin/jquery-3.2.1.js.gz' );
40  $content = $this->loadFile( $file );
41  if ( $content === false ) {
42  $this->fatalError( 'Unable to open input file' );
43  }
44 
45  $filename = basename( $file );
46  $parser = new JSParser();
47 
48  $this->bench( [
49  "JSParser::parse ($filename)" => [
50  'function' => static function ( $parser, $content, $filename ) {
51  $parser->parse( $content, $filename, 1 );
52  },
53  'args' => [ $parser, $content, $filename ]
54  ]
55  ] );
56  }
57 }
58 
59 $maintClass = BenchmarkJSMinPlus::class;
60 require_once RUN_MAINTENANCE_IF_MAIN;
Maintenance script that benchmarks JSMinPlus.
execute()
Do the actual work.
__construct()
Default constructor.
Base class for benchmark scripts.
Definition: Benchmarker.php:40
bench(array $benchs)
Definition: Benchmarker.php:49
loadFile( $file)
addDescription( $text)
Set the description text.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
getOption( $name, $default=null)
Get an option, or return the default.
fatalError( $msg, $exitCode=1)
Output a message and terminate the current script.
$content
Definition: router.php:76
if(PHP_SAPI !='cli-server') if(!isset( $_SERVER['SCRIPT_FILENAME'])) $file
Item class for a filearchive table row.
Definition: router.php:42