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.
36 protected $rules = array(
48 'names' => array( 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 // TODO: Once we require PHP 5.5, use static::class instead of
71 // get_called_class() or get_class( $this ).
72 defined( 'static::CACHE_PREFIX' ) ?
static::CACHE_PREFIX
: get_called_class(),
73 md5( $text ), $flags );
74 $value = sprintf( "%08d", static::CACHE_VERSION
) . $tree;
76 $cache = ObjectCache
::getInstance( $config->get( 'MainCacheType' ) );
77 $cache->set( $key, $value, 86400 );
79 LoggerFactory
::getInstance( 'Preprocessor' )
80 ->info( "Cached preprocessor output (key: $key)" );
84 * Attempt to load a precomputed document tree for some given wikitext
89 * @return PPNode_Hash_Tree|bool
91 protected function cacheGetTree( $text, $flags ) {
92 $config = RequestContext
::getMain()->getConfig();
94 $length = strlen( $text );
95 $threshold = $config->get( 'PreprocessorCacheThreshold' );
96 if ( $threshold === false ||
$length < $threshold ||
$length > 1e6
) {
100 $cache = ObjectCache
::getInstance( $config->get( 'MainCacheType' ) );
103 // TODO: Once we require PHP 5.5, use static::class instead of
104 // get_called_class() or get_class( $this ).
105 defined( 'static::CACHE_PREFIX' ) ?
static::CACHE_PREFIX
: get_called_class(),
106 md5( $text ), $flags );
108 $value = $cache->get( $key );
113 $version = intval( substr( $value, 0, 8 ) );
114 if ( $version !== static::CACHE_VERSION
) {
118 LoggerFactory
::getInstance( 'Preprocessor' )
119 ->info( "Loaded preprocessor output from cache (key: $key)" );
121 return substr( $value, 8 );
125 * Create a new top-level frame for expansion of a page
129 abstract public function newFrame();
132 * Create a new custom frame for programmatic use of parameter replacement
133 * as used in some extensions.
139 abstract public function newCustomFrame( $args );
142 * Create a new custom node for programmatic use of parameter replacement
143 * as used in some extensions.
145 * @param array $values
147 abstract public function newPartNodeArray( $values );
150 * Preprocess text to a PPNode
152 * @param string $text
157 abstract public function preprocessToObj( $text, $flags = 0 );
165 const NO_TEMPLATES
= 2;
166 const STRIP_COMMENTS
= 4;
168 const RECOVER_COMMENTS
= 16;
171 const RECOVER_ORIG
= 59; // = 1|2|8|16|32 no constant expression support in PHP yet
173 /** This constant exists when $indexOffset is supported in newChild() */
174 const SUPPORTS_INDEX_OFFSET
= 1;
177 * Create a child frame
179 * @param array|bool $args
180 * @param bool|Title $title
181 * @param int $indexOffset A number subtracted from the index attributes of the arguments
185 public function newChild( $args = false, $title = false, $indexOffset = 0 );
188 * Expand a document tree node, caching the result on its parent with the given key
189 * @param string|int $key
190 * @param string|PPNode $root
194 public function cachedExpand( $key, $root, $flags = 0 );
197 * Expand a document tree node
198 * @param string|PPNode $root
202 public function expand( $root, $flags = 0 );
205 * Implode with flags for expand()
208 * @param string|PPNode $args,...
211 public function implodeWithFlags( $sep, $flags /*, ... */ );
214 * Implode with no flags specified
216 * @param string|PPNode $args,...
219 public function implode( $sep /*, ... */ );
222 * Makes an object that, when expand()ed, will be the same as one obtained
225 * @param string|PPNode $args,...
228 public function virtualImplode( $sep /*, ... */ );
231 * Virtual implode with brackets
232 * @param string $start
235 * @param string|PPNode $args,...
238 public function virtualBracketedImplode( $start, $sep, $end /*, ... */ );
241 * Returns true if there are no arguments in this frame
245 public function isEmpty();
248 * Returns all arguments of this frame
251 public function getArguments();
254 * Returns all numbered arguments of this frame
257 public function getNumberedArguments();
260 * Returns all named arguments of this frame
263 public function getNamedArguments();
266 * Get an argument to this frame by name
267 * @param string $name
270 public function getArgument( $name );
273 * Returns true if the infinite loop check is OK, false if a loop is detected
275 * @param Title $title
278 public function loopCheck( $title );
281 * Return true if the frame is a template frame
284 public function isTemplate();
287 * Set the "volatile" flag.
289 * Note that this is somewhat of a "hack" in order to make extensions
290 * with side effects (such as Cite) work with the PHP parser. New
291 * extensions should be written in a way that they do not need this
292 * function, because other parsers (such as Parsoid) are not guaranteed
293 * to respect it, and it may be removed in the future.
297 public function setVolatile( $flag = true );
300 * Get the "volatile" flag.
302 * Callers should avoid caching the result of an expansion if it has the
305 * @see self::setVolatile()
308 public function isVolatile();
311 * Get the TTL of the frame's output.
313 * This is the maximum amount of time, in seconds, that this frame's
314 * output should be cached for. A value of null indicates that no
315 * maximum has been specified.
317 * Note that this TTL only applies to caching frames as parts of pages.
318 * It is not relevant to caching the entire rendered output of a page.
322 public function getTTL();
325 * Set the TTL of the output of this frame and all of its ancestors.
326 * Has no effect if the new TTL is greater than the one already set.
327 * Note that it is the caller's responsibility to change the cache
328 * expiry of the page as a whole, if such behavior is desired.
330 * @see self::getTTL()
333 public function setTTL( $ttl );
336 * Get a title of frame
340 public function getTitle();
344 * There are three types of nodes:
345 * * Tree nodes, which have a name and contain other nodes as children
346 * * Array nodes, which also contain other nodes but aren't considered part of a tree
347 * * Leaf nodes, which contain the actual data
349 * This interface provides access to the tree structure and to the contents of array nodes,
350 * but it does not provide access to the internal structure of leaf nodes. Access to leaf
351 * data is provided via two means:
352 * * PPFrame::expand(), which provides expanded text
353 * * The PPNode::split*() functions, which provide metadata about certain types of tree node
358 * Get an array-type node containing the children of this node.
359 * Returns false if this is not a tree node.
362 public function getChildren();
365 * Get the first child of a tree node. False if there isn't one.
369 public function getFirstChild();
372 * Get the next sibling of any node. False if there isn't one
375 public function getNextSibling();
378 * Get all children of this tree node which have a given name.
379 * Returns an array-type node, or false if this is not a tree node.
380 * @param string $type
381 * @return bool|PPNode
383 public function getChildrenOfType( $type );
386 * Returns the length of the array, or false if this is not an array-type node
388 public function getLength();
391 * Returns an item of an array-type node
393 * @return bool|PPNode
395 public function item( $i );
398 * Get the name of this node. The following names are defined here:
401 * template A double-brace node.
402 * tplarg A triple-brace node.
403 * title The first argument to a template or tplarg node.
404 * part Subsequent arguments to a template or tplarg node.
405 * #nodelist An array-type node
407 * The subclass may define various other names for tree and leaf nodes.
410 public function getName();
413 * Split a "<part>" node into an associative array containing:
419 public function splitArg();
422 * Split an "<ext>" node into an associative array containing name, attr, inner and close
423 * All values in the resulting array are PPNodes. Inner and close are optional.
426 public function splitExt();
429 * Split an "<h>" node
432 public function splitHeading();