119 if ( $tree !==
false ) {
120 $store = json_decode( $tree );
121 if ( is_array( $store ) ) {
126 $forInclusion = $flags & Parser::PTD_FOR_INCLUSION;
128 $xmlishElements = $this->parser->getStripList();
129 $xmlishAllowMissingEndTag = [
'includeonly',
'noinclude',
'onlyinclude' ];
130 $enableOnlyinclude =
false;
131 if ( $forInclusion ) {
132 $ignoredTags = [
'includeonly',
'/includeonly' ];
133 $ignoredElements = [
'noinclude' ];
134 $xmlishElements[] =
'noinclude';
135 if ( strpos( $text,
'<onlyinclude>' ) !==
false
136 && strpos( $text,
'</onlyinclude>' ) !==
false
138 $enableOnlyinclude =
true;
141 $ignoredTags = [
'noinclude',
'/noinclude',
'onlyinclude',
'/onlyinclude' ];
142 $ignoredElements = [
'includeonly' ];
143 $xmlishElements[] =
'includeonly';
145 $xmlishRegex = implode(
'|', array_merge( $xmlishElements, $ignoredTags ) );
148 $elementsRegex =
"~($xmlishRegex)(?:\s|\/>|>)|(!--)~iA";
152 $searchBase =
"[{<\n";
158 $revText = strrev( $text );
159 $lengthText = strlen( $text );
164 $accum =& $stack->getAccum();
175 $noMoreClosingTag = [];
177 $findOnlyinclude = $enableOnlyinclude;
179 $fakeLineStart =
true;
184 if ( $findOnlyinclude ) {
186 $startPos = strpos( $text,
'<onlyinclude>', $i );
187 if ( $startPos ===
false ) {
189 $accum[] = [
'ignore', [ substr( $text, $i ) ] ];
192 $tagEndPos = $startPos + strlen(
'<onlyinclude>' );
193 $accum[] = [
'ignore', [ substr( $text, $i, $tagEndPos - $i ) ] ];
195 $findOnlyinclude =
false;
198 if ( $fakeLineStart ) {
199 $found =
'line-start';
202 # Find next opening brace, closing brace or pipe
203 $search = $searchBase;
204 if ( $stack->top ===
false ) {
205 $currentClosing =
'';
207 $currentClosing = $stack->top->close;
208 $search .= $currentClosing;
218 # Output literal section, advance input counter
219 $literalLength = strcspn( $text, $search, $i );
220 if ( $literalLength > 0 ) {
222 $i += $literalLength;
224 if ( $i >= $lengthText ) {
225 if ( $currentClosing ==
"\n" ) {
234 $curChar = $curTwoChar = $text[$i];
235 if ( ( $i + 1 ) < $lengthText ) {
236 $curTwoChar .= $text[$i + 1];
238 if ( $curChar ==
'|' ) {
240 } elseif ( $curChar ==
'=' ) {
242 } elseif ( $curChar ==
'<' ) {
244 } elseif ( $curChar ==
"\n" ) {
248 $found =
'line-start';
250 } elseif ( $curTwoChar == $currentClosing ) {
252 $curChar = $curTwoChar;
253 } elseif ( $curChar == $currentClosing ) {
255 } elseif ( isset( $this->rules[$curTwoChar] ) ) {
256 $curChar = $curTwoChar;
258 $rule = $this->rules[$curChar];
259 } elseif ( isset( $this->rules[$curChar] ) ) {
261 $rule = $this->rules[$curChar];
263 # Some versions of PHP have a strcspn which stops on
264 # null characters; ignore these and continue.
265 # We also may get '-' and '}' characters here which
266 # don't match -{ or $currentClosing. Add these to
267 # output and continue.
268 if ( $curChar ==
'-' || $curChar ==
'}' ) {
277 if ( $found ==
'angle' ) {
280 if ( $enableOnlyinclude
281 && substr( $text, $i, strlen(
'</onlyinclude>' ) ) ==
'</onlyinclude>'
283 $findOnlyinclude =
true;
288 if ( !preg_match( $elementsRegex, $text,
$matches, 0, $i + 1 ) ) {
302 $endPos = strpos( $text,
'-->', $i + 4 );
303 if ( $endPos ===
false ) {
305 $inner = substr( $text, $i );
306 $accum[] = [
'comment', [ $inner ] ];
310 $wsStart = $i ? ( $i - strspn( $revText,
" \t", $lengthText - $i ) ) : 0;
314 $wsEnd = $endPos + 2 + strspn( $text,
" \t", $endPos + 3 );
318 $comments = [ [ $wsStart, $wsEnd ] ];
319 while ( substr( $text, $wsEnd + 1, 4 ) ==
'<!--' ) {
320 $c = strpos( $text,
'-->', $wsEnd + 4 );
321 if ( $c ===
false ) {
324 $c = $c + 2 + strspn( $text,
" \t", $c + 3 );
325 $comments[] = [ $wsEnd + 1, $c ];
333 if ( $wsStart > 0 && substr( $text, $wsStart - 1, 1 ) ==
"\n"
334 && substr( $text, $wsEnd + 1, 1 ) ==
"\n"
337 $wsLength = $i - $wsStart;
338 $endIndex = count( $accum ) - 1;
343 && is_string( $accum[$endIndex] )
344 && strspn( $accum[$endIndex],
" \t", -$wsLength ) === $wsLength
346 $accum[$endIndex] = substr( $accum[$endIndex], 0, -$wsLength );
350 foreach ( $comments as $j => $com ) {
352 $endPos = $com[1] + 1;
353 if ( $j == ( count( $comments ) - 1 ) ) {
356 $inner = substr( $text, $startPos, $endPos - $startPos );
357 $accum[] = [
'comment', [ $inner ] ];
361 $fakeLineStart =
true;
369 $part = $stack->top->getCurrentPart();
370 if ( !( isset( $part->commentEnd ) && $part->commentEnd == $wsStart - 1 ) ) {
371 $part->visualEnd = $wsStart;
374 $part->commentEnd = $endPos;
377 $inner = substr( $text, $startPos, $endPos - $startPos + 1 );
378 $accum[] = [
'comment', [ $inner ] ];
383 $lowerName = strtolower( $name );
384 $attrStart = $i + strlen( $name ) + 1;
387 $tagEndPos = $noMoreGT ? false : strpos( $text,
'>', $attrStart );
388 if ( $tagEndPos ===
false ) {
398 if ( in_array( $lowerName, $ignoredTags ) ) {
399 $accum[] = [
'ignore', [ substr( $text, $i, $tagEndPos - $i + 1 ) ] ];
405 if ( $text[$tagEndPos - 1] ==
'/' ) {
407 $attrEnd = $tagEndPos - 1;
412 $attrEnd = $tagEndPos;
415 !isset( $noMoreClosingTag[$name] ) &&
416 preg_match(
"/<\/" . preg_quote( $name,
'/' ) .
"\s*>/i",
417 $text,
$matches, PREG_OFFSET_CAPTURE, $tagEndPos + 1 )
419 $inner = substr( $text, $tagEndPos + 1,
$matches[0][1] - $tagEndPos - 1 );
424 if ( in_array( $name, $xmlishAllowMissingEndTag ) ) {
426 $inner = substr( $text, $tagEndPos + 1 );
433 substr( $text, $tagStartPos, $tagEndPos + 1 - $tagStartPos ) );
435 $noMoreClosingTag[$name] =
true;
441 if ( in_array( $lowerName, $ignoredElements ) ) {
442 $accum[] = [
'ignore', [ substr( $text, $tagStartPos, $i - $tagStartPos ) ] ];
446 if ( $attrEnd <= $attrStart ) {
451 $attr = substr( $text, $attrStart, $attrEnd - $attrStart );
455 [
'name', [ $name ] ],
456 [
'attr', [ $attr ] ] ];
457 if ( $inner !==
null ) {
458 $children[] = [
'inner', [ $inner ] ];
460 if ( $close !==
null ) {
461 $children[] = [
'close', [ $close ] ];
463 $accum[] = [
'ext', $children ];
464 } elseif ( $found ==
'line-start' ) {
467 if ( $fakeLineStart ) {
468 $fakeLineStart =
false;
475 $count = strspn( $text,
'=', $i, min( strlen( $text ), 6 ) );
476 if ( $count == 1 && $findEquals ) {
481 } elseif ( $count > 0 ) {
485 'parts' => [
new PPDPart_Hash( str_repeat(
'=', $count ) ) ],
488 $stack->push( $piece );
489 $accum =& $stack->getAccum();
490 $stackFlags = $stack->getFlags();
491 if ( isset( $stackFlags[
'findEquals'] ) ) {
492 $findEquals = $stackFlags[
'findEquals'];
494 if ( isset( $stackFlags[
'findPipe'] ) ) {
495 $findPipe = $stackFlags[
'findPipe'];
497 if ( isset( $stackFlags[
'inHeading'] ) ) {
498 $inHeading = $stackFlags[
'inHeading'];
502 } elseif ( $found ==
'line-end' ) {
503 $piece = $stack->top;
507 assert( $piece->open ===
"\n" );
508 $part = $piece->getCurrentPart();
512 $wsLength = strspn( $revText,
" \t", $lengthText - $i );
513 $searchStart = $i - $wsLength;
514 if ( isset( $part->commentEnd ) && $searchStart - 1 == $part->commentEnd ) {
517 $searchStart = $part->visualEnd;
518 $searchStart -= strspn( $revText,
" \t", $lengthText - $searchStart );
520 $count = $piece->count;
521 $equalsLength = strspn( $revText,
'=', $lengthText - $searchStart );
522 if ( $equalsLength > 0 ) {
523 if ( $searchStart - $equalsLength == $piece->startPos ) {
527 $count = $equalsLength;
531 $count = min( 6, intval( ( $count - 1 ) / 2 ) );
534 $count = min( $equalsLength, $count );
538 $element = [ [
'possible-h',
541 [
'@level', [ $count ] ],
542 [
'@i', [ $headingIndex++ ] ]
557 $accum =& $stack->getAccum();
558 $stackFlags = $stack->getFlags();
559 if ( isset( $stackFlags[
'findEquals'] ) ) {
560 $findEquals = $stackFlags[
'findEquals'];
562 if ( isset( $stackFlags[
'findPipe'] ) ) {
563 $findPipe = $stackFlags[
'findPipe'];
565 if ( isset( $stackFlags[
'inHeading'] ) ) {
566 $inHeading = $stackFlags[
'inHeading'];
570 array_splice( $accum, count( $accum ), 0, $element );
577 } elseif ( $found ==
'open' ) {
578 # count opening brace characters
579 $curLen = strlen( $curChar );
580 $count = ( $curLen > 1 ) ?
581 # allow the
final character to repeat
582 strspn( $text, $curChar[$curLen - 1], $i + 1 ) + 1 :
583 strspn( $text, $curChar, $i );
586 $lineStart = ( $i > 0 && $text[$i - 1] ==
"\n" );
588 if ( $curChar ===
"-{" && $count > $curLen ) {
594 $rule = $this->rules[$curChar];
597 # we need to add to stack only if opening brace count is enough for one of the rules
598 if ( $count >= $rule[
'min'] ) {
599 # Add it to the stack
602 'close' => $rule[
'end'],
603 'savedPrefix' => $savedPrefix,
605 'lineStart' => $lineStart,
608 $stack->push( $piece );
609 $accum =& $stack->getAccum();
610 $stackFlags = $stack->getFlags();
611 if ( isset( $stackFlags[
'findEquals'] ) ) {
612 $findEquals = $stackFlags[
'findEquals'];
614 if ( isset( $stackFlags[
'findPipe'] ) ) {
615 $findPipe = $stackFlags[
'findPipe'];
617 if ( isset( $stackFlags[
'inHeading'] ) ) {
618 $inHeading = $stackFlags[
'inHeading'];
621 # Add literal brace(s)
625 } elseif ( $found ==
'close' ) {
627 $piece = $stack->top;
628 '@phan-var PPDStackElement_Hash $piece';
629 # lets check if there are enough characters for closing brace
630 $maxCount = $piece->count;
631 if ( $piece->close ===
'}-' && $curChar ===
'}' ) {
632 $maxCount--; # don
't try to match closing '-
' as a '}
'
634 $curLen = strlen( $curChar );
635 $count = ( $curLen > 1 ) ? $curLen :
636 strspn( $text, $curChar, $i, $maxCount );
638 # check for maximum matching characters (if there are 5 closing
639 # characters, we will probably need only 3 - depending on the rules)
640 $rule = $this->rules[$piece->open];
641 if ( $count > $rule['max
'] ) {
642 # The specified maximum exists in the callback array, unless the caller
644 $matchingCount = $rule['max
'];
646 # Count is less than the maximum
647 # Skip any gaps in the callback array to find the true largest match
648 # Need to use array_key_exists not isset because the callback can be null
649 $matchingCount = $count;
650 while ( $matchingCount > 0 && !array_key_exists( $matchingCount, $rule['names
'] ) ) {
655 if ( $matchingCount <= 0 ) {
656 # No matching element found in callback array
657 # Output a literal closing brace and continue
658 $endText = substr( $text, $i, $count );
659 self::addLiteral( $accum, $endText );
663 $name = $rule['names
'][$matchingCount];
664 if ( $name === null ) {
665 // No element, just literal text
666 $endText = substr( $text, $i, $matchingCount );
667 $element = $piece->breakSyntax( $matchingCount );
668 self::addLiteral( $element, $endText );
671 $parts = $piece->parts;
672 $titleAccum = $parts[0]->out;
677 # The invocation is at the start of the line if lineStart is set in
678 # the stack, and all opening brackets are used up.
679 if ( $maxCount == $matchingCount &&
680 !empty( $piece->lineStart ) &&
681 strlen( $piece->savedPrefix ) == 0 ) {
682 $children[] = [ '@lineStart
', [ 1 ] ];
684 $titleNode = [ 'title
', $titleAccum ];
685 $children[] = $titleNode;
687 foreach ( $parts as $part ) {
688 if ( isset( $part->eqpos ) ) {
689 $equalsNode = $part->out[$part->eqpos];
690 $nameNode = [ 'name
', array_slice( $part->out, 0, $part->eqpos ) ];
691 $valueNode = [ 'value
', array_slice( $part->out, $part->eqpos + 1 ) ];
692 $partNode = [ 'part
', [ $nameNode, $equalsNode, $valueNode ] ];
693 $children[] = $partNode;
695 $nameNode = [ 'name
', [ [ '@index
', [ $argIndex++ ] ] ] ];
696 $valueNode = [ 'value
', $part->out ];
697 $partNode = [ 'part
', [ $nameNode, $valueNode ] ];
698 $children[] = $partNode;
701 $element = [ [ $name, $children ] ];
704 # Advance input pointer
705 $i += $matchingCount;
709 $accum =& $stack->getAccum();
711 # Re-add the old stack element if it still has unmatched opening characters remaining
712 if ( $matchingCount < $piece->count ) {
713 $piece->parts = [ new PPDPart_Hash ];
714 $piece->count -= $matchingCount;
715 # do we still qualify for any callback with remaining count?
716 $min = $this->rules[$piece->open]['min
'];
717 if ( $piece->count >= $min ) {
718 $stack->push( $piece );
719 $accum =& $stack->getAccum();
720 } elseif ( $piece->count == 1 && $piece->open === '{
' && $piece->savedPrefix === '-
' ) {
721 $piece->savedPrefix = '';
724 $piece->close = $this->rules[$piece->open]['end
'];
725 $stack->push( $piece );
726 $accum =& $stack->getAccum();
728 $s = substr( $piece->open, 0, -1 );
730 substr( $piece->open, -1 ),
731 $piece->count - strlen( $s )
733 self::addLiteral( $accum, $piece->savedPrefix . $s );
735 } elseif ( $piece->savedPrefix !== '' ) {
736 self::addLiteral( $accum, $piece->savedPrefix );
739 $stackFlags = $stack->getFlags();
740 if ( isset( $stackFlags['findEquals
'] ) ) {
741 $findEquals = $stackFlags['findEquals
'];
743 if ( isset( $stackFlags['findPipe
'] ) ) {
744 $findPipe = $stackFlags['findPipe
'];
746 if ( isset( $stackFlags['inHeading
'] ) ) {
747 $inHeading = $stackFlags['inHeading
'];
750 # Add XML element to the enclosing accumulator
751 array_splice( $accum, count( $accum ), 0, $element );
752 } elseif ( $found == 'pipe
' ) {
753 $findEquals = true; // shortcut for getFlags()
755 $accum =& $stack->getAccum();
757 } elseif ( $found == 'equals
' ) {
758 $findEquals = false; // shortcut for getFlags()
759 $accum[] = [ 'equals
', [ '=
' ] ];
760 $stack->getCurrentPart()->eqpos = count( $accum ) - 1;
765 # Output any remaining unclosed brackets
766 foreach ( $stack->stack as $piece ) {
767 array_splice( $stack->rootAccum, count( $stack->rootAccum ), 0, $piece->breakSyntax() );
770 # Enable top-level headings
771 foreach ( $stack->rootAccum as &$node ) {
772 if ( is_array( $node ) && $node[PPNode_Hash_Tree::NAME] === 'possible-h
' ) {
773 $node[PPNode_Hash_Tree::NAME] = 'h
';
777 $rootStore = [ [ 'root
', $stack->rootAccum ] ];
778 $rootNode = new PPNode_Hash_Tree( $rootStore, 0 );
781 $tree = json_encode( $rootStore, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE );
782 if ( $tree !== false ) {
783 $this->cacheSetTree( $text, $flags, $tree );