From 2e3c1f87e2a20aa1bfb9aec2a0b8429ce175e2ac Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Fri, 6 May 2016 12:56:37 +1000 Subject: [PATCH] Split out doBlockLevels() into its own class It's independent of the rest of the Parser, but quite intrusive, with its own instance variables and several private functions. It's also pretty big (500 lines). I removed a few functions from Parser here which were always marked @private in the doc comment, but were inappropriately marked "public" in the function declaration after migration to PHP 5. I grepped core and deployed extensions and found no callers. The helper functions are now all private, and the constructor is private, with just a single public static entry point, reflecting the self-contained nature of the module and its lack of hooks. Change-Id: I1693ed48a9194719611b4afd9d989d44f0610f8d --- autoload.php | 1 + includes/parser/BlockLevelPass.php | 533 +++++++++++++++++++++++++++++ includes/parser/Parser.php | 499 +-------------------------- 3 files changed, 537 insertions(+), 496 deletions(-) create mode 100644 includes/parser/BlockLevelPass.php diff --git a/autoload.php b/autoload.php index c7f89840cf..1e656e49fb 100644 --- a/autoload.php +++ b/autoload.php @@ -180,6 +180,7 @@ $wgAutoloadLocalClasses = [ 'BitmapMetadataHandler' => __DIR__ . '/includes/media/BitmapMetadataHandler.php', 'Blob' => __DIR__ . '/includes/db/DatabaseUtility.php', 'Block' => __DIR__ . '/includes/Block.php', + 'BlockLevelPass' => __DIR__ . '/includes/parser/BlockLevelPass.php', 'BlockListPager' => __DIR__ . '/includes/specials/pagers/BlockListPager.php', 'BlockLogFormatter' => __DIR__ . '/includes/logging/BlockLogFormatter.php', 'BmpHandler' => __DIR__ . '/includes/media/BMP.php', diff --git a/includes/parser/BlockLevelPass.php b/includes/parser/BlockLevelPass.php new file mode 100644 index 0000000000..7c6d330b95 --- /dev/null +++ b/includes/parser/BlockLevelPass.php @@ -0,0 +1,533 @@ +execute(); + } + + private function __construct( $text, $linestart ) { + $this->text = $text; + $this->linestart = $linestart; + } + + /** + * @return string + */ + private function closeParagraph() { + $result = ''; + if ( $this->mLastSection != '' ) { + $result = 'mLastSection . ">\n"; + } + $this->mInPre = false; + $this->mLastSection = ''; + return $result; + } + + /** + * getCommon() returns the length of the longest common substring + * of both arguments, starting at the beginning of both. + * + * @param string $st1 + * @param string $st2 + * + * @return int + */ + private function getCommon( $st1, $st2 ) { + $fl = strlen( $st1 ); + $shorter = strlen( $st2 ); + if ( $fl < $shorter ) { + $shorter = $fl; + } + + for ( $i = 0; $i < $shorter; ++$i ) { + if ( $st1[$i] != $st2[$i] ) { + break; + } + } + return $i; + } + + /** + * These next three functions open, continue, and close the list + * element appropriate to the prefix character passed into them. + * + * @param string $char + * + * @return string + */ + private function openList( $char ) { + $result = $this->closeParagraph(); + + if ( '*' === $char ) { + $result .= ""; + } elseif ( '#' === $char ) { + $text = ""; + } elseif ( ':' === $char ) { + if ( $this->mDTopen ) { + $this->mDTopen = false; + $text = ""; + } else { + $text = ""; + } + } else { + return ''; + } + return $text; + } + /**#@-*/ + + private function execute() { + $text = $this->text; + # Parsing through the text line by line. The main thing + # happening here is handling of block-level elements p, pre, + # and making lists from lines starting with * # : etc. + $textLines = StringUtils::explode( "\n", $text ); + + $lastPrefix = $output = ''; + $this->mDTopen = $inBlockElem = false; + $prefixLength = 0; + $paragraphStack = false; + $inBlockquote = false; + + foreach ( $textLines as $oLine ) { + # Fix up $linestart + if ( !$this->linestart ) { + $output .= $oLine; + $this->linestart = true; + continue; + } + # * = ul + # # = ol + # ; = dt + # : = dd + + $lastPrefixLength = strlen( $lastPrefix ); + $preCloseMatch = preg_match( '/<\\/pre/i', $oLine ); + $preOpenMatch = preg_match( '/
 element, scan for and figure out what prefixes are there.
+			if ( !$this->mInPre ) {
+				# Multiple prefixes may abut each other for nested lists.
+				$prefixLength = strspn( $oLine, '*#:;' );
+				$prefix = substr( $oLine, 0, $prefixLength );
+
+				# eh?
+				# ; and : are both from definition-lists, so they're equivalent
+				#  for the purposes of determining whether or not we need to open/close
+				#  elements.
+				$prefix2 = str_replace( ';', ':', $prefix );
+				$t = substr( $oLine, $prefixLength );
+				$this->mInPre = (bool)$preOpenMatch;
+			} else {
+				# Don't interpret any other prefixes in preformatted text
+				$prefixLength = 0;
+				$prefix = $prefix2 = '';
+				$t = $oLine;
+			}
+
+			# List generation
+			if ( $prefixLength && $lastPrefix === $prefix2 ) {
+				# Same as the last item, so no need to deal with nesting or opening stuff
+				$output .= $this->nextItem( substr( $prefix, -1 ) );
+				$paragraphStack = false;
+
+				if ( substr( $prefix, -1 ) === ';' ) {
+					# The one nasty exception: definition lists work like this:
+					# ; title : definition text
+					# So we check for : in the remainder text to split up the
+					# title and definition, without b0rking links.
+					$term = $t2 = '';
+					if ( $this->findColonNoLinks( $t, $term, $t2 ) !== false ) {
+						$t = $t2;
+						$output .= $term . $this->nextItem( ':' );
+					}
+				}
+			} elseif ( $prefixLength || $lastPrefixLength ) {
+				# We need to open or close prefixes, or both.
+
+				# Either open or close a level...
+				$commonPrefixLength = $this->getCommon( $prefix, $lastPrefix );
+				$paragraphStack = false;
+
+				# Close all the prefixes which aren't shared.
+				while ( $commonPrefixLength < $lastPrefixLength ) {
+					$output .= $this->closeList( $lastPrefix[$lastPrefixLength - 1] );
+					--$lastPrefixLength;
+				}
+
+				# Continue the current prefix if appropriate.
+				if ( $prefixLength <= $commonPrefixLength && $commonPrefixLength > 0 ) {
+					$output .= $this->nextItem( $prefix[$commonPrefixLength - 1] );
+				}
+
+				# Open prefixes where appropriate.
+				if ( $lastPrefix && $prefixLength > $commonPrefixLength ) {
+					$output .= "\n";
+				}
+				while ( $prefixLength > $commonPrefixLength ) {
+					$char = substr( $prefix, $commonPrefixLength, 1 );
+					$output .= $this->openList( $char );
+
+					if ( ';' === $char ) {
+						# @todo FIXME: This is dupe of code above
+						if ( $this->findColonNoLinks( $t, $term, $t2 ) !== false ) {
+							$t = $t2;
+							$output .= $term . $this->nextItem( ':' );
+						}
+					}
+					++$commonPrefixLength;
+				}
+				if ( !$prefixLength && $lastPrefix ) {
+					$output .= "\n";
+				}
+				$lastPrefix = $prefix2;
+			}
+
+			# If we have no prefixes, go to paragraph mode.
+			if ( 0 == $prefixLength ) {
+				# No prefix (not in list)--go to paragraph mode
+				# XXX: use a stack for nestable elements like span, table and div
+				$openmatch = preg_match(
+					'/(?:closeParagraph();
+					if ( $preOpenMatch && !$preCloseMatch ) {
+						$this->mInPre = true;
+					}
+					$bqOffset = 0;
+					while ( preg_match( '/<(\\/?)blockquote[\s>]/i', $t,
+						$bqMatch, PREG_OFFSET_CAPTURE, $bqOffset )
+					) {
+						$inBlockquote = !$bqMatch[1][0]; // is this a close tag?
+						$bqOffset = $bqMatch[0][1] + strlen( $bqMatch[0][0] );
+					}
+					$inBlockElem = !$closematch;
+				} elseif ( !$inBlockElem && !$this->mInPre ) {
+					if ( ' ' == substr( $t, 0, 1 )
+						&& ( $this->mLastSection === 'pre' || trim( $t ) != '' )
+						&& !$inBlockquote
+					) {
+						# pre
+						if ( $this->mLastSection !== 'pre' ) {
+							$paragraphStack = false;
+							$output .= $this->closeParagraph() . '
';
+							$this->mLastSection = 'pre';
+						}
+						$t = substr( $t, 1 );
+					} else {
+						# paragraph
+						if ( trim( $t ) === '' ) {
+							if ( $paragraphStack ) {
+								$output .= $paragraphStack . '
'; + $paragraphStack = false; + $this->mLastSection = 'p'; + } else { + if ( $this->mLastSection !== 'p' ) { + $output .= $this->closeParagraph(); + $this->mLastSection = ''; + $paragraphStack = '

'; + } else { + $paragraphStack = '

'; + } + } + } else { + if ( $paragraphStack ) { + $output .= $paragraphStack; + $paragraphStack = false; + $this->mLastSection = 'p'; + } elseif ( $this->mLastSection !== 'p' ) { + $output .= $this->closeParagraph() . '

'; + $this->mLastSection = 'p'; + } + } + } + } + } + # somewhere above we forget to get out of pre block (bug 785) + if ( $preCloseMatch && $this->mInPre ) { + $this->mInPre = false; + } + if ( $paragraphStack === false ) { + $output .= $t; + if ( $prefixLength === 0 ) { + $output .= "\n"; + } + } + } + while ( $prefixLength ) { + $output .= $this->closeList( $prefix2[$prefixLength - 1] ); + --$prefixLength; + if ( !$prefixLength ) { + $output .= "\n"; + } + } + if ( $this->mLastSection != '' ) { + $output .= 'mLastSection . '>'; + $this->mLastSection = ''; + } + + return $output; + } + + /** + * Split up a string on ':', ignoring any occurrences inside tags + * to prevent illegal overlapping. + * + * @param string $str The string to split + * @param string &$before Set to everything before the ':' + * @param string &$after Set to everything after the ':' + * @throws MWException + * @return string The position of the ':', or false if none found + */ + private function findColonNoLinks( $str, &$before, &$after ) { + $pos = strpos( $str, ':' ); + if ( $pos === false ) { + # Nothing to find! + return false; + } + + $lt = strpos( $str, '<' ); + if ( $lt === false || $lt > $pos ) { + # Easy; no tag nesting to worry about + $before = substr( $str, 0, $pos ); + $after = substr( $str, $pos + 1 ); + return $pos; + } + + # Ugly state machine to walk through avoiding tags. + $state = self::COLON_STATE_TEXT; + $stack = 0; + $len = strlen( $str ); + for ( $i = 0; $i < $len; $i++ ) { + $c = $str[$i]; + + switch ( $state ) { + # (Using the number is a performance hack for common cases) + case 0: # self::COLON_STATE_TEXT: + switch ( $c ) { + case "<": + # Could be either a tag or an tag + $state = self::COLON_STATE_TAGSTART; + break; + case ":": + if ( $stack == 0 ) { + # We found it! + $before = substr( $str, 0, $i ); + $after = substr( $str, $i + 1 ); + return $i; + } + # Embedded in a tag; don't break it. + break; + default: + # Skip ahead looking for something interesting + $colon = strpos( $str, ':', $i ); + if ( $colon === false ) { + # Nothing else interesting + return false; + } + $lt = strpos( $str, '<', $i ); + if ( $stack === 0 ) { + if ( $lt === false || $colon < $lt ) { + # We found it! + $before = substr( $str, 0, $colon ); + $after = substr( $str, $colon + 1 ); + return $i; + } + } + if ( $lt === false ) { + # Nothing else interesting to find; abort! + # We're nested, but there's no close tags left. Abort! + break 2; + } + # Skip ahead to next tag start + $i = $lt; + $state = self::COLON_STATE_TAGSTART; + } + break; + case 1: # self::COLON_STATE_TAG: + # In a + switch ( $c ) { + case ">": + $stack++; + $state = self::COLON_STATE_TEXT; + break; + case "/": + # Slash may be followed by >? + $state = self::COLON_STATE_TAGSLASH; + break; + default: + # ignore + } + break; + case 2: # self::COLON_STATE_TAGSTART: + switch ( $c ) { + case "/": + $state = self::COLON_STATE_CLOSETAG; + break; + case "!": + $state = self::COLON_STATE_COMMENT; + break; + case ">": + # Illegal early close? This shouldn't happen D: + $state = self::COLON_STATE_TEXT; + break; + default: + $state = self::COLON_STATE_TAG; + } + break; + case 3: # self::COLON_STATE_CLOSETAG: + # In a + if ( $c === ">" ) { + $stack--; + if ( $stack < 0 ) { + wfDebug( __METHOD__ . ": Invalid input; too many close tags\n" ); + return false; + } + $state = self::COLON_STATE_TEXT; + } + break; + case self::COLON_STATE_TAGSLASH: + if ( $c === ">" ) { + # Yes, a self-closed tag + $state = self::COLON_STATE_TEXT; + } else { + # Probably we're jumping the gun, and this is an attribute + $state = self::COLON_STATE_TAG; + } + break; + case 5: # self::COLON_STATE_COMMENT: + if ( $c === "-" ) { + $state = self::COLON_STATE_COMMENTDASH; + } + break; + case self::COLON_STATE_COMMENTDASH: + if ( $c === "-" ) { + $state = self::COLON_STATE_COMMENTDASHDASH; + } else { + $state = self::COLON_STATE_COMMENT; + } + break; + case self::COLON_STATE_COMMENTDASHDASH: + if ( $c === ">" ) { + $state = self::COLON_STATE_TEXT; + } else { + $state = self::COLON_STATE_COMMENT; + } + break; + default: + throw new MWException( "State machine error in " . __METHOD__ ); + } + } + if ( $stack > 0 ) { + wfDebug( __METHOD__ . ": Invalid input; not enough close tags (stack $stack, state $state)\n" ); + return false; + } + return false; + } +} diff --git a/includes/parser/Parser.php b/includes/parser/Parser.php index a1d62e57bc..96674becd4 100644 --- a/includes/parser/Parser.php +++ b/includes/parser/Parser.php @@ -99,16 +99,6 @@ class Parser { # Regular expression for a non-newline space const SPACE_NOT_NL = '(?:\t| |&\#0*160;|&\#[Xx]0*[Aa]0;|\p{Zs})'; - # State constants for the definition list colon extraction - const COLON_STATE_TEXT = 0; - const COLON_STATE_TAG = 1; - const COLON_STATE_TAGSTART = 2; - const COLON_STATE_CLOSETAG = 3; - const COLON_STATE_TAGSLASH = 4; - const COLON_STATE_COMMENT = 5; - const COLON_STATE_COMMENTDASH = 6; - const COLON_STATE_COMMENTDASHDASH = 7; - # Flags for preprocessToDom const PTD_FOR_INCLUSION = 1; @@ -176,14 +166,14 @@ class Parser { * @var ParserOutput */ public $mOutput; - public $mAutonumber, $mDTopen; + public $mAutonumber; /** * @var StripState */ public $mStripState; - public $mIncludeCount, $mArgStack, $mLastSection, $mInPre; + public $mIncludeCount; /** * @var LinkHolderArray */ @@ -342,11 +332,7 @@ class Parser { $this->mOutput = new ParserOutput; $this->mOptions->registerWatcher( [ $this->mOutput, 'recordOption' ] ); $this->mAutonumber = 0; - $this->mLastSection = ''; - $this->mDTopen = false; $this->mIncludeCount = []; - $this->mArgStack = false; - $this->mInPre = false; $this->mLinkHolders = new LinkHolderArray( $this ); $this->mLinkID = 0; $this->mRevisionObject = $this->mRevisionTimestamp = @@ -2401,127 +2387,6 @@ class Parser { return Linker::normalizeSubpageLink( $this->mTitle, $target, $text ); } - /**#@+ - * Used by doBlockLevels() - * @private - * - * @return string - */ - public function closeParagraph() { - $result = ''; - if ( $this->mLastSection != '' ) { - $result = 'mLastSection . ">\n"; - } - $this->mInPre = false; - $this->mLastSection = ''; - return $result; - } - - /** - * getCommon() returns the length of the longest common substring - * of both arguments, starting at the beginning of both. - * @private - * - * @param string $st1 - * @param string $st2 - * - * @return int - */ - public function getCommon( $st1, $st2 ) { - $fl = strlen( $st1 ); - $shorter = strlen( $st2 ); - if ( $fl < $shorter ) { - $shorter = $fl; - } - - for ( $i = 0; $i < $shorter; ++$i ) { - if ( $st1[$i] != $st2[$i] ) { - break; - } - } - return $i; - } - - /** - * These next three functions open, continue, and close the list - * element appropriate to the prefix character passed into them. - * @private - * - * @param string $char - * - * @return string - */ - public function openList( $char ) { - $result = $this->closeParagraph(); - - if ( '*' === $char ) { - $result .= "

  • "; - } elseif ( '#' === $char ) { - $result .= "
    1. "; - } elseif ( ':' === $char ) { - $result .= "
      "; - } elseif ( ';' === $char ) { - $result .= "
      "; - $this->mDTopen = true; - } else { - $result = ''; - } - - return $result; - } - - /** - * TODO: document - * @param string $char - * @private - * - * @return string - */ - public function nextItem( $char ) { - if ( '*' === $char || '#' === $char ) { - return "
    2. \n
    3. "; - } elseif ( ':' === $char || ';' === $char ) { - $close = "\n"; - if ( $this->mDTopen ) { - $close = "\n"; - } - if ( ';' === $char ) { - $this->mDTopen = true; - return $close . '
      '; - } else { - $this->mDTopen = false; - return $close . '
      '; - } - } - return ''; - } - - /** - * @todo Document - * @param string $char - * @private - * - * @return string - */ - public function closeList( $char ) { - if ( '*' === $char ) { - $text = "
"; - } elseif ( '#' === $char ) { - $text = ""; - } elseif ( ':' === $char ) { - if ( $this->mDTopen ) { - $this->mDTopen = false; - $text = ""; - } else { - $text = ""; - } - } else { - return ''; - } - return $text; - } - /**#@-*/ - /** * Make lists from lines starting with ':', '*', '#', etc. (DBL) * @@ -2531,365 +2396,7 @@ class Parser { * @return string The lists rendered as HTML */ public function doBlockLevels( $text, $linestart ) { - - # Parsing through the text line by line. The main thing - # happening here is handling of block-level elements p, pre, - # and making lists from lines starting with * # : etc. - $textLines = StringUtils::explode( "\n", $text ); - - $lastPrefix = $output = ''; - $this->mDTopen = $inBlockElem = false; - $prefixLength = 0; - $paragraphStack = false; - $inBlockquote = false; - - foreach ( $textLines as $oLine ) { - # Fix up $linestart - if ( !$linestart ) { - $output .= $oLine; - $linestart = true; - continue; - } - # * = ul - # # = ol - # ; = dt - # : = dd - - $lastPrefixLength = strlen( $lastPrefix ); - $preCloseMatch = preg_match( '/<\\/pre/i', $oLine ); - $preOpenMatch = preg_match( '/
 element, scan for and figure out what prefixes are there.
-			if ( !$this->mInPre ) {
-				# Multiple prefixes may abut each other for nested lists.
-				$prefixLength = strspn( $oLine, '*#:;' );
-				$prefix = substr( $oLine, 0, $prefixLength );
-
-				# eh?
-				# ; and : are both from definition-lists, so they're equivalent
-				#  for the purposes of determining whether or not we need to open/close
-				#  elements.
-				$prefix2 = str_replace( ';', ':', $prefix );
-				$t = substr( $oLine, $prefixLength );
-				$this->mInPre = (bool)$preOpenMatch;
-			} else {
-				# Don't interpret any other prefixes in preformatted text
-				$prefixLength = 0;
-				$prefix = $prefix2 = '';
-				$t = $oLine;
-			}
-
-			# List generation
-			if ( $prefixLength && $lastPrefix === $prefix2 ) {
-				# Same as the last item, so no need to deal with nesting or opening stuff
-				$output .= $this->nextItem( substr( $prefix, -1 ) );
-				$paragraphStack = false;
-
-				if ( substr( $prefix, -1 ) === ';' ) {
-					# The one nasty exception: definition lists work like this:
-					# ; title : definition text
-					# So we check for : in the remainder text to split up the
-					# title and definition, without b0rking links.
-					$term = $t2 = '';
-					if ( $this->findColonNoLinks( $t, $term, $t2 ) !== false ) {
-						$t = $t2;
-						$output .= $term . $this->nextItem( ':' );
-					}
-				}
-			} elseif ( $prefixLength || $lastPrefixLength ) {
-				# We need to open or close prefixes, or both.
-
-				# Either open or close a level...
-				$commonPrefixLength = $this->getCommon( $prefix, $lastPrefix );
-				$paragraphStack = false;
-
-				# Close all the prefixes which aren't shared.
-				while ( $commonPrefixLength < $lastPrefixLength ) {
-					$output .= $this->closeList( $lastPrefix[$lastPrefixLength - 1] );
-					--$lastPrefixLength;
-				}
-
-				# Continue the current prefix if appropriate.
-				if ( $prefixLength <= $commonPrefixLength && $commonPrefixLength > 0 ) {
-					$output .= $this->nextItem( $prefix[$commonPrefixLength - 1] );
-				}
-
-				# Open prefixes where appropriate.
-				if ( $lastPrefix && $prefixLength > $commonPrefixLength ) {
-					$output .= "\n";
-				}
-				while ( $prefixLength > $commonPrefixLength ) {
-					$char = substr( $prefix, $commonPrefixLength, 1 );
-					$output .= $this->openList( $char );
-
-					if ( ';' === $char ) {
-						# @todo FIXME: This is dupe of code above
-						if ( $this->findColonNoLinks( $t, $term, $t2 ) !== false ) {
-							$t = $t2;
-							$output .= $term . $this->nextItem( ':' );
-						}
-					}
-					++$commonPrefixLength;
-				}
-				if ( !$prefixLength && $lastPrefix ) {
-					$output .= "\n";
-				}
-				$lastPrefix = $prefix2;
-			}
-
-			# If we have no prefixes, go to paragraph mode.
-			if ( 0 == $prefixLength ) {
-				# No prefix (not in list)--go to paragraph mode
-				# XXX: use a stack for nestable elements like span, table and div
-				$openmatch = preg_match(
-					'/(?:closeParagraph();
-					if ( $preOpenMatch && !$preCloseMatch ) {
-						$this->mInPre = true;
-					}
-					$bqOffset = 0;
-					while ( preg_match( '/<(\\/?)blockquote[\s>]/i', $t,
-						$bqMatch, PREG_OFFSET_CAPTURE, $bqOffset )
-					) {
-						$inBlockquote = !$bqMatch[1][0]; // is this a close tag?
-						$bqOffset = $bqMatch[0][1] + strlen( $bqMatch[0][0] );
-					}
-					$inBlockElem = !$closematch;
-				} elseif ( !$inBlockElem && !$this->mInPre ) {
-					if ( ' ' == substr( $t, 0, 1 )
-						&& ( $this->mLastSection === 'pre' || trim( $t ) != '' )
-						&& !$inBlockquote
-					) {
-						# pre
-						if ( $this->mLastSection !== 'pre' ) {
-							$paragraphStack = false;
-							$output .= $this->closeParagraph() . '
';
-							$this->mLastSection = 'pre';
-						}
-						$t = substr( $t, 1 );
-					} else {
-						# paragraph
-						if ( trim( $t ) === '' ) {
-							if ( $paragraphStack ) {
-								$output .= $paragraphStack . '
'; - $paragraphStack = false; - $this->mLastSection = 'p'; - } else { - if ( $this->mLastSection !== 'p' ) { - $output .= $this->closeParagraph(); - $this->mLastSection = ''; - $paragraphStack = '

'; - } else { - $paragraphStack = '

'; - } - } - } else { - if ( $paragraphStack ) { - $output .= $paragraphStack; - $paragraphStack = false; - $this->mLastSection = 'p'; - } elseif ( $this->mLastSection !== 'p' ) { - $output .= $this->closeParagraph() . '

'; - $this->mLastSection = 'p'; - } - } - } - } - } - # somewhere above we forget to get out of pre block (bug 785) - if ( $preCloseMatch && $this->mInPre ) { - $this->mInPre = false; - } - if ( $paragraphStack === false ) { - $output .= $t; - if ( $prefixLength === 0 ) { - $output .= "\n"; - } - } - } - while ( $prefixLength ) { - $output .= $this->closeList( $prefix2[$prefixLength - 1] ); - --$prefixLength; - if ( !$prefixLength ) { - $output .= "\n"; - } - } - if ( $this->mLastSection != '' ) { - $output .= 'mLastSection . '>'; - $this->mLastSection = ''; - } - - return $output; - } - - /** - * Split up a string on ':', ignoring any occurrences inside tags - * to prevent illegal overlapping. - * - * @param string $str The string to split - * @param string &$before Set to everything before the ':' - * @param string &$after Set to everything after the ':' - * @throws MWException - * @return string The position of the ':', or false if none found - */ - public function findColonNoLinks( $str, &$before, &$after ) { - - $pos = strpos( $str, ':' ); - if ( $pos === false ) { - # Nothing to find! - return false; - } - - $lt = strpos( $str, '<' ); - if ( $lt === false || $lt > $pos ) { - # Easy; no tag nesting to worry about - $before = substr( $str, 0, $pos ); - $after = substr( $str, $pos + 1 ); - return $pos; - } - - # Ugly state machine to walk through avoiding tags. - $state = self::COLON_STATE_TEXT; - $stack = 0; - $len = strlen( $str ); - for ( $i = 0; $i < $len; $i++ ) { - $c = $str[$i]; - - switch ( $state ) { - # (Using the number is a performance hack for common cases) - case 0: # self::COLON_STATE_TEXT: - switch ( $c ) { - case "<": - # Could be either a tag or an tag - $state = self::COLON_STATE_TAGSTART; - break; - case ":": - if ( $stack == 0 ) { - # We found it! - $before = substr( $str, 0, $i ); - $after = substr( $str, $i + 1 ); - return $i; - } - # Embedded in a tag; don't break it. - break; - default: - # Skip ahead looking for something interesting - $colon = strpos( $str, ':', $i ); - if ( $colon === false ) { - # Nothing else interesting - return false; - } - $lt = strpos( $str, '<', $i ); - if ( $stack === 0 ) { - if ( $lt === false || $colon < $lt ) { - # We found it! - $before = substr( $str, 0, $colon ); - $after = substr( $str, $colon + 1 ); - return $i; - } - } - if ( $lt === false ) { - # Nothing else interesting to find; abort! - # We're nested, but there's no close tags left. Abort! - break 2; - } - # Skip ahead to next tag start - $i = $lt; - $state = self::COLON_STATE_TAGSTART; - } - break; - case 1: # self::COLON_STATE_TAG: - # In a - switch ( $c ) { - case ">": - $stack++; - $state = self::COLON_STATE_TEXT; - break; - case "/": - # Slash may be followed by >? - $state = self::COLON_STATE_TAGSLASH; - break; - default: - # ignore - } - break; - case 2: # self::COLON_STATE_TAGSTART: - switch ( $c ) { - case "/": - $state = self::COLON_STATE_CLOSETAG; - break; - case "!": - $state = self::COLON_STATE_COMMENT; - break; - case ">": - # Illegal early close? This shouldn't happen D: - $state = self::COLON_STATE_TEXT; - break; - default: - $state = self::COLON_STATE_TAG; - } - break; - case 3: # self::COLON_STATE_CLOSETAG: - # In a - if ( $c === ">" ) { - $stack--; - if ( $stack < 0 ) { - wfDebug( __METHOD__ . ": Invalid input; too many close tags\n" ); - return false; - } - $state = self::COLON_STATE_TEXT; - } - break; - case self::COLON_STATE_TAGSLASH: - if ( $c === ">" ) { - # Yes, a self-closed tag - $state = self::COLON_STATE_TEXT; - } else { - # Probably we're jumping the gun, and this is an attribute - $state = self::COLON_STATE_TAG; - } - break; - case 5: # self::COLON_STATE_COMMENT: - if ( $c === "-" ) { - $state = self::COLON_STATE_COMMENTDASH; - } - break; - case self::COLON_STATE_COMMENTDASH: - if ( $c === "-" ) { - $state = self::COLON_STATE_COMMENTDASHDASH; - } else { - $state = self::COLON_STATE_COMMENT; - } - break; - case self::COLON_STATE_COMMENTDASHDASH: - if ( $c === ">" ) { - $state = self::COLON_STATE_TEXT; - } else { - $state = self::COLON_STATE_COMMENT; - } - break; - default: - throw new MWException( "State machine error in " . __METHOD__ ); - } - } - if ( $stack > 0 ) { - wfDebug( __METHOD__ . ": Invalid input; not enough close tags (stack $stack, state $state)\n" ); - return false; - } - return false; + return BlockLevelPass::doBlockLevels( $text, $linestart ); } /** -- 2.20.1