3 * @defgroup Benchmark Benchmark
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 ..
30 require_once __DIR__
. '/../Maintenance.php';
33 * Base class for benchmark scripts.
37 abstract class Benchmarker
extends Maintenance
{
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 ) {
47 $count = $this->getOption( 'count', 100 );
49 foreach ( $benchs as $bench ) {
51 if ( !array_key_exists( 'args', $bench ) ) {
52 $bench['args'] = array();
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'],
73 'average' => $delta / $count,
78 public function getFormattedResults() {
80 foreach ( $this->results
as $res ) {
81 // show function with args
82 $ret .= sprintf( "%s times: function %s(%s) :\n",
85 join( ', ', $res['arguments'] )
87 $ret .= sprintf( " %6.2fms (%6.2fms each)\n",
89 $res['average'] * 1000