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 * Logs profiling data into the local DB
30 class ProfilerOutputDb
extends ProfilerOutput
{
31 public function canUse() {
32 # Do not log anything if database is readonly (bug 5375)
36 public function log( array $stats ) {
37 global $wgProfilePerHost;
39 if ( $wgProfilePerHost ) {
40 $pfhost = wfHostname();
46 $dbw = wfGetDB( DB_MASTER
);
47 $useTrx = ( $dbw->getType() === 'sqlite' ); // much faster
49 $dbw->startAtomic( __METHOD__
);
51 foreach ( $stats as $data ) {
52 $name = $data['name'];
53 $eventCount = $data['calls'];
54 $timeSum = (float)$data['real'];
55 $memorySum = (float)$data['memory'];
56 $name = substr( $name, 0, 255 );
59 $timeSum = $timeSum >= 0 ?
$timeSum : 0;
60 $memorySum = $memorySum >= 0 ?
$memorySum : 0;
62 $dbw->upsert( 'profiling',
65 'pf_count' => $eventCount,
66 'pf_time' => $timeSum,
67 'pf_memory' => $memorySum,
68 'pf_server' => $pfhost
70 array( array( 'pf_name', 'pf_server' ) ),
72 "pf_count=pf_count+{$eventCount}",
73 "pf_time=pf_time+{$timeSum}",
74 "pf_memory=pf_memory+{$memorySum}",
80 $dbw->endAtomic( __METHOD__
);
82 } catch ( DBError
$e ) {