Merge "mw.Upload.BookletLayout: Move error checking for uploadToStash to uploadFile"
[mediawiki.git] / maintenance / benchmarks / Benchmarker.php
blob3f8a8990433145d423e945baea465048e121f585
1 <?php
2 /**
3 * @defgroup Benchmark Benchmark
4 * @ingroup Maintenance
5 */
7 /**
8 * Base code for benchmark scripts.
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 * http://www.gnu.org/copyleft/gpl.html
25 * @todo Report PHP version, OS ..
26 * @file
27 * @ingroup Benchmark
30 require_once __DIR__ . '/../Maintenance.php';
32 /**
33 * Base class for benchmark scripts.
35 * @ingroup Benchmark
37 abstract class Benchmarker extends Maintenance {
38 private $results;
40 public function __construct() {
41 parent::__construct();
42 $this->addOption( 'count', "How many time to run a benchmark", false, true );
45 public function bench( array $benchs ) {
46 $bench_number = 0;
47 $count = $this->getOption( 'count', 100 );
49 foreach ( $benchs as $bench ) {
50 // handle empty args
51 if ( !array_key_exists( 'args', $bench ) ) {
52 $bench['args'] = array();
55 $bench_number++;
56 $start = microtime( true );
57 for ( $i = 0; $i < $count; $i++ ) {
58 call_user_func_array( $bench['function'], $bench['args'] );
60 $delta = microtime( true ) - $start;
62 // function passed as a callback
63 if ( is_array( $bench['function'] ) ) {
64 $ret = get_class( $bench['function'][0] ) . '->' . $bench['function'][1];
65 $bench['function'] = $ret;
68 $this->results[$bench_number] = array(
69 'function' => $bench['function'],
70 'arguments' => $bench['args'],
71 'count' => $count,
72 'delta' => $delta,
73 'average' => $delta / $count,
78 public function getFormattedResults() {
79 $ret = '';
80 foreach ( $this->results as $res ) {
81 // show function with args
82 $ret .= sprintf( "%s times: function %s(%s) :\n",
83 $res['count'],
84 $res['function'],
85 join( ', ', $res['arguments'] )
87 $ret .= sprintf( " %6.2fms (%6.2fms each)\n",
88 $res['delta'] * 1000,
89 $res['average'] * 1000
93 return $ret;