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
{
36 const CACHE_VERSION
= 1;
38 function __construct( $parser ) {
39 $this->parser
= $parser;
43 * @return PPFrame_Hash
46 return new PPFrame_Hash( $this );
51 * @return PPCustomFrame_Hash
53 function newCustomFrame( $args ) {
54 return new PPCustomFrame_Hash( $this, $args );
58 * @param array $values
59 * @return PPNode_Hash_Array
61 function newPartNodeArray( $values ) {
64 foreach ( $values as $k => $val ) {
65 $partNode = new PPNode_Hash_Tree( 'part' );
66 $nameNode = new PPNode_Hash_Tree( 'name' );
69 $nameNode->addChild( new PPNode_Hash_Attr( 'index', $k ) );
70 $partNode->addChild( $nameNode );
72 $nameNode->addChild( new PPNode_Hash_Text( $k ) );
73 $partNode->addChild( $nameNode );
74 $partNode->addChild( new PPNode_Hash_Text( '=' ) );
77 $valueNode = new PPNode_Hash_Tree( 'value' );
78 $valueNode->addChild( new PPNode_Hash_Text( $val ) );
79 $partNode->addChild( $valueNode );
84 $node = new PPNode_Hash_Array( $list );
89 * Preprocess some wikitext and return the document tree.
90 * This is the ghost of Parser::replace_variables().
92 * @param string $text The text to parse
93 * @param int $flags Bitwise combination of:
94 * Parser::PTD_FOR_INCLUSION Handle "<noinclude>" and "<includeonly>" as if the text is being
95 * included. Default is to assume a direct page view.
97 * The generated DOM tree must depend only on the input text and the flags.
98 * The DOM tree must be the same in OT_HTML and OT_WIKI mode, to avoid a regression of bug 4899.
100 * Any flag added to the $flags parameter here, or any other parameter liable to cause a
101 * change in the DOM tree for a given text, must be passed through the section identifier
102 * in the section edit link and thus back to extractSections().
104 * The output of this function is currently only cached in process memory, but a persistent
105 * cache may be implemented at a later date which takes further advantage of these strict
106 * dependency requirements.
108 * @throws MWException
109 * @return PPNode_Hash_Tree
111 function preprocessToObj( $text, $flags = 0 ) {
112 wfProfileIn( __METHOD__
);
115 global $wgMemc, $wgPreprocessorCacheThreshold;
117 $cacheable = $wgPreprocessorCacheThreshold !== false && 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 && strpos( $text, '</onlyinclude>' ) !== false ) {
165 $enableOnlyinclude = true;
168 $ignoredTags = array( 'noinclude', '/noinclude', 'onlyinclude', '/onlyinclude' );
169 $ignoredElements = array( 'includeonly' );
170 $xmlishElements[] = 'includeonly';
172 $xmlishRegex = implode( '|', array_merge( $xmlishElements, $ignoredTags ) );
174 // Use "A" modifier (anchored) instead of "^", because ^ doesn't work with an offset
175 $elementsRegex = "~($xmlishRegex)(?:\s|\/>|>)|(!--)~iA";
177 $stack = new PPDStack_Hash
;
179 $searchBase = "[{<\n";
180 $revText = strrev( $text ); // For fast reverse searches
181 $lengthText = strlen( $text );
183 $i = 0; # Input pointer, starts out pointing to a pseudo-newline before the start
184 $accum =& $stack->getAccum(); # Current accumulator
185 $findEquals = false; # True to find equals signs in arguments
186 $findPipe = false; # True to take notice of pipe characters
188 $inHeading = false; # True if $i is inside a possible heading
189 $noMoreGT = false; # True if there are no more greater-than (>) signs right of $i
190 $findOnlyinclude = $enableOnlyinclude; # True to ignore all input up to the next <onlyinclude>
191 $fakeLineStart = true; # Do a line-start run without outputting an LF character
196 if ( $findOnlyinclude ) {
197 // Ignore all input up to the next <onlyinclude>
198 $startPos = strpos( $text, '<onlyinclude>', $i );
199 if ( $startPos === false ) {
200 // Ignored section runs to the end
201 $accum->addNodeWithText( 'ignore', substr( $text, $i ) );
204 $tagEndPos = $startPos +
strlen( '<onlyinclude>' ); // past-the-end
205 $accum->addNodeWithText( 'ignore', substr( $text, $i, $tagEndPos - $i ) );
207 $findOnlyinclude = false;
210 if ( $fakeLineStart ) {
211 $found = 'line-start';
214 # Find next opening brace, closing brace or pipe
215 $search = $searchBase;
216 if ( $stack->top
=== false ) {
217 $currentClosing = '';
219 $currentClosing = $stack->top
->close
;
220 $search .= $currentClosing;
226 // First equals will be for the template
230 # Output literal section, advance input counter
231 $literalLength = strcspn( $text, $search, $i );
232 if ( $literalLength > 0 ) {
233 $accum->addLiteral( substr( $text, $i, $literalLength ) );
234 $i +
= $literalLength;
236 if ( $i >= $lengthText ) {
237 if ( $currentClosing == "\n" ) {
238 // Do a past-the-end run to finish off the heading
246 $curChar = $text[$i];
247 if ( $curChar == '|' ) {
249 } elseif ( $curChar == '=' ) {
251 } elseif ( $curChar == '<' ) {
253 } elseif ( $curChar == "\n" ) {
257 $found = 'line-start';
259 } elseif ( $curChar == $currentClosing ) {
261 } elseif ( isset( $rules[$curChar] ) ) {
263 $rule = $rules[$curChar];
265 # Some versions of PHP have a strcspn which stops on null characters
266 # Ignore and continue
273 if ( $found == 'angle' ) {
275 // Handle </onlyinclude>
276 if ( $enableOnlyinclude && substr( $text, $i, strlen( '</onlyinclude>' ) ) == '</onlyinclude>' ) {
277 $findOnlyinclude = true;
281 // Determine element name
282 if ( !preg_match( $elementsRegex, $text, $matches, 0, $i +
1 ) ) {
283 // Element name missing or not listed
284 $accum->addLiteral( '<' );
289 if ( isset( $matches[2] ) && $matches[2] == '!--' ) {
291 // To avoid leaving blank lines, when a sequence of
292 // space-separated comments is both preceded and followed by
293 // a newline (ignoring spaces), then
294 // trim leading and trailing spaces and the trailing newline.
297 $endPos = strpos( $text, '-->', $i +
4 );
298 if ( $endPos === false ) {
299 // Unclosed comment in input, runs to end
300 $inner = substr( $text, $i );
301 $accum->addNodeWithText( 'comment', $inner );
304 // Search backwards for leading whitespace
305 $wsStart = $i ?
( $i - strspn( $revText, " \t", $lengthText - $i ) ) : 0;
307 // Search forwards for trailing whitespace
308 // $wsEnd will be the position of the last space (or the '>' if there's none)
309 $wsEnd = $endPos +
2 +
strspn( $text, " \t", $endPos +
3 );
311 // Keep looking forward as long as we're finding more
313 $comments = array( array( $wsStart, $wsEnd ) );
314 while ( substr( $text, $wsEnd +
1, 4 ) == '<!--' ) {
315 $c = strpos( $text, '-->', $wsEnd +
4 );
316 if ( $c === false ) {
319 $c = $c +
2 +
strspn( $text, " \t", $c +
3 );
320 $comments[] = array( $wsEnd +
1, $c );
324 // Eat the line if possible
325 // TODO: This could theoretically be done if $wsStart == 0, i.e. for comments at
326 // the overall start. That's not how Sanitizer::removeHTMLcomments() did it, but
327 // it's a possible beneficial b/c break.
328 if ( $wsStart > 0 && substr( $text, $wsStart - 1, 1 ) == "\n"
329 && substr( $text, $wsEnd +
1, 1 ) == "\n"
331 // Remove leading whitespace from the end of the accumulator
332 // Sanity check first though
333 $wsLength = $i - $wsStart;
335 && $accum->lastNode
instanceof PPNode_Hash_Text
336 && strspn( $accum->lastNode
->value
, " \t", -$wsLength ) === $wsLength
338 $accum->lastNode
->value
= substr( $accum->lastNode
->value
, 0, -$wsLength );
341 // Dump all but the last comment to the accumulator
342 foreach ( $comments as $j => $com ) {
344 $endPos = $com[1] +
1;
345 if ( $j == ( count( $comments ) - 1 ) ) {
348 $inner = substr( $text, $startPos, $endPos - $startPos );
349 $accum->addNodeWithText( 'comment', $inner );
352 // Do a line-start run next time to look for headings after the comment
353 $fakeLineStart = true;
355 // No line to eat, just take the comment itself
361 $part = $stack->top
->getCurrentPart();
362 if ( !( isset( $part->commentEnd
) && $part->commentEnd
== $wsStart - 1 ) ) {
363 $part->visualEnd
= $wsStart;
365 // Else comments abutting, no change in visual end
366 $part->commentEnd
= $endPos;
369 $inner = substr( $text, $startPos, $endPos - $startPos +
1 );
370 $accum->addNodeWithText( 'comment', $inner );
375 $lowerName = strtolower( $name );
376 $attrStart = $i +
strlen( $name ) +
1;
379 $tagEndPos = $noMoreGT ?
false : strpos( $text, '>', $attrStart );
380 if ( $tagEndPos === false ) {
381 // Infinite backtrack
382 // Disable tag search to prevent worst-case O(N^2) performance
384 $accum->addLiteral( '<' );
389 // Handle ignored tags
390 if ( in_array( $lowerName, $ignoredTags ) ) {
391 $accum->addNodeWithText( 'ignore', substr( $text, $i, $tagEndPos - $i +
1 ) );
397 if ( $text[$tagEndPos - 1] == '/' ) {
399 $attrEnd = $tagEndPos - 1;
404 $attrEnd = $tagEndPos;
406 if ( preg_match( "/<\/" . preg_quote( $name, '/' ) . "\s*>/i",
407 $text, $matches, PREG_OFFSET_CAPTURE
, $tagEndPos +
1 )
409 $inner = substr( $text, $tagEndPos +
1, $matches[0][1] - $tagEndPos - 1 );
410 $i = $matches[0][1] +
strlen( $matches[0][0] );
411 $close = $matches[0][0];
413 // No end tag -- let it run out to the end of the text.
414 $inner = substr( $text, $tagEndPos +
1 );
419 // <includeonly> and <noinclude> just become <ignore> tags
420 if ( in_array( $lowerName, $ignoredElements ) ) {
421 $accum->addNodeWithText( 'ignore', substr( $text, $tagStartPos, $i - $tagStartPos ) );
425 if ( $attrEnd <= $attrStart ) {
428 // Note that the attr element contains the whitespace between name and attribute,
429 // this is necessary for precise reconstruction during pre-save transform.
430 $attr = substr( $text, $attrStart, $attrEnd - $attrStart );
433 $extNode = new PPNode_Hash_Tree( 'ext' );
434 $extNode->addChild( PPNode_Hash_Tree
::newWithText( 'name', $name ) );
435 $extNode->addChild( PPNode_Hash_Tree
::newWithText( 'attr', $attr ) );
436 if ( $inner !== null ) {
437 $extNode->addChild( PPNode_Hash_Tree
::newWithText( 'inner', $inner ) );
439 if ( $close !== null ) {
440 $extNode->addChild( PPNode_Hash_Tree
::newWithText( 'close', $close ) );
442 $accum->addNode( $extNode );
443 } elseif ( $found == 'line-start' ) {
444 // Is this the start of a heading?
445 // Line break belongs before the heading element in any case
446 if ( $fakeLineStart ) {
447 $fakeLineStart = false;
449 $accum->addLiteral( $curChar );
453 $count = strspn( $text, '=', $i, 6 );
454 if ( $count == 1 && $findEquals ) {
455 // DWIM: This looks kind of like a name/value separator
456 // Let's let the equals handler have it and break the potential heading
457 // This is heuristic, but AFAICT the methods for completely correct disambiguation are very complex.
458 } elseif ( $count > 0 ) {
462 'parts' => array( new PPDPart_Hash( str_repeat( '=', $count ) ) ),
465 $stack->push( $piece );
466 $accum =& $stack->getAccum();
467 extract( $stack->getFlags() );
470 } elseif ( $found == 'line-end' ) {
471 $piece = $stack->top
;
472 // A heading must be open, otherwise \n wouldn't have been in the search list
473 assert( '$piece->open == "\n"' );
474 $part = $piece->getCurrentPart();
475 // Search back through the input to see if it has a proper close
476 // Do this using the reversed string since the other solutions (end anchor, etc.) are inefficient
477 $wsLength = strspn( $revText, " \t", $lengthText - $i );
478 $searchStart = $i - $wsLength;
479 if ( isset( $part->commentEnd
) && $searchStart - 1 == $part->commentEnd
) {
480 // Comment found at line end
481 // Search for equals signs before the comment
482 $searchStart = $part->visualEnd
;
483 $searchStart -= strspn( $revText, " \t", $lengthText - $searchStart );
485 $count = $piece->count
;
486 $equalsLength = strspn( $revText, '=', $lengthText - $searchStart );
487 if ( $equalsLength > 0 ) {
488 if ( $searchStart - $equalsLength == $piece->startPos
) {
489 // This is just a single string of equals signs on its own line
490 // Replicate the doHeadings behavior /={count}(.+)={count}/
491 // First find out how many equals signs there really are (don't stop at 6)
492 $count = $equalsLength;
496 $count = min( 6, intval( ( $count - 1 ) / 2 ) );
499 $count = min( $equalsLength, $count );
502 // Normal match, output <h>
503 $element = new PPNode_Hash_Tree( 'possible-h' );
504 $element->addChild( new PPNode_Hash_Attr( 'level', $count ) );
505 $element->addChild( new PPNode_Hash_Attr( 'i', $headingIndex++
) );
506 $element->lastChild
->nextSibling
= $accum->firstNode
;
507 $element->lastChild
= $accum->lastNode
;
509 // Single equals sign on its own line, count=0
513 // No match, no <h>, just pass down the inner text
518 $accum =& $stack->getAccum();
519 extract( $stack->getFlags() );
521 // Append the result to the enclosing accumulator
522 if ( $element instanceof PPNode
) {
523 $accum->addNode( $element );
525 $accum->addAccum( $element );
527 // Note that we do NOT increment the input pointer.
528 // This is because the closing linebreak could be the opening linebreak of
529 // another heading. Infinite loops are avoided because the next iteration MUST
530 // hit the heading open case above, which unconditionally increments the
532 } elseif ( $found == 'open' ) {
533 # count opening brace characters
534 $count = strspn( $text, $curChar, $i );
536 # we need to add to stack only if opening brace count is enough for one of the rules
537 if ( $count >= $rule['min'] ) {
538 # Add it to the stack
541 'close' => $rule['end'],
543 'lineStart' => ( $i > 0 && $text[$i - 1] == "\n" ),
546 $stack->push( $piece );
547 $accum =& $stack->getAccum();
548 extract( $stack->getFlags() );
550 # Add literal brace(s)
551 $accum->addLiteral( str_repeat( $curChar, $count ) );
554 } elseif ( $found == 'close' ) {
555 $piece = $stack->top
;
556 # lets check if there are enough characters for closing brace
557 $maxCount = $piece->count
;
558 $count = strspn( $text, $curChar, $i, $maxCount );
560 # check for maximum matching characters (if there are 5 closing
561 # characters, we will probably need only 3 - depending on the rules)
562 $rule = $rules[$piece->open
];
563 if ( $count > $rule['max'] ) {
564 # The specified maximum exists in the callback array, unless the caller
566 $matchingCount = $rule['max'];
568 # Count is less than the maximum
569 # Skip any gaps in the callback array to find the true largest match
570 # Need to use array_key_exists not isset because the callback can be null
571 $matchingCount = $count;
572 while ( $matchingCount > 0 && !array_key_exists( $matchingCount, $rule['names'] ) ) {
577 if ( $matchingCount <= 0 ) {
578 # No matching element found in callback array
579 # Output a literal closing brace and continue
580 $accum->addLiteral( str_repeat( $curChar, $count ) );
584 $name = $rule['names'][$matchingCount];
585 if ( $name === null ) {
586 // No element, just literal text
587 $element = $piece->breakSyntax( $matchingCount );
588 $element->addLiteral( str_repeat( $rule['end'], $matchingCount ) );
591 # Note: $parts is already XML, does not need to be encoded further
592 $parts = $piece->parts
;
593 $titleAccum = $parts[0]->out
;
596 $element = new PPNode_Hash_Tree( $name );
598 # The invocation is at the start of the line if lineStart is set in
599 # the stack, and all opening brackets are used up.
600 if ( $maxCount == $matchingCount && !empty( $piece->lineStart
) ) {
601 $element->addChild( new PPNode_Hash_Attr( 'lineStart', 1 ) );
603 $titleNode = new PPNode_Hash_Tree( 'title' );
604 $titleNode->firstChild
= $titleAccum->firstNode
;
605 $titleNode->lastChild
= $titleAccum->lastNode
;
606 $element->addChild( $titleNode );
608 foreach ( $parts as $part ) {
609 if ( isset( $part->eqpos
) ) {
612 for ( $node = $part->out
->firstNode
; $node; $node = $node->nextSibling
) {
613 if ( $node === $part->eqpos
) {
620 wfProfileOut( __METHOD__
. '-cache-miss' );
621 wfProfileOut( __METHOD__
. '-cacheable' );
623 wfProfileOut( __METHOD__
);
624 throw new MWException( __METHOD__
. ': eqpos not found' );
626 if ( $node->name
!== 'equals' ) {
628 wfProfileOut( __METHOD__
. '-cache-miss' );
629 wfProfileOut( __METHOD__
. '-cacheable' );
631 wfProfileOut( __METHOD__
);
632 throw new MWException( __METHOD__
. ': eqpos is not equals' );
636 // Construct name node
637 $nameNode = new PPNode_Hash_Tree( 'name' );
638 if ( $lastNode !== false ) {
639 $lastNode->nextSibling
= false;
640 $nameNode->firstChild
= $part->out
->firstNode
;
641 $nameNode->lastChild
= $lastNode;
644 // Construct value node
645 $valueNode = new PPNode_Hash_Tree( 'value' );
646 if ( $equalsNode->nextSibling
!== false ) {
647 $valueNode->firstChild
= $equalsNode->nextSibling
;
648 $valueNode->lastChild
= $part->out
->lastNode
;
650 $partNode = new PPNode_Hash_Tree( 'part' );
651 $partNode->addChild( $nameNode );
652 $partNode->addChild( $equalsNode->firstChild
);
653 $partNode->addChild( $valueNode );
654 $element->addChild( $partNode );
656 $partNode = new PPNode_Hash_Tree( 'part' );
657 $nameNode = new PPNode_Hash_Tree( 'name' );
658 $nameNode->addChild( new PPNode_Hash_Attr( 'index', $argIndex++
) );
659 $valueNode = new PPNode_Hash_Tree( 'value' );
660 $valueNode->firstChild
= $part->out
->firstNode
;
661 $valueNode->lastChild
= $part->out
->lastNode
;
662 $partNode->addChild( $nameNode );
663 $partNode->addChild( $valueNode );
664 $element->addChild( $partNode );
669 # Advance input pointer
670 $i +
= $matchingCount;
674 $accum =& $stack->getAccum();
676 # Re-add the old stack element if it still has unmatched opening characters remaining
677 if ( $matchingCount < $piece->count
) {
678 $piece->parts
= array( new PPDPart_Hash
);
679 $piece->count
-= $matchingCount;
680 # do we still qualify for any callback with remaining count?
681 $min = $rules[$piece->open
]['min'];
682 if ( $piece->count
>= $min ) {
683 $stack->push( $piece );
684 $accum =& $stack->getAccum();
686 $accum->addLiteral( str_repeat( $piece->open
, $piece->count
) );
690 extract( $stack->getFlags() );
692 # Add XML element to the enclosing accumulator
693 if ( $element instanceof PPNode
) {
694 $accum->addNode( $element );
696 $accum->addAccum( $element );
698 } elseif ( $found == 'pipe' ) {
699 $findEquals = true; // shortcut for getFlags()
701 $accum =& $stack->getAccum();
703 } elseif ( $found == 'equals' ) {
704 $findEquals = false; // shortcut for getFlags()
705 $accum->addNodeWithText( 'equals', '=' );
706 $stack->getCurrentPart()->eqpos
= $accum->lastNode
;
711 # Output any remaining unclosed brackets
712 foreach ( $stack->stack
as $piece ) {
713 $stack->rootAccum
->addAccum( $piece->breakSyntax() );
716 # Enable top-level headings
717 for ( $node = $stack->rootAccum
->firstNode
; $node; $node = $node->nextSibling
) {
718 if ( isset( $node->name
) && $node->name
=== 'possible-h' ) {
723 $rootNode = new PPNode_Hash_Tree( 'root' );
724 $rootNode->firstChild
= $stack->rootAccum
->firstNode
;
725 $rootNode->lastChild
= $stack->rootAccum
->lastNode
;
729 $cacheValue = sprintf( "%08d", self
::CACHE_VERSION
) . serialize( $rootNode );
730 $wgMemc->set( $cacheKey, $cacheValue, 86400 );
731 wfProfileOut( __METHOD__
. '-cache-miss' );
732 wfProfileOut( __METHOD__
. '-cacheable' );
733 wfDebugLog( "Preprocessor", "Saved preprocessor Hash to memcached (key $cacheKey)" );
736 wfProfileOut( __METHOD__
);
742 * Stack class to help Preprocessor::preprocessToObj()
745 class PPDStack_Hash
extends PPDStack
{
746 function __construct() {
747 $this->elementClass
= 'PPDStackElement_Hash';
748 parent
::__construct();
749 $this->rootAccum
= new PPDAccum_Hash
;
756 class PPDStackElement_Hash
extends PPDStackElement
{
757 function __construct( $data = array() ) {
758 $this->partClass
= 'PPDPart_Hash';
759 parent
::__construct( $data );
763 * Get the accumulator that would result if the close is not found.
765 * @param int|bool $openingCount
766 * @return PPDAccum_Hash
768 function breakSyntax( $openingCount = false ) {
769 if ( $this->open
== "\n" ) {
770 $accum = $this->parts
[0]->out
;
772 if ( $openingCount === false ) {
773 $openingCount = $this->count
;
775 $accum = new PPDAccum_Hash
;
776 $accum->addLiteral( str_repeat( $this->open
, $openingCount ) );
778 foreach ( $this->parts
as $part ) {
782 $accum->addLiteral( '|' );
784 $accum->addAccum( $part->out
);
794 class PPDPart_Hash
extends PPDPart
{
795 function __construct( $out = '' ) {
796 $accum = new PPDAccum_Hash
;
798 $accum->addLiteral( $out );
800 parent
::__construct( $accum );
807 class PPDAccum_Hash
{
808 var $firstNode, $lastNode;
810 function __construct() {
811 $this->firstNode
= $this->lastNode
= false;
815 * Append a string literal
818 function addLiteral( $s ) {
819 if ( $this->lastNode
=== false ) {
820 $this->firstNode
= $this->lastNode
= new PPNode_Hash_Text( $s );
821 } elseif ( $this->lastNode
instanceof PPNode_Hash_Text
) {
822 $this->lastNode
->value
.= $s;
824 $this->lastNode
->nextSibling
= new PPNode_Hash_Text( $s );
825 $this->lastNode
= $this->lastNode
->nextSibling
;
831 * @param PPNode $node
833 function addNode( PPNode
$node ) {
834 if ( $this->lastNode
=== false ) {
835 $this->firstNode
= $this->lastNode
= $node;
837 $this->lastNode
->nextSibling
= $node;
838 $this->lastNode
= $node;
843 * Append a tree node with text contents
844 * @param string $name
845 * @param string $value
847 function addNodeWithText( $name, $value ) {
848 $node = PPNode_Hash_Tree
::newWithText( $name, $value );
849 $this->addNode( $node );
853 * Append a PPAccum_Hash
854 * Takes over ownership of the nodes in the source argument. These nodes may
855 * subsequently be modified, especially nextSibling.
856 * @param PPAccum_Hash $accum
858 function addAccum( $accum ) {
859 if ( $accum->lastNode
=== false ) {
861 } elseif ( $this->lastNode
=== false ) {
862 $this->firstNode
= $accum->firstNode
;
863 $this->lastNode
= $accum->lastNode
;
865 $this->lastNode
->nextSibling
= $accum->firstNode
;
866 $this->lastNode
= $accum->lastNode
;
872 * An expansion frame, used as a context to expand the result of preprocessToObj()
875 class PPFrame_Hash
implements PPFrame
{
894 * Hashtable listing templates which are disallowed for expansion in this frame,
895 * having been encountered previously in parent frames.
900 * Recursion depth of this frame, top = 0
901 * Note that this is NOT the same as expansion depth in expand()
906 * Construct a new preprocessor frame.
907 * @param Preprocessor $preprocessor The parent preprocessor
909 function __construct( $preprocessor ) {
910 $this->preprocessor
= $preprocessor;
911 $this->parser
= $preprocessor->parser
;
912 $this->title
= $this->parser
->mTitle
;
913 $this->titleCache
= array( $this->title ?
$this->title
->getPrefixedDBkey() : false );
914 $this->loopCheckHash
= array();
919 * Create a new child frame
920 * $args is optionally a multi-root PPNode or array containing the template arguments
922 * @param array|bool|PPNode_Hash_Array $args
923 * @param Title|bool $title
924 * @param int $indexOffset
925 * @throws MWException
926 * @return PPTemplateFrame_Hash
928 function newChild( $args = false, $title = false, $indexOffset = 0 ) {
929 $namedArgs = array();
930 $numberedArgs = array();
931 if ( $title === false ) {
932 $title = $this->title
;
934 if ( $args !== false ) {
935 if ( $args instanceof PPNode_Hash_Array
) {
936 $args = $args->value
;
937 } elseif ( !is_array( $args ) ) {
938 throw new MWException( __METHOD__
. ': $args must be array or PPNode_Hash_Array' );
940 foreach ( $args as $arg ) {
941 $bits = $arg->splitArg();
942 if ( $bits['index'] !== '' ) {
943 // Numbered parameter
944 $index = $bits['index'] - $indexOffset;
945 $numberedArgs[$index] = $bits['value'];
946 unset( $namedArgs[$index] );
949 $name = trim( $this->expand( $bits['name'], PPFrame
::STRIP_COMMENTS
) );
950 $namedArgs[$name] = $bits['value'];
951 unset( $numberedArgs[$name] );
955 return new PPTemplateFrame_Hash( $this->preprocessor
, $this, $numberedArgs, $namedArgs, $title );
959 * @throws MWException
960 * @param string|PPNode$root
964 function expand( $root, $flags = 0 ) {
965 static $expansionDepth = 0;
966 if ( is_string( $root ) ) {
970 if ( ++
$this->parser
->mPPNodeCount
> $this->parser
->mOptions
->getMaxPPNodeCount() ) {
971 $this->parser
->limitationWarn( 'node-count-exceeded',
972 $this->parser
->mPPNodeCount
,
973 $this->parser
->mOptions
->getMaxPPNodeCount()
975 return '<span class="error">Node-count limit exceeded</span>';
977 if ( $expansionDepth > $this->parser
->mOptions
->getMaxPPExpandDepth() ) {
978 $this->parser
->limitationWarn( 'expansion-depth-exceeded',
980 $this->parser
->mOptions
->getMaxPPExpandDepth()
982 return '<span class="error">Expansion depth limit exceeded</span>';
985 if ( $expansionDepth > $this->parser
->mHighestExpansionDepth
) {
986 $this->parser
->mHighestExpansionDepth
= $expansionDepth;
989 $outStack = array( '', '' );
990 $iteratorStack = array( false, $root );
991 $indexStack = array( 0, 0 );
993 while ( count( $iteratorStack ) > 1 ) {
994 $level = count( $outStack ) - 1;
995 $iteratorNode =& $iteratorStack[$level];
996 $out =& $outStack[$level];
997 $index =& $indexStack[$level];
999 if ( is_array( $iteratorNode ) ) {
1000 if ( $index >= count( $iteratorNode ) ) {
1001 // All done with this iterator
1002 $iteratorStack[$level] = false;
1003 $contextNode = false;
1005 $contextNode = $iteratorNode[$index];
1008 } elseif ( $iteratorNode instanceof PPNode_Hash_Array
) {
1009 if ( $index >= $iteratorNode->getLength() ) {
1010 // All done with this iterator
1011 $iteratorStack[$level] = false;
1012 $contextNode = false;
1014 $contextNode = $iteratorNode->item( $index );
1018 // Copy to $contextNode and then delete from iterator stack,
1019 // because this is not an iterator but we do have to execute it once
1020 $contextNode = $iteratorStack[$level];
1021 $iteratorStack[$level] = false;
1024 $newIterator = false;
1026 if ( $contextNode === false ) {
1028 } elseif ( is_string( $contextNode ) ) {
1029 $out .= $contextNode;
1030 } elseif ( is_array( $contextNode ) ||
$contextNode instanceof PPNode_Hash_Array
) {
1031 $newIterator = $contextNode;
1032 } elseif ( $contextNode instanceof PPNode_Hash_Attr
) {
1034 } elseif ( $contextNode instanceof PPNode_Hash_Text
) {
1035 $out .= $contextNode->value
;
1036 } elseif ( $contextNode instanceof PPNode_Hash_Tree
) {
1037 if ( $contextNode->name
== 'template' ) {
1038 # Double-brace expansion
1039 $bits = $contextNode->splitTemplate();
1040 if ( $flags & PPFrame
::NO_TEMPLATES
) {
1041 $newIterator = $this->virtualBracketedImplode( '{{', '|', '}}', $bits['title'], $bits['parts'] );
1043 $ret = $this->parser
->braceSubstitution( $bits, $this );
1044 if ( isset( $ret['object'] ) ) {
1045 $newIterator = $ret['object'];
1047 $out .= $ret['text'];
1050 } elseif ( $contextNode->name
== 'tplarg' ) {
1051 # Triple-brace expansion
1052 $bits = $contextNode->splitTemplate();
1053 if ( $flags & PPFrame
::NO_ARGS
) {
1054 $newIterator = $this->virtualBracketedImplode( '{{{', '|', '}}}', $bits['title'], $bits['parts'] );
1056 $ret = $this->parser
->argSubstitution( $bits, $this );
1057 if ( isset( $ret['object'] ) ) {
1058 $newIterator = $ret['object'];
1060 $out .= $ret['text'];
1063 } elseif ( $contextNode->name
== 'comment' ) {
1064 # HTML-style comment
1065 # Remove it in HTML, pre+remove and STRIP_COMMENTS modes
1066 if ( $this->parser
->ot
['html']
1067 ||
( $this->parser
->ot
['pre'] && $this->parser
->mOptions
->getRemoveComments() )
1068 ||
( $flags & PPFrame
::STRIP_COMMENTS
)
1071 } elseif ( $this->parser
->ot
['wiki'] && !( $flags & PPFrame
::RECOVER_COMMENTS
) ) {
1072 # Add a strip marker in PST mode so that pstPass2() can run some old-fashioned regexes on the result
1073 # Not in RECOVER_COMMENTS mode (extractSections) though
1074 $out .= $this->parser
->insertStripItem( $contextNode->firstChild
->value
);
1076 # Recover the literal comment in RECOVER_COMMENTS and pre+no-remove
1077 $out .= $contextNode->firstChild
->value
;
1079 } elseif ( $contextNode->name
== 'ignore' ) {
1080 # Output suppression used by <includeonly> etc.
1081 # OT_WIKI will only respect <ignore> in substed templates.
1082 # The other output types respect it unless NO_IGNORE is set.
1083 # extractSections() sets NO_IGNORE and so never respects it.
1084 if ( ( !isset( $this->parent
) && $this->parser
->ot
['wiki'] ) ||
( $flags & PPFrame
::NO_IGNORE
) ) {
1085 $out .= $contextNode->firstChild
->value
;
1089 } elseif ( $contextNode->name
== 'ext' ) {
1091 $bits = $contextNode->splitExt() +
array( 'attr' => null, 'inner' => null, 'close' => null );
1092 $out .= $this->parser
->extensionSubstitution( $bits, $this );
1093 } elseif ( $contextNode->name
== 'h' ) {
1095 if ( $this->parser
->ot
['html'] ) {
1096 # Expand immediately and insert heading index marker
1098 for ( $node = $contextNode->firstChild
; $node; $node = $node->nextSibling
) {
1099 $s .= $this->expand( $node, $flags );
1102 $bits = $contextNode->splitHeading();
1103 $titleText = $this->title
->getPrefixedDBkey();
1104 $this->parser
->mHeadings
[] = array( $titleText, $bits['i'] );
1105 $serial = count( $this->parser
->mHeadings
) - 1;
1106 $marker = "{$this->parser->mUniqPrefix}-h-$serial-" . Parser
::MARKER_SUFFIX
;
1107 $s = substr( $s, 0, $bits['level'] ) . $marker . substr( $s, $bits['level'] );
1108 $this->parser
->mStripState
->addGeneral( $marker, '' );
1111 # Expand in virtual stack
1112 $newIterator = $contextNode->getChildren();
1115 # Generic recursive expansion
1116 $newIterator = $contextNode->getChildren();
1119 throw new MWException( __METHOD__
. ': Invalid parameter type' );
1122 if ( $newIterator !== false ) {
1124 $iteratorStack[] = $newIterator;
1126 } elseif ( $iteratorStack[$level] === false ) {
1127 // Return accumulated value to parent
1128 // With tail recursion
1129 while ( $iteratorStack[$level] === false && $level > 0 ) {
1130 $outStack[$level - 1] .= $out;
1131 array_pop( $outStack );
1132 array_pop( $iteratorStack );
1133 array_pop( $indexStack );
1139 return $outStack[0];
1143 * @param string $sep
1147 function implodeWithFlags( $sep, $flags /*, ... */ ) {
1148 $args = array_slice( func_get_args(), 2 );
1152 foreach ( $args as $root ) {
1153 if ( $root instanceof PPNode_Hash_Array
) {
1154 $root = $root->value
;
1156 if ( !is_array( $root ) ) {
1157 $root = array( $root );
1159 foreach ( $root as $node ) {
1165 $s .= $this->expand( $node, $flags );
1172 * Implode with no flags specified
1173 * This previously called implodeWithFlags but has now been inlined to reduce stack depth
1174 * @param string $sep
1177 function implode( $sep /*, ... */ ) {
1178 $args = array_slice( func_get_args(), 1 );
1182 foreach ( $args as $root ) {
1183 if ( $root instanceof PPNode_Hash_Array
) {
1184 $root = $root->value
;
1186 if ( !is_array( $root ) ) {
1187 $root = array( $root );
1189 foreach ( $root as $node ) {
1195 $s .= $this->expand( $node );
1202 * Makes an object that, when expand()ed, will be the same as one obtained
1205 * @param string $sep
1206 * @return PPNode_Hash_Array
1208 function virtualImplode( $sep /*, ... */ ) {
1209 $args = array_slice( func_get_args(), 1 );
1213 foreach ( $args as $root ) {
1214 if ( $root instanceof PPNode_Hash_Array
) {
1215 $root = $root->value
;
1217 if ( !is_array( $root ) ) {
1218 $root = array( $root );
1220 foreach ( $root as $node ) {
1229 return new PPNode_Hash_Array( $out );
1233 * Virtual implode with brackets
1235 * @param string $start
1236 * @param string $sep
1237 * @param string $end
1238 * @return PPNode_Hash_Array
1240 function virtualBracketedImplode( $start, $sep, $end /*, ... */ ) {
1241 $args = array_slice( func_get_args(), 3 );
1242 $out = array( $start );
1245 foreach ( $args as $root ) {
1246 if ( $root instanceof PPNode_Hash_Array
) {
1247 $root = $root->value
;
1249 if ( !is_array( $root ) ) {
1250 $root = array( $root );
1252 foreach ( $root as $node ) {
1262 return new PPNode_Hash_Array( $out );
1265 function __toString() {
1270 * @param bool $level
1271 * @return array|bool|string
1273 function getPDBK( $level = false ) {
1274 if ( $level === false ) {
1275 return $this->title
->getPrefixedDBkey();
1277 return isset( $this->titleCache
[$level] ) ?
$this->titleCache
[$level] : false;
1284 function getArguments() {
1291 function getNumberedArguments() {
1298 function getNamedArguments() {
1303 * Returns true if there are no arguments in this frame
1307 function isEmpty() {
1312 * @param string $name
1315 function getArgument( $name ) {
1320 * Returns true if the infinite loop check is OK, false if a loop is detected
1322 * @param Title $title
1326 function loopCheck( $title ) {
1327 return !isset( $this->loopCheckHash
[$title->getPrefixedDBkey()] );
1331 * Return true if the frame is a template frame
1335 function isTemplate() {
1340 * Get a title of frame
1344 function getTitle() {
1345 return $this->title
;
1350 * Expansion frame with template arguments
1353 class PPTemplateFrame_Hash
extends PPFrame_Hash
{
1354 var $numberedArgs, $namedArgs, $parent;
1355 var $numberedExpansionCache, $namedExpansionCache;
1358 * @param Preprocessor $preprocessor
1359 * @param bool|PPFrame $parent
1360 * @param array $numberedArgs
1361 * @param array $namedArgs
1362 * @param Title $title
1364 function __construct( $preprocessor, $parent = false, $numberedArgs = array(), $namedArgs = array(), $title = false ) {
1365 parent
::__construct( $preprocessor );
1367 $this->parent
= $parent;
1368 $this->numberedArgs
= $numberedArgs;
1369 $this->namedArgs
= $namedArgs;
1370 $this->title
= $title;
1371 $pdbk = $title ?
$title->getPrefixedDBkey() : false;
1372 $this->titleCache
= $parent->titleCache
;
1373 $this->titleCache
[] = $pdbk;
1374 $this->loopCheckHash
= /*clone*/ $parent->loopCheckHash
;
1375 if ( $pdbk !== false ) {
1376 $this->loopCheckHash
[$pdbk] = true;
1378 $this->depth
= $parent->depth +
1;
1379 $this->numberedExpansionCache
= $this->namedExpansionCache
= array();
1382 function __toString() {
1385 $args = $this->numberedArgs +
$this->namedArgs
;
1386 foreach ( $args as $name => $value ) {
1392 $s .= "\"$name\":\"" .
1393 str_replace( '"', '\\"', $value->__toString() ) . '"';
1400 * Returns true if there are no arguments in this frame
1404 function isEmpty() {
1405 return !count( $this->numberedArgs
) && !count( $this->namedArgs
);
1411 function getArguments() {
1412 $arguments = array();
1413 foreach ( array_merge(
1414 array_keys( $this->numberedArgs
),
1415 array_keys( $this->namedArgs
) ) as $key ) {
1416 $arguments[$key] = $this->getArgument( $key );
1424 function getNumberedArguments() {
1425 $arguments = array();
1426 foreach ( array_keys( $this->numberedArgs
) as $key ) {
1427 $arguments[$key] = $this->getArgument( $key );
1435 function getNamedArguments() {
1436 $arguments = array();
1437 foreach ( array_keys( $this->namedArgs
) as $key ) {
1438 $arguments[$key] = $this->getArgument( $key );
1445 * @return array|bool
1447 function getNumberedArgument( $index ) {
1448 if ( !isset( $this->numberedArgs
[$index] ) ) {
1451 if ( !isset( $this->numberedExpansionCache
[$index] ) ) {
1452 # No trimming for unnamed arguments
1453 $this->numberedExpansionCache
[$index] = $this->parent
->expand( $this->numberedArgs
[$index], PPFrame
::STRIP_COMMENTS
);
1455 return $this->numberedExpansionCache
[$index];
1459 * @param string $name
1462 function getNamedArgument( $name ) {
1463 if ( !isset( $this->namedArgs
[$name] ) ) {
1466 if ( !isset( $this->namedExpansionCache
[$name] ) ) {
1467 # Trim named arguments post-expand, for backwards compatibility
1468 $this->namedExpansionCache
[$name] = trim(
1469 $this->parent
->expand( $this->namedArgs
[$name], PPFrame
::STRIP_COMMENTS
) );
1471 return $this->namedExpansionCache
[$name];
1475 * @param string $name
1476 * @return array|bool
1478 function getArgument( $name ) {
1479 $text = $this->getNumberedArgument( $name );
1480 if ( $text === false ) {
1481 $text = $this->getNamedArgument( $name );
1487 * Return true if the frame is a template frame
1491 function isTemplate() {
1497 * Expansion frame with custom arguments
1500 class PPCustomFrame_Hash
extends PPFrame_Hash
{
1503 function __construct( $preprocessor, $args ) {
1504 parent
::__construct( $preprocessor );
1505 $this->args
= $args;
1508 function __toString() {
1511 foreach ( $this->args
as $name => $value ) {
1517 $s .= "\"$name\":\"" .
1518 str_replace( '"', '\\"', $value->__toString() ) . '"';
1527 function isEmpty() {
1528 return !count( $this->args
);
1535 function getArgument( $index ) {
1536 if ( !isset( $this->args
[$index] ) ) {
1539 return $this->args
[$index];
1542 function getArguments() {
1550 class PPNode_Hash_Tree
implements PPNode
{
1551 var $name, $firstChild, $lastChild, $nextSibling;
1553 function __construct( $name ) {
1554 $this->name
= $name;
1555 $this->firstChild
= $this->lastChild
= $this->nextSibling
= false;
1558 function __toString() {
1561 for ( $node = $this->firstChild
; $node; $node = $node->nextSibling
) {
1562 if ( $node instanceof PPNode_Hash_Attr
) {
1563 $attribs .= ' ' . $node->name
. '="' . htmlspecialchars( $node->value
) . '"';
1565 $inner .= $node->__toString();
1568 if ( $inner === '' ) {
1569 return "<{$this->name}$attribs/>";
1571 return "<{$this->name}$attribs>$inner</{$this->name}>";
1576 * @param string $name
1577 * @param string $text
1578 * @return PPNode_Hash_Tree
1580 static function newWithText( $name, $text ) {
1581 $obj = new self( $name );
1582 $obj->addChild( new PPNode_Hash_Text( $text ) );
1586 function addChild( $node ) {
1587 if ( $this->lastChild
=== false ) {
1588 $this->firstChild
= $this->lastChild
= $node;
1590 $this->lastChild
->nextSibling
= $node;
1591 $this->lastChild
= $node;
1596 * @return PPNode_Hash_Array
1598 function getChildren() {
1599 $children = array();
1600 for ( $child = $this->firstChild
; $child; $child = $child->nextSibling
) {
1601 $children[] = $child;
1603 return new PPNode_Hash_Array( $children );
1606 function getFirstChild() {
1607 return $this->firstChild
;
1610 function getNextSibling() {
1611 return $this->nextSibling
;
1614 function getChildrenOfType( $name ) {
1615 $children = array();
1616 for ( $child = $this->firstChild
; $child; $child = $child->nextSibling
) {
1617 if ( isset( $child->name
) && $child->name
=== $name ) {
1618 $children[] = $child;
1627 function getLength() {
1635 function item( $i ) {
1642 function getName() {
1647 * Split a "<part>" node into an associative array containing:
1648 * - name PPNode name
1649 * - index String index
1650 * - value PPNode value
1652 * @throws MWException
1655 function splitArg() {
1657 for ( $child = $this->firstChild
; $child; $child = $child->nextSibling
) {
1658 if ( !isset( $child->name
) ) {
1661 if ( $child->name
=== 'name' ) {
1662 $bits['name'] = $child;
1663 if ( $child->firstChild
instanceof PPNode_Hash_Attr
1664 && $child->firstChild
->name
=== 'index'
1666 $bits['index'] = $child->firstChild
->value
;
1668 } elseif ( $child->name
=== 'value' ) {
1669 $bits['value'] = $child;
1673 if ( !isset( $bits['name'] ) ) {
1674 throw new MWException( 'Invalid brace node passed to ' . __METHOD__
);
1676 if ( !isset( $bits['index'] ) ) {
1677 $bits['index'] = '';
1683 * Split an "<ext>" node into an associative array containing name, attr, inner and close
1684 * All values in the resulting array are PPNodes. Inner and close are optional.
1686 * @throws MWException
1689 function splitExt() {
1691 for ( $child = $this->firstChild
; $child; $child = $child->nextSibling
) {
1692 if ( !isset( $child->name
) ) {
1695 if ( $child->name
== 'name' ) {
1696 $bits['name'] = $child;
1697 } elseif ( $child->name
== 'attr' ) {
1698 $bits['attr'] = $child;
1699 } elseif ( $child->name
== 'inner' ) {
1700 $bits['inner'] = $child;
1701 } elseif ( $child->name
== 'close' ) {
1702 $bits['close'] = $child;
1705 if ( !isset( $bits['name'] ) ) {
1706 throw new MWException( 'Invalid ext node passed to ' . __METHOD__
);
1712 * Split an "<h>" node
1714 * @throws MWException
1717 function splitHeading() {
1718 if ( $this->name
!== 'h' ) {
1719 throw new MWException( 'Invalid h node passed to ' . __METHOD__
);
1722 for ( $child = $this->firstChild
; $child; $child = $child->nextSibling
) {
1723 if ( !isset( $child->name
) ) {
1726 if ( $child->name
== 'i' ) {
1727 $bits['i'] = $child->value
;
1728 } elseif ( $child->name
== 'level' ) {
1729 $bits['level'] = $child->value
;
1732 if ( !isset( $bits['i'] ) ) {
1733 throw new MWException( 'Invalid h node passed to ' . __METHOD__
);
1739 * Split a "<template>" or "<tplarg>" node
1741 * @throws MWException
1744 function splitTemplate() {
1746 $bits = array( 'lineStart' => '' );
1747 for ( $child = $this->firstChild
; $child; $child = $child->nextSibling
) {
1748 if ( !isset( $child->name
) ) {
1751 if ( $child->name
== 'title' ) {
1752 $bits['title'] = $child;
1754 if ( $child->name
== 'part' ) {
1757 if ( $child->name
== 'lineStart' ) {
1758 $bits['lineStart'] = '1';
1761 if ( !isset( $bits['title'] ) ) {
1762 throw new MWException( 'Invalid node passed to ' . __METHOD__
);
1764 $bits['parts'] = new PPNode_Hash_Array( $parts );
1772 class PPNode_Hash_Text
implements PPNode
{
1773 var $value, $nextSibling;
1775 function __construct( $value ) {
1776 if ( is_object( $value ) ) {
1777 throw new MWException( __CLASS__
. ' given object instead of string' );
1779 $this->value
= $value;
1782 function __toString() {
1783 return htmlspecialchars( $this->value
);
1786 function getNextSibling() {
1787 return $this->nextSibling
;
1790 function getChildren() { return false; }
1791 function getFirstChild() { return false; }
1792 function getChildrenOfType( $name ) { return false; }
1793 function getLength() { return false; }
1794 function item( $i ) { return false; }
1795 function getName() { return '#text'; }
1796 function splitArg() { throw new MWException( __METHOD__
. ': not supported' ); }
1797 function splitExt() { throw new MWException( __METHOD__
. ': not supported' ); }
1798 function splitHeading() { throw new MWException( __METHOD__
. ': not supported' ); }
1804 class PPNode_Hash_Array
implements PPNode
{
1805 var $value, $nextSibling;
1807 function __construct( $value ) {
1808 $this->value
= $value;
1811 function __toString() {
1812 return var_export( $this, true );
1815 function getLength() {
1816 return count( $this->value
);
1819 function item( $i ) {
1820 return $this->value
[$i];
1823 function getName() { return '#nodelist'; }
1825 function getNextSibling() {
1826 return $this->nextSibling
;
1829 function getChildren() { return false; }
1830 function getFirstChild() { return false; }
1831 function getChildrenOfType( $name ) { return false; }
1832 function splitArg() { throw new MWException( __METHOD__
. ': not supported' ); }
1833 function splitExt() { throw new MWException( __METHOD__
. ': not supported' ); }
1834 function splitHeading() { throw new MWException( __METHOD__
. ': not supported' ); }
1840 class PPNode_Hash_Attr
implements PPNode
{
1841 var $name, $value, $nextSibling;
1843 function __construct( $name, $value ) {
1844 $this->name
= $name;
1845 $this->value
= $value;
1848 function __toString() {
1849 return "<@{$this->name}>" . htmlspecialchars( $this->value
) . "</@{$this->name}>";
1852 function getName() {
1856 function getNextSibling() {
1857 return $this->nextSibling
;
1860 function getChildren() { return false; }
1861 function getFirstChild() { return false; }
1862 function getChildrenOfType( $name ) { return false; }
1863 function getLength() { return false; }
1864 function item( $i ) { return false; }
1865 function splitArg() { throw new MWException( __METHOD__
. ': not supported' ); }
1866 function splitExt() { throw new MWException( __METHOD__
. ': not supported' ); }
1867 function splitHeading() { throw new MWException( __METHOD__
. ': not supported' ); }