adodb-perf.inc.php 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919
  1. <?php
  2. /*
  3. V4.60 24 Jan 2005 (c) 2000-2005 John Lim (jlim@natsoft.com.my). All rights reserved.
  4. Released under both BSD license and Lesser GPL library license.
  5. Whenever there is any discrepancy between the two licenses,
  6. the BSD license will take precedence. See License.txt.
  7. Set tabs to 4 for best viewing.
  8. Latest version is available at http://adodb.sourceforge.net
  9. Library for basic performance monitoring and tuning.
  10. My apologies if you see code mixed with presentation. The presentation suits
  11. my needs. If you want to separate code from presentation, be my guest. Patches
  12. are welcome.
  13. */
  14. if (!defined(ADODB_DIR)) include_once(dirname(__FILE__).'/adodb.inc.php');
  15. include_once(ADODB_DIR.'/tohtml.inc.php');
  16. // avoids localization problems where , is used instead of .
  17. function adodb_round($n,$prec)
  18. {
  19. return number_format($n, $prec, '.', '');
  20. }
  21. /* return microtime value as a float */
  22. function adodb_microtime()
  23. {
  24. $t = microtime();
  25. $t = explode(' ',$t);
  26. return (float)$t[1]+ (float)$t[0];
  27. }
  28. /* sql code timing */
  29. function& adodb_log_sql(&$conn,$sql,$inputarr)
  30. {
  31. global $HTTP_SERVER_VARS;
  32. $perf_table = adodb_perf::table();
  33. $conn->fnExecute = false;
  34. $t0 = microtime();
  35. $rs =& $conn->Execute($sql,$inputarr);
  36. $t1 = microtime();
  37. if (!empty($conn->_logsql)) {
  38. $conn->_logsql = false; // disable logsql error simulation
  39. $dbT = $conn->databaseType;
  40. $a0 = split(' ',$t0);
  41. $a0 = (float)$a0[1]+(float)$a0[0];
  42. $a1 = split(' ',$t1);
  43. $a1 = (float)$a1[1]+(float)$a1[0];
  44. $time = $a1 - $a0;
  45. if (!$rs) {
  46. $errM = $conn->ErrorMsg();
  47. $errN = $conn->ErrorNo();
  48. $conn->lastInsID = 0;
  49. $tracer = substr('ERROR: '.htmlspecialchars($errM),0,250);
  50. } else {
  51. $tracer = '';
  52. $errM = '';
  53. $errN = 0;
  54. $dbg = $conn->debug;
  55. $conn->debug = false;
  56. if (!is_object($rs) || $rs->dataProvider == 'empty')
  57. $conn->_affected = $conn->affected_rows(true);
  58. $conn->lastInsID = @$conn->Insert_ID();
  59. $conn->debug = $dbg;
  60. }
  61. if (isset($HTTP_SERVER_VARS['HTTP_HOST'])) {
  62. $tracer .= '<br>'.$HTTP_SERVER_VARS['HTTP_HOST'];
  63. if (isset($HTTP_SERVER_VARS['PHP_SELF'])) $tracer .= $HTTP_SERVER_VARS['PHP_SELF'];
  64. } else
  65. if (isset($HTTP_SERVER_VARS['PHP_SELF'])) $tracer .= '<br>'.$HTTP_SERVER_VARS['PHP_SELF'];
  66. //$tracer .= (string) adodb_backtrace(false);
  67. $tracer = (string) substr($tracer,0,500);
  68. if (is_array($inputarr)) {
  69. if (is_array(reset($inputarr))) $params = 'Array sizeof='.sizeof($inputarr);
  70. else {
  71. $params = '';
  72. $params = implode(', ',$inputarr);
  73. if (strlen($params) >= 3000) $params = substr($params, 0, 3000);
  74. }
  75. } else {
  76. $params = '';
  77. }
  78. if (is_array($sql)) $sql = $sql[0];
  79. $arr = array('b'=>trim(substr($sql,0,230)),
  80. 'c'=>substr($sql,0,3900), 'd'=>$params,'e'=>$tracer,'f'=>adodb_round($time,6));
  81. //var_dump($arr);
  82. $saved = $conn->debug;
  83. $conn->debug = 0;
  84. $d = $conn->sysTimeStamp;
  85. if (empty($d)) $d = date("'Y-m-d H:i:s'");
  86. if ($conn->dataProvider == 'oci8' && $dbT != 'oci8po') {
  87. $isql = "insert into $perf_table values($d,:b,:c,:d,:e,:f)";
  88. } else if ($dbT == 'odbc_mssql' || $dbT == 'informix') {
  89. $timer = $arr['f'];
  90. if ($dbT == 'informix') $sql2 = substr($sql2,0,230);
  91. $sql1 = $conn->qstr($arr['b']);
  92. $sql2 = $conn->qstr($arr['c']);
  93. $params = $conn->qstr($arr['d']);
  94. $tracer = $conn->qstr($arr['e']);
  95. $isql = "insert into $perf_table (created,sql0,sql1,params,tracer,timer) values($d,$sql1,$sql2,$params,$tracer,$timer)";
  96. if ($dbT == 'informix') $isql = str_replace(chr(10),' ',$isql);
  97. $arr = false;
  98. } else {
  99. $isql = "insert into $perf_table (created,sql0,sql1,params,tracer,timer) values( $d,?,?,?,?,?)";
  100. }
  101. $ok = $conn->Execute($isql,$arr);
  102. $conn->debug = $saved;
  103. if ($ok) {
  104. $conn->_logsql = true;
  105. } else {
  106. $err2 = $conn->ErrorMsg();
  107. $conn->_logsql = true; // enable logsql error simulation
  108. $perf =& NewPerfMonitor($conn);
  109. if ($perf) {
  110. if ($perf->CreateLogTable()) $ok = $conn->Execute($isql,$arr);
  111. } else {
  112. $ok = $conn->Execute("create table $perf_table (
  113. created varchar(50),
  114. sql0 varchar(250),
  115. sql1 varchar(4000),
  116. params varchar(3000),
  117. tracer varchar(500),
  118. timer decimal(16,6))");
  119. }
  120. if (!$ok) {
  121. ADOConnection::outp( "<p><b>LOGSQL Insert Failed</b>: $isql<br>$err2</p>");
  122. $conn->_logsql = false;
  123. }
  124. }
  125. $conn->_errorMsg = $errM;
  126. $conn->_errorCode = $errN;
  127. }
  128. $conn->fnExecute = 'adodb_log_sql';
  129. return $rs;
  130. }
  131. /*
  132. The settings data structure is an associative array that database parameter per element.
  133. Each database parameter element in the array is itself an array consisting of:
  134. 0: category code, used to group related db parameters
  135. 1: either
  136. a. sql string to retrieve value, eg. "select value from v\$parameter where name='db_block_size'",
  137. b. array holding sql string and field to look for, e.g. array('show variables','table_cache'),
  138. c. a string prefixed by =, then a PHP method of the class is invoked,
  139. e.g. to invoke $this->GetIndexValue(), set this array element to '=GetIndexValue',
  140. 2: description of the database parameter
  141. */
  142. class adodb_perf {
  143. var $conn;
  144. var $color = '#F0F0F0';
  145. var $table = '<table border=1 bgcolor=white>';
  146. var $titles = '<tr><td><b>Parameter</b></td><td><b>Value</b></td><td><b>Description</b></td></tr>';
  147. var $warnRatio = 90;
  148. var $tablesSQL = false;
  149. var $cliFormat = "%32s => %s \r\n";
  150. var $sql1 = 'sql1'; // used for casting sql1 to text for mssql
  151. var $explain = true;
  152. var $helpurl = "<a href=http://phplens.com/adodb/reference.functions.fnexecute.and.fncacheexecute.properties.html#logsql>LogSQL help</a>";
  153. var $createTableSQL = false;
  154. var $maxLength = 2000;
  155. // Sets the tablename to be used
  156. function table($newtable = false)
  157. {
  158. static $_table;
  159. if (!empty($newtable)) $_table = $newtable;
  160. if (empty($_table)) $_table = 'adodb_logsql';
  161. return $_table;
  162. }
  163. // returns array with info to calculate CPU Load
  164. function _CPULoad()
  165. {
  166. /*
  167. cpu 524152 2662 2515228 336057010
  168. cpu0 264339 1408 1257951 168025827
  169. cpu1 259813 1254 1257277 168031181
  170. page 622307 25475680
  171. swap 24 1891
  172. intr 890153570 868093576 6 0 4 4 0 6 1 2 0 0 0 124 0 8098760 2 13961053 0 0 0 0 0 0 0 0 0 0 0 0 0 16 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  173. disk_io: (3,0):(3144904,54369,610378,3090535,50936192) (3,1):(3630212,54097,633016,3576115,50951320)
  174. ctxt 66155838
  175. btime 1062315585
  176. processes 69293
  177. */
  178. // Algorithm is taken from
  179. // http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wmisdk/wmi/example__obtaining_raw_performance_data.asp
  180. if (strncmp(PHP_OS,'WIN',3)==0) {
  181. @$c = new COM("WinMgmts:{impersonationLevel=impersonate}!Win32_PerfRawData_PerfOS_Processor.Name='_Total'");
  182. if (!$c) return false;
  183. $info[0] = $c->PercentProcessorTime;
  184. $info[1] = 0;
  185. $info[2] = 0;
  186. $info[3] = $c->TimeStamp_Sys100NS;
  187. //print_r($info);
  188. return $info;
  189. }
  190. // Algorithm - Steve Blinch (BlitzAffe Online, http://www.blitzaffe.com)
  191. $statfile = '/proc/stat';
  192. if (!file_exists($statfile)) return false;
  193. $fd = fopen($statfile,"r");
  194. if (!$fd) return false;
  195. $statinfo = explode("\n",fgets($fd, 1024));
  196. fclose($fd);
  197. foreach($statinfo as $line) {
  198. $info = explode(" ",$line);
  199. if($info[0]=="cpu") {
  200. array_shift($info); // pop off "cpu"
  201. if(!$info[0]) array_shift($info); // pop off blank space (if any)
  202. return $info;
  203. }
  204. }
  205. return false;
  206. }
  207. /* NOT IMPLEMENTED */
  208. function MemInfo()
  209. {
  210. /*
  211. total: used: free: shared: buffers: cached:
  212. Mem: 1055289344 917299200 137990144 0 165437440 599773184
  213. Swap: 2146775040 11055104 2135719936
  214. MemTotal: 1030556 kB
  215. MemFree: 134756 kB
  216. MemShared: 0 kB
  217. Buffers: 161560 kB
  218. Cached: 581384 kB
  219. SwapCached: 4332 kB
  220. Active: 494468 kB
  221. Inact_dirty: 322856 kB
  222. Inact_clean: 24256 kB
  223. Inact_target: 168316 kB
  224. HighTotal: 131064 kB
  225. HighFree: 1024 kB
  226. LowTotal: 899492 kB
  227. LowFree: 133732 kB
  228. SwapTotal: 2096460 kB
  229. SwapFree: 2085664 kB
  230. Committed_AS: 348732 kB
  231. */
  232. }
  233. /*
  234. Remember that this is client load, not db server load!
  235. */
  236. var $_lastLoad;
  237. function CPULoad()
  238. {
  239. $info = $this->_CPULoad();
  240. if (!$info) return false;
  241. if (empty($this->_lastLoad)) {
  242. sleep(1);
  243. $this->_lastLoad = $info;
  244. $info = $this->_CPULoad();
  245. }
  246. $last = $this->_lastLoad;
  247. $this->_lastLoad = $info;
  248. $d_user = $info[0] - $last[0];
  249. $d_nice = $info[1] - $last[1];
  250. $d_system = $info[2] - $last[2];
  251. $d_idle = $info[3] - $last[3];
  252. //printf("Delta - User: %f Nice: %f System: %f Idle: %f<br>",$d_user,$d_nice,$d_system,$d_idle);
  253. if (strncmp(PHP_OS,'WIN',3)==0) {
  254. if ($d_idle < 1) $d_idle = 1;
  255. return 100*(1-$d_user/$d_idle);
  256. }else {
  257. $total=$d_user+$d_nice+$d_system+$d_idle;
  258. if ($total<1) $total=1;
  259. return 100*($d_user+$d_nice+$d_system)/$total;
  260. }
  261. }
  262. function Tracer($sql)
  263. {
  264. $perf_table = adodb_perf::table();
  265. $saveE = $this->conn->fnExecute;
  266. $this->conn->fnExecute = false;
  267. $sqlq = $this->conn->qstr($sql);
  268. $arr = $this->conn->GetArray(
  269. "select count(*),tracer
  270. from $perf_table where sql1=$sqlq
  271. group by tracer
  272. order by 1 desc");
  273. $s = '';
  274. if ($arr) {
  275. $s .= '<h3>Scripts Affected</h3>';
  276. foreach($arr as $k) {
  277. $s .= sprintf("%4d",$k[0]).' &nbsp; '.strip_tags($k[1]).'<br>';
  278. }
  279. }
  280. $this->conn->fnExecute = $saveE;
  281. return $s;
  282. }
  283. /*
  284. Explain Plan for $sql.
  285. If only a snippet of the $sql is passed in, then $partial will hold the crc32 of the
  286. actual sql.
  287. */
  288. function Explain($sql,$partial=false)
  289. {
  290. return false;
  291. }
  292. function InvalidSQL($numsql = 10)
  293. {
  294. global $HTTP_GET_VARS;
  295. if (isset($HTTP_GET_VARS['sql'])) return;
  296. $s = '<h3>Invalid SQL</h3>';
  297. $saveE = $this->conn->fnExecute;
  298. $this->conn->fnExecute = false;
  299. $perf_table = adodb_perf::table();
  300. $rs =& $this->conn->SelectLimit("select distinct count(*),sql1,tracer as error_msg from $perf_table where tracer like 'ERROR:%' group by sql1,tracer order by 1 desc",$numsql);//,$numsql);
  301. $this->conn->fnExecute = $saveE;
  302. if ($rs) {
  303. $s .= rs2html($rs,false,false,false,false);
  304. } else
  305. return "<p>$this->helpurl. ".$this->conn->ErrorMsg()."</p>";
  306. return $s;
  307. }
  308. /*
  309. This script identifies the longest running SQL
  310. */
  311. function _SuspiciousSQL($numsql = 10)
  312. {
  313. global $ADODB_FETCH_MODE,$HTTP_GET_VARS;
  314. $perf_table = adodb_perf::table();
  315. $saveE = $this->conn->fnExecute;
  316. $this->conn->fnExecute = false;
  317. if (isset($HTTP_GET_VARS['exps']) && isset($HTTP_GET_VARS['sql'])) {
  318. $partial = !empty($HTTP_GET_VARS['part']);
  319. echo "<a name=explain></a>".$this->Explain($HTTP_GET_VARS['sql'],$partial)."\n";
  320. }
  321. if (isset($HTTP_GET_VARS['sql'])) return;
  322. $sql1 = $this->sql1;
  323. $save = $ADODB_FETCH_MODE;
  324. $ADODB_FETCH_MODE = ADODB_FETCH_NUM;
  325. if ($this->conn->fetchMode !== false) $savem = $this->conn->SetFetchMode(false);
  326. //$this->conn->debug=1;
  327. $rs =& $this->conn->SelectLimit(
  328. "select avg(timer) as avg_timer,$sql1,count(*),max(timer) as max_timer,min(timer) as min_timer
  329. from $perf_table
  330. where {$this->conn->upperCase}({$this->conn->substr}(sql0,1,5)) not in ('DROP ','INSER','COMMI','CREAT')
  331. and (tracer is null or tracer not like 'ERROR:%')
  332. group by sql1
  333. order by 1 desc",$numsql);
  334. if (isset($savem)) $this->conn->SetFetchMode($savem);
  335. $ADODB_FETCH_MODE = $save;
  336. $this->conn->fnExecute = $saveE;
  337. if (!$rs) return "<p>$this->helpurl. ".$this->conn->ErrorMsg()."</p>";
  338. $s = "<h3>Suspicious SQL</h3>
  339. <font size=1>The following SQL have high average execution times</font><br>
  340. <table border=1 bgcolor=white><tr><td><b>Avg Time</b><td><b>Count</b><td><b>SQL</b><td><b>Max</b><td><b>Min</b></tr>\n";
  341. $max = $this->maxLength;
  342. while (!$rs->EOF) {
  343. $sql = $rs->fields[1];
  344. $raw = urlencode($sql);
  345. if (strlen($raw)>$max-100) {
  346. $sql2 = substr($sql,0,$max-500);
  347. $raw = urlencode($sql2).'&part='.crc32($sql);
  348. }
  349. $prefix = "<a target=sql".rand()." href=\"?hidem=1&exps=1&sql=".$raw."&x#explain\">";
  350. $suffix = "</a>";
  351. if ($this->explain == false || strlen($prefix)>$max) {
  352. $suffix = ' ... <i>String too long for GET parameter: '.strlen($prefix).'</i>';
  353. $prefix = '';
  354. }
  355. $s .= "<tr><td>".adodb_round($rs->fields[0],6)."<td align=right>".$rs->fields[2]."<td><font size=-1>".$prefix.htmlspecialchars($sql).$suffix."</font>".
  356. "<td>".$rs->fields[3]."<td>".$rs->fields[4]."</tr>";
  357. $rs->MoveNext();
  358. }
  359. return $s."</table>";
  360. }
  361. function CheckMemory()
  362. {
  363. return '';
  364. }
  365. function SuspiciousSQL($numsql=10)
  366. {
  367. return adodb_perf::_SuspiciousSQL($numsql);
  368. }
  369. function ExpensiveSQL($numsql=10)
  370. {
  371. return adodb_perf::_ExpensiveSQL($numsql);
  372. }
  373. /*
  374. This reports the percentage of load on the instance due to the most
  375. expensive few SQL statements. Tuning these statements can often
  376. make huge improvements in overall system performance.
  377. */
  378. function _ExpensiveSQL($numsql = 10)
  379. {
  380. global $HTTP_GET_VARS,$ADODB_FETCH_MODE;
  381. $perf_table = adodb_perf::table();
  382. $saveE = $this->conn->fnExecute;
  383. $this->conn->fnExecute = false;
  384. if (isset($HTTP_GET_VARS['expe']) && isset($HTTP_GET_VARS['sql'])) {
  385. $partial = !empty($HTTP_GET_VARS['part']);
  386. echo "<a name=explain></a>".$this->Explain($HTTP_GET_VARS['sql'],$partial)."\n";
  387. }
  388. if (isset($HTTP_GET_VARS['sql'])) return;
  389. $sql1 = $this->sql1;
  390. $save = $ADODB_FETCH_MODE;
  391. $ADODB_FETCH_MODE = ADODB_FETCH_NUM;
  392. if ($this->conn->fetchMode !== false) $savem = $this->conn->SetFetchMode(false);
  393. $rs =& $this->conn->SelectLimit(
  394. "select sum(timer) as total,$sql1,count(*),max(timer) as max_timer,min(timer) as min_timer
  395. from $perf_table
  396. where {$this->conn->upperCase}({$this->conn->substr}(sql0,1,5)) not in ('DROP ','INSER','COMMI','CREAT')
  397. and (tracer is null or tracer not like 'ERROR:%')
  398. group by sql1
  399. order by 1 desc",$numsql);
  400. if (isset($savem)) $this->conn->SetFetchMode($savem);
  401. $this->conn->fnExecute = $saveE;
  402. $ADODB_FETCH_MODE = $save;
  403. if (!$rs) return "<p>$this->helpurl. ".$this->conn->ErrorMsg()."</p>";
  404. $s = "<h3>Expensive SQL</h3>
  405. <font size=1>Tuning the following SQL will reduce the server load substantially</font><br>
  406. <table border=1 bgcolor=white><tr><td><b>Load</b><td><b>Count</b><td><b>SQL</b><td><b>Max</b><td><b>Min</b></tr>\n";
  407. $max = $this->maxLength;
  408. while (!$rs->EOF) {
  409. $sql = $rs->fields[1];
  410. $raw = urlencode($sql);
  411. if (strlen($raw)>$max-100) {
  412. $sql2 = substr($sql,0,$max-500);
  413. $raw = urlencode($sql2).'&part='.crc32($sql);
  414. }
  415. $prefix = "<a target=sqle".rand()." href=\"?hidem=1&expe=1&sql=".$raw."&x#explain\">";
  416. $suffix = "</a>";
  417. if($this->explain == false || strlen($prefix>$max)) {
  418. $prefix = '';
  419. $suffix = '';
  420. }
  421. $s .= "<tr><td>".adodb_round($rs->fields[0],6)."<td align=right>".$rs->fields[2]."<td><font size=-1>".$prefix.htmlspecialchars($sql).$suffix."</font>".
  422. "<td>".$rs->fields[3]."<td>".$rs->fields[4]."</tr>";
  423. $rs->MoveNext();
  424. }
  425. return $s."</table>";
  426. }
  427. /*
  428. Raw function to return parameter value from $settings.
  429. */
  430. function DBParameter($param)
  431. {
  432. if (empty($this->settings[$param])) return false;
  433. $sql = $this->settings[$param][1];
  434. return $this->_DBParameter($sql);
  435. }
  436. /*
  437. Raw function returning array of poll paramters
  438. */
  439. function &PollParameters()
  440. {
  441. $arr[0] = (float)$this->DBParameter('data cache hit ratio');
  442. $arr[1] = (float)$this->DBParameter('data reads');
  443. $arr[2] = (float)$this->DBParameter('data writes');
  444. $arr[3] = (integer) $this->DBParameter('current connections');
  445. return $arr;
  446. }
  447. /*
  448. Low-level Get Database Parameter
  449. */
  450. function _DBParameter($sql)
  451. {
  452. $savelog = $this->conn->LogSQL(false);
  453. if (is_array($sql)) {
  454. global $ADODB_FETCH_MODE;
  455. $sql1 = $sql[0];
  456. $key = $sql[1];
  457. if (sizeof($sql)>2) $pos = $sql[2];
  458. else $pos = 1;
  459. if (sizeof($sql)>3) $coef = $sql[3];
  460. else $coef = false;
  461. $ret = false;
  462. $save = $ADODB_FETCH_MODE;
  463. $ADODB_FETCH_MODE = ADODB_FETCH_NUM;
  464. $rs = $this->conn->Execute($sql1);
  465. $ADODB_FETCH_MODE = $save;
  466. if ($rs) {
  467. while (!$rs->EOF) {
  468. $keyf = reset($rs->fields);
  469. if (trim($keyf) == $key) {
  470. $ret = $rs->fields[$pos];
  471. if ($coef) $ret *= $coef;
  472. break;
  473. }
  474. $rs->MoveNext();
  475. }
  476. $rs->Close();
  477. }
  478. $this->conn->LogSQL($savelog);
  479. return $ret;
  480. } else {
  481. if (strncmp($sql,'=',1) == 0) {
  482. $fn = substr($sql,1);
  483. return $this->$fn();
  484. }
  485. $sql = str_replace('$DATABASE',$this->conn->database,$sql);
  486. $ret = $this->conn->GetOne($sql);
  487. $this->conn->LogSQL($savelog);
  488. return $ret;
  489. }
  490. }
  491. /*
  492. Warn if cache ratio falls below threshold. Displayed in "Description" column.
  493. */
  494. function WarnCacheRatio($val)
  495. {
  496. if ($val < $this->warnRatio)
  497. return '<font color=red><b>Cache ratio should be at least '.$this->warnRatio.'%</b></font>';
  498. else return '';
  499. }
  500. /***********************************************************************************************/
  501. // HIGH LEVEL UI FUNCTIONS
  502. /***********************************************************************************************/
  503. function UI($pollsecs=5)
  504. {
  505. global $HTTP_GET_VARS,$HTTP_SERVER_VARS,$HTTP_POST_VARS;
  506. $perf_table = adodb_perf::table();
  507. $conn = $this->conn;
  508. $app = $conn->host;
  509. if ($conn->host && $conn->database) $app .= ', db=';
  510. $app .= $conn->database;
  511. if ($app) $app .= ', ';
  512. $savelog = $this->conn->LogSQL(false);
  513. $info = $conn->ServerInfo();
  514. if (isset($HTTP_GET_VARS['clearsql'])) {
  515. $this->conn->Execute("delete from $perf_table");
  516. }
  517. $this->conn->LogSQL($savelog);
  518. // magic quotes
  519. if (isset($HTTP_GET_VARS['sql']) && get_magic_quotes_gpc()) {
  520. $_GET['sql'] = $HTTP_GET_VARS['sql'] = str_replace(array("\\'",'\"'),array("'",'"'),$HTTP_GET_VARS['sql']);
  521. }
  522. if (!isset($_SESSION['ADODB_PERF_SQL'])) $nsql = $_SESSION['ADODB_PERF_SQL'] = 10;
  523. else $nsql = $_SESSION['ADODB_PERF_SQL'];
  524. $app .= $info['description'];
  525. if (isset($HTTP_GET_VARS['do'])) $do = $HTTP_GET_VARS['do'];
  526. else if (isset($HTTP_POST_VARS['do'])) $do = $HTTP_POST_VARS['do'];
  527. else if (isset($HTTP_GET_VARS['sql'])) $do = 'viewsql';
  528. else $do = 'stats';
  529. if (isset($HTTP_GET_VARS['nsql'])) {
  530. if ($HTTP_GET_VARS['nsql'] > 0) $nsql = $_SESSION['ADODB_PERF_SQL'] = (integer) $HTTP_GET_VARS['nsql'];
  531. }
  532. echo "<title>ADOdb Performance Monitor on $app</title><body bgcolor=white>";
  533. if ($do == 'viewsql') $form = "<td><form># SQL:<input type=hidden value=viewsql name=do> <input type=text size=4 name=nsql value=$nsql><input type=submit value=Go></td></form>";
  534. else $form = "<td>&nbsp;</td>";
  535. $allowsql = !defined('ADODB_PERF_NO_RUN_SQL');
  536. if (empty($HTTP_GET_VARS['hidem']))
  537. echo "<table border=1 width=100% bgcolor=lightyellow><tr><td colspan=2>
  538. <b><a href=http://adodb.sourceforge.net/?perf=1>ADOdb</a> Performance Monitor</b> <font size=1>for $app</font></tr><tr><td>
  539. <a href=?do=stats><b>Performance Stats</b></a> &nbsp; <a href=?do=viewsql><b>View SQL</b></a>
  540. &nbsp; <a href=?do=tables><b>View Tables</b></a> &nbsp; <a href=?do=poll><b>Poll Stats</b></a>",
  541. $allowsql ? ' &nbsp; <a href=?do=dosql><b>Run SQL</b></a>' : '',
  542. "$form",
  543. "</tr></table>";
  544. switch ($do) {
  545. default:
  546. case 'stats':
  547. echo $this->HealthCheck();
  548. //$this->conn->debug=1;
  549. echo $this->CheckMemory();
  550. break;
  551. case 'poll':
  552. echo "<iframe width=720 height=80%
  553. src=\"{$HTTP_SERVER_VARS['PHP_SELF']}?do=poll2&hidem=1\"></iframe>";
  554. break;
  555. case 'poll2':
  556. echo "<pre>";
  557. $this->Poll($pollsecs);
  558. break;
  559. case 'dosql':
  560. if (!$allowsql) break;
  561. $this->DoSQLForm();
  562. break;
  563. case 'viewsql':
  564. if (empty($HTTP_GET_VARS['hidem']))
  565. echo "&nbsp; <a href=\"?do=viewsql&clearsql=1\">Clear SQL Log</a><br>";
  566. echo($this->SuspiciousSQL($nsql));
  567. echo($this->ExpensiveSQL($nsql));
  568. echo($this->InvalidSQL($nsql));
  569. break;
  570. case 'tables':
  571. echo $this->Tables(); break;
  572. }
  573. global $ADODB_vers;
  574. echo "<p><div align=center><font size=1>$ADODB_vers Sponsored by <a href=http://phplens.com/>phpLens</a></font></div>";
  575. }
  576. /*
  577. Runs in infinite loop, returning real-time statistics
  578. */
  579. function Poll($secs=5)
  580. {
  581. $this->conn->fnExecute = false;
  582. //$this->conn->debug=1;
  583. if ($secs <= 1) $secs = 1;
  584. echo "Accumulating statistics, every $secs seconds...\n";flush();
  585. $arro =& $this->PollParameters();
  586. $cnt = 0;
  587. set_time_limit(0);
  588. sleep($secs);
  589. while (1) {
  590. $arr =& $this->PollParameters();
  591. $hits = sprintf('%2.2f',$arr[0]);
  592. $reads = sprintf('%12.4f',($arr[1]-$arro[1])/$secs);
  593. $writes = sprintf('%12.4f',($arr[2]-$arro[2])/$secs);
  594. $sess = sprintf('%5d',$arr[3]);
  595. $load = $this->CPULoad();
  596. if ($load !== false) {
  597. $oslabel = 'WS-CPU%';
  598. $osval = sprintf(" %2.1f ",(float) $load);
  599. }else {
  600. $oslabel = '';
  601. $osval = '';
  602. }
  603. if ($cnt % 10 == 0) echo " Time ".$oslabel." Hit% Sess Reads/s Writes/s\n";
  604. $cnt += 1;
  605. echo date('H:i:s').' '.$osval."$hits $sess $reads $writes\n";
  606. flush();
  607. if (connection_aborted()) return;
  608. sleep($secs);
  609. $arro = $arr;
  610. }
  611. }
  612. /*
  613. Returns basic health check in a command line interface
  614. */
  615. function HealthCheckCLI()
  616. {
  617. return $this->HealthCheck(true);
  618. }
  619. /*
  620. Returns basic health check as HTML
  621. */
  622. function HealthCheck($cli=false)
  623. {
  624. $saveE = $this->conn->fnExecute;
  625. $this->conn->fnExecute = false;
  626. if ($cli) $html = '';
  627. else $html = $this->table.'<tr><td colspan=3><h3>'.$this->conn->databaseType.'</h3></td></tr>'.$this->titles;
  628. $oldc = false;
  629. $bgc = '';
  630. foreach($this->settings as $name => $arr) {
  631. if ($arr === false) break;
  632. if (!is_string($name)) {
  633. if ($cli) $html .= " -- $arr -- \n";
  634. else $html .= "<tr bgcolor=$this->color><td colspan=3><i>$arr</i> &nbsp;</td></tr>";
  635. continue;
  636. }
  637. if (!is_array($arr)) break;
  638. $category = $arr[0];
  639. $how = $arr[1];
  640. if (sizeof($arr)>2) $desc = $arr[2];
  641. else $desc = ' &nbsp; ';
  642. if ($category == 'HIDE') continue;
  643. $val = $this->_DBParameter($how);
  644. if ($desc && strncmp($desc,"=",1) === 0) {
  645. $fn = substr($desc,1);
  646. $desc = $this->$fn($val);
  647. }
  648. if ($val === false) {
  649. $m = $this->conn->ErrorMsg();
  650. $val = "Error: $m";
  651. } else {
  652. if (is_numeric($val) && $val >= 256*1024) {
  653. if ($val % (1024*1024) == 0) {
  654. $val /= (1024*1024);
  655. $val .= 'M';
  656. } else if ($val % 1024 == 0) {
  657. $val /= 1024;
  658. $val .= 'K';
  659. }
  660. //$val = htmlspecialchars($val);
  661. }
  662. }
  663. if ($category != $oldc) {
  664. $oldc = $category;
  665. //$bgc = ($bgc == ' bgcolor='.$this->color) ? ' bgcolor=white' : ' bgcolor='.$this->color;
  666. }
  667. if (strlen($desc)==0) $desc = '&nbsp;';
  668. if (strlen($val)==0) $val = '&nbsp;';
  669. if ($cli) {
  670. $html .= str_replace('&nbsp;','',sprintf($this->cliFormat,strip_tags($name),strip_tags($val),strip_tags($desc)));
  671. }else {
  672. $html .= "<tr$bgc><td>".$name.'</td><td>'.$val.'</td><td>'.$desc."</td></tr>\n";
  673. }
  674. }
  675. if (!$cli) $html .= "</table>\n";
  676. $this->conn->fnExecute = $saveE;
  677. return $html;
  678. }
  679. function Tables($orderby='1')
  680. {
  681. if (!$this->tablesSQL) return false;
  682. $savelog = $this->conn->LogSQL(false);
  683. $rs = $this->conn->Execute($this->tablesSQL.' order by '.$orderby);
  684. $this->conn->LogSQL($savelog);
  685. $html = rs2html($rs,false,false,false,false);
  686. return $html;
  687. }
  688. function CreateLogTable()
  689. {
  690. if (!$this->createTableSQL) return false;
  691. $savelog = $this->conn->LogSQL(false);
  692. $ok = $this->conn->Execute($this->createTableSQL);
  693. $this->conn->LogSQL($savelog);
  694. return ($ok) ? true : false;
  695. }
  696. function DoSQLForm()
  697. {
  698. global $HTTP_SERVER_VARS,$HTTP_GET_VARS,$HTTP_POST_VARS,$HTTP_SESSION_VARS;
  699. $HTTP_VARS = array_merge($HTTP_GET_VARS,$HTTP_POST_VARS);
  700. $PHP_SELF = $HTTP_SERVER_VARS['PHP_SELF'];
  701. $sql = isset($HTTP_VARS['sql']) ? $HTTP_VARS['sql'] : '';
  702. if (isset($HTTP_SESSION_VARS['phplens_sqlrows'])) $rows = $HTTP_SESSION_VARS['phplens_sqlrows'];
  703. else $rows = 3;
  704. if (isset($HTTP_VARS['SMALLER'])) {
  705. $rows /= 2;
  706. if ($rows < 3) $rows = 3;
  707. $HTTP_SESSION_VARS['phplens_sqlrows'] = $rows;
  708. }
  709. if (isset($HTTP_VARS['BIGGER'])) {
  710. $rows *= 2;
  711. $HTTP_SESSION_VARS['phplens_sqlrows'] = $rows;
  712. }
  713. ?>
  714. <form method="POST" action="<?php echo $PHP_SELF ?>">
  715. <table><tr>
  716. <td> Form size: <input type="submit" value=" &lt; " name="SMALLER"><input type="submit" value=" &gt; &gt; " name="BIGGER">
  717. </td>
  718. <td align=right>
  719. <input type="submit" value=" Run SQL Below " name="RUN"><input type=hidden name=do value=dosql>
  720. </td></tr>
  721. <tr>
  722. <td colspan=2><textarea rows=<?php print $rows; ?> name="sql" cols="80"><?php print htmlspecialchars($sql) ?></textarea>
  723. </td>
  724. </tr>
  725. </table>
  726. </form>
  727. <?php
  728. if (!isset($HTTP_VARS['sql'])) return;
  729. $sql = $this->undomq(trim($sql));
  730. if (substr($sql,strlen($sql)-1) === ';') {
  731. $print = true;
  732. $sqla = $this->SplitSQL($sql);
  733. } else {
  734. $print = false;
  735. $sqla = array($sql);
  736. }
  737. foreach($sqla as $sqls) {
  738. if (!$sqls) continue;
  739. if ($print) {
  740. print "<p>".htmlspecialchars($sqls)."</p>";
  741. flush();
  742. }
  743. $savelog = $this->conn->LogSQL(false);
  744. $rs = $this->conn->Execute($sqls);
  745. $this->conn->LogSQL($savelog);
  746. if ($rs && is_object($rs) && !$rs->EOF) {
  747. rs2html($rs);
  748. while ($rs->NextRecordSet()) {
  749. print "<table width=98% bgcolor=#C0C0FF><tr><td>&nbsp;</td></tr></table>";
  750. rs2html($rs);
  751. }
  752. } else {
  753. $e1 = (integer) $this->conn->ErrorNo();
  754. $e2 = $this->conn->ErrorMsg();
  755. if (($e1) || ($e2)) {
  756. if (empty($e1)) $e1 = '-1'; // postgresql fix
  757. print ' &nbsp; '.$e1.': '.$e2;
  758. } else {
  759. print "<p>No Recordset returned<br></p>";
  760. }
  761. }
  762. } // foreach
  763. }
  764. function SplitSQL($sql)
  765. {
  766. $arr = explode(';',$sql);
  767. return $arr;
  768. }
  769. function undomq(&$m)
  770. {
  771. if (get_magic_quotes_gpc()) {
  772. // undo the damage
  773. $m = str_replace('\\\\','\\',$m);
  774. $m = str_replace('\"','"',$m);
  775. $m = str_replace('\\\'','\'',$m);
  776. }
  777. return $m;
  778. }
  779. }
  780. ?>