MediaWiki  1.29.2
bench_Wikimedia_base_convert.php
Go to the documentation of this file.
1 <?php
25 require_once __DIR__ . '/Benchmarker.php';
26 
35  public function __construct() {
36  parent::__construct();
37  $this->addDescription( 'Benchmark for Wikimedia\base_convert.' );
38  $this->addOption( "inbase", "Input base", false, true );
39  $this->addOption( "outbase", "Output base", false, true );
40  $this->addOption( "length", "Size in digits to generate for input", false, true );
41  }
42 
43  public function execute() {
44  $inbase = $this->getOption( "inbase", 36 );
45  $outbase = $this->getOption( "outbase", 16 );
46  $length = $this->getOption( "length", 128 );
47  $number = self::makeRandomNumber( $inbase, $length );
48 
49  $this->bench( [
50  [
51  'function' => 'Wikimedia\base_convert',
52  'args' => [ $number, $inbase, $outbase, 0, true, 'php' ]
53  ],
54  [
55  'function' => 'Wikimedia\base_convert',
56  'args' => [ $number, $inbase, $outbase, 0, true, 'bcmath' ]
57  ],
58  [
59  'function' => 'Wikimedia\base_convert',
60  'args' => [ $number, $inbase, $outbase, 0, true, 'gmp' ]
61  ],
62  ] );
63  }
64 
65  protected static function makeRandomNumber( $base, $length ) {
66  $baseChars = '0123456789abcdefghijklmnopqrstuvwxyz';
67  $res = '';
68  for ( $i = 0; $i < $length; $i++ ) {
69  $res .= $baseChars[mt_rand( 0, $base - 1 )];
70  }
71 
72  return $res;
73  }
74 }
75 
76 $maintClass = 'BenchWikimediaBaseConvert';
77 require_once RUN_MAINTENANCE_IF_MAIN;
BenchWikimediaBaseConvert
Maintenance script that benchmarks Wikimedia\base_convert().
Definition: bench_Wikimedia_base_convert.php:34
$maintClass
$maintClass
Definition: bench_Wikimedia_base_convert.php:76
Maintenance\addDescription
addDescription( $text)
Set the description text.
Definition: Maintenance.php:287
RUN_MAINTENANCE_IF_MAIN
require_once RUN_MAINTENANCE_IF_MAIN
Definition: maintenance.txt:50
$res
$res
Definition: database.txt:21
Benchmarker\bench
bench(array $benchs)
Definition: Benchmarker.php:44
$base
$base
Definition: generateLocalAutoload.php:10
php
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
BenchWikimediaBaseConvert\__construct
__construct()
Default constructor.
Definition: bench_Wikimedia_base_convert.php:35
Maintenance\addOption
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
Definition: Maintenance.php:215
Benchmarker
Base class for benchmark scripts.
Definition: Benchmarker.php:36
Maintenance\getOption
getOption( $name, $default=null)
Get an option, or return the default.
Definition: Maintenance.php:250
BenchWikimediaBaseConvert\execute
execute()
Do the actual work.
Definition: bench_Wikimedia_base_convert.php:43
BenchWikimediaBaseConvert\makeRandomNumber
static makeRandomNumber( $base, $length)
Definition: bench_Wikimedia_base_convert.php:65