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 namespace MediaWiki\Parser
;
26 use Wikimedia\ObjectCache\WANObjectCache
;
31 abstract class Preprocessor
{
32 /** Transclusion mode flag for Preprocessor::preprocessToObj() */
33 public const DOM_FOR_INCLUSION
= 1;
34 /** Language conversion construct omission flag for Preprocessor::preprocessToObj() */
35 public const DOM_LANG_CONVERSION_DISABLED
= 2;
36 /** Preprocessor cache bypass flag for Preprocessor::preprocessToObj */
37 public const DOM_UNCACHED
= 4;
42 /** @var WANObjectCache */
45 /** @var bool Whether language variant conversion is disabled */
46 protected $disableLangConversion;
48 /** @var array Brace matching rules */
61 'names' => [ 2 => null ],
67 'names' => [ 2 => null ],
74 * @param Parser $parser
75 * @param WANObjectCache|null $wanCache
76 * @param array $options Map of additional options, including:
77 * - disableLangConversion: disable language variant conversion. [Default: false]
79 public function __construct(
81 ?WANObjectCache
$wanCache = null,
84 $this->parser
= $parser;
85 $this->wanCache
= $wanCache ?
: WANObjectCache
::newEmpty();
86 $this->disableLangConversion
= !empty( $options['disableLangConversion'] );
90 * Allows resetting the internal Parser reference after Preprocessor is
93 * Do not use this function in new code, since this method will be
94 * moved once Parser cloning goes away (T250448)
96 * @param ?Parser $parser
99 public function resetParser( ?Parser
$parser ) {
100 // @phan-suppress-next-line PhanPossiblyNullTypeMismatchProperty For internal use only
101 $this->parser
= $parser;
105 * Create a new top-level frame for expansion of a page
109 abstract public function newFrame();
112 * Create a new custom frame for programmatic use of parameter replacement
114 * This is useful for certain types of extensions
119 abstract public function newCustomFrame( $args );
122 * Create a new custom node for programmatic use of parameter replacement
124 * This is useful for certain types of extensions
126 * @param array $values
128 abstract public function newPartNodeArray( $values );
131 * Get the document object model for the given wikitext
133 * Any flag added to the $flags parameter here, or any other parameter liable to cause
134 * a change in the DOM tree for the given wikitext, must be passed through the section
135 * identifier in the section edit link and thus back to extractSections().
137 * @param string $text Wikitext
138 * @param int $flags Bit field of Preprocessor::DOM_* flags:
139 * - Preprocessor::DOM_FOR_INCLUSION: treat the wikitext as transcluded content from
140 * a page rather than direct content of a page or message. By default, the text is
141 * assumed to be undergoing processing for use by direct page views. The use of this
142 * flag causes text within <noinclude> tags to be ignored, text within <includeonly>
143 * to be included, and text outside of <onlyinclude> to be ignored.
144 * - Preprocessor::DOM_NO_LANG_CONV: do not parse "-{ ... }-" constructs, which are
145 * involved in language variant conversion. (deprecated since 1.36)
146 * - Preprocessor::DOM_UNCACHED: disable use of the preprocessor cache.
149 abstract public function preprocessToObj( $text, $flags = 0 );
152 /** @deprecated class alias since 1.43 */
153 class_alias( Preprocessor
::class, 'Preprocessor' );