MediaWiki REL1_33
langmemusage.php
Go to the documentation of this file.
1<?php
25require_once __DIR__ . '/../Maintenance.php';
26require_once __DIR__ . '/languages.inc';
27
34
35 public function __construct() {
36 parent::__construct();
37 $this->addDescription( "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->fatalError( "You must compile PHP with --enable-memory-limit" );
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::class;
65require_once RUN_MAINTENANCE_IF_MAIN;
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
This is a command line script.
execute()
Do the actual work.
__construct()
Default constructor.
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
output( $out, $channel=null)
Throw some output to the user.
addDescription( $text)
Set the description text.
fatalError( $msg, $exitCode=1)
Output a message and terminate the current script.
$maintClass
require_once RUN_MAINTENANCE_IF_MAIN