1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
|
<?php
//
// +------------------------------------------------------------------------+
// | PEAR :: Benchmark |
// +------------------------------------------------------------------------+
// | Copyright (c) 2001-2003 Sebastian Bergmann <[email protected]>. |
// +------------------------------------------------------------------------+
// | This source file is subject to version 3.00 of the PHP License, |
// | that is available at http://www.php.net/license/3_0.txt. |
// | If you did not receive a copy of the PHP license and are unable to |
// | obtain it through the world-wide-web, please send a note to |
// | [email protected] so we can mail you a copy immediately. |
// +------------------------------------------------------------------------+
//
// $Id: Timer.php,v 1.7 2002/12/11 17:14:17 sebastian Exp $
//
/**
* Benchmark::Timer
*
* Purpose:
*
* Timing Script Execution, Generating Profiling Information
*
* Example with automatic profiling start, stop, and output:
*
* $timer =& new Benchmark_Timer(true);
* $timer->setMarker('Marker 1');
*
* Example without automatic profiling:
*
* $timer =& new Benchmark_Timer();
*
* $timer->start();
* $timer->setMarker('Marker 1');
* $timer->stop();
*
* $profiling = $timer->getProfiling();
* echo $profiling->getOutput(); // or $timer->display()
*
* Contributors:
* - Ludovico Magnocavallo <[email protected]>
* auto profiling and get_output() method
*
* @author Sebastian Bergmann <[email protected]>
* @version $Revision: 1.7 $
* @access public
*/
require_once 'PEAR.php';
class Benchmark_Timer extends PEAR
{
/**
* Contains the markers
*
* @var array
* @access private
*/
var $markers = array();
/**
* Auto-start and stop timer
*
* @var boolean
* @access private
*/
var $auto = false;
/**
* Max marker name length for non-html output
*
* @var integer
* @access private
*/
var $strlen_max = 0;
/**
* Constructor, starts profiling recording
*
* @access public
*/
function Benchmark_Timer($auto = false) {
$this->PEAR();
if ($auto) {
$this->auto = $auto;
$this->start();
}
}
/**
* Destructor, stops profiling recording
*
* @access private
*/
function _Benchmark_Timer() {
if ($this->auto) {
$this->stop();
$this->display();
}
}
/**
* Return formatted profiling information.
*
* @see getProfiling()
* @access public
*/
function getOutput()
{
if (function_exists('version_compare') &&
version_compare(phpversion(), '4.1', 'ge'))
{
$http = isset($_SERVER['SERVER_PROTOCOL']);
} else {
global $HTTP_SERVER_VARS;
$http = isset($HTTP_SERVER_VARS['SERVER_PROTOCOL']);
}
$total = $this->TimeElapsed();
$result = $this->getProfiling();
$dashes = "";
if ($http) {
$out = "<table border=1>\n";
$out .= '<tr><td> </td><td align="center"><b>time index</b></td><td align="center"><b>ex time</b></td><td align="center"><b>%</b></td></tr>'."\n";
} else {
$dashes = $out = str_pad("\n", ($this->strlen_max + 52), '-', STR_PAD_LEFT);
$out .= str_pad('marker', $this->strlen_max);
$out .= str_pad("time index", 22);
$out .= str_pad("ex time", 22);
$out .= "perct\n";
$out .= $dashes;
}
foreach ($result as $k => $v) {
$perc = (($v['diff'] * 100) / $total);
if ($http) {
$out .= "<tr><td><b>" . $v['name'] . "</b></td><td>" . $v['time'] . "</td><td>" . $v['diff'] . "</td><td align=\"right\">" . number_format($perc, 2, '.', '') . "%</td></tr>\n";
} else {
$out .= str_pad($v['name'], $this->strlen_max, ' ');
$out .= str_pad($v['time'], 22);
$out .= str_pad($v['diff'], 22);
$out .= str_pad(number_format($perc, 2, '.', '') . "%\n", 8, ' ', STR_PAD_LEFT);
}
$out .= $dashes;
}
if ($http) {
$out .= "<tr style='background: silver;'><td><b>total</b></td><td>-</td><td>${total}</td><td>100.00%</td></tr>\n";
$out .= "</table>\n";
} else {
$out .= str_pad('total', $this->strlen_max);
$out .= str_pad('-', 22);
$out .= str_pad($total, 22);
$out .= "100.00%\n";
$out .= $dashes;
}
return $out;
}
/**
* Prints the information returned by getOutput
*/
function display()
{
print $this->getOutput();
}
/**
* Set "Start" marker.
*
* @see setMarker(), stop()
* @access public
*/
function start() {
$this->setMarker('Start');
}
/**
* Set "Stop" marker.
*
* @see setMarker(), start()
* @access public
*/
function stop() {
$this->setMarker('Stop');
}
/**
* Set marker.
*
* @param string name of the marker to be set
* @see start(), stop()
* @access public
*/
function setMarker($name) {
$microtime = explode(' ', microtime());
$this->markers[$name] = $microtime[1] . substr($microtime[0], 1);
}
/**
* Returns the time elapsed betweens two markers.
*
* @param string $start start marker, defaults to "Start"
* @param string $end end marker, defaults to "Stop"
* @return double $time_elapsed time elapsed between $start and $end
* @access public
*/
function timeElapsed($start = 'Start', $end = 'Stop') {
if (extension_loaded('bcmath')) {
return bcsub($this->markers[$end], $this->markers[$start], 6);
} else {
return $this->markers[$end] - $this->markers[$start];
}
}
/**
* Returns profiling information.
*
* $profiling[x]['name'] = name of marker x
* $profiling[x]['time'] = time index of marker x
* $profiling[x]['diff'] = execution time from marker x-1 to this marker x
* $profiling[x]['total'] = total execution time up to marker x
*
* @return array $profiling
* @access public
*/
function getProfiling() {
$i = $total = $temp = 0;
$result = array();
foreach ($this->markers as $marker => $time) {
if (extension_loaded('bcmath')) {
$diff = bcsub($time, $temp, 6);
$total = bcadd($total, $diff, 6);
} else {
$diff = $time - $temp;
$total = $total + $diff;
}
$result[$i]['name'] = $marker;
$result[$i]['time'] = $time;
$result[$i]['diff'] = $diff;
$result[$i]['total'] = $total;
$this->strlen_max = (strlen($marker) > $this->strlen_max ? strlen($marker) + 1 : $this->strlen_max);
$temp = $time;
$i++;
}
$result[0]['diff'] = '-';
$this->strlen_max = (strlen('total') > $this->strlen_max ? strlen('total') : $this->strlen_max);
$this->strlen_max += 4;
return $result;
}
}
?>
|