MediaWiki fundraising/REL1_35
|
Profiler base class that defines the interface and some shared functionality. More...
Public Member Functions | |
__construct (array $params) | |
close () | |
Close opened profiling sections. | |
getAllowOutput () | |
Whether appending profiles is allowed. | |
getContentType () | |
Get the Content-Type for deciding how to format appended profile output. | |
getContext () | |
Gets the context for this Profiler. | |
getFunctionStats () | |
Get the aggregated inclusive profiling data for each method. | |
getOutput () | |
Returns a profiling output to be stored in debug file. | |
getProfileID () | |
getTemplated () | |
Was this call as templated or not. | |
getTransactionProfiler () | |
logData () | |
Log the data to the backing store for all ProfilerOutput instances that have one. | |
logDataPageOutputOnly () | |
Log the data to the script/request output for all ProfilerOutput instances that do so. | |
profileIn ( $functionname) | |
profileOut ( $functionname) | |
scopedProfileIn ( $section) | |
Mark the start of a custom profiling frame (e.g. | |
scopedProfileOut (SectionProfileCallback &$section=null) | |
setAllowOutput () | |
Enable appending profiles to standard output. | |
setContext ( $context) | |
Sets the context for this Profiler. | |
setProfileID ( $id) | |
setTemplated ( $t) | |
Mark this call as templated or not. | |
Static Public Member Functions | |
static | instance () |
Singleton. | |
static | replaceStubInstance (Profiler $profiler) |
Replace the current profiler with $profiler if no non-stub profiler is set. | |
Protected Attributes | |
IContextSource | $context = null |
Current request context. | |
array | $params = [] |
All of the params passed from $wgProfiler. | |
string bool | $profileID = false |
Profiler ID for bucketing data. | |
TransactionProfiler | $trxProfiler |
Private Member Functions | |
getOutputs () | |
Get all usable outputs. | |
Private Attributes | |
bool | $allowOutput = false |
Static Private Attributes | |
static Profiler | $instance = null |
Profiler base class that defines the interface and some shared functionality.
Definition at line 33 of file Profiler.php.
Profiler::__construct | ( | array | $params | ) |
array | $params | See $wgProfiler. |
Reimplemented in ProfilerExcimer, ProfilerSectionOnly, and ProfilerXhprof.
Definition at line 51 of file Profiler.php.
|
abstract |
Close opened profiling sections.
Reimplemented in ProfilerExcimer, ProfilerSectionOnly, ProfilerStub, and ProfilerXhprof.
Profiler::getAllowOutput | ( | ) |
Whether appending profiles is allowed.
Definition at line 325 of file Profiler.php.
Referenced by getTemplated().
Profiler::getContentType | ( | ) |
Get the Content-Type for deciding how to format appended profile output.
Disabled by default. Enable via setAllowOutput().
Definition at line 277 of file Profiler.php.
References $header.
Profiler::getContext | ( | ) |
Gets the context for this Profiler.
Definition at line 138 of file Profiler.php.
References wfDebug().
|
abstract |
Get the aggregated inclusive profiling data for each method.
The percent time for each time is based on the current "total" time used is based on all methods so far. This method can therefore be called several times in between several profiling calls without the delays in usage of the profiler skewing the results. A "-total" entry is always included in the results.
When a call chain involves a method invoked within itself, any entries for the cyclic invocation should be be demarked with "@". This makes filtering them out easier and follows the xhprof style.
Reimplemented in ProfilerExcimer, ProfilerSectionOnly, ProfilerStub, and ProfilerXhprof.
Referenced by logData(), and logDataPageOutputOnly().
|
abstract |
Returns a profiling output to be stored in debug file.
Reimplemented in ProfilerExcimer, ProfilerSectionOnly, ProfilerStub, and ProfilerXhprof.
|
private |
Get all usable outputs.
MWException |
Definition at line 193 of file Profiler.php.
Referenced by logData(), and logDataPageOutputOnly().
Profiler::getProfileID | ( | ) |
Definition at line 114 of file Profiler.php.
Profiler::getTemplated | ( | ) |
Was this call as templated or not.
Definition at line 305 of file Profiler.php.
References getAllowOutput(), and wfDeprecated().
Profiler::getTransactionProfiler | ( | ) |
|
staticfinal |
Singleton.
Definition at line 63 of file Profiler.php.
References $wgProfiler.
Referenced by MediaWiki\Http\HttpRequestFactory\create().
Profiler::logData | ( | ) |
Log the data to the backing store for all ProfilerOutput instances that have one.
Reimplemented in ProfilerStub.
Definition at line 218 of file Profiler.php.
References getContext(), getFunctionStats(), and getOutputs().
Profiler::logDataPageOutputOnly | ( | ) |
Log the data to the script/request output for all ProfilerOutput instances that do so.
MWException |
Reimplemented in ProfilerStub.
Definition at line 248 of file Profiler.php.
References getFunctionStats(), and getOutputs().
Profiler::profileIn | ( | $functionname | ) |
Definition at line 148 of file Profiler.php.
References wfDeprecated().
Profiler::profileOut | ( | $functionname | ) |
Definition at line 152 of file Profiler.php.
References wfDeprecated().
|
staticfinal |
Replace the current profiler with $profiler if no non-stub profiler is set.
Profiler | $profiler |
MWException |
Definition at line 96 of file Profiler.php.
|
abstract |
Mark the start of a custom profiling frame (e.g.
DB queries). The frame ends when the result of this method falls out of scope.
string | $section |
Reimplemented in ProfilerExcimer, ProfilerSectionOnly, ProfilerStub, and ProfilerXhprof.
Profiler::scopedProfileOut | ( | SectionProfileCallback & | $section = null | ) |
SectionProfileCallback | null | &$section |
Definition at line 169 of file Profiler.php.
Profiler::setAllowOutput | ( | ) |
Enable appending profiles to standard output.
Definition at line 315 of file Profiler.php.
Profiler::setContext | ( | $context | ) |
Sets the context for this Profiler.
IContextSource | $context |
Definition at line 128 of file Profiler.php.
Profiler::setProfileID | ( | $id | ) |
string | $id |
Definition at line 107 of file Profiler.php.
Profiler::setTemplated | ( | $t | ) |
Mark this call as templated or not.
bool | $t |
Definition at line 294 of file Profiler.php.
References $t, true, and wfDeprecated().
|
private |
Definition at line 43 of file Profiler.php.
|
protected |
Current request context.
Definition at line 39 of file Profiler.php.
|
staticprivate |
Definition at line 46 of file Profiler.php.
|
protected |
All of the params passed from $wgProfiler.
Definition at line 37 of file Profiler.php.
Referenced by ProfilerExcimer\__construct(), ProfilerSectionOnly\__construct(), and ProfilerXhprof\__construct().
|
protected |
Profiler ID for bucketing data.
Definition at line 35 of file Profiler.php.
|
protected |
Definition at line 41 of file Profiler.php.