MediaWiki  REL1_31
benchmarkHooks.php
Go to the documentation of this file.
1 <?php
24 require_once __DIR__ . '/Benchmarker.php';
25 
31 class BenchmarkHooks extends Benchmarker {
32  protected $defaultCount = 10;
33 
34  public function __construct() {
35  parent::__construct();
36  $this->addDescription( 'Benchmark MediaWiki Hooks.' );
37  }
38 
39  public function execute() {
40  $cases = [
41  'Loaded 0 hooks' => 0,
42  'Loaded 1 hook' => 1,
43  'Loaded 10 hooks' => 10,
44  'Loaded 100 hooks' => 100,
45  ];
46  $benches = [];
47  foreach ( $cases as $label => $load ) {
48  $benches[$label] = [
49  'setup' => function () use ( $load ) {
51  $wgHooks['Test'] = [];
52  for ( $i = 1; $i <= $load; $i++ ) {
53  $wgHooks['Test'][] = [ $this, 'test' ];
54  }
55  },
56  'function' => function () {
57  Hooks::run( 'Test' );
58  }
59  ];
60  }
61  $this->bench( $benches );
62  }
63 
67  public function test() {
68  return true;
69  }
70 }
71 
73 require_once RUN_MAINTENANCE_IF_MAIN;
BenchmarkHooks\$defaultCount
$defaultCount
Definition: benchmarkHooks.php:32
use
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
Definition: APACHE-LICENSE-2.0.txt:10
Maintenance\addDescription
addDescription( $text)
Set the description text.
Definition: Maintenance.php:291
RUN_MAINTENANCE_IF_MAIN
require_once RUN_MAINTENANCE_IF_MAIN
Definition: maintenance.txt:50
Benchmarker\bench
bench(array $benchs)
Definition: Benchmarker.php:50
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:37
BenchmarkHooks\__construct
__construct()
Default constructor.
Definition: benchmarkHooks.php:34
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:95
$wgHooks
$wgHooks['ArticleShow'][]
Definition: hooks.txt:108
BenchmarkHooks\test
test()
Definition: benchmarkHooks.php:67
Benchmarker
Base class for benchmark scripts.
Definition: Benchmarker.php:40
BenchmarkHooks\execute
execute()
Do the actual work.
Definition: benchmarkHooks.php:39
BenchmarkHooks
Maintenance script that benchmarks MediaWiki hooks.
Definition: benchmarkHooks.php:31
as
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:22
class
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Definition: maintenance.txt:56
$maintClass
$maintClass
Definition: benchmarkHooks.php:72
Hooks\run
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Definition: Hooks.php:203