Merge "Localisation updates from https://translatewiki.net."
[mediawiki.git] / includes / parser / Preprocessor.php
blob4cd5694e0897ebceae26d7d10af4f437ee698b7a
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 function __construct( $parser );
35 /**
36 * Create a new top-level frame for expansion of a page
38 * @return PPFrame
40 function newFrame();
42 /**
43 * Create a new custom frame for programmatic use of parameter replacement as used in some extensions
45 * @param array $args
47 * @return PPFrame
49 function newCustomFrame( $args );
51 /**
52 * Create a new custom node for programmatic use of parameter replacement as used in some extensions
54 * @param array $values
56 function newPartNodeArray( $values );
58 /**
59 * Preprocess text to a PPNode
61 * @param string $text
62 * @param int $flags
64 * @return PPNode
66 function preprocessToObj( $text, $flags = 0 );
69 /**
70 * @ingroup Parser
72 interface PPFrame {
73 const NO_ARGS = 1;
74 const NO_TEMPLATES = 2;
75 const STRIP_COMMENTS = 4;
76 const NO_IGNORE = 8;
77 const RECOVER_COMMENTS = 16;
79 const RECOVER_ORIG = 27; // = 1|2|8|16 no constant expression support in PHP yet
81 /** This constant exists when $indexOffset is supported in newChild() */
82 const SUPPORTS_INDEX_OFFSET = 1;
84 /**
85 * Create a child frame
87 * @param array $args
88 * @param Title $title
89 * @param int $indexOffset A number subtracted from the index attributes of the arguments
91 * @return PPFrame
93 function newChild( $args = false, $title = false, $indexOffset = 0 );
95 /**
96 * Expand a document tree node
98 function expand( $root, $flags = 0 );
101 * Implode with flags for expand()
103 function implodeWithFlags( $sep, $flags /*, ... */ );
106 * Implode with no flags specified
108 function implode( $sep /*, ... */ );
111 * Makes an object that, when expand()ed, will be the same as one obtained
112 * with implode()
114 function virtualImplode( $sep /*, ... */ );
117 * Virtual implode with brackets
119 function virtualBracketedImplode( $start, $sep, $end /*, ... */ );
122 * Returns true if there are no arguments in this frame
124 * @return bool
126 function isEmpty();
129 * Returns all arguments of this frame
131 function getArguments();
134 * Returns all numbered arguments of this frame
136 function getNumberedArguments();
139 * Returns all named arguments of this frame
141 function getNamedArguments();
144 * Get an argument to this frame by name
146 function getArgument( $name );
149 * Returns true if the infinite loop check is OK, false if a loop is detected
151 * @param Title $title
152 * @return bool
154 function loopCheck( $title );
157 * Return true if the frame is a template frame
159 function isTemplate();
162 * Get a title of frame
164 * @return Title
166 function getTitle();
170 * There are three types of nodes:
171 * * Tree nodes, which have a name and contain other nodes as children
172 * * Array nodes, which also contain other nodes but aren't considered part of a tree
173 * * Leaf nodes, which contain the actual data
175 * This interface provides access to the tree structure and to the contents of array nodes,
176 * but it does not provide access to the internal structure of leaf nodes. Access to leaf
177 * data is provided via two means:
178 * * PPFrame::expand(), which provides expanded text
179 * * The PPNode::split*() functions, which provide metadata about certain types of tree node
180 * @ingroup Parser
182 interface PPNode {
184 * Get an array-type node containing the children of this node.
185 * Returns false if this is not a tree node.
187 function getChildren();
190 * Get the first child of a tree node. False if there isn't one.
192 * @return PPNode
194 function getFirstChild();
197 * Get the next sibling of any node. False if there isn't one
199 function getNextSibling();
202 * Get all children of this tree node which have a given name.
203 * Returns an array-type node, or false if this is not a tree node.
205 function getChildrenOfType( $type );
208 * Returns the length of the array, or false if this is not an array-type node
210 function getLength();
213 * Returns an item of an array-type node
215 function item( $i );
218 * Get the name of this node. The following names are defined here:
220 * h A heading node.
221 * template A double-brace node.
222 * tplarg A triple-brace node.
223 * title The first argument to a template or tplarg node.
224 * part Subsequent arguments to a template or tplarg node.
225 * #nodelist An array-type node
227 * The subclass may define various other names for tree and leaf nodes.
229 function getName();
232 * Split a "<part>" node into an associative array containing:
233 * name PPNode name
234 * index String index
235 * value PPNode value
237 function splitArg();
240 * Split an "<ext>" node into an associative array containing name, attr, inner and close
241 * All values in the resulting array are PPNodes. Inner and close are optional.
243 function splitExt();
246 * Split an "<h>" node
248 function splitHeading();