MediaWiki  1.23.12
langmemusage.php
Go to the documentation of this file.
1 <?php
25 require_once __DIR__ . '/../Maintenance.php';
26 require_once __DIR__ . '/languages.inc';
27 
33 class LangMemUsage extends Maintenance {
34 
35  public function __construct() {
36  parent::__construct();
37  $this->mDescription = "Dumb program that tries to get the memory usage\n" .
38  "for each language file";
39  }
40 
41  public function execute() {
42  if ( !function_exists( 'memory_get_usage' ) ) {
43  $this->error( "You must compile PHP with --enable-memory-limit", true );
44  }
45 
46  $langtool = new Languages();
47  $memlast = $memstart = memory_get_usage();
48 
49  $this->output( "Base memory usage: $memstart\n" );
50 
51  foreach ( $langtool->getLanguages() as $langcode ) {
52  Language::factory( $langcode );
53  $memstep = memory_get_usage();
54  $this->output( sprintf( "%12s: %d\n", $langcode, ( $memstep - $memlast ) ) );
55  $memlast = $memstep;
56  }
57 
58  $memend = memory_get_usage();
59 
60  $this->output( ' Total Usage: ' . ( $memend - $memstart ) . "\n" );
61  }
62 }
63 
64 $maintClass = "LangMemUsage";
65 require_once RUN_MAINTENANCE_IF_MAIN;
php
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been been the default skin since before being replaced by Vector largely rewritten in while keeping its appearance Several legacy skins were removed in the as the burden of supporting them became too heavy to bear Those in etc for skin dependent CSS etc for skin dependent JavaScript These can also be customised on a per user by etc This feature has led to a wide variety of user styles becoming that gallery is a good place to ending in php
Definition: skin.txt:62
RUN_MAINTENANCE_IF_MAIN
require_once RUN_MAINTENANCE_IF_MAIN
Definition: maintenance.txt:50
Maintenance
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
Definition: maintenance.txt:39
$maintClass
$maintClass
Definition: langmemusage.php:64
LangMemUsage
This is a command line script.
Definition: langmemusage.php:33
LangMemUsage\execute
execute()
Do the actual work.
Definition: langmemusage.php:41
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
Maintenance\error
error( $err, $die=0)
Throw an error to the user.
Definition: Maintenance.php:333
Maintenance\output
output( $out, $channel=null)
Throw some output to the user.
Definition: Maintenance.php:314
Language\factory
static factory( $code)
Get a cached or new language object for a given language code.
Definition: Language.php:184
LangMemUsage\__construct
__construct()
Default constructor.
Definition: langmemusage.php:35