Profiler: Call getContentType() only once in logData()
[mediawiki.git] / includes / profiler / ProfilerSimpleDB.php
blob5e62f7c8b442562ba25eb55ae5ae88954da048fb
1 <?php
2 /**
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
20 * @file
21 * @ingroup Profiler
24 /**
25 * $wgProfiler['class'] = 'ProfilerSimpleDB';
27 * @ingroup Profiler
29 class ProfilerSimpleDB extends ProfilerStandard {
30 public function isPersistent() {
31 return true;
34 /**
35 * Log the whole profiling data into the database.
37 public function logData() {
38 global $wgProfilePerHost;
40 # Do not log anything if database is readonly (bug 5375)
41 if ( wfReadOnly() ) {
42 return;
45 if ( $wgProfilePerHost ) {
46 $pfhost = wfHostname();
47 } else {
48 $pfhost = '';
51 try {
52 $this->collateData();
54 $dbw = wfGetDB( DB_MASTER );
55 $useTrx = ( $dbw->getType() === 'sqlite' ); // much faster
56 if ( $useTrx ) {
57 $dbw->startAtomic( __METHOD__ );
59 foreach ( $this->mCollated as $name => $data ) {
60 $eventCount = $data['count'];
61 $timeSum = (float)( $data['real'] * 1000 );
62 $memorySum = (float)$data['memory'];
63 $name = substr( $name, 0, 255 );
65 // Kludge
66 $timeSum = $timeSum >= 0 ? $timeSum : 0;
67 $memorySum = $memorySum >= 0 ? $memorySum : 0;
69 $dbw->update( 'profiling',
70 array(
71 "pf_count=pf_count+{$eventCount}",
72 "pf_time=pf_time+{$timeSum}",
73 "pf_memory=pf_memory+{$memorySum}",
75 array(
76 'pf_name' => $name,
77 'pf_server' => $pfhost,
79 __METHOD__ );
81 $rc = $dbw->affectedRows();
82 if ( $rc == 0 ) {
83 $dbw->insert( 'profiling',
84 array(
85 'pf_name' => $name,
86 'pf_count' => $eventCount,
87 'pf_time' => $timeSum,
88 'pf_memory' => $memorySum,
89 'pf_server' => $pfhost
91 __METHOD__,
92 array( 'IGNORE' )
95 // When we upgrade to mysql 4.1, the insert+update
96 // can be merged into just a insert with this construct added:
97 // "ON DUPLICATE KEY UPDATE ".
98 // "pf_count=pf_count + VALUES(pf_count), ".
99 // "pf_time=pf_time + VALUES(pf_time)";
101 if ( $useTrx ) {
102 $dbw->endAtomic( __METHOD__ );
104 } catch ( DBError $e ) {