3 * Preprocessor using PHP arrays
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
25 * Differences from DOM schema:
26 * * attribute nodes are children
27 * * "<h>" nodes that aren't at the top are replaced with <possible-h>
30 class Preprocessor_Hash
implements Preprocessor
{
34 const CACHE_VERSION
= 1;
36 function __construct( $parser ) {
37 $this->parser
= $parser;
41 * @return PPFrame_Hash
44 return new PPFrame_Hash( $this );
49 * @return PPCustomFrame_Hash
51 function newCustomFrame( $args ) {
52 return new PPCustomFrame_Hash( $this, $args );
56 * @param array $values
57 * @return PPNode_Hash_Array
59 function newPartNodeArray( $values ) {
62 foreach ( $values as $k => $val ) {
63 $partNode = new PPNode_Hash_Tree( 'part' );
64 $nameNode = new PPNode_Hash_Tree( 'name' );
67 $nameNode->addChild( new PPNode_Hash_Attr( 'index', $k ) );
68 $partNode->addChild( $nameNode );
70 $nameNode->addChild( new PPNode_Hash_Text( $k ) );
71 $partNode->addChild( $nameNode );
72 $partNode->addChild( new PPNode_Hash_Text( '=' ) );
75 $valueNode = new PPNode_Hash_Tree( 'value' );
76 $valueNode->addChild( new PPNode_Hash_Text( $val ) );
77 $partNode->addChild( $valueNode );
82 $node = new PPNode_Hash_Array( $list );
87 * Preprocess some wikitext and return the document tree.
88 * This is the ghost of Parser::replace_variables().
90 * @param string $text The text to parse
91 * @param int $flags Bitwise combination of:
92 * Parser::PTD_FOR_INCLUSION Handle "<noinclude>" and "<includeonly>" as if the text is being
93 * included. Default is to assume a direct page view.
95 * The generated DOM tree must depend only on the input text and the flags.
96 * The DOM tree must be the same in OT_HTML and OT_WIKI mode, to avoid a regression of bug 4899.
98 * Any flag added to the $flags parameter here, or any other parameter liable to cause a
99 * change in the DOM tree for a given text, must be passed through the section identifier
100 * in the section edit link and thus back to extractSections().
102 * The output of this function is currently only cached in process memory, but a persistent
103 * cache may be implemented at a later date which takes further advantage of these strict
104 * dependency requirements.
106 * @throws MWException
107 * @return PPNode_Hash_Tree
109 function preprocessToObj( $text, $flags = 0 ) {
110 wfProfileIn( __METHOD__
);
113 global $wgMemc, $wgPreprocessorCacheThreshold;
115 $cacheable = $wgPreprocessorCacheThreshold !== false
116 && strlen( $text ) > $wgPreprocessorCacheThreshold;
119 wfProfileIn( __METHOD__
. '-cacheable' );
121 $cacheKey = wfMemcKey( 'preprocess-hash', md5( $text ), $flags );
122 $cacheValue = $wgMemc->get( $cacheKey );
124 $version = substr( $cacheValue, 0, 8 );
125 if ( intval( $version ) == self
::CACHE_VERSION
) {
126 $hash = unserialize( substr( $cacheValue, 8 ) );
128 wfDebugLog( "Preprocessor",
129 "Loaded preprocessor hash from memcached (key $cacheKey)" );
130 wfProfileOut( __METHOD__
. '-cacheable' );
131 wfProfileOut( __METHOD__
);
135 wfProfileIn( __METHOD__
. '-cache-miss' );
150 'names' => array( 2 => null ),
156 $forInclusion = $flags & Parser
::PTD_FOR_INCLUSION
;
158 $xmlishElements = $this->parser
->getStripList();
159 $enableOnlyinclude = false;
160 if ( $forInclusion ) {
161 $ignoredTags = array( 'includeonly', '/includeonly' );
162 $ignoredElements = array( 'noinclude' );
163 $xmlishElements[] = 'noinclude';
164 if ( strpos( $text, '<onlyinclude>' ) !== false
165 && strpos( $text, '</onlyinclude>' ) !== false
167 $enableOnlyinclude = true;
170 $ignoredTags = array( 'noinclude', '/noinclude', 'onlyinclude', '/onlyinclude' );
171 $ignoredElements = array( 'includeonly' );
172 $xmlishElements[] = 'includeonly';
174 $xmlishRegex = implode( '|', array_merge( $xmlishElements, $ignoredTags ) );
176 // Use "A" modifier (anchored) instead of "^", because ^ doesn't work with an offset
177 $elementsRegex = "~($xmlishRegex)(?:\s|\/>|>)|(!--)~iA";
179 $stack = new PPDStack_Hash
;
181 $searchBase = "[{<\n";
182 // For fast reverse searches
183 $revText = strrev( $text );
184 $lengthText = strlen( $text );
186 // Input pointer, starts out pointing to a pseudo-newline before the start
188 // Current accumulator
189 $accum =& $stack->getAccum();
190 // True to find equals signs in arguments
192 // True to take notice of pipe characters
195 // True if $i is inside a possible heading
197 // True if there are no more greater-than (>) signs right of $i
199 // True to ignore all input up to the next <onlyinclude>
200 $findOnlyinclude = $enableOnlyinclude;
201 // Do a line-start run without outputting an LF character
202 $fakeLineStart = true;
207 if ( $findOnlyinclude ) {
208 // Ignore all input up to the next <onlyinclude>
209 $startPos = strpos( $text, '<onlyinclude>', $i );
210 if ( $startPos === false ) {
211 // Ignored section runs to the end
212 $accum->addNodeWithText( 'ignore', substr( $text, $i ) );
215 $tagEndPos = $startPos +
strlen( '<onlyinclude>' ); // past-the-end
216 $accum->addNodeWithText( 'ignore', substr( $text, $i, $tagEndPos - $i ) );
218 $findOnlyinclude = false;
221 if ( $fakeLineStart ) {
222 $found = 'line-start';
225 # Find next opening brace, closing brace or pipe
226 $search = $searchBase;
227 if ( $stack->top
=== false ) {
228 $currentClosing = '';
230 $currentClosing = $stack->top
->close
;
231 $search .= $currentClosing;
237 // First equals will be for the template
241 # Output literal section, advance input counter
242 $literalLength = strcspn( $text, $search, $i );
243 if ( $literalLength > 0 ) {
244 $accum->addLiteral( substr( $text, $i, $literalLength ) );
245 $i +
= $literalLength;
247 if ( $i >= $lengthText ) {
248 if ( $currentClosing == "\n" ) {
249 // Do a past-the-end run to finish off the heading
257 $curChar = $text[$i];
258 if ( $curChar == '|' ) {
260 } elseif ( $curChar == '=' ) {
262 } elseif ( $curChar == '<' ) {
264 } elseif ( $curChar == "\n" ) {
268 $found = 'line-start';
270 } elseif ( $curChar == $currentClosing ) {
272 } elseif ( isset( $rules[$curChar] ) ) {
274 $rule = $rules[$curChar];
276 # Some versions of PHP have a strcspn which stops on null characters
277 # Ignore and continue
284 if ( $found == 'angle' ) {
286 // Handle </onlyinclude>
287 if ( $enableOnlyinclude
288 && substr( $text, $i, strlen( '</onlyinclude>' ) ) == '</onlyinclude>'
290 $findOnlyinclude = true;
294 // Determine element name
295 if ( !preg_match( $elementsRegex, $text, $matches, 0, $i +
1 ) ) {
296 // Element name missing or not listed
297 $accum->addLiteral( '<' );
302 if ( isset( $matches[2] ) && $matches[2] == '!--' ) {
304 // To avoid leaving blank lines, when a sequence of
305 // space-separated comments is both preceded and followed by
306 // a newline (ignoring spaces), then
307 // trim leading and trailing spaces and the trailing newline.
310 $endPos = strpos( $text, '-->', $i +
4 );
311 if ( $endPos === false ) {
312 // Unclosed comment in input, runs to end
313 $inner = substr( $text, $i );
314 $accum->addNodeWithText( 'comment', $inner );
317 // Search backwards for leading whitespace
318 $wsStart = $i ?
( $i - strspn( $revText, " \t", $lengthText - $i ) ) : 0;
320 // Search forwards for trailing whitespace
321 // $wsEnd will be the position of the last space (or the '>' if there's none)
322 $wsEnd = $endPos +
2 +
strspn( $text, " \t", $endPos +
3 );
324 // Keep looking forward as long as we're finding more
326 $comments = array( array( $wsStart, $wsEnd ) );
327 while ( substr( $text, $wsEnd +
1, 4 ) == '<!--' ) {
328 $c = strpos( $text, '-->', $wsEnd +
4 );
329 if ( $c === false ) {
332 $c = $c +
2 +
strspn( $text, " \t", $c +
3 );
333 $comments[] = array( $wsEnd +
1, $c );
337 // Eat the line if possible
338 // TODO: This could theoretically be done if $wsStart == 0, i.e. for comments at
339 // the overall start. That's not how Sanitizer::removeHTMLcomments() did it, but
340 // it's a possible beneficial b/c break.
341 if ( $wsStart > 0 && substr( $text, $wsStart - 1, 1 ) == "\n"
342 && substr( $text, $wsEnd +
1, 1 ) == "\n"
344 // Remove leading whitespace from the end of the accumulator
345 // Sanity check first though
346 $wsLength = $i - $wsStart;
348 && $accum->lastNode
instanceof PPNode_Hash_Text
349 && strspn( $accum->lastNode
->value
, " \t", -$wsLength ) === $wsLength
351 $accum->lastNode
->value
= substr( $accum->lastNode
->value
, 0, -$wsLength );
354 // Dump all but the last comment to the accumulator
355 foreach ( $comments as $j => $com ) {
357 $endPos = $com[1] +
1;
358 if ( $j == ( count( $comments ) - 1 ) ) {
361 $inner = substr( $text, $startPos, $endPos - $startPos );
362 $accum->addNodeWithText( 'comment', $inner );
365 // Do a line-start run next time to look for headings after the comment
366 $fakeLineStart = true;
368 // No line to eat, just take the comment itself
374 $part = $stack->top
->getCurrentPart();
375 if ( !( isset( $part->commentEnd
) && $part->commentEnd
== $wsStart - 1 ) ) {
376 $part->visualEnd
= $wsStart;
378 // Else comments abutting, no change in visual end
379 $part->commentEnd
= $endPos;
382 $inner = substr( $text, $startPos, $endPos - $startPos +
1 );
383 $accum->addNodeWithText( 'comment', $inner );
388 $lowerName = strtolower( $name );
389 $attrStart = $i +
strlen( $name ) +
1;
392 $tagEndPos = $noMoreGT ?
false : strpos( $text, '>', $attrStart );
393 if ( $tagEndPos === false ) {
394 // Infinite backtrack
395 // Disable tag search to prevent worst-case O(N^2) performance
397 $accum->addLiteral( '<' );
402 // Handle ignored tags
403 if ( in_array( $lowerName, $ignoredTags ) ) {
404 $accum->addNodeWithText( 'ignore', substr( $text, $i, $tagEndPos - $i +
1 ) );
410 if ( $text[$tagEndPos - 1] == '/' ) {
412 $attrEnd = $tagEndPos - 1;
417 $attrEnd = $tagEndPos;
419 if ( preg_match( "/<\/" . preg_quote( $name, '/' ) . "\s*>/i",
420 $text, $matches, PREG_OFFSET_CAPTURE
, $tagEndPos +
1 )
422 $inner = substr( $text, $tagEndPos +
1, $matches[0][1] - $tagEndPos - 1 );
423 $i = $matches[0][1] +
strlen( $matches[0][0] );
424 $close = $matches[0][0];
426 // No end tag -- let it run out to the end of the text.
427 $inner = substr( $text, $tagEndPos +
1 );
432 // <includeonly> and <noinclude> just become <ignore> tags
433 if ( in_array( $lowerName, $ignoredElements ) ) {
434 $accum->addNodeWithText( 'ignore', substr( $text, $tagStartPos, $i - $tagStartPos ) );
438 if ( $attrEnd <= $attrStart ) {
441 // Note that the attr element contains the whitespace between name and attribute,
442 // this is necessary for precise reconstruction during pre-save transform.
443 $attr = substr( $text, $attrStart, $attrEnd - $attrStart );
446 $extNode = new PPNode_Hash_Tree( 'ext' );
447 $extNode->addChild( PPNode_Hash_Tree
::newWithText( 'name', $name ) );
448 $extNode->addChild( PPNode_Hash_Tree
::newWithText( 'attr', $attr ) );
449 if ( $inner !== null ) {
450 $extNode->addChild( PPNode_Hash_Tree
::newWithText( 'inner', $inner ) );
452 if ( $close !== null ) {
453 $extNode->addChild( PPNode_Hash_Tree
::newWithText( 'close', $close ) );
455 $accum->addNode( $extNode );
456 } elseif ( $found == 'line-start' ) {
457 // Is this the start of a heading?
458 // Line break belongs before the heading element in any case
459 if ( $fakeLineStart ) {
460 $fakeLineStart = false;
462 $accum->addLiteral( $curChar );
466 $count = strspn( $text, '=', $i, 6 );
467 if ( $count == 1 && $findEquals ) {
468 // DWIM: This looks kind of like a name/value separator.
469 // Let's let the equals handler have it and break the potential
470 // heading. This is heuristic, but AFAICT the methods for
471 // completely correct disambiguation are very complex.
472 } elseif ( $count > 0 ) {
476 'parts' => array( new PPDPart_Hash( str_repeat( '=', $count ) ) ),
479 $stack->push( $piece );
480 $accum =& $stack->getAccum();
481 extract( $stack->getFlags() );
484 } elseif ( $found == 'line-end' ) {
485 $piece = $stack->top
;
486 // A heading must be open, otherwise \n wouldn't have been in the search list
487 assert( '$piece->open == "\n"' );
488 $part = $piece->getCurrentPart();
489 // Search back through the input to see if it has a proper close.
490 // Do this using the reversed string since the other solutions
491 // (end anchor, etc.) are inefficient.
492 $wsLength = strspn( $revText, " \t", $lengthText - $i );
493 $searchStart = $i - $wsLength;
494 if ( isset( $part->commentEnd
) && $searchStart - 1 == $part->commentEnd
) {
495 // Comment found at line end
496 // Search for equals signs before the comment
497 $searchStart = $part->visualEnd
;
498 $searchStart -= strspn( $revText, " \t", $lengthText - $searchStart );
500 $count = $piece->count
;
501 $equalsLength = strspn( $revText, '=', $lengthText - $searchStart );
502 if ( $equalsLength > 0 ) {
503 if ( $searchStart - $equalsLength == $piece->startPos
) {
504 // This is just a single string of equals signs on its own line
505 // Replicate the doHeadings behavior /={count}(.+)={count}/
506 // First find out how many equals signs there really are (don't stop at 6)
507 $count = $equalsLength;
511 $count = min( 6, intval( ( $count - 1 ) / 2 ) );
514 $count = min( $equalsLength, $count );
517 // Normal match, output <h>
518 $element = new PPNode_Hash_Tree( 'possible-h' );
519 $element->addChild( new PPNode_Hash_Attr( 'level', $count ) );
520 $element->addChild( new PPNode_Hash_Attr( 'i', $headingIndex++
) );
521 $element->lastChild
->nextSibling
= $accum->firstNode
;
522 $element->lastChild
= $accum->lastNode
;
524 // Single equals sign on its own line, count=0
528 // No match, no <h>, just pass down the inner text
533 $accum =& $stack->getAccum();
534 extract( $stack->getFlags() );
536 // Append the result to the enclosing accumulator
537 if ( $element instanceof PPNode
) {
538 $accum->addNode( $element );
540 $accum->addAccum( $element );
542 // Note that we do NOT increment the input pointer.
543 // This is because the closing linebreak could be the opening linebreak of
544 // another heading. Infinite loops are avoided because the next iteration MUST
545 // hit the heading open case above, which unconditionally increments the
547 } elseif ( $found == 'open' ) {
548 # count opening brace characters
549 $count = strspn( $text, $curChar, $i );
551 # we need to add to stack only if opening brace count is enough for one of the rules
552 if ( $count >= $rule['min'] ) {
553 # Add it to the stack
556 'close' => $rule['end'],
558 'lineStart' => ( $i > 0 && $text[$i - 1] == "\n" ),
561 $stack->push( $piece );
562 $accum =& $stack->getAccum();
563 extract( $stack->getFlags() );
565 # Add literal brace(s)
566 $accum->addLiteral( str_repeat( $curChar, $count ) );
569 } elseif ( $found == 'close' ) {
570 $piece = $stack->top
;
571 # lets check if there are enough characters for closing brace
572 $maxCount = $piece->count
;
573 $count = strspn( $text, $curChar, $i, $maxCount );
575 # check for maximum matching characters (if there are 5 closing
576 # characters, we will probably need only 3 - depending on the rules)
577 $rule = $rules[$piece->open
];
578 if ( $count > $rule['max'] ) {
579 # The specified maximum exists in the callback array, unless the caller
581 $matchingCount = $rule['max'];
583 # Count is less than the maximum
584 # Skip any gaps in the callback array to find the true largest match
585 # Need to use array_key_exists not isset because the callback can be null
586 $matchingCount = $count;
587 while ( $matchingCount > 0 && !array_key_exists( $matchingCount, $rule['names'] ) ) {
592 if ( $matchingCount <= 0 ) {
593 # No matching element found in callback array
594 # Output a literal closing brace and continue
595 $accum->addLiteral( str_repeat( $curChar, $count ) );
599 $name = $rule['names'][$matchingCount];
600 if ( $name === null ) {
601 // No element, just literal text
602 $element = $piece->breakSyntax( $matchingCount );
603 $element->addLiteral( str_repeat( $rule['end'], $matchingCount ) );
606 # Note: $parts is already XML, does not need to be encoded further
607 $parts = $piece->parts
;
608 $titleAccum = $parts[0]->out
;
611 $element = new PPNode_Hash_Tree( $name );
613 # The invocation is at the start of the line if lineStart is set in
614 # the stack, and all opening brackets are used up.
615 if ( $maxCount == $matchingCount && !empty( $piece->lineStart
) ) {
616 $element->addChild( new PPNode_Hash_Attr( 'lineStart', 1 ) );
618 $titleNode = new PPNode_Hash_Tree( 'title' );
619 $titleNode->firstChild
= $titleAccum->firstNode
;
620 $titleNode->lastChild
= $titleAccum->lastNode
;
621 $element->addChild( $titleNode );
623 foreach ( $parts as $part ) {
624 if ( isset( $part->eqpos
) ) {
627 for ( $node = $part->out
->firstNode
; $node; $node = $node->nextSibling
) {
628 if ( $node === $part->eqpos
) {
635 wfProfileOut( __METHOD__
. '-cache-miss' );
636 wfProfileOut( __METHOD__
. '-cacheable' );
638 wfProfileOut( __METHOD__
);
639 throw new MWException( __METHOD__
. ': eqpos not found' );
641 if ( $node->name
!== 'equals' ) {
643 wfProfileOut( __METHOD__
. '-cache-miss' );
644 wfProfileOut( __METHOD__
. '-cacheable' );
646 wfProfileOut( __METHOD__
);
647 throw new MWException( __METHOD__
. ': eqpos is not equals' );
651 // Construct name node
652 $nameNode = new PPNode_Hash_Tree( 'name' );
653 if ( $lastNode !== false ) {
654 $lastNode->nextSibling
= false;
655 $nameNode->firstChild
= $part->out
->firstNode
;
656 $nameNode->lastChild
= $lastNode;
659 // Construct value node
660 $valueNode = new PPNode_Hash_Tree( 'value' );
661 if ( $equalsNode->nextSibling
!== false ) {
662 $valueNode->firstChild
= $equalsNode->nextSibling
;
663 $valueNode->lastChild
= $part->out
->lastNode
;
665 $partNode = new PPNode_Hash_Tree( 'part' );
666 $partNode->addChild( $nameNode );
667 $partNode->addChild( $equalsNode->firstChild
);
668 $partNode->addChild( $valueNode );
669 $element->addChild( $partNode );
671 $partNode = new PPNode_Hash_Tree( 'part' );
672 $nameNode = new PPNode_Hash_Tree( 'name' );
673 $nameNode->addChild( new PPNode_Hash_Attr( 'index', $argIndex++
) );
674 $valueNode = new PPNode_Hash_Tree( 'value' );
675 $valueNode->firstChild
= $part->out
->firstNode
;
676 $valueNode->lastChild
= $part->out
->lastNode
;
677 $partNode->addChild( $nameNode );
678 $partNode->addChild( $valueNode );
679 $element->addChild( $partNode );
684 # Advance input pointer
685 $i +
= $matchingCount;
689 $accum =& $stack->getAccum();
691 # Re-add the old stack element if it still has unmatched opening characters remaining
692 if ( $matchingCount < $piece->count
) {
693 $piece->parts
= array( new PPDPart_Hash
);
694 $piece->count
-= $matchingCount;
695 # do we still qualify for any callback with remaining count?
696 $min = $rules[$piece->open
]['min'];
697 if ( $piece->count
>= $min ) {
698 $stack->push( $piece );
699 $accum =& $stack->getAccum();
701 $accum->addLiteral( str_repeat( $piece->open
, $piece->count
) );
705 extract( $stack->getFlags() );
707 # Add XML element to the enclosing accumulator
708 if ( $element instanceof PPNode
) {
709 $accum->addNode( $element );
711 $accum->addAccum( $element );
713 } elseif ( $found == 'pipe' ) {
714 $findEquals = true; // shortcut for getFlags()
716 $accum =& $stack->getAccum();
718 } elseif ( $found == 'equals' ) {
719 $findEquals = false; // shortcut for getFlags()
720 $accum->addNodeWithText( 'equals', '=' );
721 $stack->getCurrentPart()->eqpos
= $accum->lastNode
;
726 # Output any remaining unclosed brackets
727 foreach ( $stack->stack
as $piece ) {
728 $stack->rootAccum
->addAccum( $piece->breakSyntax() );
731 # Enable top-level headings
732 for ( $node = $stack->rootAccum
->firstNode
; $node; $node = $node->nextSibling
) {
733 if ( isset( $node->name
) && $node->name
=== 'possible-h' ) {
738 $rootNode = new PPNode_Hash_Tree( 'root' );
739 $rootNode->firstChild
= $stack->rootAccum
->firstNode
;
740 $rootNode->lastChild
= $stack->rootAccum
->lastNode
;
744 $cacheValue = sprintf( "%08d", self
::CACHE_VERSION
) . serialize( $rootNode );
745 $wgMemc->set( $cacheKey, $cacheValue, 86400 );
746 wfProfileOut( __METHOD__
. '-cache-miss' );
747 wfProfileOut( __METHOD__
. '-cacheable' );
748 wfDebugLog( "Preprocessor", "Saved preprocessor Hash to memcached (key $cacheKey)" );
751 wfProfileOut( __METHOD__
);
757 * Stack class to help Preprocessor::preprocessToObj()
760 class PPDStack_Hash
extends PPDStack
{
761 function __construct() {
762 $this->elementClass
= 'PPDStackElement_Hash';
763 parent
::__construct();
764 $this->rootAccum
= new PPDAccum_Hash
;
771 class PPDStackElement_Hash
extends PPDStackElement
{
772 function __construct( $data = array() ) {
773 $this->partClass
= 'PPDPart_Hash';
774 parent
::__construct( $data );
778 * Get the accumulator that would result if the close is not found.
780 * @param int|bool $openingCount
781 * @return PPDAccum_Hash
783 function breakSyntax( $openingCount = false ) {
784 if ( $this->open
== "\n" ) {
785 $accum = $this->parts
[0]->out
;
787 if ( $openingCount === false ) {
788 $openingCount = $this->count
;
790 $accum = new PPDAccum_Hash
;
791 $accum->addLiteral( str_repeat( $this->open
, $openingCount ) );
793 foreach ( $this->parts
as $part ) {
797 $accum->addLiteral( '|' );
799 $accum->addAccum( $part->out
);
809 class PPDPart_Hash
extends PPDPart
{
810 function __construct( $out = '' ) {
811 $accum = new PPDAccum_Hash
;
813 $accum->addLiteral( $out );
815 parent
::__construct( $accum );
822 class PPDAccum_Hash
{
827 function __construct() {
828 $this->firstNode
= $this->lastNode
= false;
832 * Append a string literal
835 function addLiteral( $s ) {
836 if ( $this->lastNode
=== false ) {
837 $this->firstNode
= $this->lastNode
= new PPNode_Hash_Text( $s );
838 } elseif ( $this->lastNode
instanceof PPNode_Hash_Text
) {
839 $this->lastNode
->value
.= $s;
841 $this->lastNode
->nextSibling
= new PPNode_Hash_Text( $s );
842 $this->lastNode
= $this->lastNode
->nextSibling
;
848 * @param PPNode $node
850 function addNode( PPNode
$node ) {
851 if ( $this->lastNode
=== false ) {
852 $this->firstNode
= $this->lastNode
= $node;
854 $this->lastNode
->nextSibling
= $node;
855 $this->lastNode
= $node;
860 * Append a tree node with text contents
861 * @param string $name
862 * @param string $value
864 function addNodeWithText( $name, $value ) {
865 $node = PPNode_Hash_Tree
::newWithText( $name, $value );
866 $this->addNode( $node );
870 * Append a PPDAccum_Hash
871 * Takes over ownership of the nodes in the source argument. These nodes may
872 * subsequently be modified, especially nextSibling.
873 * @param PPDAccum_Hash $accum
875 function addAccum( $accum ) {
876 if ( $accum->lastNode
=== false ) {
878 } elseif ( $this->lastNode
=== false ) {
879 $this->firstNode
= $accum->firstNode
;
880 $this->lastNode
= $accum->lastNode
;
882 $this->lastNode
->nextSibling
= $accum->firstNode
;
883 $this->lastNode
= $accum->lastNode
;
889 * An expansion frame, used as a context to expand the result of preprocessToObj()
892 class PPFrame_Hash
implements PPFrame
{
894 * @var int Recursion depth of this frame, top = 0
895 * Note that this is NOT the same as expansion depth in expand()
902 /** @var Preprocessor */
903 protected $preprocessor;
909 protected $titleCache;
912 * @var array Hashtable listing templates which are disallowed for
913 * expansion in this frame, having been encountered previously in
916 protected $loopCheckHash;
919 * Construct a new preprocessor frame.
920 * @param Preprocessor $preprocessor The parent preprocessor
922 function __construct( $preprocessor ) {
923 $this->preprocessor
= $preprocessor;
924 $this->parser
= $preprocessor->parser
;
925 $this->title
= $this->parser
->mTitle
;
926 $this->titleCache
= array( $this->title ?
$this->title
->getPrefixedDBkey() : false );
927 $this->loopCheckHash
= array();
932 * Create a new child frame
933 * $args is optionally a multi-root PPNode or array containing the template arguments
935 * @param array|bool|PPNode_Hash_Array $args
936 * @param Title|bool $title
937 * @param int $indexOffset
938 * @throws MWException
939 * @return PPTemplateFrame_Hash
941 function newChild( $args = false, $title = false, $indexOffset = 0 ) {
942 $namedArgs = array();
943 $numberedArgs = array();
944 if ( $title === false ) {
945 $title = $this->title
;
947 if ( $args !== false ) {
948 if ( $args instanceof PPNode_Hash_Array
) {
949 $args = $args->value
;
950 } elseif ( !is_array( $args ) ) {
951 throw new MWException( __METHOD__
. ': $args must be array or PPNode_Hash_Array' );
953 foreach ( $args as $arg ) {
954 $bits = $arg->splitArg();
955 if ( $bits['index'] !== '' ) {
956 // Numbered parameter
957 $index = $bits['index'] - $indexOffset;
958 $numberedArgs[$index] = $bits['value'];
959 unset( $namedArgs[$index] );
962 $name = trim( $this->expand( $bits['name'], PPFrame
::STRIP_COMMENTS
) );
963 $namedArgs[$name] = $bits['value'];
964 unset( $numberedArgs[$name] );
968 return new PPTemplateFrame_Hash( $this->preprocessor
, $this, $numberedArgs, $namedArgs, $title );
972 * @throws MWException
973 * @param string|PPNode$root
977 function expand( $root, $flags = 0 ) {
978 static $expansionDepth = 0;
979 if ( is_string( $root ) ) {
983 if ( ++
$this->parser
->mPPNodeCount
> $this->parser
->mOptions
->getMaxPPNodeCount() ) {
984 $this->parser
->limitationWarn( 'node-count-exceeded',
985 $this->parser
->mPPNodeCount
,
986 $this->parser
->mOptions
->getMaxPPNodeCount()
988 return '<span class="error">Node-count limit exceeded</span>';
990 if ( $expansionDepth > $this->parser
->mOptions
->getMaxPPExpandDepth() ) {
991 $this->parser
->limitationWarn( 'expansion-depth-exceeded',
993 $this->parser
->mOptions
->getMaxPPExpandDepth()
995 return '<span class="error">Expansion depth limit exceeded</span>';
998 if ( $expansionDepth > $this->parser
->mHighestExpansionDepth
) {
999 $this->parser
->mHighestExpansionDepth
= $expansionDepth;
1002 $outStack = array( '', '' );
1003 $iteratorStack = array( false, $root );
1004 $indexStack = array( 0, 0 );
1006 while ( count( $iteratorStack ) > 1 ) {
1007 $level = count( $outStack ) - 1;
1008 $iteratorNode =& $iteratorStack[$level];
1009 $out =& $outStack[$level];
1010 $index =& $indexStack[$level];
1012 if ( is_array( $iteratorNode ) ) {
1013 if ( $index >= count( $iteratorNode ) ) {
1014 // All done with this iterator
1015 $iteratorStack[$level] = false;
1016 $contextNode = false;
1018 $contextNode = $iteratorNode[$index];
1021 } elseif ( $iteratorNode instanceof PPNode_Hash_Array
) {
1022 if ( $index >= $iteratorNode->getLength() ) {
1023 // All done with this iterator
1024 $iteratorStack[$level] = false;
1025 $contextNode = false;
1027 $contextNode = $iteratorNode->item( $index );
1031 // Copy to $contextNode and then delete from iterator stack,
1032 // because this is not an iterator but we do have to execute it once
1033 $contextNode = $iteratorStack[$level];
1034 $iteratorStack[$level] = false;
1037 $newIterator = false;
1039 if ( $contextNode === false ) {
1041 } elseif ( is_string( $contextNode ) ) {
1042 $out .= $contextNode;
1043 } elseif ( is_array( $contextNode ) ||
$contextNode instanceof PPNode_Hash_Array
) {
1044 $newIterator = $contextNode;
1045 } elseif ( $contextNode instanceof PPNode_Hash_Attr
) {
1047 } elseif ( $contextNode instanceof PPNode_Hash_Text
) {
1048 $out .= $contextNode->value
;
1049 } elseif ( $contextNode instanceof PPNode_Hash_Tree
) {
1050 if ( $contextNode->name
== 'template' ) {
1051 # Double-brace expansion
1052 $bits = $contextNode->splitTemplate();
1053 if ( $flags & PPFrame
::NO_TEMPLATES
) {
1054 $newIterator = $this->virtualBracketedImplode(
1060 $ret = $this->parser
->braceSubstitution( $bits, $this );
1061 if ( isset( $ret['object'] ) ) {
1062 $newIterator = $ret['object'];
1064 $out .= $ret['text'];
1067 } elseif ( $contextNode->name
== 'tplarg' ) {
1068 # Triple-brace expansion
1069 $bits = $contextNode->splitTemplate();
1070 if ( $flags & PPFrame
::NO_ARGS
) {
1071 $newIterator = $this->virtualBracketedImplode(
1077 $ret = $this->parser
->argSubstitution( $bits, $this );
1078 if ( isset( $ret['object'] ) ) {
1079 $newIterator = $ret['object'];
1081 $out .= $ret['text'];
1084 } elseif ( $contextNode->name
== 'comment' ) {
1085 # HTML-style comment
1086 # Remove it in HTML, pre+remove and STRIP_COMMENTS modes
1087 if ( $this->parser
->ot
['html']
1088 ||
( $this->parser
->ot
['pre'] && $this->parser
->mOptions
->getRemoveComments() )
1089 ||
( $flags & PPFrame
::STRIP_COMMENTS
)
1092 } elseif ( $this->parser
->ot
['wiki'] && !( $flags & PPFrame
::RECOVER_COMMENTS
) ) {
1093 # Add a strip marker in PST mode so that pstPass2() can
1094 # run some old-fashioned regexes on the result.
1095 # Not in RECOVER_COMMENTS mode (extractSections) though.
1096 $out .= $this->parser
->insertStripItem( $contextNode->firstChild
->value
);
1098 # Recover the literal comment in RECOVER_COMMENTS and pre+no-remove
1099 $out .= $contextNode->firstChild
->value
;
1101 } elseif ( $contextNode->name
== 'ignore' ) {
1102 # Output suppression used by <includeonly> etc.
1103 # OT_WIKI will only respect <ignore> in substed templates.
1104 # The other output types respect it unless NO_IGNORE is set.
1105 # extractSections() sets NO_IGNORE and so never respects it.
1106 if ( ( !isset( $this->parent
) && $this->parser
->ot
['wiki'] )
1107 ||
( $flags & PPFrame
::NO_IGNORE
)
1109 $out .= $contextNode->firstChild
->value
;
1113 } elseif ( $contextNode->name
== 'ext' ) {
1115 $bits = $contextNode->splitExt() +
array( 'attr' => null, 'inner' => null, 'close' => null );
1116 $out .= $this->parser
->extensionSubstitution( $bits, $this );
1117 } elseif ( $contextNode->name
== 'h' ) {
1119 if ( $this->parser
->ot
['html'] ) {
1120 # Expand immediately and insert heading index marker
1122 for ( $node = $contextNode->firstChild
; $node; $node = $node->nextSibling
) {
1123 $s .= $this->expand( $node, $flags );
1126 $bits = $contextNode->splitHeading();
1127 $titleText = $this->title
->getPrefixedDBkey();
1128 $this->parser
->mHeadings
[] = array( $titleText, $bits['i'] );
1129 $serial = count( $this->parser
->mHeadings
) - 1;
1130 $marker = "{$this->parser->mUniqPrefix}-h-$serial-" . Parser
::MARKER_SUFFIX
;
1131 $s = substr( $s, 0, $bits['level'] ) . $marker . substr( $s, $bits['level'] );
1132 $this->parser
->mStripState
->addGeneral( $marker, '' );
1135 # Expand in virtual stack
1136 $newIterator = $contextNode->getChildren();
1139 # Generic recursive expansion
1140 $newIterator = $contextNode->getChildren();
1143 throw new MWException( __METHOD__
. ': Invalid parameter type' );
1146 if ( $newIterator !== false ) {
1148 $iteratorStack[] = $newIterator;
1150 } elseif ( $iteratorStack[$level] === false ) {
1151 // Return accumulated value to parent
1152 // With tail recursion
1153 while ( $iteratorStack[$level] === false && $level > 0 ) {
1154 $outStack[$level - 1] .= $out;
1155 array_pop( $outStack );
1156 array_pop( $iteratorStack );
1157 array_pop( $indexStack );
1163 return $outStack[0];
1167 * @param string $sep
1171 function implodeWithFlags( $sep, $flags /*, ... */ ) {
1172 $args = array_slice( func_get_args(), 2 );
1176 foreach ( $args as $root ) {
1177 if ( $root instanceof PPNode_Hash_Array
) {
1178 $root = $root->value
;
1180 if ( !is_array( $root ) ) {
1181 $root = array( $root );
1183 foreach ( $root as $node ) {
1189 $s .= $this->expand( $node, $flags );
1196 * Implode with no flags specified
1197 * This previously called implodeWithFlags but has now been inlined to reduce stack depth
1198 * @param string $sep
1201 function implode( $sep /*, ... */ ) {
1202 $args = array_slice( func_get_args(), 1 );
1206 foreach ( $args as $root ) {
1207 if ( $root instanceof PPNode_Hash_Array
) {
1208 $root = $root->value
;
1210 if ( !is_array( $root ) ) {
1211 $root = array( $root );
1213 foreach ( $root as $node ) {
1219 $s .= $this->expand( $node );
1226 * Makes an object that, when expand()ed, will be the same as one obtained
1229 * @param string $sep
1230 * @return PPNode_Hash_Array
1232 function virtualImplode( $sep /*, ... */ ) {
1233 $args = array_slice( func_get_args(), 1 );
1237 foreach ( $args as $root ) {
1238 if ( $root instanceof PPNode_Hash_Array
) {
1239 $root = $root->value
;
1241 if ( !is_array( $root ) ) {
1242 $root = array( $root );
1244 foreach ( $root as $node ) {
1253 return new PPNode_Hash_Array( $out );
1257 * Virtual implode with brackets
1259 * @param string $start
1260 * @param string $sep
1261 * @param string $end
1262 * @return PPNode_Hash_Array
1264 function virtualBracketedImplode( $start, $sep, $end /*, ... */ ) {
1265 $args = array_slice( func_get_args(), 3 );
1266 $out = array( $start );
1269 foreach ( $args as $root ) {
1270 if ( $root instanceof PPNode_Hash_Array
) {
1271 $root = $root->value
;
1273 if ( !is_array( $root ) ) {
1274 $root = array( $root );
1276 foreach ( $root as $node ) {
1286 return new PPNode_Hash_Array( $out );
1289 function __toString() {
1294 * @param bool $level
1295 * @return array|bool|string
1297 function getPDBK( $level = false ) {
1298 if ( $level === false ) {
1299 return $this->title
->getPrefixedDBkey();
1301 return isset( $this->titleCache
[$level] ) ?
$this->titleCache
[$level] : false;
1308 function getArguments() {
1315 function getNumberedArguments() {
1322 function getNamedArguments() {
1327 * Returns true if there are no arguments in this frame
1331 function isEmpty() {
1336 * @param string $name
1339 function getArgument( $name ) {
1344 * Returns true if the infinite loop check is OK, false if a loop is detected
1346 * @param Title $title
1350 function loopCheck( $title ) {
1351 return !isset( $this->loopCheckHash
[$title->getPrefixedDBkey()] );
1355 * Return true if the frame is a template frame
1359 function isTemplate() {
1364 * Get a title of frame
1368 function getTitle() {
1369 return $this->title
;
1374 * Expansion frame with template arguments
1377 class PPTemplateFrame_Hash
extends PPFrame_Hash
{
1379 protected $numberedArgs;
1382 protected $namedArgs;
1384 /** @var bool|PPFrame */
1388 protected $numberedExpansionCache;
1391 protected $namedExpansionCache;
1394 * @param Preprocessor $preprocessor
1395 * @param bool|PPFrame $parent
1396 * @param array $numberedArgs
1397 * @param array $namedArgs
1398 * @param bool|Title $title
1400 function __construct( $preprocessor, $parent = false, $numberedArgs = array(),
1401 $namedArgs = array(), $title = false
1403 parent
::__construct( $preprocessor );
1405 $this->parent
= $parent;
1406 $this->numberedArgs
= $numberedArgs;
1407 $this->namedArgs
= $namedArgs;
1408 $this->title
= $title;
1409 $pdbk = $title ?
$title->getPrefixedDBkey() : false;
1410 $this->titleCache
= $parent->titleCache
;
1411 $this->titleCache
[] = $pdbk;
1412 $this->loopCheckHash
= /*clone*/ $parent->loopCheckHash
;
1413 if ( $pdbk !== false ) {
1414 $this->loopCheckHash
[$pdbk] = true;
1416 $this->depth
= $parent->depth +
1;
1417 $this->numberedExpansionCache
= $this->namedExpansionCache
= array();
1420 function __toString() {
1423 $args = $this->numberedArgs +
$this->namedArgs
;
1424 foreach ( $args as $name => $value ) {
1430 $s .= "\"$name\":\"" .
1431 str_replace( '"', '\\"', $value->__toString() ) . '"';
1438 * Returns true if there are no arguments in this frame
1442 function isEmpty() {
1443 return !count( $this->numberedArgs
) && !count( $this->namedArgs
);
1449 function getArguments() {
1450 $arguments = array();
1451 foreach ( array_merge(
1452 array_keys( $this->numberedArgs
),
1453 array_keys( $this->namedArgs
) ) as $key ) {
1454 $arguments[$key] = $this->getArgument( $key );
1462 function getNumberedArguments() {
1463 $arguments = array();
1464 foreach ( array_keys( $this->numberedArgs
) as $key ) {
1465 $arguments[$key] = $this->getArgument( $key );
1473 function getNamedArguments() {
1474 $arguments = array();
1475 foreach ( array_keys( $this->namedArgs
) as $key ) {
1476 $arguments[$key] = $this->getArgument( $key );
1483 * @return array|bool
1485 function getNumberedArgument( $index ) {
1486 if ( !isset( $this->numberedArgs
[$index] ) ) {
1489 if ( !isset( $this->numberedExpansionCache
[$index] ) ) {
1490 # No trimming for unnamed arguments
1491 $this->numberedExpansionCache
[$index] = $this->parent
->expand(
1492 $this->numberedArgs
[$index],
1493 PPFrame
::STRIP_COMMENTS
1496 return $this->numberedExpansionCache
[$index];
1500 * @param string $name
1503 function getNamedArgument( $name ) {
1504 if ( !isset( $this->namedArgs
[$name] ) ) {
1507 if ( !isset( $this->namedExpansionCache
[$name] ) ) {
1508 # Trim named arguments post-expand, for backwards compatibility
1509 $this->namedExpansionCache
[$name] = trim(
1510 $this->parent
->expand( $this->namedArgs
[$name], PPFrame
::STRIP_COMMENTS
) );
1512 return $this->namedExpansionCache
[$name];
1516 * @param string $name
1517 * @return array|bool
1519 function getArgument( $name ) {
1520 $text = $this->getNumberedArgument( $name );
1521 if ( $text === false ) {
1522 $text = $this->getNamedArgument( $name );
1528 * Return true if the frame is a template frame
1532 function isTemplate() {
1538 * Expansion frame with custom arguments
1541 class PPCustomFrame_Hash
extends PPFrame_Hash
{
1545 function __construct( $preprocessor, $args ) {
1546 parent
::__construct( $preprocessor );
1547 $this->args
= $args;
1550 function __toString() {
1553 foreach ( $this->args
as $name => $value ) {
1559 $s .= "\"$name\":\"" .
1560 str_replace( '"', '\\"', $value->__toString() ) . '"';
1569 function isEmpty() {
1570 return !count( $this->args
);
1577 function getArgument( $index ) {
1578 if ( !isset( $this->args
[$index] ) ) {
1581 return $this->args
[$index];
1584 function getArguments() {
1592 class PPNode_Hash_Tree
implements PPNode
{
1599 public $nextSibling;
1601 function __construct( $name ) {
1602 $this->name
= $name;
1603 $this->firstChild
= $this->lastChild
= $this->nextSibling
= false;
1606 function __toString() {
1609 for ( $node = $this->firstChild
; $node; $node = $node->nextSibling
) {
1610 if ( $node instanceof PPNode_Hash_Attr
) {
1611 $attribs .= ' ' . $node->name
. '="' . htmlspecialchars( $node->value
) . '"';
1613 $inner .= $node->__toString();
1616 if ( $inner === '' ) {
1617 return "<{$this->name}$attribs/>";
1619 return "<{$this->name}$attribs>$inner</{$this->name}>";
1624 * @param string $name
1625 * @param string $text
1626 * @return PPNode_Hash_Tree
1628 static function newWithText( $name, $text ) {
1629 $obj = new self( $name );
1630 $obj->addChild( new PPNode_Hash_Text( $text ) );
1634 function addChild( $node ) {
1635 if ( $this->lastChild
=== false ) {
1636 $this->firstChild
= $this->lastChild
= $node;
1638 $this->lastChild
->nextSibling
= $node;
1639 $this->lastChild
= $node;
1644 * @return PPNode_Hash_Array
1646 function getChildren() {
1647 $children = array();
1648 for ( $child = $this->firstChild
; $child; $child = $child->nextSibling
) {
1649 $children[] = $child;
1651 return new PPNode_Hash_Array( $children );
1654 function getFirstChild() {
1655 return $this->firstChild
;
1658 function getNextSibling() {
1659 return $this->nextSibling
;
1662 function getChildrenOfType( $name ) {
1663 $children = array();
1664 for ( $child = $this->firstChild
; $child; $child = $child->nextSibling
) {
1665 if ( isset( $child->name
) && $child->name
=== $name ) {
1666 $children[] = $child;
1675 function getLength() {
1683 function item( $i ) {
1690 function getName() {
1695 * Split a "<part>" node into an associative array containing:
1696 * - name PPNode name
1697 * - index String index
1698 * - value PPNode value
1700 * @throws MWException
1703 function splitArg() {
1705 for ( $child = $this->firstChild
; $child; $child = $child->nextSibling
) {
1706 if ( !isset( $child->name
) ) {
1709 if ( $child->name
=== 'name' ) {
1710 $bits['name'] = $child;
1711 if ( $child->firstChild
instanceof PPNode_Hash_Attr
1712 && $child->firstChild
->name
=== 'index'
1714 $bits['index'] = $child->firstChild
->value
;
1716 } elseif ( $child->name
=== 'value' ) {
1717 $bits['value'] = $child;
1721 if ( !isset( $bits['name'] ) ) {
1722 throw new MWException( 'Invalid brace node passed to ' . __METHOD__
);
1724 if ( !isset( $bits['index'] ) ) {
1725 $bits['index'] = '';
1731 * Split an "<ext>" node into an associative array containing name, attr, inner and close
1732 * All values in the resulting array are PPNodes. Inner and close are optional.
1734 * @throws MWException
1737 function splitExt() {
1739 for ( $child = $this->firstChild
; $child; $child = $child->nextSibling
) {
1740 if ( !isset( $child->name
) ) {
1743 if ( $child->name
== 'name' ) {
1744 $bits['name'] = $child;
1745 } elseif ( $child->name
== 'attr' ) {
1746 $bits['attr'] = $child;
1747 } elseif ( $child->name
== 'inner' ) {
1748 $bits['inner'] = $child;
1749 } elseif ( $child->name
== 'close' ) {
1750 $bits['close'] = $child;
1753 if ( !isset( $bits['name'] ) ) {
1754 throw new MWException( 'Invalid ext node passed to ' . __METHOD__
);
1760 * Split an "<h>" node
1762 * @throws MWException
1765 function splitHeading() {
1766 if ( $this->name
!== 'h' ) {
1767 throw new MWException( 'Invalid h node passed to ' . __METHOD__
);
1770 for ( $child = $this->firstChild
; $child; $child = $child->nextSibling
) {
1771 if ( !isset( $child->name
) ) {
1774 if ( $child->name
== 'i' ) {
1775 $bits['i'] = $child->value
;
1776 } elseif ( $child->name
== 'level' ) {
1777 $bits['level'] = $child->value
;
1780 if ( !isset( $bits['i'] ) ) {
1781 throw new MWException( 'Invalid h node passed to ' . __METHOD__
);
1787 * Split a "<template>" or "<tplarg>" node
1789 * @throws MWException
1792 function splitTemplate() {
1794 $bits = array( 'lineStart' => '' );
1795 for ( $child = $this->firstChild
; $child; $child = $child->nextSibling
) {
1796 if ( !isset( $child->name
) ) {
1799 if ( $child->name
== 'title' ) {
1800 $bits['title'] = $child;
1802 if ( $child->name
== 'part' ) {
1805 if ( $child->name
== 'lineStart' ) {
1806 $bits['lineStart'] = '1';
1809 if ( !isset( $bits['title'] ) ) {
1810 throw new MWException( 'Invalid node passed to ' . __METHOD__
);
1812 $bits['parts'] = new PPNode_Hash_Array( $parts );
1820 class PPNode_Hash_Text
implements PPNode
{
1823 public $nextSibling;
1825 function __construct( $value ) {
1826 if ( is_object( $value ) ) {
1827 throw new MWException( __CLASS__
. ' given object instead of string' );
1829 $this->value
= $value;
1832 function __toString() {
1833 return htmlspecialchars( $this->value
);
1836 function getNextSibling() {
1837 return $this->nextSibling
;
1840 function getChildren() {
1844 function getFirstChild() {
1848 function getChildrenOfType( $name ) {
1852 function getLength() {
1856 function item( $i ) {
1860 function getName() {
1864 function splitArg() {
1865 throw new MWException( __METHOD__
. ': not supported' );
1868 function splitExt() {
1869 throw new MWException( __METHOD__
. ': not supported' );
1872 function splitHeading() {
1873 throw new MWException( __METHOD__
. ': not supported' );
1880 class PPNode_Hash_Array
implements PPNode
{
1883 public $nextSibling;
1885 function __construct( $value ) {
1886 $this->value
= $value;
1889 function __toString() {
1890 return var_export( $this, true );
1893 function getLength() {
1894 return count( $this->value
);
1897 function item( $i ) {
1898 return $this->value
[$i];
1901 function getName() {
1905 function getNextSibling() {
1906 return $this->nextSibling
;
1909 function getChildren() {
1913 function getFirstChild() {
1917 function getChildrenOfType( $name ) {
1921 function splitArg() {
1922 throw new MWException( __METHOD__
. ': not supported' );
1925 function splitExt() {
1926 throw new MWException( __METHOD__
. ': not supported' );
1929 function splitHeading() {
1930 throw new MWException( __METHOD__
. ': not supported' );
1937 class PPNode_Hash_Attr
implements PPNode
{
1944 public $nextSibling;
1946 function __construct( $name, $value ) {
1947 $this->name
= $name;
1948 $this->value
= $value;
1951 function __toString() {
1952 return "<@{$this->name}>" . htmlspecialchars( $this->value
) . "</@{$this->name}>";
1955 function getName() {
1959 function getNextSibling() {
1960 return $this->nextSibling
;
1963 function getChildren() {
1967 function getFirstChild() {
1971 function getChildrenOfType( $name ) {
1975 function getLength() {
1979 function item( $i ) {
1983 function splitArg() {
1984 throw new MWException( __METHOD__
. ': not supported' );
1987 function splitExt() {
1988 throw new MWException( __METHOD__
. ': not supported' );
1991 function splitHeading() {
1992 throw new MWException( __METHOD__
. ': not supported' );