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;
474 $count = strspn( $text,
'=', $i, 6 );
475 if ( $count == 1 && $findEquals ) {
480 } elseif ( $count > 0 ) {
484 'parts' => [
new PPDPart_Hash( str_repeat(
'=', $count ) ) ],
487 $stack->push( $piece );
488 $accum =& $stack->getAccum();
489 $stackFlags = $stack->getFlags();
490 if ( isset( $stackFlags[
'findEquals'] ) ) {
491 $findEquals = $stackFlags[
'findEquals'];
493 if ( isset( $stackFlags[
'findPipe'] ) ) {
494 $findPipe = $stackFlags[
'findPipe'];
496 if ( isset( $stackFlags[
'inHeading'] ) ) {
497 $inHeading = $stackFlags[
'inHeading'];
501 } elseif ( $found ==
'line-end' ) {
502 $piece = $stack->top;
506 assert( $piece->open ===
"\n" );
507 $part = $piece->getCurrentPart();
511 $wsLength = strspn( $revText,
" \t", $lengthText - $i );
512 $searchStart = $i - $wsLength;
513 if ( isset( $part->commentEnd ) && $searchStart - 1 == $part->commentEnd ) {
516 $searchStart = $part->visualEnd;
517 $searchStart -= strspn( $revText,
" \t", $lengthText - $searchStart );
519 $count = $piece->count;
520 $equalsLength = strspn( $revText,
'=', $lengthText - $searchStart );
521 if ( $equalsLength > 0 ) {
522 if ( $searchStart - $equalsLength == $piece->startPos ) {
526 $count = $equalsLength;
530 $count = min( 6, intval( ( $count - 1 ) / 2 ) );
533 $count = min( $equalsLength, $count );
537 $element = [ [
'possible-h',
540 [
'@level', [ $count ] ],
541 [
'@i', [ $headingIndex++ ] ]
556 $accum =& $stack->getAccum();
557 $stackFlags = $stack->getFlags();
558 if ( isset( $stackFlags[
'findEquals'] ) ) {
559 $findEquals = $stackFlags[
'findEquals'];
561 if ( isset( $stackFlags[
'findPipe'] ) ) {
562 $findPipe = $stackFlags[
'findPipe'];
564 if ( isset( $stackFlags[
'inHeading'] ) ) {
565 $inHeading = $stackFlags[
'inHeading'];
569 array_splice( $accum, count( $accum ), 0, $element );
576 } elseif ( $found ==
'open' ) {
577 # count opening brace characters
578 $curLen = strlen( $curChar );
579 $count = ( $curLen > 1 ) ?
580 # allow the
final character to repeat
581 strspn( $text, $curChar[$curLen - 1], $i + 1 ) + 1 :
582 strspn( $text, $curChar, $i );
585 $lineStart = ( $i > 0 && $text[$i - 1] ==
"\n" );
587 if ( $curChar ===
"-{" && $count > $curLen ) {
593 $rule = $this->rules[$curChar];
596 # we need to add to stack only if opening brace count is enough for one of the rules
597 if ( $count >= $rule[
'min'] ) {
598 # Add it to the stack
601 'close' => $rule[
'end'],
602 'savedPrefix' => $savedPrefix,
604 'lineStart' => $lineStart,
607 $stack->push( $piece );
608 $accum =& $stack->getAccum();
609 $stackFlags = $stack->getFlags();
610 if ( isset( $stackFlags[
'findEquals'] ) ) {
611 $findEquals = $stackFlags[
'findEquals'];
613 if ( isset( $stackFlags[
'findPipe'] ) ) {
614 $findPipe = $stackFlags[
'findPipe'];
616 if ( isset( $stackFlags[
'inHeading'] ) ) {
617 $inHeading = $stackFlags[
'inHeading'];
620 # Add literal brace(s)
624 } elseif ( $found ==
'close' ) {
626 $piece = $stack->top;
627 '@phan-var PPDStackElement_Hash $piece';
628 # lets check if there are enough characters for closing brace
629 $maxCount = $piece->count;
630 if ( $piece->close ===
'}-' && $curChar ===
'}' ) {
631 $maxCount--; # don
't try to match closing '-
' as a '}
'
633 $curLen = strlen( $curChar );
634 $count = ( $curLen > 1 ) ? $curLen :
635 strspn( $text, $curChar, $i, $maxCount );
637 # check for maximum matching characters (if there are 5 closing
638 # characters, we will probably need only 3 - depending on the rules)
639 $rule = $this->rules[$piece->open];
640 if ( $count > $rule['max
'] ) {
641 # The specified maximum exists in the callback array, unless the caller
643 $matchingCount = $rule['max
'];
645 # Count is less than the maximum
646 # Skip any gaps in the callback array to find the true largest match
647 # Need to use array_key_exists not isset because the callback can be null
648 $matchingCount = $count;
649 while ( $matchingCount > 0 && !array_key_exists( $matchingCount, $rule['names
'] ) ) {
654 if ( $matchingCount <= 0 ) {
655 # No matching element found in callback array
656 # Output a literal closing brace and continue
657 $endText = substr( $text, $i, $count );
658 self::addLiteral( $accum, $endText );
662 $name = $rule['names
'][$matchingCount];
663 if ( $name === null ) {
664 // No element, just literal text
665 $endText = substr( $text, $i, $matchingCount );
666 $element = $piece->breakSyntax( $matchingCount );
667 self::addLiteral( $element, $endText );
670 $parts = $piece->parts;
671 $titleAccum = $parts[0]->out;
676 # The invocation is at the start of the line if lineStart is set in
677 # the stack, and all opening brackets are used up.
678 if ( $maxCount == $matchingCount &&
679 !empty( $piece->lineStart ) &&
680 strlen( $piece->savedPrefix ) == 0 ) {
681 $children[] = [ '@lineStart
', [ 1 ] ];
683 $titleNode = [ 'title
', $titleAccum ];
684 $children[] = $titleNode;
686 foreach ( $parts as $part ) {
687 if ( isset( $part->eqpos ) ) {
688 $equalsNode = $part->out[$part->eqpos];
689 $nameNode = [ 'name
', array_slice( $part->out, 0, $part->eqpos ) ];
690 $valueNode = [ 'value
', array_slice( $part->out, $part->eqpos + 1 ) ];
691 $partNode = [ 'part
', [ $nameNode, $equalsNode, $valueNode ] ];
692 $children[] = $partNode;
694 $nameNode = [ 'name
', [ [ '@index
', [ $argIndex++ ] ] ] ];
695 $valueNode = [ 'value
', $part->out ];
696 $partNode = [ 'part
', [ $nameNode, $valueNode ] ];
697 $children[] = $partNode;
700 $element = [ [ $name, $children ] ];
703 # Advance input pointer
704 $i += $matchingCount;
708 $accum =& $stack->getAccum();
710 # Re-add the old stack element if it still has unmatched opening characters remaining
711 if ( $matchingCount < $piece->count ) {
712 $piece->parts = [ new PPDPart_Hash ];
713 $piece->count -= $matchingCount;
714 # do we still qualify for any callback with remaining count?
715 $min = $this->rules[$piece->open]['min
'];
716 if ( $piece->count >= $min ) {
717 $stack->push( $piece );
718 $accum =& $stack->getAccum();
719 } elseif ( $piece->count == 1 && $piece->open === '{
' && $piece->savedPrefix === '-
' ) {
720 $piece->savedPrefix = '';
723 $piece->close = $this->rules[$piece->open]['end
'];
724 $stack->push( $piece );
725 $accum =& $stack->getAccum();
727 $s = substr( $piece->open, 0, -1 );
729 substr( $piece->open, -1 ),
730 $piece->count - strlen( $s )
732 self::addLiteral( $accum, $piece->savedPrefix . $s );
734 } elseif ( $piece->savedPrefix !== '' ) {
735 self::addLiteral( $accum, $piece->savedPrefix );
738 $stackFlags = $stack->getFlags();
739 if ( isset( $stackFlags['findEquals
'] ) ) {
740 $findEquals = $stackFlags['findEquals
'];
742 if ( isset( $stackFlags['findPipe
'] ) ) {
743 $findPipe = $stackFlags['findPipe
'];
745 if ( isset( $stackFlags['inHeading
'] ) ) {
746 $inHeading = $stackFlags['inHeading
'];
749 # Add XML element to the enclosing accumulator
750 array_splice( $accum, count( $accum ), 0, $element );
751 } elseif ( $found == 'pipe
' ) {
752 $findEquals = true; // shortcut for getFlags()
754 $accum =& $stack->getAccum();
756 } elseif ( $found == 'equals
' ) {
757 $findEquals = false; // shortcut for getFlags()
758 $accum[] = [ 'equals
', [ '=
' ] ];
759 $stack->getCurrentPart()->eqpos = count( $accum ) - 1;
764 # Output any remaining unclosed brackets
765 foreach ( $stack->stack as $piece ) {
766 array_splice( $stack->rootAccum, count( $stack->rootAccum ), 0, $piece->breakSyntax() );
769 # Enable top-level headings
770 foreach ( $stack->rootAccum as &$node ) {
771 if ( is_array( $node ) && $node[PPNode_Hash_Tree::NAME] === 'possible-h
' ) {
772 $node[PPNode_Hash_Tree::NAME] = 'h
';
776 $rootStore = [ [ 'root
', $stack->rootAccum ] ];
777 $rootNode = new PPNode_Hash_Tree( $rootStore, 0 );
780 $tree = json_encode( $rootStore, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE );
781 if ( $tree !== false ) {
782 $this->cacheSetTree( $text, $flags, $tree );