MediaWiki  1.29.2
purgeParserCache.php
Go to the documentation of this file.
1 <?php
25 require __DIR__ . '/Maintenance.php';
26 
33  public $lastProgress;
34 
35  private $usleep = 0;
36 
37  function __construct() {
38  parent::__construct();
39  $this->addDescription( "Remove old objects from the parser cache. " .
40  "This only works when the parser cache is in an SQL database." );
41  $this->addOption( 'expiredate', 'Delete objects expiring before this date.', false, true );
42  $this->addOption(
43  'age',
44  'Delete objects created more than this many seconds ago, assuming ' .
45  '$wgParserCacheExpireTime has remained consistent.',
46  false,
47  true );
48  $this->addOption( 'msleep', 'Milliseconds to sleep between purge chunks', false, true );
49  }
50 
51  function execute() {
53 
54  $inputDate = $this->getOption( 'expiredate' );
55  $inputAge = $this->getOption( 'age' );
56  if ( $inputDate !== null ) {
57  $date = wfTimestamp( TS_MW, strtotime( $inputDate ) );
58  } elseif ( $inputAge !== null ) {
59  $date = wfTimestamp( TS_MW, time() + $wgParserCacheExpireTime - intval( $inputAge ) );
60  } else {
61  $this->error( "Must specify either --expiredate or --age", 1 );
62  return;
63  }
64  $this->usleep = 1e3 * $this->getOption( 'msleep', 0 );
65 
66  $english = Language::factory( 'en' );
67  $this->output( "Deleting objects expiring before " .
68  $english->timeanddate( $date ) . "\n" );
69 
71  $success = $pc->deleteObjectsExpiringBefore( $date, [ $this, 'showProgressAndWait' ] );
72  if ( !$success ) {
73  $this->error( "\nCannot purge this kind of parser cache.", 1 );
74  }
75  $this->showProgressAndWait( 100 );
76  $this->output( "\nDone\n" );
77  }
78 
79  public function showProgressAndWait( $percent ) {
80  usleep( $this->usleep ); // avoid lag; T150124
81 
82  $percentString = sprintf( "%.2f", $percent );
83  if ( $percentString === $this->lastProgress ) {
84  return;
85  }
86  $this->lastProgress = $percentString;
87 
88  $stars = floor( $percent / 2 );
89  $this->output( '[' . str_repeat( '*', $stars ) . str_repeat( '.', 50 - $stars ) . '] ' .
90  "$percentString%\r" );
91  }
92 }
93 
94 $maintClass = 'PurgeParserCache';
95 require_once RUN_MAINTENANCE_IF_MAIN;
PurgeParserCache\$lastProgress
$lastProgress
Definition: purgeParserCache.php:33
Maintenance\addDescription
addDescription( $text)
Set the description text.
Definition: Maintenance.php:287
wfTimestamp
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
Definition: GlobalFunctions.php:1994
RUN_MAINTENANCE_IF_MAIN
require_once RUN_MAINTENANCE_IF_MAIN
Definition: maintenance.txt:50
PurgeParserCache\showProgressAndWait
showProgressAndWait( $percent)
Definition: purgeParserCache.php:79
Maintenance
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
Definition: maintenance.txt:39
$success
$success
Definition: NoLocalSettings.php:44
PurgeParserCache\execute
execute()
Do the actual work.
Definition: purgeParserCache.php:51
php
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:35
Maintenance\addOption
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
Definition: Maintenance.php:215
$wgParserCacheExpireTime
$wgParserCacheExpireTime
The expiry time for the parser cache, in seconds.
Definition: DefaultSettings.php:2383
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
$maintClass
$maintClass
Definition: purgeParserCache.php:94
PurgeParserCache\__construct
__construct()
Default constructor.
Definition: purgeParserCache.php:37
wfGetParserCacheStorage
wfGetParserCacheStorage()
Get the cache object used by the parser cache.
Definition: GlobalFunctions.php:3427
Maintenance\getOption
getOption( $name, $default=null)
Get an option, or return the default.
Definition: Maintenance.php:250
PurgeParserCache
Maintenance script to remove old objects from the parser cache.
Definition: purgeParserCache.php:32
PurgeParserCache\$usleep
$usleep
Definition: purgeParserCache.php:35
Maintenance\error
error( $err, $die=0)
Throw an error to the user.
Definition: Maintenance.php:392
Maintenance\output
output( $out, $channel=null)
Throw some output to the user.
Definition: Maintenance.php:373
Language\factory
static factory( $code)
Get a cached or new language object for a given language code.
Definition: Language.php:183