MediaWiki  1.29.1
Preprocessor.php
Go to the documentation of this file.
1 <?php
25 
29 abstract class Preprocessor {
30 
31  const CACHE_VERSION = 1;
32 
36  protected $rules = [
37  '{' => [
38  'end' => '}',
39  'names' => [
40  2 => 'template',
41  3 => 'tplarg',
42  ],
43  'min' => 2,
44  'max' => 3,
45  ],
46  '[' => [
47  'end' => ']',
48  'names' => [ 2 => null ],
49  'min' => 2,
50  'max' => 2,
51  ],
52  '-{' => [
53  'end' => '}-',
54  'names' => [ 1 => null ],
55  'min' => 1,
56  'max' => 1,
57  ],
58  ];
59 
66  protected function cacheSetTree( $text, $flags, $tree ) {
67  $config = RequestContext::getMain()->getConfig();
68 
69  $length = strlen( $text );
70  $threshold = $config->get( 'PreprocessorCacheThreshold' );
71  if ( $threshold === false || $length < $threshold || $length > 1e6 ) {
72  return false;
73  }
74 
75  $key = wfMemcKey(
76  defined( 'static::CACHE_PREFIX' ) ? static::CACHE_PREFIX : static::class,
77  md5( $text ), $flags );
78  $value = sprintf( "%08d", static::CACHE_VERSION ) . $tree;
79 
80  $cache = ObjectCache::getInstance( $config->get( 'MainCacheType' ) );
81  $cache->set( $key, $value, 86400 );
82 
83  LoggerFactory::getInstance( 'Preprocessor' )
84  ->info( "Cached preprocessor output (key: $key)" );
85  }
86 
95  protected function cacheGetTree( $text, $flags ) {
96  $config = RequestContext::getMain()->getConfig();
97 
98  $length = strlen( $text );
99  $threshold = $config->get( 'PreprocessorCacheThreshold' );
100  if ( $threshold === false || $length < $threshold || $length > 1e6 ) {
101  return false;
102  }
103 
104  $cache = ObjectCache::getInstance( $config->get( 'MainCacheType' ) );
105 
106  $key = wfMemcKey(
107  defined( 'static::CACHE_PREFIX' ) ? static::CACHE_PREFIX : static::class,
108  md5( $text ), $flags );
109 
110  $value = $cache->get( $key );
111  if ( !$value ) {
112  return false;
113  }
114 
115  $version = intval( substr( $value, 0, 8 ) );
116  if ( $version !== static::CACHE_VERSION ) {
117  return false;
118  }
119 
120  LoggerFactory::getInstance( 'Preprocessor' )
121  ->info( "Loaded preprocessor output from cache (key: $key)" );
122 
123  return substr( $value, 8 );
124  }
125 
131  abstract public function newFrame();
132 
141  abstract public function newCustomFrame( $args );
142 
149  abstract public function newPartNodeArray( $values );
150 
159  abstract public function preprocessToObj( $text, $flags = 0 );
160 }
161 
165 interface PPFrame {
166  const NO_ARGS = 1;
167  const NO_TEMPLATES = 2;
168  const STRIP_COMMENTS = 4;
169  const NO_IGNORE = 8;
170  const RECOVER_COMMENTS = 16;
171  const NO_TAGS = 32;
172 
173  const RECOVER_ORIG = 59; // = 1|2|8|16|32 no constant expression support in PHP yet
174 
177 
187  public function newChild( $args = false, $title = false, $indexOffset = 0 );
188 
196  public function cachedExpand( $key, $root, $flags = 0 );
197 
204  public function expand( $root, $flags = 0 );
205 
213  public function implodeWithFlags( $sep, $flags /*, ... */ );
214 
221  public function implode( $sep /*, ... */ );
222 
230  public function virtualImplode( $sep /*, ... */ );
231 
240  public function virtualBracketedImplode( $start, $sep, $end /*, ... */ );
241 
247  public function isEmpty();
248 
253  public function getArguments();
254 
259  public function getNumberedArguments();
260 
265  public function getNamedArguments();
266 
272  public function getArgument( $name );
273 
280  public function loopCheck( $title );
281 
286  public function isTemplate();
287 
299  public function setVolatile( $flag = true );
300 
310  public function isVolatile();
311 
324  public function getTTL();
325 
335  public function setTTL( $ttl );
336 
342  public function getTitle();
343 }
344 
358 interface PPNode {
364  public function getChildren();
365 
371  public function getFirstChild();
372 
377  public function getNextSibling();
378 
385  public function getChildrenOfType( $type );
386 
390  public function getLength();
391 
397  public function item( $i );
398 
412  public function getName();
413 
421  public function splitArg();
422 
428  public function splitExt();
429 
434  public function splitHeading();
435 }
PPFrame\isEmpty
isEmpty()
Returns true if there are no arguments in this frame.
PPFrame\getArguments
getArguments()
Returns all arguments of this frame.
Preprocessor\newCustomFrame
newCustomFrame( $args)
Create a new custom frame for programmatic use of parameter replacement as used in some extensions.
PPFrame\loopCheck
loopCheck( $title)
Returns true if the infinite loop check is OK, false if a loop is detected.
PPFrame\setTTL
setTTL( $ttl)
Set the TTL of the output of this frame and all of its ancestors.
PPFrame\getNamedArguments
getNamedArguments()
Returns all named arguments of this frame.
PPNode\item
item( $i)
Returns an item of an array-type node.
PPFrame\STRIP_COMMENTS
const STRIP_COMMENTS
Definition: Preprocessor.php:168
PPFrame\NO_ARGS
const NO_ARGS
Definition: Preprocessor.php:166
PPNode\splitArg
splitArg()
Split a "<part>" node into an associative array containing: name PPNode name index String index value...
Preprocessor\newPartNodeArray
newPartNodeArray( $values)
Create a new custom node for programmatic use of parameter replacement as used in some extensions.
PPFrame\NO_IGNORE
const NO_IGNORE
Definition: Preprocessor.php:169
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
PPNode\splitExt
splitExt()
Split an "<ext>" node into an associative array containing name, attr, inner and close All values in ...
PPNode\getFirstChild
getFirstChild()
Get the first child of a tree node.
Preprocessor\$rules
array $rules
Brace matching rules.
Definition: Preprocessor.php:36
PPFrame\getNumberedArguments
getNumberedArguments()
Returns all numbered arguments of this frame.
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:304
$type
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached my talk my contributions etc etc otherwise the built in rate limiting checks are if enabled allows for interception of redirect as a string mapping parameter names to values & $type
Definition: hooks.txt:2536
PPFrame\implode
implode( $sep)
Implode with no flags specified.
PPFrame\RECOVER_COMMENTS
const RECOVER_COMMENTS
Definition: Preprocessor.php:170
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
PPFrame\NO_TEMPLATES
const NO_TEMPLATES
Definition: Preprocessor.php:167
Preprocessor
Definition: Preprocessor.php:29
PPFrame\newChild
newChild( $args=false, $title=false, $indexOffset=0)
Create a child frame.
Preprocessor\newFrame
newFrame()
Create a new top-level frame for expansion of a page.
PPNode\getChildren
getChildren()
Get an array-type node containing the children of this node.
wfMemcKey
wfMemcKey()
Make a cache key for the local wiki.
Definition: GlobalFunctions.php:2961
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:934
PPNode\getLength
getLength()
Returns the length of the array, or false if this is not an array-type node.
PPFrame\setVolatile
setVolatile( $flag=true)
Set the "volatile" flag.
PPFrame\getTitle
getTitle()
Get a title of frame.
PPNode
There are three types of nodes:
Definition: Preprocessor.php:358
PPFrame\RECOVER_ORIG
const RECOVER_ORIG
Definition: Preprocessor.php:173
ObjectCache\getInstance
static getInstance( $id)
Get a cached instance of the specified type of cache object.
Definition: ObjectCache.php:92
PPNode\getChildrenOfType
getChildrenOfType( $type)
Get all children of this tree node which have a given name.
PPFrame\implodeWithFlags
implodeWithFlags( $sep, $flags)
Implode with flags for expand()
PPNode\getName
getName()
Get the name of this node.
PPFrame\expand
expand( $root, $flags=0)
Expand a document tree node.
$value
$value
Definition: styleTest.css.php:45
PPFrame\NO_TAGS
const NO_TAGS
Definition: Preprocessor.php:171
PPFrame
Definition: Preprocessor.php:165
RequestContext\getMain
static getMain()
Static methods.
Definition: RequestContext.php:468
PPFrame\isVolatile
isVolatile()
Get the "volatile" flag.
Preprocessor\CACHE_VERSION
const CACHE_VERSION
Definition: Preprocessor.php:31
$args
if( $line===false) $args
Definition: cdb.php:63
Preprocessor\cacheSetTree
cacheSetTree( $text, $flags, $tree)
Store a document tree in the cache.
Definition: Preprocessor.php:66
$cache
$cache
Definition: mcc.php:33
Preprocessor\preprocessToObj
preprocessToObj( $text, $flags=0)
Preprocess text to a PPNode.
PPFrame\cachedExpand
cachedExpand( $key, $root, $flags=0)
Expand a document tree node, caching the result on its parent with the given key.
LoggerFactory
MediaWiki Logger LoggerFactory implements a PSR[0] compatible message logging system Named Psr Log LoggerInterface instances can be obtained from the MediaWiki Logger LoggerFactory::getInstance() static method. MediaWiki\Logger\LoggerFactory expects a class implementing the MediaWiki\Logger\Spi interface to act as a factory for new Psr\Log\LoggerInterface instances. The "Spi" in MediaWiki\Logger\Spi stands for "service provider interface". An SPI is an API intended to be implemented or extended by a third party. This software design pattern is intended to enable framework extension and replaceable components. It is specifically used in the MediaWiki\Logger\LoggerFactory service to allow alternate PSR-3 logging implementations to be easily integrated with MediaWiki. The service provider interface allows the backend logging library to be implemented in multiple ways. The $wgMWLoggerDefaultSpi global provides the classname of the default MediaWiki\Logger\Spi implementation to be loaded at runtime. This can either be the name of a class implementing the MediaWiki\Logger\Spi with a zero argument const ructor or a callable that will return an MediaWiki\Logger\Spi instance. Alternately the MediaWiki\Logger\LoggerFactory MediaWiki Logger LoggerFactory
Definition: logger.txt:5
PPFrame\getArgument
getArgument( $name)
Get an argument to this frame by name.
PPFrame\virtualBracketedImplode
virtualBracketedImplode( $start, $sep, $end)
Virtual implode with brackets.
PPFrame\SUPPORTS_INDEX_OFFSET
const SUPPORTS_INDEX_OFFSET
This constant exists when $indexOffset is supported in newChild()
Definition: Preprocessor.php:176
class
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Definition: maintenance.txt:52
PPFrame\isTemplate
isTemplate()
Return true if the frame is a template frame.
PPNode\getNextSibling
getNextSibling()
Get the next sibling of any node.
Preprocessor\cacheGetTree
cacheGetTree( $text, $flags)
Attempt to load a precomputed document tree for some given wikitext from the cache.
Definition: Preprocessor.php:95
PPFrame\virtualImplode
virtualImplode( $sep)
Makes an object that, when expand()ed, will be the same as one obtained with implode()
$flags
it s the revision text itself In either if gzip is the revision text is gzipped $flags
Definition: hooks.txt:2749
PPNode\splitHeading
splitHeading()
Split an "<h>" node.
array
the array() calling protocol came about after MediaWiki 1.4rc1.
PPFrame\getTTL
getTTL()
Get the TTL of the frame's output.