4 Copyright
2005 Kate Turner
.
6 Permission is hereby granted
, free of charge
, to any person obtaining a copy
7 of this software
and associated documentation
files (the
"Software"), to deal
8 in the Software without restriction
, including without limitation the rights
9 to
use, copy
, modify
, merge
, publish
, distribute
, sublicense
, and/or sell
10 copies of the Software
, and to permit persons to whom the Software is
11 furnished to
do so
, subject to the following conditions
:
13 The above copyright notice
and this permission notice shall be included in
14 all copies
or substantial portions of the Software
.
16 THE SOFTWARE IS PROVIDED
"AS IS", WITHOUT WARRANTY OF ANY KIND
, EXPRESS
OR
17 IMPLIED
, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY
,
18 FITNESS
FOR A PARTICULAR PURPOSE
AND NONINFRINGEMENT
. IN NO EVENT SHALL THE
19 AUTHORS
OR COPYRIGHT HOLDERS BE LIABLE
FOR ANY CLAIM
, DAMAGES
OR OTHER
20 LIABILITY
, WHETHER IN AN ACTION OF CONTRACT
, TORT
OR OTHERWISE
, ARISING FROM
,
21 OUT OF
OR IN CONNECTION WITH THE SOFTWARE
OR THE
USE OR OTHER DEALINGS IN THE
27 <title
>Profiling data
</title
>
28 <style type
="text/css">
31 border
-bottom
: solid
1px black
;
47 $wgDBadminuser = $wgDBadminpassword = $wgDBserver = $wgDBname = $wgEnableProfileInfo = false;
49 define("MEDIAWIKI", 1);
50 if ( isset( $_REQUEST['GLOBALS'] ) ) {
52 echo '<a href="http://www.hardened-php.net/index.76.html">$GLOBALS overwrite vulnerability</a>';
56 require_once("./includes/Defines.php");
57 require_once("./LocalSettings.php");
58 require_once("./AdminSettings.php");
60 if (!$wgEnableProfileInfo) {
64 foreach (array("wgDBadminuser", "wgDBadminpassword", "wgDBserver", "wgDBname") as $var)
66 wfDie("AdminSettings.php not correct");
69 if (isset($_REQUEST['expand']))
70 foreach(explode(",", $_REQUEST['expand']) as $f)
79 function profile_point($name, $count, $time) {
81 $this->count
= $count;
83 $this->children
= array();
86 function add_child($child) {
87 $this->children
[] = $child;
90 function display($indent = 0.0) {
92 usort($this->children
, "compare_point");
95 if (isset($expand[$this->name()]))
99 if (count($this->children
)) {
100 $url = makeurl(false, false, $expand +
array($this->name() => true));
101 $extet = " <a href=\"$url\">[+]</a>";
105 foreach ($expand as $name => $ep)
106 if ($name != $this->name())
107 $e +
= array($name => $ep);
109 $extet = " <a href=\"" . makeurl(false, false, $e) . "\">[–]</a>";
113 <td
class="time"><tt
><?php
echo $this->fmttime() ?
></tt
></td
>
114 <td
class="count"><?php
echo $this->count() ?
></td
>
115 <td
class="name" style
="padding-left: <?php echo $indent ?>em">
116 <?php
echo htmlspecialchars($this->name()) . $extet ?
>
121 foreach ($this->children
as $child)
122 $child->display($indent +
2);
138 return sprintf("%5.02f", $this->time
);
142 function compare_point($a, $b) {
146 return strcmp($a->name(), $b->name());
148 return $a->time() > $b->time() ?
-1 : 1;
150 return $a->count() > $b->count() ?
-1 : 1;
154 $sorts = array("time", "count", "name");
156 if (isset($_REQUEST['sort']) && in_array($_REQUEST['sort'], $sorts))
157 $sort = $_REQUEST['sort'];
159 $dbh = mysql_connect($wgDBserver, $wgDBadminuser, $wgDBadminpassword)
160 or wfDie("mysql server failed: " . mysql_error());
161 mysql_select_db($wgDBname, $dbh) or wfDie(mysql_error($dbh));
163 SELECT pf_count, pf_time, pf_name
166 ", $dbh) or wfDie("query failed: " . mysql_error());
168 if (isset($_REQUEST['filter']))
169 $filter = $_REQUEST['filter'];
173 <form method
="profiling.php">
175 <input type
="text" name
="filter" value
="<?php echo htmlspecialchars($filter)?>"/>
176 <input type
="hidden" name
="sort" value
="<?php echo htmlspecialchars($sort)?>"/>
177 <input type
="hidden" name
="expand" value
="<?php echo htmlspecialchars(implode(",", array_keys($expand)))?>"/>
178 <input type
="submit" value
="Filter" />
182 <table cellspacing
="0">
184 <th
><a href
="<?php echo makeurl(false, "time
") ?>">Time
</a
></th
>
185 <th
><a href
="<?php echo makeurl(false, "count
") ?>">Count
</a
></th
>
186 <th
><a href
="<?php echo makeurl(false, "name
") ?>">Name
</a
></th
>
191 function makeurl($_filter = false, $_sort = false, $_expand = false) {
192 global $filter, $sort, $expand;
194 if ($_expand === false)
197 $nfilter = $_filter ?
$_filter : $filter;
198 $nsort = $_sort ?
$_sort : $sort;
199 $exp = urlencode(implode(',', array_keys($_expand)));
200 return "?filter=$nfilter&sort=$nsort&expand=$exp";
208 while (($o = mysql_fetch_object($res)) !== false) {
209 $next = new profile_point($o->pf_name
, $o->pf_count
, $o->pf_time
);
210 $totaltime +
= $next->time();
211 if ($last !== false) {
212 if (preg_match("/^".preg_quote($last->name(), "/")."/", $next->name())) {
213 $last->add_child($next);
218 if (preg_match("/^query: /", $next->name())) {
219 $sqltotal +
= $next->time();
226 $s = new profile_point("SQL Queries", 0, $sqltotal);
227 foreach ($queries as $q)
231 usort($points, "compare_point");
233 foreach ($points as $point) {
234 if (strlen($filter) && !strstr($point->name(), $filter))
242 <p
>Total time
: <tt
><?php
printf("%5.02f", $totaltime) ?
></p
>
245 mysql_free_result($res);