MediaWiki REL1_31
ProfilerOutputDb.php
Go to the documentation of this file.
1<?php
25
34 private $perHost = false;
35
36 public function __construct( Profiler $collector, array $params ) {
37 parent::__construct( $collector, $params );
38
39 // Initialize per-host profiling from config, back-compat if available
40 if ( isset( $this->params['perHost'] ) ) {
41 $this->perHost = $this->params['perHost'];
42 }
43 }
44
45 public function canUse() {
46 # Do not log anything if database is readonly (T7375)
47 return !wfReadOnly();
48 }
49
50 public function log( array $stats ) {
51 try {
52 $dbw = wfGetDB( DB_MASTER );
53 } catch ( DBError $e ) {
54 return; // ignore
55 }
56
57 $fname = __METHOD__;
58 $dbw->onTransactionIdle( function () use ( $stats, $dbw, $fname ) {
59 $pfhost = $this->perHost ? wfHostname() : '';
60 // Sqlite: avoid excess b-tree rebuilds (mostly for non-WAL mode)
61 // non-Sqlite: lower contention with small transactions
62 $useTrx = ( $dbw->getType() === 'sqlite' );
63
64 try {
65 $useTrx ? $dbw->startAtomic( $fname ) : null;
66
67 foreach ( $stats as $data ) {
68 $name = $data['name'];
69 $eventCount = $data['calls'];
70 $timeSum = (float)$data['real'];
71 $memorySum = (float)$data['memory'];
72 $name = substr( $name, 0, 255 );
73
74 // Kludge
75 $timeSum = $timeSum >= 0 ? $timeSum : 0;
76 $memorySum = $memorySum >= 0 ? $memorySum : 0;
77
78 $dbw->upsert( 'profiling',
79 [
80 'pf_name' => $name,
81 'pf_count' => $eventCount,
82 'pf_time' => $timeSum,
83 'pf_memory' => $memorySum,
84 'pf_server' => $pfhost
85 ],
86 [ [ 'pf_name', 'pf_server' ] ],
87 [
88 "pf_count=pf_count+{$eventCount}",
89 "pf_time=pf_time+{$timeSum}",
90 "pf_memory=pf_memory+{$memorySum}",
91 ],
92 $fname
93 );
94 }
95 } catch ( DBError $e ) {
96 // ignore
97 }
98
99 try {
100 $useTrx ? $dbw->endAtomic( $fname ) : null;
101 } catch ( DBError $e ) {
102 // ignore
103 }
104 } );
105 }
106}
wfReadOnly()
Check whether the wiki is in read-only mode.
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
wfHostname()
Fetch server name for use in error reporting etc.
if(defined( 'MW_SETUP_CALLBACK')) $fname
Customization point after all loading (constants, functions, classes, DefaultSettings,...
Definition Setup.php:112
Logs profiling data into the local DB.
log(array $stats)
Log MediaWiki-style profiling data.
canUse()
Can this output type be used?
bool $perHost
Whether to store host data with profiling calls.
__construct(Profiler $collector, array $params)
Base class for profiling output.
array $params
Configuration of $wgProfiler.
Profiler base class that defines the interface and some trivial functionality.
Definition Profiler.php:33
Database error base class.
Definition DBError.php:30
returning false will NOT prevent logging $e
Definition hooks.txt:2176
const DB_MASTER
Definition defines.php:29