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