3 * Profiler storing information in the DB.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
25 * $wgProfiler['class'] = 'ProfilerSimpleDB';
29 class ProfilerSimpleDB
extends ProfilerStandard
{
30 protected function collateOnly() {
34 public function isPersistent() {
39 * Log the whole profiling data into the database.
41 public function logData() {
42 global $wgProfilePerHost;
44 # Do not log anything if database is readonly (bug 5375)
49 if ( $wgProfilePerHost ) {
50 $pfhost = wfHostname();
58 $dbw = wfGetDB( DB_MASTER
);
59 $useTrx = ( $dbw->getType() === 'sqlite' ); // much faster
63 foreach ( $this->mCollated
as $name => $data ) {
64 $eventCount = $data['count'];
65 $timeSum = (float)( $data['real'] * 1000 );
66 $memorySum = (float)$data['memory'];
67 $name = substr( $name, 0, 255 );
70 $timeSum = $timeSum >= 0 ?
$timeSum : 0;
71 $memorySum = $memorySum >= 0 ?
$memorySum : 0;
73 $dbw->update( 'profiling',
75 "pf_count=pf_count+{$eventCount}",
76 "pf_time=pf_time+{$timeSum}",
77 "pf_memory=pf_memory+{$memorySum}",
81 'pf_server' => $pfhost,
85 $rc = $dbw->affectedRows();
87 $dbw->insert( 'profiling',
90 'pf_count' => $eventCount,
91 'pf_time' => $timeSum,
92 'pf_memory' => $memorySum,
93 'pf_server' => $pfhost
99 // When we upgrade to mysql 4.1, the insert+update
100 // can be merged into just a insert with this construct added:
101 // "ON DUPLICATE KEY UPDATE ".
102 // "pf_count=pf_count + VALUES(pf_count), ".
103 // "pf_time=pf_time + VALUES(pf_time)";
108 } catch ( DBError
$e ) {