resourceloader: Add @covers and minor clean up of test suites
[mediawiki.git] / includes / parser / Preprocessor.php
blobb32593c9f7ed085f55f0fdc47213a482d47c1e3f
1 <?php
2 /**
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
20 * @file
21 * @ingroup Parser
24 /**
25 * @ingroup Parser
27 interface Preprocessor {
28 /**
29 * Create a new preprocessor object based on an initialised Parser object
31 * @param Parser $parser
33 public function __construct( $parser );
35 /**
36 * Create a new top-level frame for expansion of a page
38 * @return PPFrame
40 public function newFrame();
42 /**
43 * Create a new custom frame for programmatic use of parameter replacement
44 * as used in some extensions.
46 * @param array $args
48 * @return PPFrame
50 public function newCustomFrame( $args );
52 /**
53 * Create a new custom node for programmatic use of parameter replacement
54 * as used in some extensions.
56 * @param array $values
58 public function newPartNodeArray( $values );
60 /**
61 * Preprocess text to a PPNode
63 * @param string $text
64 * @param int $flags
66 * @return PPNode
68 public function preprocessToObj( $text, $flags = 0 );
71 /**
72 * @ingroup Parser
74 interface PPFrame {
75 const NO_ARGS = 1;
76 const NO_TEMPLATES = 2;
77 const STRIP_COMMENTS = 4;
78 const NO_IGNORE = 8;
79 const RECOVER_COMMENTS = 16;
80 const NO_TAGS = 32;
82 const RECOVER_ORIG = 59; // = 1|2|8|16|32 no constant expression support in PHP yet
84 /** This constant exists when $indexOffset is supported in newChild() */
85 const SUPPORTS_INDEX_OFFSET = 1;
87 /**
88 * Create a child frame
90 * @param array|bool $args
91 * @param bool|Title $title
92 * @param int $indexOffset A number subtracted from the index attributes of the arguments
94 * @return PPFrame
96 public function newChild( $args = false, $title = false, $indexOffset = 0 );
98 /**
99 * Expand a document tree node, caching the result on its parent with the given key
100 * @param string|int $key
101 * @param string|PPNode $root
102 * @param int $flags
103 * @return string
105 public function cachedExpand( $key, $root, $flags = 0 );
108 * Expand a document tree node
109 * @param string|PPNode $root
110 * @param int $flags
111 * @return string
113 public function expand( $root, $flags = 0 );
116 * Implode with flags for expand()
117 * @param string $sep
118 * @param int $flags
119 * @param string|PPNode $args,...
120 * @return string
122 public function implodeWithFlags( $sep, $flags /*, ... */ );
125 * Implode with no flags specified
126 * @param string $sep
127 * @param string|PPNode $args,...
128 * @return string
130 public function implode( $sep /*, ... */ );
133 * Makes an object that, when expand()ed, will be the same as one obtained
134 * with implode()
135 * @param string $sep
136 * @param string|PPNode $args,...
137 * @return PPNode
139 public function virtualImplode( $sep /*, ... */ );
142 * Virtual implode with brackets
143 * @param string $start
144 * @param string $sep
145 * @param string $end
146 * @param string|PPNode $args,...
147 * @return PPNode
149 public function virtualBracketedImplode( $start, $sep, $end /*, ... */ );
152 * Returns true if there are no arguments in this frame
154 * @return bool
156 public function isEmpty();
159 * Returns all arguments of this frame
160 * @return array
162 public function getArguments();
165 * Returns all numbered arguments of this frame
166 * @return array
168 public function getNumberedArguments();
171 * Returns all named arguments of this frame
172 * @return array
174 public function getNamedArguments();
177 * Get an argument to this frame by name
178 * @param string $name
179 * @return bool
181 public function getArgument( $name );
184 * Returns true if the infinite loop check is OK, false if a loop is detected
186 * @param Title $title
187 * @return bool
189 public function loopCheck( $title );
192 * Return true if the frame is a template frame
193 * @return bool
195 public function isTemplate();
198 * Set the "volatile" flag.
200 * Note that this is somewhat of a "hack" in order to make extensions
201 * with side effects (such as Cite) work with the PHP parser. New
202 * extensions should be written in a way that they do not need this
203 * function, because other parsers (such as Parsoid) are not guaranteed
204 * to respect it, and it may be removed in the future.
206 * @param bool $flag
208 public function setVolatile( $flag = true );
211 * Get the "volatile" flag.
213 * Callers should avoid caching the result of an expansion if it has the
214 * volatile flag set.
216 * @see self::setVolatile()
217 * @return bool
219 public function isVolatile();
222 * Get the TTL of the frame's output.
224 * This is the maximum amount of time, in seconds, that this frame's
225 * output should be cached for. A value of null indicates that no
226 * maximum has been specified.
228 * Note that this TTL only applies to caching frames as parts of pages.
229 * It is not relevant to caching the entire rendered output of a page.
231 * @return int|null
233 public function getTTL();
236 * Set the TTL of the output of this frame and all of its ancestors.
237 * Has no effect if the new TTL is greater than the one already set.
238 * Note that it is the caller's responsibility to change the cache
239 * expiry of the page as a whole, if such behavior is desired.
241 * @see self::getTTL()
242 * @param int $ttl
244 public function setTTL( $ttl );
247 * Get a title of frame
249 * @return Title
251 public function getTitle();
255 * There are three types of nodes:
256 * * Tree nodes, which have a name and contain other nodes as children
257 * * Array nodes, which also contain other nodes but aren't considered part of a tree
258 * * Leaf nodes, which contain the actual data
260 * This interface provides access to the tree structure and to the contents of array nodes,
261 * but it does not provide access to the internal structure of leaf nodes. Access to leaf
262 * data is provided via two means:
263 * * PPFrame::expand(), which provides expanded text
264 * * The PPNode::split*() functions, which provide metadata about certain types of tree node
265 * @ingroup Parser
267 interface PPNode {
269 * Get an array-type node containing the children of this node.
270 * Returns false if this is not a tree node.
271 * @return PPNode
273 public function getChildren();
276 * Get the first child of a tree node. False if there isn't one.
278 * @return PPNode
280 public function getFirstChild();
283 * Get the next sibling of any node. False if there isn't one
284 * @return PPNode
286 public function getNextSibling();
289 * Get all children of this tree node which have a given name.
290 * Returns an array-type node, or false if this is not a tree node.
291 * @param string $type
292 * @return bool|PPNode
294 public function getChildrenOfType( $type );
297 * Returns the length of the array, or false if this is not an array-type node
299 public function getLength();
302 * Returns an item of an array-type node
303 * @param int $i
304 * @return bool|PPNode
306 public function item( $i );
309 * Get the name of this node. The following names are defined here:
311 * h A heading node.
312 * template A double-brace node.
313 * tplarg A triple-brace node.
314 * title The first argument to a template or tplarg node.
315 * part Subsequent arguments to a template or tplarg node.
316 * #nodelist An array-type node
318 * The subclass may define various other names for tree and leaf nodes.
319 * @return string
321 public function getName();
324 * Split a "<part>" node into an associative array containing:
325 * name PPNode name
326 * index String index
327 * value PPNode value
328 * @return array
330 public function splitArg();
333 * Split an "<ext>" node into an associative array containing name, attr, inner and close
334 * All values in the resulting array are PPNodes. Inner and close are optional.
335 * @return array
337 public function splitExt();
340 * Split an "<h>" node
341 * @return array
343 public function splitHeading();