3 * Interfaces for preprocessors
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
24 use MediaWiki\Logger\LoggerFactory
;
29 abstract class Preprocessor
{
31 const CACHE_VERSION
= 1;
34 * @var array Brace matching rules.
48 'names' => [ 2 => null ],
55 * Store a document tree in the cache.
60 protected function cacheSetTree( $text, $flags, $tree ) {
61 $config = RequestContext
::getMain()->getConfig();
63 $length = strlen( $text );
64 $threshold = $config->get( 'PreprocessorCacheThreshold' );
65 if ( $threshold === false ||
$length < $threshold ||
$length > 1e6
) {
70 defined( 'static::CACHE_PREFIX' ) ?
static::CACHE_PREFIX
: static::class,
71 md5( $text ), $flags );
72 $value = sprintf( "%08d", static::CACHE_VERSION
) . $tree;
74 $cache = ObjectCache
::getInstance( $config->get( 'MainCacheType' ) );
75 $cache->set( $key, $value, 86400 );
77 LoggerFactory
::getInstance( 'Preprocessor' )
78 ->info( "Cached preprocessor output (key: $key)" );
82 * Attempt to load a precomputed document tree for some given wikitext
87 * @return PPNode_Hash_Tree|bool
89 protected function cacheGetTree( $text, $flags ) {
90 $config = RequestContext
::getMain()->getConfig();
92 $length = strlen( $text );
93 $threshold = $config->get( 'PreprocessorCacheThreshold' );
94 if ( $threshold === false ||
$length < $threshold ||
$length > 1e6
) {
98 $cache = ObjectCache
::getInstance( $config->get( 'MainCacheType' ) );
101 defined( 'static::CACHE_PREFIX' ) ?
static::CACHE_PREFIX
: static::class,
102 md5( $text ), $flags );
104 $value = $cache->get( $key );
109 $version = intval( substr( $value, 0, 8 ) );
110 if ( $version !== static::CACHE_VERSION
) {
114 LoggerFactory
::getInstance( 'Preprocessor' )
115 ->info( "Loaded preprocessor output from cache (key: $key)" );
117 return substr( $value, 8 );
121 * Create a new top-level frame for expansion of a page
125 abstract public function newFrame();
128 * Create a new custom frame for programmatic use of parameter replacement
129 * as used in some extensions.
135 abstract public function newCustomFrame( $args );
138 * Create a new custom node for programmatic use of parameter replacement
139 * as used in some extensions.
141 * @param array $values
143 abstract public function newPartNodeArray( $values );
146 * Preprocess text to a PPNode
148 * @param string $text
153 abstract public function preprocessToObj( $text, $flags = 0 );
161 const NO_TEMPLATES
= 2;
162 const STRIP_COMMENTS
= 4;
164 const RECOVER_COMMENTS
= 16;
167 const RECOVER_ORIG
= 59; // = 1|2|8|16|32 no constant expression support in PHP yet
169 /** This constant exists when $indexOffset is supported in newChild() */
170 const SUPPORTS_INDEX_OFFSET
= 1;
173 * Create a child frame
175 * @param array|bool $args
176 * @param bool|Title $title
177 * @param int $indexOffset A number subtracted from the index attributes of the arguments
181 public function newChild( $args = false, $title = false, $indexOffset = 0 );
184 * Expand a document tree node, caching the result on its parent with the given key
185 * @param string|int $key
186 * @param string|PPNode $root
190 public function cachedExpand( $key, $root, $flags = 0 );
193 * Expand a document tree node
194 * @param string|PPNode $root
198 public function expand( $root, $flags = 0 );
201 * Implode with flags for expand()
204 * @param string|PPNode $args,...
207 public function implodeWithFlags( $sep, $flags /*, ... */ );
210 * Implode with no flags specified
212 * @param string|PPNode $args,...
215 public function implode( $sep /*, ... */ );
218 * Makes an object that, when expand()ed, will be the same as one obtained
221 * @param string|PPNode $args,...
224 public function virtualImplode( $sep /*, ... */ );
227 * Virtual implode with brackets
228 * @param string $start
231 * @param string|PPNode $args,...
234 public function virtualBracketedImplode( $start, $sep, $end /*, ... */ );
237 * Returns true if there are no arguments in this frame
241 public function isEmpty();
244 * Returns all arguments of this frame
247 public function getArguments();
250 * Returns all numbered arguments of this frame
253 public function getNumberedArguments();
256 * Returns all named arguments of this frame
259 public function getNamedArguments();
262 * Get an argument to this frame by name
263 * @param int|string $name
264 * @return string|bool
266 public function getArgument( $name );
269 * Returns true if the infinite loop check is OK, false if a loop is detected
271 * @param Title $title
274 public function loopCheck( $title );
277 * Return true if the frame is a template frame
280 public function isTemplate();
283 * Set the "volatile" flag.
285 * Note that this is somewhat of a "hack" in order to make extensions
286 * with side effects (such as Cite) work with the PHP parser. New
287 * extensions should be written in a way that they do not need this
288 * function, because other parsers (such as Parsoid) are not guaranteed
289 * to respect it, and it may be removed in the future.
293 public function setVolatile( $flag = true );
296 * Get the "volatile" flag.
298 * Callers should avoid caching the result of an expansion if it has the
301 * @see self::setVolatile()
304 public function isVolatile();
307 * Get the TTL of the frame's output.
309 * This is the maximum amount of time, in seconds, that this frame's
310 * output should be cached for. A value of null indicates that no
311 * maximum has been specified.
313 * Note that this TTL only applies to caching frames as parts of pages.
314 * It is not relevant to caching the entire rendered output of a page.
318 public function getTTL();
321 * Set the TTL of the output of this frame and all of its ancestors.
322 * Has no effect if the new TTL is greater than the one already set.
323 * Note that it is the caller's responsibility to change the cache
324 * expiry of the page as a whole, if such behavior is desired.
326 * @see self::getTTL()
329 public function setTTL( $ttl );
332 * Get a title of frame
336 public function getTitle();
340 * There are three types of nodes:
341 * * Tree nodes, which have a name and contain other nodes as children
342 * * Array nodes, which also contain other nodes but aren't considered part of a tree
343 * * Leaf nodes, which contain the actual data
345 * This interface provides access to the tree structure and to the contents of array nodes,
346 * but it does not provide access to the internal structure of leaf nodes. Access to leaf
347 * data is provided via two means:
348 * * PPFrame::expand(), which provides expanded text
349 * * The PPNode::split*() functions, which provide metadata about certain types of tree node
354 * Get an array-type node containing the children of this node.
355 * Returns false if this is not a tree node.
358 public function getChildren();
361 * Get the first child of a tree node. False if there isn't one.
365 public function getFirstChild();
368 * Get the next sibling of any node. False if there isn't one
371 public function getNextSibling();
374 * Get all children of this tree node which have a given name.
375 * Returns an array-type node, or false if this is not a tree node.
376 * @param string $type
377 * @return bool|PPNode
379 public function getChildrenOfType( $type );
382 * Returns the length of the array, or false if this is not an array-type node
384 public function getLength();
387 * Returns an item of an array-type node
389 * @return bool|PPNode
391 public function item( $i );
394 * Get the name of this node. The following names are defined here:
397 * template A double-brace node.
398 * tplarg A triple-brace node.
399 * title The first argument to a template or tplarg node.
400 * part Subsequent arguments to a template or tplarg node.
401 * #nodelist An array-type node
403 * The subclass may define various other names for tree and leaf nodes.
406 public function getName();
409 * Split a "<part>" node into an associative array containing:
415 public function splitArg();
418 * Split an "<ext>" node into an associative array containing name, attr, inner and close
419 * All values in the resulting array are PPNodes. Inner and close are optional.
422 public function splitExt();
425 * Split an "<h>" node
428 public function splitHeading();