MediaWiki REL1_31
Xhprof.php
Go to the documentation of this file.
1<?php
32class Xhprof {
36 protected static $enabled;
37
42 public static function isEnabled() {
43 return self::$enabled;
44 }
45
52 public static function enable( $flags = 0, $options = [] ) {
53 if ( self::isEnabled() ) {
54 throw new Exception( 'Profiling is already enabled.' );
55 }
56 self::$enabled = true;
57 if ( function_exists( 'xhprof_enable' ) ) {
58 xhprof_enable( $flags, $options );
59 } elseif ( function_exists( 'tideways_enable' ) ) {
60 tideways_enable( $flags, $options );
61 } else {
62 throw new Exception( "Neither xhprof nor tideways are installed" );
63 }
64 }
65
71 public static function disable() {
72 if ( self::isEnabled() ) {
73 self::$enabled = false;
74 if ( function_exists( 'xhprof_disable' ) ) {
75 return xhprof_disable();
76 } else {
77 // tideways
78 return tideways_disable();
79 }
80 }
81 }
82}
Convenience class for working with XHProf https://github.com/phacility/xhprof.
Definition Xhprof.php:32
static $enabled
Definition Xhprof.php:36
static enable( $flags=0, $options=[])
Start xhprof profiler.
Definition Xhprof.php:52
static disable()
Stop xhprof profiler.
Definition Xhprof.php:71
static isEnabled()
Start xhprof profiler.
Definition Xhprof.php:42
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
Definition hooks.txt:2001
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:37
tideways_disable()
Definition tideways.php:11
tideways_enable()
Minimal set of classes necessary for Xhprof using tideways phpcs:ignoreFile.
Definition tideways.php:8