MediaWiki  1.29.1
ProfilerOutputDb.php
Go to the documentation of this file.
1 <?php
25 
34  private $perHost = false;
35 
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  $pfhost = $this->perHost ? wfHostname() : '';
52 
53  try {
54  $dbw = wfGetDB( DB_MASTER );
55  $useTrx = ( $dbw->getType() === 'sqlite' ); // much faster
56  if ( $useTrx ) {
57  $dbw->startAtomic( __METHOD__ );
58  }
59  foreach ( $stats as $data ) {
60  $name = $data['name'];
61  $eventCount = $data['calls'];
62  $timeSum = (float)$data['real'];
63  $memorySum = (float)$data['memory'];
64  $name = substr( $name, 0, 255 );
65 
66  // Kludge
67  $timeSum = $timeSum >= 0 ? $timeSum : 0;
68  $memorySum = $memorySum >= 0 ? $memorySum : 0;
69 
70  $dbw->upsert( 'profiling',
71  [
72  'pf_name' => $name,
73  'pf_count' => $eventCount,
74  'pf_time' => $timeSum,
75  'pf_memory' => $memorySum,
76  'pf_server' => $pfhost
77  ],
78  [ [ 'pf_name', 'pf_server' ] ],
79  [
80  "pf_count=pf_count+{$eventCount}",
81  "pf_time=pf_time+{$timeSum}",
82  "pf_memory=pf_memory+{$memorySum}",
83  ],
84  __METHOD__
85  );
86  }
87  if ( $useTrx ) {
88  $dbw->endAtomic( __METHOD__ );
89  }
90  } catch ( DBError $e ) {
91  }
92  }
93 }
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
wfHostname
wfHostname()
Fetch server name for use in error reporting etc.
Definition: GlobalFunctions.php:1435
wfReadOnly
wfReadOnly()
Check whether the wiki is in read-only mode.
Definition: GlobalFunctions.php:1277
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:304
ProfilerOutput\$collector
Profiler $collector
Definition: ProfilerOutput.php:29
Wikimedia\Rdbms\DBError
Database error base class.
Definition: DBError.php:30
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
ProfilerOutputDb\$perHost
bool $perHost
Whether to store host data with profiling calls.
Definition: ProfilerOutputDb.php:34
ProfilerOutput\$params
array $params
Configuration of $wgProfiler.
Definition: ProfilerOutput.php:31
wfGetDB
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
Definition: GlobalFunctions.php:3060
Profiler
Profiler base class that defines the interface and some trivial functionality.
Definition: Profiler.php:33
DB_MASTER
const DB_MASTER
Definition: defines.php:26
$e
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
Definition: hooks.txt:2122
ProfilerOutputDb\__construct
__construct(Profiler $collector, array $params)
Constructor.
Definition: ProfilerOutputDb.php:36
ProfilerOutputDb\log
log(array $stats)
Log MediaWiki-style profiling data.
Definition: ProfilerOutputDb.php:50
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
ProfilerOutput
Base class for profiling output.
Definition: ProfilerOutput.php:27
ProfilerOutputDb\canUse
canUse()
Can this output type be used?
Definition: ProfilerOutputDb.php:45
ProfilerOutputDb
Logs profiling data into the local DB.
Definition: ProfilerOutputDb.php:32
array
the array() calling protocol came about after MediaWiki 1.4rc1.