MediaWiki REL1_32
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;
58 [
59 'xhprof_enable',
60 'tideways_enable',
61 'tideways_xhprof_enable'
62 ],
63 [ $flags, $options ]
64 );
65 }
66
72 public static function disable() {
73 if ( self::isEnabled() ) {
74 self::$enabled = false;
75 return self::callAny( [
76 'xhprof_disable',
77 'tideways_disable',
78 'tideways_xhprof_disable'
79 ] );
80 }
81 }
82
89 protected static function callAny( array $functions, array $args = [] ) {
90 foreach ( $functions as $func ) {
91 if ( function_exists( $func ) ) {
92 return $func( ...$args );
93 }
94 }
95
96 throw new Exception( "Neither xhprof nor tideways are installed" );
97 }
98}
if( $line===false) $args
Definition cdb.php:64
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:72
static callAny(array $functions, array $args=[])
Call the first available function from $functions.
Definition Xhprof.php:89
static isEnabled()
Start xhprof profiler.
Definition Xhprof.php:42
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
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:2050
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
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))