+// © 2016 and later: Unicode, Inc. and others.
+// License & terms of use: http://www.unicode.org/copyright.html
/*
**************************************************************************
-* Copyright (C) 2002-2012 International Business Machines Corporation *
-* and others. All rights reserved. *
+* Copyright (C) 2002-2016 International Business Machines Corporation
+* and others. All rights reserved.
**************************************************************************
*/
//
#include "unicode/utf16.h"
#include "uassert.h"
#include "cmemory.h"
+#include "cstr.h"
#include "uvector.h"
#include "uvectr32.h"
#include "uvectr64.h"
// #include <malloc.h> // Needed for heapcheck testing
-// Find progress callback
-// ----------------------
-// Macro to inline test & call to ReportFindProgress(). Eliminates unnecessary function call.
-//
-#define REGEXFINDPROGRESS_INTERRUPT(pos, status) \
- (fFindProgressCallbackFn != NULL) && (ReportFindProgress(pos, status) == FALSE)
-
-
-// Smart Backtracking
-// ------------------
-// When a failure would go back to a LOOP_C instruction,
-// strings, characters, and setrefs scan backwards for a valid start
-// character themselves, pop the stack, and save state, emulating the
-// LOOP_C's effect but assured that the next character of input is a
-// possible matching character.
-//
-// Good idea in theory; unfortunately it only helps out a few specific
-// cases and slows the engine down a little in the rest.
-
U_NAMESPACE_BEGIN
// Default limit for the size of the back track stack, to avoid system
// This constant determines that state saves per tick number.
static const int32_t TIMER_INITIAL_VALUE = 10000;
+
+// Test for any of the Unicode line terminating characters.
+static inline UBool isLineTerminator(UChar32 c) {
+ if (c & ~(0x0a | 0x0b | 0x0c | 0x0d | 0x85 | 0x2028 | 0x2029)) {
+ return false;
+ }
+ return (c<=0x0d && c>=0x0a) || c==0x85 || c==0x2028 || c==0x2029;
+}
+
//-----------------------------------------------------------------------------
//
// Constructor and Destructor
//
//-----------------------------------------------------------------------------
-RegexMatcher::RegexMatcher(const RegexPattern *pat) {
+RegexMatcher::RegexMatcher(const RegexPattern *pat) {
fDeferredStatus = U_ZERO_ERROR;
init(fDeferredStatus);
if (U_FAILURE(fDeferredStatus)) {
UParseError pe;
fPatternOwned = RegexPattern::compile(regexp, flags, pe, status);
fPattern = fPatternOwned;
-
+
UText inputText = UTEXT_INITIALIZER;
utext_openConstUnicodeString(&inputText, &input, &status);
init2(&inputText, status);
utext_close(&inputText);
- fInputUniStrMaybeMutable = TRUE;
+ fInputUniStrMaybeMutable = TRUE;
}
}
-RegexMatcher::RegexMatcher(const UnicodeString ®exp,
+RegexMatcher::RegexMatcher(const UnicodeString ®exp,
uint32_t flags, UErrorCode &status) {
init(status);
if (U_FAILURE(status)) {
init2(RegexStaticSets::gStaticSets->fEmptyText, status);
}
-RegexMatcher::RegexMatcher(UText *regexp,
+RegexMatcher::RegexMatcher(UText *regexp,
uint32_t flags, UErrorCode &status) {
init(status);
if (U_FAILURE(status)) {
fPatternOwned = NULL;
fPattern = NULL;
}
-
+
if (fInput) {
delete fInput;
}
if (fAltInputText) {
utext_close(fAltInputText);
}
-
+
#if UCONFIG_NO_BREAK_ITERATION==0
delete fWordBreakItr;
#endif
fDeferredStatus = status;
fData = fSmallData;
fWordBreakItr = NULL;
-
+
fStack = NULL;
fInputText = NULL;
fAltInputText = NULL;
fInput = NULL;
fInputLength = 0;
fInputUniStrMaybeMutable = FALSE;
-
- if (U_FAILURE(status)) {
- fDeferredStatus = status;
- }
}
//
return;
}
- if (fPattern->fDataSize > (int32_t)(sizeof(fSmallData)/sizeof(fSmallData[0]))) {
- fData = (int64_t *)uprv_malloc(fPattern->fDataSize * sizeof(int64_t));
+ if (fPattern->fDataSize > UPRV_LENGTHOF(fSmallData)) {
+ fData = (int64_t *)uprv_malloc(fPattern->fDataSize * sizeof(int64_t));
if (fData == NULL) {
status = fDeferredStatus = U_MEMORY_ALLOCATION_ERROR;
return;
static const UChar BACKSLASH = 0x5c;
static const UChar DOLLARSIGN = 0x24;
+static const UChar LEFTBRACKET = 0x7b;
+static const UChar RIGHTBRACKET = 0x7d;
+
//--------------------------------------------------------------------------------
//
// appendReplacement
const UnicodeString &replacement,
UErrorCode &status) {
UText replacementText = UTEXT_INITIALIZER;
-
+
utext_openConstUnicodeString(&replacementText, &replacement, &status);
- if (U_SUCCESS(status)) {
+ if (U_SUCCESS(status)) {
UText resultText = UTEXT_INITIALIZER;
utext_openUnicodeString(&resultText, &dest, &status);
-
+
if (U_SUCCESS(status)) {
appendReplacement(&resultText, &replacementText, status);
utext_close(&resultText);
}
utext_close(&replacementText);
}
-
+
return *this;
}
status = U_REGEX_INVALID_STATE;
return *this;
}
-
+
// Copy input string from the end of previous match to start of current match
int64_t destLen = utext_nativeLength(dest);
if (fMatchStart > fAppendPosition) {
if (UTEXT_FULL_TEXT_IN_CHUNK(fInputText, fInputLength)) {
- destLen += utext_replace(dest, destLen, destLen, fInputText->chunkContents+fAppendPosition,
+ destLen += utext_replace(dest, destLen, destLen, fInputText->chunkContents+fAppendPosition,
(int32_t)(fMatchStart-fAppendPosition), &status);
} else {
int32_t len16;
}
}
fAppendPosition = fMatchEnd;
-
-
+
+
// scan the replacement text, looking for substitutions ($n) and \escapes.
// TODO: optimize this loop by efficiently scanning for '$' or '\',
// move entire ranges not containing substitutions.
UTEXT_SETNATIVEINDEX(replacement, 0);
- UChar32 c = UTEXT_NEXT32(replacement);
- while (c != U_SENTINEL) {
+ for (UChar32 c = UTEXT_NEXT32(replacement); U_SUCCESS(status) && c != U_SENTINEL; c = UTEXT_NEXT32(replacement)) {
if (c == BACKSLASH) {
// Backslash Escape. Copy the following char out without further checks.
// Note: Surrogate pairs don't need any special handling
if (c == U_SENTINEL) {
break;
}
-
+
if (c==0x55/*U*/ || c==0x75/*u*/) {
// We have a \udddd or \Udddddddd escape sequence.
int32_t offset = 0;
}
}
} else {
- // We've got a $. Pick up a capture group number if one follows.
- // Consume at most the number of digits necessary for the largest capture
- // number that is valid for this pattern.
-
- int32_t numDigits = 0;
+ // We've got a $. Pick up a capture group name or number if one follows.
+ // Consume digits so long as the resulting group number <= the number of
+ // number of capture groups in the pattern.
+
int32_t groupNum = 0;
- UChar32 digitC;
- for (;;) {
- digitC = UTEXT_CURRENT32(replacement);
- if (digitC == U_SENTINEL) {
- break;
- }
- if (u_isdigit(digitC) == FALSE) {
- break;
+ int32_t numDigits = 0;
+ UChar32 nextChar = utext_current32(replacement);
+ if (nextChar == LEFTBRACKET) {
+ // Scan for a Named Capture Group, ${name}.
+ UnicodeString groupName;
+ utext_next32(replacement);
+ while(U_SUCCESS(status) && nextChar != RIGHTBRACKET) {
+ nextChar = utext_next32(replacement);
+ if (nextChar == U_SENTINEL) {
+ status = U_REGEX_INVALID_CAPTURE_GROUP_NAME;
+ } else if ((nextChar >= 0x41 && nextChar <= 0x5a) || // A..Z
+ (nextChar >= 0x61 && nextChar <= 0x7a) || // a..z
+ (nextChar >= 0x31 && nextChar <= 0x39)) { // 0..9
+ groupName.append(nextChar);
+ } else if (nextChar == RIGHTBRACKET) {
+ groupNum = uhash_geti(fPattern->fNamedCaptureMap, &groupName);
+ if (groupNum == 0) {
+ status = U_REGEX_INVALID_CAPTURE_GROUP_NAME;
+ }
+ } else {
+ // Character was something other than a name char or a closing '}'
+ status = U_REGEX_INVALID_CAPTURE_GROUP_NAME;
+ }
}
- (void)UTEXT_NEXT32(replacement);
- groupNum=groupNum*10 + u_charDigitValue(digitC);
- numDigits++;
- if (numDigits >= fPattern->fMaxCaptureDigits) {
- break;
+
+ } else if (u_isdigit(nextChar)) {
+ // $n Scan for a capture group number
+ int32_t numCaptureGroups = fPattern->fGroupMap->size();
+ for (;;) {
+ nextChar = UTEXT_CURRENT32(replacement);
+ if (nextChar == U_SENTINEL) {
+ break;
+ }
+ if (u_isdigit(nextChar) == FALSE) {
+ break;
+ }
+ int32_t nextDigitVal = u_charDigitValue(nextChar);
+ if (groupNum*10 + nextDigitVal > numCaptureGroups) {
+ // Don't consume the next digit if it makes the capture group number too big.
+ if (numDigits == 0) {
+ status = U_INDEX_OUTOFBOUNDS_ERROR;
+ }
+ break;
+ }
+ (void)UTEXT_NEXT32(replacement);
+ groupNum=groupNum*10 + nextDigitVal;
+ ++numDigits;
}
- }
-
-
- if (numDigits == 0) {
- // The $ didn't introduce a group number at all.
- // Treat it as just part of the substitution text.
- UChar c16 = DOLLARSIGN;
- destLen += utext_replace(dest, destLen, destLen, &c16, 1, &status);
} else {
- // Finally, append the capture group data to the destination.
+ // $ not followed by capture group name or number.
+ status = U_REGEX_INVALID_CAPTURE_GROUP_NAME;
+ }
+
+ if (U_SUCCESS(status)) {
destLen += appendGroup(groupNum, dest, status);
- if (U_FAILURE(status)) {
- // Can fail if group number is out of range.
- break;
- }
}
- }
-
- if (U_FAILURE(status)) {
- break;
- } else {
- c = UTEXT_NEXT32(replacement);
- }
- }
-
+ } // End of $ capture group handling
+ } // End of per-character loop through the replacement string.
+
return *this;
}
UErrorCode status = U_ZERO_ERROR;
UText resultText = UTEXT_INITIALIZER;
utext_openUnicodeString(&resultText, &dest, &status);
-
+
if (U_SUCCESS(status)) {
appendTail(&resultText, status);
utext_close(&resultText);
}
-
+
return dest;
}
// appendTail, UText mode
//
UText *RegexMatcher::appendTail(UText *dest, UErrorCode &status) {
- UBool bailOut = FALSE;
if (U_FAILURE(status)) {
- bailOut = TRUE;
+ return dest;
}
if (U_FAILURE(fDeferredStatus)) {
status = fDeferredStatus;
- bailOut = TRUE;
- }
-
- if (bailOut) {
- // dest must not be NULL
- if (dest) {
- utext_replace(dest, utext_nativeLength(dest), utext_nativeLength(dest), NULL, 0, &status);
- return dest;
- }
+ return dest;
}
-
+
if (fInputLength > fAppendPosition) {
if (UTEXT_FULL_TEXT_IN_CHUNK(fInputText, fInputLength)) {
int64_t destLen = utext_nativeLength(dest);
- utext_replace(dest, destLen, destLen, fInputText->chunkContents+fAppendPosition,
+ utext_replace(dest, destLen, destLen, fInputText->chunkContents+fAppendPosition,
(int32_t)(fInputLength-fAppendPosition), &status);
} else {
int32_t len16;
len16 = utext_extract(fInputText, fAppendPosition, fInputLength, NULL, 0, &status);
status = U_ZERO_ERROR; // buffer overflow
}
-
+
UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16));
if (inputChars == NULL) {
fDeferredStatus = U_MEMORY_ALLOCATION_ERROR;
} else {
- utext_extract(fInputText, fAppendPosition, fInputLength, inputChars, len16, &status); // unterminated
+ utext_extract(fInputText, fAppendPosition, fInputLength, inputChars, len16, &status); // unterminated
int64_t destLen = utext_nativeLength(dest);
utext_replace(dest, destLen, destLen, inputChars, len16, &status);
uprv_free(inputChars);
}
int64_t e = -1;
if (group == 0) {
- e = fMatchEnd;
+ e = fMatchEnd;
} else {
// Get the position within the stack frame of the variables for
// this capture group.
U_ASSERT(groupOffset >= 0);
e = fFrame->fExtra[groupOffset + 1];
}
-
+
return e;
}
return (int32_t)end64(group, err);
}
+//--------------------------------------------------------------------------------
+//
+// findProgressInterrupt This function is called once for each advance in the target
+// string from the find() function, and calls the user progress callback
+// function if there is one installed.
+//
+// Return: TRUE if the find operation is to be terminated.
+// FALSE if the find operation is to continue running.
+//
+//--------------------------------------------------------------------------------
+UBool RegexMatcher::findProgressInterrupt(int64_t pos, UErrorCode &status) {
+ if (fFindProgressCallbackFn && !(*fFindProgressCallbackFn)(fFindProgressCallbackContext, pos)) {
+ status = U_REGEX_STOPPED_BY_CALLER;
+ return TRUE;
+ }
+ return FALSE;
+}
//--------------------------------------------------------------------------------
//
//
//--------------------------------------------------------------------------------
UBool RegexMatcher::find() {
+ if (U_FAILURE(fDeferredStatus)) {
+ return FALSE;
+ }
+ UErrorCode status = U_ZERO_ERROR;
+ UBool result = find(status);
+ return result;
+}
+
+//--------------------------------------------------------------------------------
+//
+// find()
+//
+//--------------------------------------------------------------------------------
+UBool RegexMatcher::find(UErrorCode &status) {
// Start at the position of the last match end. (Will be zero if the
// matcher has been reset.)
//
+ if (U_FAILURE(status)) {
+ return FALSE;
+ }
if (U_FAILURE(fDeferredStatus)) {
+ status = fDeferredStatus;
return FALSE;
}
-
+
if (UTEXT_FULL_TEXT_IN_CHUNK(fInputText, fInputLength)) {
- return findUsingChunk();
+ return findUsingChunk(status);
}
int64_t startPos = fMatchEnd;
return FALSE;
}
} else {
- // For now, let the matcher discover that it can't match on its own
- // We don't know how long the match len is in native characters
- testStartLimit = fActiveLimit;
+ // We don't know exactly how long the minimum match length is in native characters.
+ // Treat anything > 0 as 1.
+ testStartLimit = fActiveLimit - (fPattern->fMinMatchLen > 0 ? 1 : 0);
}
UChar32 c;
switch (fPattern->fStartType) {
case START_NO_INFO:
- // No optimization was found.
+ // No optimization was found.
// Try a match at each input position.
for (;;) {
- MatchAt(startPos, FALSE, fDeferredStatus);
- if (U_FAILURE(fDeferredStatus)) {
+ MatchAt(startPos, FALSE, status);
+ if (U_FAILURE(status)) {
return FALSE;
}
if (fMatch) {
// Note that it's perfectly OK for a pattern to have a zero-length
// match at the end of a string, so we must make sure that the loop
// runs with startPos == testStartLimit the last time through.
- if (REGEXFINDPROGRESS_INTERRUPT(startPos, fDeferredStatus))
+ if (findProgressInterrupt(startPos, status))
return FALSE;
}
- U_ASSERT(FALSE);
+ UPRV_UNREACHABLE;
case START_START:
// Matches are only possible at the start of the input string
fMatch = FALSE;
return FALSE;
}
- MatchAt(startPos, FALSE, fDeferredStatus);
- if (U_FAILURE(fDeferredStatus)) {
+ MatchAt(startPos, FALSE, status);
+ if (U_FAILURE(status)) {
return FALSE;
}
return fMatch;
{
// Match may start on any char from a pre-computed set.
U_ASSERT(fPattern->fMinMatchLen > 0);
- int64_t pos;
UTEXT_SETNATIVEINDEX(fInputText, startPos);
for (;;) {
+ int64_t pos = startPos;
c = UTEXT_NEXT32(fInputText);
- pos = UTEXT_GETNATIVEINDEX(fInputText);
+ startPos = UTEXT_GETNATIVEINDEX(fInputText);
// c will be -1 (U_SENTINEL) at end of text, in which case we
// skip this next block (so we don't have a negative array index)
// and handle end of text in the following block.
if (c >= 0 && ((c<256 && fPattern->fInitialChars8->contains(c)) ||
(c>=256 && fPattern->fInitialChars->contains(c)))) {
- MatchAt(startPos, FALSE, fDeferredStatus);
- if (U_FAILURE(fDeferredStatus)) {
+ MatchAt(pos, FALSE, status);
+ if (U_FAILURE(status)) {
return FALSE;
}
if (fMatch) {
}
UTEXT_SETNATIVEINDEX(fInputText, pos);
}
- if (startPos >= testStartLimit) {
+ if (startPos > testStartLimit) {
fMatch = FALSE;
fHitEnd = TRUE;
return FALSE;
}
- startPos = pos;
- if (REGEXFINDPROGRESS_INTERRUPT(startPos, fDeferredStatus))
+ if (findProgressInterrupt(startPos, status))
return FALSE;
}
}
- U_ASSERT(FALSE);
+ UPRV_UNREACHABLE;
case START_STRING:
case START_CHAR:
// Match starts on exactly one char.
U_ASSERT(fPattern->fMinMatchLen > 0);
UChar32 theChar = fPattern->fInitialChar;
- int64_t pos;
UTEXT_SETNATIVEINDEX(fInputText, startPos);
for (;;) {
+ int64_t pos = startPos;
c = UTEXT_NEXT32(fInputText);
- pos = UTEXT_GETNATIVEINDEX(fInputText);
+ startPos = UTEXT_GETNATIVEINDEX(fInputText);
if (c == theChar) {
- MatchAt(startPos, FALSE, fDeferredStatus);
- if (U_FAILURE(fDeferredStatus)) {
+ MatchAt(pos, FALSE, status);
+ if (U_FAILURE(status)) {
return FALSE;
}
if (fMatch) {
return TRUE;
}
- UTEXT_SETNATIVEINDEX(fInputText, pos);
+ UTEXT_SETNATIVEINDEX(fInputText, startPos);
}
- if (startPos >= testStartLimit) {
+ if (startPos > testStartLimit) {
fMatch = FALSE;
fHitEnd = TRUE;
return FALSE;
}
- startPos = pos;
- if (REGEXFINDPROGRESS_INTERRUPT(startPos, fDeferredStatus))
+ if (findProgressInterrupt(startPos, status))
return FALSE;
}
}
- U_ASSERT(FALSE);
+ UPRV_UNREACHABLE;
case START_LINE:
{
- UChar32 c;
+ UChar32 ch;
if (startPos == fAnchorStart) {
- MatchAt(startPos, FALSE, fDeferredStatus);
- if (U_FAILURE(fDeferredStatus)) {
+ MatchAt(startPos, FALSE, status);
+ if (U_FAILURE(status)) {
return FALSE;
}
if (fMatch) {
return TRUE;
}
UTEXT_SETNATIVEINDEX(fInputText, startPos);
- c = UTEXT_NEXT32(fInputText);
+ ch = UTEXT_NEXT32(fInputText);
startPos = UTEXT_GETNATIVEINDEX(fInputText);
} else {
UTEXT_SETNATIVEINDEX(fInputText, startPos);
- c = UTEXT_PREVIOUS32(fInputText);
+ ch = UTEXT_PREVIOUS32(fInputText);
UTEXT_SETNATIVEINDEX(fInputText, startPos);
}
if (fPattern->fFlags & UREGEX_UNIX_LINES) {
for (;;) {
- if (c == 0x0a) {
- MatchAt(startPos, FALSE, fDeferredStatus);
- if (U_FAILURE(fDeferredStatus)) {
+ if (ch == 0x0a) {
+ MatchAt(startPos, FALSE, status);
+ if (U_FAILURE(status)) {
return FALSE;
}
if (fMatch) {
fHitEnd = TRUE;
return FALSE;
}
- c = UTEXT_NEXT32(fInputText);
+ ch = UTEXT_NEXT32(fInputText);
startPos = UTEXT_GETNATIVEINDEX(fInputText);
// Note that it's perfectly OK for a pattern to have a zero-length
// match at the end of a string, so we must make sure that the loop
// runs with startPos == testStartLimit the last time through.
- if (REGEXFINDPROGRESS_INTERRUPT(startPos, fDeferredStatus))
+ if (findProgressInterrupt(startPos, status))
return FALSE;
}
} else {
for (;;) {
- if (((c & 0x7f) <= 0x29) && // First quickly bypass as many chars as possible
- ((c<=0x0d && c>=0x0a) || c==0x85 ||c==0x2028 || c==0x2029 )) {
- if (c == 0x0d && startPos < fActiveLimit && UTEXT_CURRENT32(fInputText) == 0x0a) {
- (void)UTEXT_NEXT32(fInputText);
- startPos = UTEXT_GETNATIVEINDEX(fInputText);
- }
- MatchAt(startPos, FALSE, fDeferredStatus);
- if (U_FAILURE(fDeferredStatus)) {
- return FALSE;
- }
- if (fMatch) {
- return TRUE;
- }
- UTEXT_SETNATIVEINDEX(fInputText, startPos);
+ if (isLineTerminator(ch)) {
+ if (ch == 0x0d && startPos < fActiveLimit && UTEXT_CURRENT32(fInputText) == 0x0a) {
+ (void)UTEXT_NEXT32(fInputText);
+ startPos = UTEXT_GETNATIVEINDEX(fInputText);
+ }
+ MatchAt(startPos, FALSE, status);
+ if (U_FAILURE(status)) {
+ return FALSE;
+ }
+ if (fMatch) {
+ return TRUE;
+ }
+ UTEXT_SETNATIVEINDEX(fInputText, startPos);
}
if (startPos >= testStartLimit) {
fMatch = FALSE;
fHitEnd = TRUE;
return FALSE;
}
- c = UTEXT_NEXT32(fInputText);
+ ch = UTEXT_NEXT32(fInputText);
startPos = UTEXT_GETNATIVEINDEX(fInputText);
// Note that it's perfectly OK for a pattern to have a zero-length
// match at the end of a string, so we must make sure that the loop
// runs with startPos == testStartLimit the last time through.
- if (REGEXFINDPROGRESS_INTERRUPT(startPos, fDeferredStatus))
+ if (findProgressInterrupt(startPos, status))
return FALSE;
}
}
}
default:
- U_ASSERT(FALSE);
+ UPRV_UNREACHABLE;
}
- U_ASSERT(FALSE);
- return FALSE;
+ UPRV_UNREACHABLE;
}
status = U_INDEX_OUTOFBOUNDS_ERROR;
return FALSE;
}
-
+
int64_t nativeStart = start;
if (nativeStart < fActiveStart || nativeStart > fActiveLimit) {
status = U_INDEX_OUTOFBOUNDS_ERROR;
return FALSE;
}
- fMatchEnd = nativeStart;
- return find();
+ fMatchEnd = nativeStart;
+ return find(status);
}
// entire string is available in the UText's chunk buffer.
//
//--------------------------------------------------------------------------------
-UBool RegexMatcher::findUsingChunk() {
+UBool RegexMatcher::findUsingChunk(UErrorCode &status) {
// Start at the position of the last match end. (Will be zero if the
// matcher has been reset.
//
if (startPos==0) {
startPos = (int32_t)fActiveStart;
}
-
+
const UChar *inputBuf = fInputText->chunkContents;
if (fMatch) {
// Save the position of any previous successful match.
fLastMatchEnd = fMatchEnd;
-
+
if (fMatchStart == fMatchEnd) {
// Previous match had zero length. Move start position up one position
// to avoid sending find() into a loop on zero-length matches.
return FALSE;
}
}
-
-
+
+
// Compute the position in the input string beyond which a match can not begin, because
// the minimum length match would extend past the end of the input.
// Note: some patterns that cannot match anything will have fMinMatchLength==Max Int.
// Be aware of possible overflows if making changes here.
+ // Note: a match can begin at inputBuf + testLen; it is an inclusive limit.
int32_t testLen = (int32_t)(fActiveLimit - fPattern->fMinMatchLen);
if (startPos > testLen) {
fMatch = FALSE;
fHitEnd = TRUE;
return FALSE;
}
-
+
UChar32 c;
U_ASSERT(startPos >= 0);
-
+
switch (fPattern->fStartType) {
case START_NO_INFO:
- // No optimization was found.
+ // No optimization was found.
// Try a match at each input position.
for (;;) {
- MatchChunkAt(startPos, FALSE, fDeferredStatus);
- if (U_FAILURE(fDeferredStatus)) {
+ MatchChunkAt(startPos, FALSE, status);
+ if (U_FAILURE(status)) {
return FALSE;
}
if (fMatch) {
// Note that it's perfectly OK for a pattern to have a zero-length
// match at the end of a string, so we must make sure that the loop
// runs with startPos == testLen the last time through.
- if (REGEXFINDPROGRESS_INTERRUPT(startPos, fDeferredStatus))
+ if (findProgressInterrupt(startPos, status))
return FALSE;
}
- U_ASSERT(FALSE);
-
+ UPRV_UNREACHABLE;
+
case START_START:
// Matches are only possible at the start of the input string
// (pattern begins with ^ or \A)
fMatch = FALSE;
return FALSE;
}
- MatchChunkAt(startPos, FALSE, fDeferredStatus);
- if (U_FAILURE(fDeferredStatus)) {
+ MatchChunkAt(startPos, FALSE, status);
+ if (U_FAILURE(status)) {
return FALSE;
}
return fMatch;
-
-
+
+
case START_SET:
{
// Match may start on any char from a pre-computed set.
U16_NEXT(inputBuf, startPos, fActiveLimit, c); // like c = inputBuf[startPos++];
if ((c<256 && fPattern->fInitialChars8->contains(c)) ||
(c>=256 && fPattern->fInitialChars->contains(c))) {
- MatchChunkAt(pos, FALSE, fDeferredStatus);
- if (U_FAILURE(fDeferredStatus)) {
+ MatchChunkAt(pos, FALSE, status);
+ if (U_FAILURE(status)) {
return FALSE;
}
if (fMatch) {
return TRUE;
}
}
- if (pos >= testLen) {
+ if (startPos > testLen) {
fMatch = FALSE;
fHitEnd = TRUE;
return FALSE;
}
- if (REGEXFINDPROGRESS_INTERRUPT(startPos, fDeferredStatus))
+ if (findProgressInterrupt(startPos, status))
return FALSE;
}
}
- U_ASSERT(FALSE);
-
+ UPRV_UNREACHABLE;
+
case START_STRING:
case START_CHAR:
{
int32_t pos = startPos;
U16_NEXT(inputBuf, startPos, fActiveLimit, c); // like c = inputBuf[startPos++];
if (c == theChar) {
- MatchChunkAt(pos, FALSE, fDeferredStatus);
- if (U_FAILURE(fDeferredStatus)) {
+ MatchChunkAt(pos, FALSE, status);
+ if (U_FAILURE(status)) {
return FALSE;
}
if (fMatch) {
return TRUE;
}
}
- if (pos >= testLen) {
+ if (startPos > testLen) {
fMatch = FALSE;
fHitEnd = TRUE;
return FALSE;
}
- if (REGEXFINDPROGRESS_INTERRUPT(startPos, fDeferredStatus))
+ if (findProgressInterrupt(startPos, status))
return FALSE;
}
}
- U_ASSERT(FALSE);
-
+ UPRV_UNREACHABLE;
+
case START_LINE:
{
- UChar32 c;
+ UChar32 ch;
if (startPos == fAnchorStart) {
- MatchChunkAt(startPos, FALSE, fDeferredStatus);
- if (U_FAILURE(fDeferredStatus)) {
+ MatchChunkAt(startPos, FALSE, status);
+ if (U_FAILURE(status)) {
return FALSE;
}
if (fMatch) {
return TRUE;
}
+ // In bug 31063104 which has a zero-length text buffer we get here with
+ // inputBuf=NULL, startPos=fActiveLimit=0 (and fMatch F) which violates the
+ // requirement for U16_FWD_1 (utf16.h) that startPos < fActiveLimit. Having
+ // inputBuf=NULL (chunkContexts NULL) is probably due to an error in the
+ // CFStringUText functions. Nevertheless, to be defensive, add test below.
+ if (startPos >= testLen) {
+ fHitEnd = TRUE;
+ return FALSE;
+ }
U16_FWD_1(inputBuf, startPos, fActiveLimit);
}
-
+
if (fPattern->fFlags & UREGEX_UNIX_LINES) {
for (;;) {
- c = inputBuf[startPos-1];
- if (c == 0x0a) {
- MatchChunkAt(startPos, FALSE, fDeferredStatus);
- if (U_FAILURE(fDeferredStatus)) {
+ ch = inputBuf[startPos-1];
+ if (ch == 0x0a) {
+ MatchChunkAt(startPos, FALSE, status);
+ if (U_FAILURE(status)) {
return FALSE;
}
if (fMatch) {
// Note that it's perfectly OK for a pattern to have a zero-length
// match at the end of a string, so we must make sure that the loop
// runs with startPos == testLen the last time through.
- if (REGEXFINDPROGRESS_INTERRUPT(startPos, fDeferredStatus))
+ if (findProgressInterrupt(startPos, status))
return FALSE;
}
} else {
for (;;) {
- c = inputBuf[startPos-1];
- if (((c & 0x7f) <= 0x29) && // First quickly bypass as many chars as possible
- ((c<=0x0d && c>=0x0a) || c==0x85 ||c==0x2028 || c==0x2029 )) {
- if (c == 0x0d && startPos < fActiveLimit && inputBuf[startPos] == 0x0a) {
+ ch = inputBuf[startPos-1];
+ if (isLineTerminator(ch)) {
+ if (ch == 0x0d && startPos < fActiveLimit && inputBuf[startPos] == 0x0a) {
startPos++;
}
- MatchChunkAt(startPos, FALSE, fDeferredStatus);
- if (U_FAILURE(fDeferredStatus)) {
+ MatchChunkAt(startPos, FALSE, status);
+ if (U_FAILURE(status)) {
return FALSE;
}
if (fMatch) {
// Note that it's perfectly OK for a pattern to have a zero-length
// match at the end of a string, so we must make sure that the loop
// runs with startPos == testLen the last time through.
- if (REGEXFINDPROGRESS_INTERRUPT(startPos, fDeferredStatus))
+ if (findProgressInterrupt(startPos, status))
return FALSE;
}
}
}
-
+
default:
- U_ASSERT(FALSE);
+ UPRV_UNREACHABLE;
}
-
- U_ASSERT(FALSE);
- return FALSE;
+
+ UPRV_UNREACHABLE;
}
// Return immutable shallow clone
UText *RegexMatcher::group(int32_t groupNum, UText *dest, int64_t &group_len, UErrorCode &status) const {
group_len = 0;
- UBool bailOut = FALSE;
if (U_FAILURE(status)) {
return dest;
}
if (U_FAILURE(fDeferredStatus)) {
status = fDeferredStatus;
- bailOut = TRUE;
- }
- if (fMatch == FALSE) {
+ } else if (fMatch == FALSE) {
status = U_REGEX_INVALID_STATE;
- bailOut = TRUE;
- }
- if (groupNum < 0 || groupNum > fPattern->fGroupMap->size()) {
+ } else if (groupNum < 0 || groupNum > fPattern->fGroupMap->size()) {
status = U_INDEX_OUTOFBOUNDS_ERROR;
- bailOut = TRUE;
}
-
- if (bailOut) {
- return (dest) ? dest : utext_openUChars(NULL, NULL, 0, &status);
+
+ if (U_FAILURE(status)) {
+ return dest;
}
-
+
int64_t s, e;
if (groupNum == 0) {
s = fMatchStart;
}
U_ASSERT(s <= e);
group_len = e - s;
-
+
dest = utext_clone(dest, fInputText, FALSE, TRUE, &status);
if (dest)
UTEXT_SETNATIVEINDEX(dest, s);
UnicodeString RegexMatcher::group(int32_t groupNum, UErrorCode &status) const {
UnicodeString result;
- if (U_FAILURE(status)) {
+ int64_t groupStart = start64(groupNum, status);
+ int64_t groupEnd = end64(groupNum, status);
+ if (U_FAILURE(status) || groupStart == -1 || groupStart == groupEnd) {
return result;
}
- UText resultText = UTEXT_INITIALIZER;
- utext_openUnicodeString(&resultText, &result, &status);
- group(groupNum, &resultText, status);
- utext_close(&resultText);
- return result;
-}
-
-// Return deep (mutable) clone
-// Technology Preview (as an API), but note that the UnicodeString API is implemented
-// using this function.
-UText *RegexMatcher::group(int32_t groupNum, UText *dest, UErrorCode &status) const {
- UBool bailOut = FALSE;
- if (U_FAILURE(status)) {
- return dest;
- }
- if (U_FAILURE(fDeferredStatus)) {
- status = fDeferredStatus;
- bailOut = TRUE;
- }
-
- if (fMatch == FALSE) {
- status = U_REGEX_INVALID_STATE;
- bailOut = TRUE;
- }
- if (groupNum < 0 || groupNum > fPattern->fGroupMap->size()) {
- status = U_INDEX_OUTOFBOUNDS_ERROR;
- bailOut = TRUE;
- }
-
- if (bailOut) {
- if (dest) {
- utext_replace(dest, 0, utext_nativeLength(dest), NULL, 0, &status);
- return dest;
- } else {
- return utext_openUChars(NULL, NULL, 0, &status);
- }
- }
-
- int64_t s, e;
- if (groupNum == 0) {
- s = fMatchStart;
- e = fMatchEnd;
- } else {
- int32_t groupOffset = fPattern->fGroupMap->elementAti(groupNum-1);
- U_ASSERT(groupOffset < fPattern->fFrameSize);
- U_ASSERT(groupOffset >= 0);
- s = fFrame->fExtra[groupOffset];
- e = fFrame->fExtra[groupOffset+1];
- }
-
- if (s < 0) {
- // A capture group wasn't part of the match
- if (dest) {
- utext_replace(dest, 0, utext_nativeLength(dest), NULL, 0, &status);
- return dest;
- } else {
- return utext_openUChars(NULL, NULL, 0, &status);
- }
+ // Get the group length using a utext_extract preflight.
+ // UText is actually pretty efficient at this when underlying encoding is UTF-16.
+ int32_t length = utext_extract(fInputText, groupStart, groupEnd, NULL, 0, &status);
+ if (status != U_BUFFER_OVERFLOW_ERROR) {
+ return result;
}
- U_ASSERT(s <= e);
-
- if (UTEXT_FULL_TEXT_IN_CHUNK(fInputText, fInputLength)) {
- U_ASSERT(e <= fInputLength);
- if (dest) {
- utext_replace(dest, 0, utext_nativeLength(dest), fInputText->chunkContents+s, (int32_t)(e-s), &status);
- } else {
- UText groupText = UTEXT_INITIALIZER;
- utext_openUChars(&groupText, fInputText->chunkContents+s, e-s, &status);
- dest = utext_clone(NULL, &groupText, TRUE, FALSE, &status);
- utext_close(&groupText);
- }
- } else {
- int32_t len16;
- if (UTEXT_USES_U16(fInputText)) {
- len16 = (int32_t)(e-s);
- } else {
- UErrorCode lengthStatus = U_ZERO_ERROR;
- len16 = utext_extract(fInputText, s, e, NULL, 0, &lengthStatus);
- }
- UChar *groupChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16+1));
- if (groupChars == NULL) {
- status = U_MEMORY_ALLOCATION_ERROR;
- return dest;
- }
- utext_extract(fInputText, s, e, groupChars, len16+1, &status);
- if (dest) {
- utext_replace(dest, 0, utext_nativeLength(dest), groupChars, len16, &status);
- } else {
- UText groupText = UTEXT_INITIALIZER;
- utext_openUChars(&groupText, groupChars, len16, &status);
- dest = utext_clone(NULL, &groupText, TRUE, FALSE, &status);
- utext_close(&groupText);
- }
-
- uprv_free(groupChars);
+ status = U_ZERO_ERROR;
+ UChar *buf = result.getBuffer(length);
+ if (buf == NULL) {
+ status = U_MEMORY_ALLOCATION_ERROR;
+ } else {
+ int32_t extractLength = utext_extract(fInputText, groupStart, groupEnd, buf, length, &status);
+ result.releaseBuffer(extractLength);
+ U_ASSERT(length == extractLength);
}
- return dest;
+ return result;
}
+
//--------------------------------------------------------------------------------
//
// appendGroup() -- currently internal only, appends a group to a UText rather
return 0;
}
int64_t destLen = utext_nativeLength(dest);
-
+
if (fMatch == FALSE) {
status = U_REGEX_INVALID_STATE;
return utext_replace(dest, destLen, destLen, NULL, 0, &status);
status = U_INDEX_OUTOFBOUNDS_ERROR;
return utext_replace(dest, destLen, destLen, NULL, 0, &status);
}
-
+
int64_t s, e;
if (groupNum == 0) {
s = fMatchStart;
s = fFrame->fExtra[groupOffset];
e = fFrame->fExtra[groupOffset+1];
}
-
+
if (s < 0) {
- // A capture group wasn't part of the match
+ // A capture group wasn't part of the match
return utext_replace(dest, destLen, destLen, NULL, 0, &status);
}
U_ASSERT(s <= e);
-
+
int64_t deltaLen;
if (UTEXT_FULL_TEXT_IN_CHUNK(fInputText, fInputLength)) {
U_ASSERT(e <= fInputLength);
return 0;
}
utext_extract(fInputText, s, e, groupChars, len16+1, &status);
-
+
deltaLen = utext_replace(dest, destLen, destLen, groupChars, len16, &status);
uprv_free(groupChars);
}
return fPattern->fGroupMap->size();
}
-
-
//--------------------------------------------------------------------------------
//
// hasAnchoringBounds()
status = U_ZERO_ERROR; // overflow, length status
}
UnicodeString *result = new UnicodeString(len16, 0, 0);
-
+
UChar *inputChars = result->getBuffer(len16);
utext_extract(fInputText, 0, fInputLength, inputChars, len16, &status); // unterminated warning
result->releaseBuffer(len16);
-
+
(*(const UnicodeString **)&fInput) = result; // pointer assignment, rather than operator=
}
-
+
return *fInput;
}
//
//--------------------------------------------------------------------------------
UText *RegexMatcher::getInput (UText *dest, UErrorCode &status) const {
- UBool bailOut = FALSE;
if (U_FAILURE(status)) {
return dest;
}
if (U_FAILURE(fDeferredStatus)) {
status = fDeferredStatus;
- bailOut = TRUE;
- }
-
- if (bailOut) {
- if (dest) {
- utext_replace(dest, 0, utext_nativeLength(dest), NULL, 0, &status);
- return dest;
- } else {
- return utext_clone(NULL, fInputText, FALSE, TRUE, &status);
- }
+ return dest;
}
-
+
if (dest) {
if (UTEXT_FULL_TEXT_IN_CHUNK(fInputText, fInputLength)) {
utext_replace(dest, 0, utext_nativeLength(dest), fInputText->chunkContents, (int32_t)fInputLength, &status);
if (inputChars == NULL) {
return dest;
}
-
+
status = U_ZERO_ERROR;
utext_extract(fInputText, 0, fInputLength, inputChars, input16Len, &status); // not terminated warning
status = U_ZERO_ERROR;
utext_replace(dest, 0, utext_nativeLength(dest), inputChars, input16Len, &status);
-
+
uprv_free(inputChars);
}
return dest;
static UBool compat_SyncMutableUTextContents(UText *ut);
static UBool compat_SyncMutableUTextContents(UText *ut) {
UBool retVal = FALSE;
-
+
// In the following test, we're really only interested in whether the UText should switch
// between heap and stack allocation. If length hasn't changed, we won't, so the chunkContents
// will still point to the correct data.
if (utext_nativeLength(ut) != ut->nativeIndexingLimit) {
UnicodeString *us=(UnicodeString *)ut->context;
-
+
// Update to the latest length.
// For example, (utext_nativeLength(ut) != ut->nativeIndexingLimit).
int32_t newLength = us->length();
-
+
// Update the chunk description.
// The buffer may have switched between stack- and heap-based.
ut->chunkContents = us->getBuffer();
status = fDeferredStatus;
return FALSE;
}
-
+
if (fInputUniStrMaybeMutable) {
if (compat_SyncMutableUTextContents(fInputText)) {
fInputLength = utext_nativeLength(fInputText);
return FALSE;
}
reset();
-
+
if (start < 0) {
status = U_INDEX_OUTOFBOUNDS_ERROR;
return FALSE;
}
-
+
if (fInputUniStrMaybeMutable) {
if (compat_SyncMutableUTextContents(fInputText)) {
fInputLength = utext_nativeLength(fInputText);
status = U_INDEX_OUTOFBOUNDS_ERROR;
return FALSE;
}
-
+
if (UTEXT_FULL_TEXT_IN_CHUNK(fInputText, fInputLength)) {
MatchChunkAt((int32_t)nativeStart, FALSE, status);
} else {
return FALSE;
}
reset();
-
+
if (start < 0) {
status = U_INDEX_OUTOFBOUNDS_ERROR;
return FALSE;
if (U_FAILURE(status)) {
return *this;
}
-
+
if (regionStart>regionLimit || regionStart<0 || regionLimit<0) {
status = U_ILLEGAL_ARGUMENT_ERROR;
}
-
+
int64_t nativeStart = regionStart;
int64_t nativeLimit = regionLimit;
if (nativeStart > fInputLength || nativeLimit > fInputLength) {
if (startIndex == -1)
this->reset();
else
- resetPreserveRegion();
-
+ resetPreserveRegion();
+
fRegionStart = nativeStart;
fRegionLimit = nativeLimit;
fActiveStart = nativeStart;
if (startIndex < fActiveStart || startIndex > fActiveLimit) {
status = U_INDEX_OUTOFBOUNDS_ERROR;
}
- fMatchEnd = startIndex;
+ fMatchEnd = startIndex;
}
if (!fTransparentBounds) {
if (U_FAILURE(status)) {
return resultString;
}
-
+
utext_openConstUnicodeString(&replacementText, &replacement, &status);
utext_openUnicodeString(&resultText, &resultString, &status);
-
+
replaceAll(&replacementText, &resultText, status);
utext_close(&resultText);
utext_close(&replacementText);
-
+
return resultString;
}
status = fDeferredStatus;
return dest;
}
-
+
if (dest == NULL) {
UnicodeString emptyString;
UText empty = UTEXT_INITIALIZER;
-
+
utext_openUnicodeString(&empty, &emptyString, &status);
dest = utext_clone(NULL, &empty, TRUE, FALSE, &status);
utext_close(&empty);
}
appendTail(dest, status);
}
-
+
return dest;
}
UText replacementText = UTEXT_INITIALIZER;
UText resultText = UTEXT_INITIALIZER;
UnicodeString resultString;
-
+
utext_openConstUnicodeString(&replacementText, &replacement, &status);
utext_openUnicodeString(&resultText, &resultString, &status);
-
+
replaceFirst(&replacementText, &resultText, status);
-
+
utext_close(&resultText);
utext_close(&replacementText);
-
+
return resultString;
}
if (!find()) {
return getInput(dest, status);
}
-
+
if (dest == NULL) {
UnicodeString emptyString;
UText empty = UTEXT_INITIALIZER;
-
+
utext_openUnicodeString(&empty, &emptyString, &status);
dest = utext_clone(NULL, &empty, TRUE, FALSE, &status);
utext_close(&empty);
}
-
+
appendReplacement(dest, replacement, status);
appendTail(dest, status);
-
+
return dest;
}
if (fPattern->fNeedsAltInput) {
fAltInputText = utext_clone(fAltInputText, fInputText, FALSE, TRUE, &fDeferredStatus);
}
+ if (U_FAILURE(fDeferredStatus)) {
+ return *this;
+ }
fInputLength = utext_nativeLength(fInputText);
-
+
reset();
delete fInput;
fInput = NULL;
// Do the following for any UnicodeString.
// This is for compatibility for those clients who modify the input string "live" during regex operations.
- fInputUniStrMaybeMutable = TRUE;
-
+ fInputUniStrMaybeMutable = TRUE;
+
if (fWordBreakItr != NULL) {
#if UCONFIG_NO_BREAK_ITERATION==0
UErrorCode status = U_ZERO_ERROR;
if (fInputText != input) {
fInputText = utext_clone(fInputText, input, FALSE, TRUE, &fDeferredStatus);
if (fPattern->fNeedsAltInput) fAltInputText = utext_clone(fAltInputText, fInputText, FALSE, TRUE, &fDeferredStatus);
+ if (U_FAILURE(fDeferredStatus)) {
+ return *this;
+ }
fInputLength = utext_nativeLength(fInputText);
-
+
delete fInput;
fInput = NULL;
-
+
if (fWordBreakItr != NULL) {
#if UCONFIG_NO_BREAK_ITERATION==0
UErrorCode status = U_ZERO_ERROR;
return *this;
}
reset(); // Reset also resets the region to be the entire string.
-
+
if (position < 0 || position > fActiveLimit) {
status = U_INDEX_OUTOFBOUNDS_ERROR;
return *this;
+/**
+ * UText, replace entire contents of the destination UText with a substring of the source UText.
+ *
+ * @param src The source UText
+ * @param dest The destination UText. Must be writable.
+ * May be NULL, in which case a new UText will be allocated.
+ * @param start Start index of source substring.
+ * @param limit Limit index of source substring.
+ * @param status An error code.
+ */
+static UText *utext_extract_replace(UText *src, UText *dest, int64_t start, int64_t limit, UErrorCode *status) {
+ if (U_FAILURE(*status)) {
+ return dest;
+ }
+ if (start == limit) {
+ if (dest) {
+ utext_replace(dest, 0, utext_nativeLength(dest), NULL, 0, status);
+ return dest;
+ } else {
+ return utext_openUChars(NULL, NULL, 0, status);
+ }
+ }
+ int32_t length = utext_extract(src, start, limit, NULL, 0, status);
+ if (*status != U_BUFFER_OVERFLOW_ERROR && U_FAILURE(*status)) {
+ return dest;
+ }
+ *status = U_ZERO_ERROR;
+ MaybeStackArray<UChar, 40> buffer;
+ if (length >= buffer.getCapacity()) {
+ UChar *newBuf = buffer.resize(length+1); // Leave space for terminating Nul.
+ if (newBuf == NULL) {
+ *status = U_MEMORY_ALLOCATION_ERROR;
+ }
+ }
+ utext_extract(src, start, limit, buffer.getAlias(), length+1, status);
+ if (dest) {
+ utext_replace(dest, 0, utext_nativeLength(dest), buffer.getAlias(), length, status);
+ return dest;
+ }
+
+ // Caller did not provide a prexisting UText.
+ // Open a new one, and have it adopt the text buffer storage.
+ if (U_FAILURE(*status)) {
+ return NULL;
+ }
+ int32_t ownedLength = 0;
+ UChar *ownedBuf = buffer.orphanOrClone(length+1, ownedLength);
+ if (ownedBuf == NULL) {
+ *status = U_MEMORY_ALLOCATION_ERROR;
+ return NULL;
+ }
+ UText *result = utext_openUChars(NULL, ownedBuf, length, status);
+ if (U_FAILURE(*status)) {
+ uprv_free(ownedBuf);
+ return NULL;
+ }
+ result->providerProperties |= (1 << UTEXT_PROVIDER_OWNS_TEXT);
+ return result;
+}
+
+
//---------------------------------------------------------------------
//
// split
for (i = 0; i < destCapacity; i++) {
destText[i] = utext_openUnicodeString(NULL, &dest[i], &status);
}
-
+
int32_t fieldCount = split(&inputText, destText, destCapacity, status);
-
+
for (i = 0; i < destCapacity; i++) {
utext_close(destText[i]);
}
if (fActiveLimit > nextOutputStringStart) {
if (UTEXT_FULL_TEXT_IN_CHUNK(input, fInputLength)) {
if (dest[i]) {
- utext_replace(dest[i], 0, utext_nativeLength(dest[i]),
- input->chunkContents+nextOutputStringStart,
+ utext_replace(dest[i], 0, utext_nativeLength(dest[i]),
+ input->chunkContents+nextOutputStringStart,
(int32_t)(fActiveLimit-nextOutputStringStart), &status);
} else {
UText remainingText = UTEXT_INITIALIZER;
- utext_openUChars(&remainingText, input->chunkContents+nextOutputStringStart,
+ utext_openUChars(&remainingText, input->chunkContents+nextOutputStringStart,
fActiveLimit-nextOutputStringStart, &status);
dest[i] = utext_clone(NULL, &remainingText, TRUE, FALSE, &status);
utext_close(&remainingText);
}
} else {
UErrorCode lengthStatus = U_ZERO_ERROR;
- int32_t remaining16Length =
+ int32_t remaining16Length =
utext_extract(input, nextOutputStringStart, fActiveLimit, NULL, 0, &lengthStatus);
UChar *remainingChars = (UChar *)uprv_malloc(sizeof(UChar)*(remaining16Length+1));
if (remainingChars == NULL) {
dest[i] = utext_clone(NULL, &remainingText, TRUE, FALSE, &status);
utext_close(&remainingText);
}
-
+
uprv_free(remainingChars);
}
}
// up until the start of the delimiter into the next output string.
if (UTEXT_FULL_TEXT_IN_CHUNK(input, fInputLength)) {
if (dest[i]) {
- utext_replace(dest[i], 0, utext_nativeLength(dest[i]),
- input->chunkContents+nextOutputStringStart,
+ utext_replace(dest[i], 0, utext_nativeLength(dest[i]),
+ input->chunkContents+nextOutputStringStart,
(int32_t)(fMatchStart-nextOutputStringStart), &status);
} else {
UText remainingText = UTEXT_INITIALIZER;
- utext_openUChars(&remainingText, input->chunkContents+nextOutputStringStart,
+ utext_openUChars(&remainingText, input->chunkContents+nextOutputStringStart,
fMatchStart-nextOutputStringStart, &status);
dest[i] = utext_clone(NULL, &remainingText, TRUE, FALSE, &status);
utext_close(&remainingText);
dest[i] = utext_clone(NULL, &remainingText, TRUE, FALSE, &status);
utext_close(&remainingText);
}
-
+
uprv_free(remainingChars);
}
nextOutputStringStart = fMatchEnd;
break;
}
i++;
- dest[i] = group(groupNum, dest[i], status);
+ dest[i] = utext_extract_replace(fInputText, dest[i],
+ start64(groupNum, status), end64(groupNum, status), &status);
}
if (nextOutputStringStart == fActiveLimit) {
if (dest[i] == NULL) {
dest[i] = utext_openUChars(NULL, NULL, 0, &status);
} else {
- static UChar emptyString[] = {(UChar)0};
+ static const UChar emptyString[] = {(UChar)0};
utext_replace(dest[i], 0, utext_nativeLength(dest[i]), emptyString, 0, &status);
}
}
break;
-
- }
+
+ }
}
else
{
// All the remaining text goes into the current output string.
if (UTEXT_FULL_TEXT_IN_CHUNK(input, fInputLength)) {
if (dest[i]) {
- utext_replace(dest[i], 0, utext_nativeLength(dest[i]),
- input->chunkContents+nextOutputStringStart,
+ utext_replace(dest[i], 0, utext_nativeLength(dest[i]),
+ input->chunkContents+nextOutputStringStart,
(int32_t)(fActiveLimit-nextOutputStringStart), &status);
} else {
UText remainingText = UTEXT_INITIALIZER;
- utext_openUChars(&remainingText, input->chunkContents+nextOutputStringStart,
+ utext_openUChars(&remainingText, input->chunkContents+nextOutputStringStart,
fActiveLimit-nextOutputStringStart, &status);
dest[i] = utext_clone(NULL, &remainingText, TRUE, FALSE, &status);
utext_close(&remainingText);
status = U_MEMORY_ALLOCATION_ERROR;
break;
}
-
+
utext_extract(input, nextOutputStringStart, fActiveLimit, remainingChars, remaining16Length+1, &status);
if (dest[i]) {
utext_replace(dest[i], 0, utext_nativeLength(dest[i]), remainingChars, remaining16Length, &status);
dest[i] = utext_clone(NULL, &remainingText, TRUE, FALSE, &status);
utext_close(&remainingText);
}
-
+
uprv_free(remainingChars);
}
break;
}
int64_t s;
if (group == 0) {
- s = fMatchStart;
+ s = fMatchStart;
} else {
int32_t groupOffset = fPattern->fGroupMap->elementAti(group-1);
U_ASSERT(groupOffset < fPattern->fFrameSize);
U_ASSERT(groupOffset >= 0);
s = fFrame->fExtra[groupOffset];
}
-
+
return s;
}
status = U_ILLEGAL_ARGUMENT_ERROR;
return;
}
-
+
// Reset the matcher. This is needed here in case there is a current match
- // whose final stack frame (containing the match results, pointed to by fFrame)
+ // whose final stack frame (containing the match results, pointed to by fFrame)
// would be lost by resizing to a smaller stack size.
reset();
-
+
if (limit == 0) {
// Unlimited stack expansion
fStack->setMaxCapacity(0);
} else {
// Change the units of the limit from bytes to ints, and bump the size up
- // to be big enough to hold at least one stack frame for the pattern,
+ // to be big enough to hold at least one stack frame for the pattern,
// if it isn't there already.
int32_t adjustedLimit = limit / sizeof(int32_t);
if (adjustedLimit < fPattern->fFrameSize) {
//
// resetStack
// Discard any previous contents of the state save stack, and initialize a
-// new stack frame to all -1. The -1s are needed for capture group limits,
+// new stack frame to all -1. The -1s are needed for capture group limits,
// where they indicate that a group has not yet matched anything.
//--------------------------------------------------------------------------------
REStackFrame *RegexMatcher::resetStack() {
fStack->removeAllElements();
REStackFrame *iFrame = (REStackFrame *)fStack->reserveBlock(fPattern->fFrameSize, fDeferredStatus);
+ if(U_FAILURE(fDeferredStatus)) {
+ return NULL;
+ }
+
int32_t i;
for (i=0; i<fPattern->fFrameSize-RESTACKFRAME_HDRCOUNT; i++) {
iFrame->fExtra[i] = -1;
//--------------------------------------------------------------------------------
//
-// isWordBoundary
+// isWordBoundary
// in perl, "xab..cd..", \b is true at positions 0,3,5,7
// For us,
// If the current char is a combining mark,
UBool RegexMatcher::isWordBoundary(int64_t pos) {
UBool isBoundary = FALSE;
UBool cIsWord = FALSE;
-
+
if (pos >= fLookLimit) {
fHitEnd = TRUE;
} else {
}
cIsWord = fPattern->fStaticSets[URX_ISWORD_SET]->contains(c);
}
-
+
// Back up until we come to a non-combining char, determine whether
// that char is a word char.
UBool prevCIsWord = FALSE;
UBool RegexMatcher::isChunkWordBoundary(int32_t pos) {
UBool isBoundary = FALSE;
UBool cIsWord = FALSE;
-
+
const UChar *inputBuf = fInputText->chunkContents;
-
+
if (pos >= fLookLimit) {
fHitEnd = TRUE;
} else {
}
cIsWord = fPattern->fStaticSets[URX_ISWORD_SET]->contains(c);
}
-
+
// Back up until we come to a non-combining char, determine whether
// that char is a word char.
UBool prevCIsWord = FALSE;
//--------------------------------------------------------------------------------
//
-// isUWordBoundary
+// isUWordBoundary
//
// Test for a word boundary using RBBI word break.
//
UBool RegexMatcher::isUWordBoundary(int64_t pos) {
UBool returnVal = FALSE;
#if UCONFIG_NO_BREAK_ITERATION==0
-
+
// If we haven't yet created a break iterator for this matcher, do it now.
if (fWordBreakItr == NULL) {
- fWordBreakItr =
+ fWordBreakItr =
(RuleBasedBreakIterator *)BreakIterator::createWordInstance(Locale::getEnglish(), fDeferredStatus);
if (U_FAILURE(fDeferredStatus)) {
return FALSE;
}
}
-//--------------------------------------------------------------------------------
-//
-// ReportFindProgress This function is called once for each advance in the target
-// string from the find() function, and calls the user progress callback
-// function if there is one installed.
-//
-// NOTE:
-//
-// If the match operation needs to be aborted because the user
-// callback asked for it, just set an error status.
-// The engine will pick that up and stop in its outer loop.
-//
-//--------------------------------------------------------------------------------
-UBool RegexMatcher::ReportFindProgress(int64_t matchIndex, UErrorCode &status) {
- if (fFindProgressCallbackFn != NULL) {
- if ((*fFindProgressCallbackFn)(fFindProgressCallbackContext, matchIndex) == FALSE) {
- status = U_ZERO_ERROR /*U_REGEX_STOPPED_BY_CALLER*/;
- return FALSE;
- }
- }
- return TRUE;
-}
-
//--------------------------------------------------------------------------------
//
// StateSave
// whole thing being relocated in memory.
//
// Parameters:
-// fp The top frame pointer when called. At return, a new
+// fp The top frame pointer when called. At return, a new
// fame will be present
// savePatIdx An index into the compiled pattern. Goes into the original
// (not new) frame. If execution ever back-tracks out of the
//
//--------------------------------------------------------------------------------
inline REStackFrame *RegexMatcher::StateSave(REStackFrame *fp, int64_t savePatIdx, UErrorCode &status) {
- // push storage for a new frame.
+ if (U_FAILURE(status)) {
+ return fp;
+ }
+ // push storage for a new frame.
int64_t *newFP = fStack->reserveBlock(fFrameSize, status);
- if (newFP == NULL) {
+ if (U_FAILURE(status)) {
// Failure on attempted stack expansion.
// Stack function set some other error code, change it to a more
// specific one for regular expressions.
return fp;
}
fp = (REStackFrame *)(newFP - fFrameSize); // in case of realloc of stack.
-
+
// New stack frame = copy of old top frame.
int64_t *source = (int64_t *)fp;
int64_t *dest = newFP;
break;
}
}
-
+
fTickCounter--;
if (fTickCounter <= 0) {
IncrementTime(status); // Re-initializes fTickCounter
return (REStackFrame *)newFP;
}
+#if defined(REGEX_DEBUG)
+namespace {
+UnicodeString StringFromUText(UText *ut) {
+ UnicodeString result;
+ for (UChar32 c = utext_next32From(ut, 0); c != U_SENTINEL; c = UTEXT_NEXT32(ut)) {
+ result.append(c);
+ }
+ return result;
+}
+}
+#endif // REGEX_DEBUG
+
//--------------------------------------------------------------------------------
//
//--------------------------------------------------------------------------------
void RegexMatcher::MatchAt(int64_t startIdx, UBool toEnd, UErrorCode &status) {
UBool isMatch = FALSE; // True if the we have a match.
-
+
int64_t backSearchIndex = U_INT64_MAX; // used after greedy single-character matches for searching backwards
int32_t op; // Operation from the compiled pattern, split into
int32_t opType; // the opcode
int32_t opValue; // and the operand value.
-
- #ifdef REGEX_RUN_DEBUG
- if (fTraceDebug)
- {
+
+#ifdef REGEX_RUN_DEBUG
+ if (fTraceDebug) {
printf("MatchAt(startIdx=%ld)\n", startIdx);
- printf("Original Pattern: ");
- UChar32 c = utext_next32From(fPattern->fPattern, 0);
- while (c != U_SENTINEL) {
- if (c<32 || c>256) {
- c = '.';
- }
- REGEX_DUMP_DEBUG_PRINTF(("%c", c));
-
- c = UTEXT_NEXT32(fPattern->fPattern);
- }
- printf("\n");
- printf("Input String: ");
- c = utext_next32From(fInputText, 0);
- while (c != U_SENTINEL) {
- if (c<32 || c>256) {
- c = '.';
- }
- printf("%c", c);
-
- c = UTEXT_NEXT32(fInputText);
- }
- printf("\n");
- printf("\n");
+ printf("Original Pattern: \"%s\"\n", CStr(StringFromUText(fPattern->fPattern))());
+ printf("Input String: \"%s\"\n\n", CStr(StringFromUText(fInputText))());
}
- #endif
+#endif
if (U_FAILURE(status)) {
return;
int64_t *pat = fPattern->fCompiledPat->getBuffer();
const UChar *litText = fPattern->fLiteralText.getBuffer();
- UVector *sets = fPattern->fSets;
+ UVector *fSets = fPattern->fSets;
fFrameSize = fPattern->fFrameSize;
REStackFrame *fp = resetStack();
+ if (U_FAILURE(fDeferredStatus)) {
+ status = fDeferredStatus;
+ return;
+ }
fp->fPatIdx = 0;
fp->fInputIdx = startIdx;
// One iteration of the loop per pattern operation performed.
//
for (;;) {
-#if 0
- if (_heapchk() != _HEAPOK) {
- fprintf(stderr, "Heap Trouble\n");
- }
-#endif
-
op = (int32_t)pat[fp->fPatIdx];
opType = URX_TYPE(op);
opValue = URX_VAL(op);
- #ifdef REGEX_RUN_DEBUG
+#ifdef REGEX_RUN_DEBUG
if (fTraceDebug) {
UTEXT_SETNATIVEINDEX(fInputText, fp->fInputIdx);
- printf("inputIdx=%d inputChar=%x sp=%3d activeLimit=%d ", fp->fInputIdx,
+ printf("inputIdx=%ld inputChar=%x sp=%3ld activeLimit=%ld ", fp->fInputIdx,
UTEXT_CURRENT32(fInputText), (int64_t *)fp-fStack->getBuffer(), fActiveLimit);
fPattern->dumpOp(fp->fPatIdx);
}
- #endif
+#endif
fp->fPatIdx++;
-
+
switch (opType) {
int32_t stringLen = URX_VAL(op);
U_ASSERT(opType == URX_STRING_LEN);
U_ASSERT(stringLen >= 2);
-
+
const UChar *patternString = litText+stringStartIdx;
int32_t patternStringIndex = 0;
UTEXT_SETNATIVEINDEX(fInputText, fp->fInputIdx);
break;
}
}
-
+
if (success) {
fp->fInputIdx = UTEXT_GETNATIVEINDEX(fInputText);
} else {
fRequireEnd = TRUE;
break;
}
-
+
UTEXT_SETNATIVEINDEX(fInputText, fp->fInputIdx);
-
+
// If we are positioned just before a new-line that is located at the
// end of input, succeed.
UChar32 c = UTEXT_NEXT32(fInputText);
if (UTEXT_GETNATIVEINDEX(fInputText) >= fAnchorLimit) {
- if ((c>=0x0a && c<=0x0d) || c==0x85 || c==0x2028 || c==0x2029) {
+ if (isLineTerminator(c)) {
// If not in the middle of a CR/LF sequence
- if ( !(c==0x0a && fp->fInputIdx>fAnchorStart && ((void)UTEXT_PREVIOUS32(fInputText), UTEXT_PREVIOUS32(fInputText))==0x0d)) {
+ if ( !(c==0x0a && fp->fInputIdx>fAnchorStart && ((void)UTEXT_PREVIOUS32(fInputText), UTEXT_PREVIOUS32(fInputText))==0x0d)) {
// At new-line at end of input. Success
fHitEnd = TRUE;
fRequireEnd = TRUE;
-
+
break;
}
}
// It makes no difference where the new-line is within the input.
UTEXT_SETNATIVEINDEX(fInputText, fp->fInputIdx);
UChar32 c = UTEXT_CURRENT32(fInputText);
- if ((c>=0x0a && c<=0x0d) || c==0x85 ||c==0x2028 || c==0x2029) {
+ if (isLineTerminator(c)) {
// At a line end, except for the odd chance of being in the middle of a CR/LF sequence
// In multi-line mode, hitting a new-line just before the end of input does not
// set the hitEnd or requireEnd flags
// Check whether character just before the current pos is a new-line
// unless we are at the end of input
UTEXT_SETNATIVEINDEX(fInputText, fp->fInputIdx);
- UChar32 c = UTEXT_PREVIOUS32(fInputText);
- if ((fp->fInputIdx < fAnchorLimit) &&
- ((c<=0x0d && c>=0x0a) || c==0x85 ||c==0x2028 || c==0x2029)) {
+ UChar32 c = UTEXT_PREVIOUS32(fInputText);
+ if ((fp->fInputIdx < fAnchorLimit) && isLineTerminator(c)) {
// It's a new-line. ^ is true. Success.
// TODO: what should be done with positions between a CR and LF?
break;
break;
- case URX_BACKSLASH_X:
+ case URX_BACKSLASH_H: // Test for \h, horizontal white space.
+ {
+ if (fp->fInputIdx >= fActiveLimit) {
+ fHitEnd = TRUE;
+ fp = (REStackFrame *)fStack->popFrame(fFrameSize);
+ break;
+ }
+ UTEXT_SETNATIVEINDEX(fInputText, fp->fInputIdx);
+ UChar32 c = UTEXT_NEXT32(fInputText);
+ int8_t ctype = u_charType(c);
+ UBool success = (ctype == U_SPACE_SEPARATOR || c == 9); // SPACE_SEPARATOR || TAB
+ success ^= (UBool)(opValue != 0); // flip sense for \H
+ if (success) {
+ fp->fInputIdx = UTEXT_GETNATIVEINDEX(fInputText);
+ } else {
+ fp = (REStackFrame *)fStack->popFrame(fFrameSize);
+ }
+ }
+ break;
+
+
+ case URX_BACKSLASH_R: // Test for \R, any line break sequence.
+ {
+ if (fp->fInputIdx >= fActiveLimit) {
+ fHitEnd = TRUE;
+ fp = (REStackFrame *)fStack->popFrame(fFrameSize);
+ break;
+ }
+ UTEXT_SETNATIVEINDEX(fInputText, fp->fInputIdx);
+ UChar32 c = UTEXT_NEXT32(fInputText);
+ if (isLineTerminator(c)) {
+ if (c == 0x0d && utext_current32(fInputText) == 0x0a) {
+ utext_next32(fInputText);
+ }
+ fp->fInputIdx = UTEXT_GETNATIVEINDEX(fInputText);
+ } else {
+ fp = (REStackFrame *)fStack->popFrame(fFrameSize);
+ }
+ }
+ break;
+
+
+ case URX_BACKSLASH_V: // \v, any single line ending character.
+ {
+ if (fp->fInputIdx >= fActiveLimit) {
+ fHitEnd = TRUE;
+ fp = (REStackFrame *)fStack->popFrame(fFrameSize);
+ break;
+ }
+ UTEXT_SETNATIVEINDEX(fInputText, fp->fInputIdx);
+ UChar32 c = UTEXT_NEXT32(fInputText);
+ UBool success = isLineTerminator(c);
+ success ^= (UBool)(opValue != 0); // flip sense for \V
+ if (success) {
+ fp->fInputIdx = UTEXT_GETNATIVEINDEX(fInputText);
+ } else {
+ fp = (REStackFrame *)fStack->popFrame(fFrameSize);
+ }
+ }
+ break;
+
+
+ case URX_BACKSLASH_X:
// Match a Grapheme, as defined by Unicode TR 29.
// Differs slightly from Perl, which consumes combining marks independently
// of context.
fp = (REStackFrame *)fStack->popFrame(fFrameSize);
break;
}
-
+
UTEXT_SETNATIVEINDEX(fInputText, fp->fInputIdx);
// Examine (and consume) the current char.
goto GC_Done;
GC_Control:
- // Most control chars stand alone (don't combine with combining chars),
+ // Most control chars stand alone (don't combine with combining chars),
// except for that CR/LF sequence is a single grapheme cluster.
if (c == 0x0d && fp->fInputIdx < fActiveLimit && UTEXT_CURRENT32(fInputText) == 0x0a) {
c = UTEXT_NEXT32(fInputText);
}
break;
}
-
+
break;
}
- UBool success = ((opValue & URX_NEG_SET) == URX_NEG_SET);
+ UBool success = ((opValue & URX_NEG_SET) == URX_NEG_SET);
opValue &= ~URX_NEG_SET;
U_ASSERT(opValue > 0 && opValue < URX_LAST_SET);
}
}
break;
-
+
case URX_STAT_SETREF_N:
{
- // Test input character for NOT being a member of one of
+ // Test input character for NOT being a member of one of
// the predefined sets (Word Characters, for example)
if (fp->fInputIdx >= fActiveLimit) {
fHitEnd = TRUE;
U_ASSERT(opValue > 0 && opValue < URX_LAST_SET);
UTEXT_SETNATIVEINDEX(fInputText, fp->fInputIdx);
-
+
UChar32 c = UTEXT_NEXT32(fInputText);
if (c < 256) {
Regex8BitSet *s8 = &fPattern->fStaticSets8[opValue];
fp = (REStackFrame *)fStack->popFrame(fFrameSize);
}
break;
-
+
case URX_SETREF:
if (fp->fInputIdx >= fActiveLimit) {
break;
} else {
UTEXT_SETNATIVEINDEX(fInputText, fp->fInputIdx);
-
+
// There is input left. Pick up one char and test it for set membership.
UChar32 c = UTEXT_NEXT32(fInputText);
- U_ASSERT(opValue > 0 && opValue < sets->size());
+ U_ASSERT(opValue > 0 && opValue < fSets->size());
if (c<256) {
Regex8BitSet *s8 = &fPattern->fSets8[opValue];
if (s8->contains(c)) {
break;
}
} else {
- UnicodeSet *s = (UnicodeSet *)sets->elementAt(opValue);
+ UnicodeSet *s = (UnicodeSet *)fSets->elementAt(opValue);
if (s->contains(c)) {
// The character is in the set. A Match.
fp->fInputIdx = UTEXT_GETNATIVEINDEX(fInputText);
break;
}
}
-
+
// the character wasn't in the set.
fp = (REStackFrame *)fStack->popFrame(fFrameSize);
}
fp = (REStackFrame *)fStack->popFrame(fFrameSize);
break;
}
-
+
UTEXT_SETNATIVEINDEX(fInputText, fp->fInputIdx);
-
+
// There is input left. Advance over one char, unless we've hit end-of-line
UChar32 c = UTEXT_NEXT32(fInputText);
- if (((c & 0x7f) <= 0x29) && // First quickly bypass as many chars as possible
- ((c<=0x0d && c>=0x0a) || c==0x85 ||c==0x2028 || c==0x2029)) {
+ if (isLineTerminator(c)) {
// End of line in normal mode. . does not match.
fp = (REStackFrame *)fStack->popFrame(fFrameSize);
break;
fp = (REStackFrame *)fStack->popFrame(fFrameSize);
break;
}
-
+
UTEXT_SETNATIVEINDEX(fInputText, fp->fInputIdx);
-
+
// There is input left. Advance over one char, except if we are
// at a cr/lf, advance over both of them.
- UChar32 c;
+ UChar32 c;
c = UTEXT_NEXT32(fInputText);
fp->fInputIdx = UTEXT_GETNATIVEINDEX(fInputText);
if (c==0x0d && fp->fInputIdx < fActiveLimit) {
}
UTEXT_SETNATIVEINDEX(fInputText, fp->fInputIdx);
-
+
// There is input left. Advance over one char, unless we've hit end-of-line
UChar32 c = UTEXT_NEXT32(fInputText);
if (c == 0x0a) {
fp = StateSave(fp, fp->fPatIdx, status); // State save to loc following current
fp->fPatIdx = opValue;
fp->fExtra[frameLoc] = fp->fInputIdx;
- }
+ }
// If the input position did not advance, we do nothing here,
// execution will fall out of the loop.
}
case URX_CTR_INIT:
{
U_ASSERT(opValue >= 0 && opValue < fFrameSize-2);
- fp->fExtra[opValue] = 0; // Set the loop counter variable to zero
+ fp->fExtra[opValue] = 0; // Set the loop counter variable to zero
// Pick up the three extra operands that CTR_INIT has, and
- // skip the pattern location counter past
+ // skip the pattern location counter past
int32_t instrOperandLoc = (int32_t)fp->fPatIdx;
fp->fPatIdx += 3;
int32_t loopLoc = URX_VAL(pat[instrOperandLoc]);
int32_t maxCount = (int32_t)pat[instrOperandLoc+2];
U_ASSERT(minCount>=0);
U_ASSERT(maxCount>=minCount || maxCount==-1);
- U_ASSERT(loopLoc>fp->fPatIdx);
+ U_ASSERT(loopLoc>=fp->fPatIdx);
if (minCount == 0) {
fp = StateSave(fp, loopLoc+1, status);
}
- if (maxCount == 0) {
+ if (maxCount == -1) {
+ fp->fExtra[opValue+1] = fp->fInputIdx; // For loop breaking.
+ } else if (maxCount == 0) {
fp = (REStackFrame *)fStack->popFrame(fFrameSize);
}
}
int64_t *pCounter = &fp->fExtra[URX_VAL(initOp)];
int32_t minCount = (int32_t)pat[opValue+2];
int32_t maxCount = (int32_t)pat[opValue+3];
- // Increment the counter. Note: we DIDN'T worry about counter
- // overflow, since the data comes from UnicodeStrings, which
- // stores its length in an int32_t. Do we have to think about
- // this now that we're using UText? Probably not, since the length
- // in UChar32s is still an int32_t.
(*pCounter)++;
- U_ASSERT(*pCounter > 0);
- if ((uint64_t)*pCounter >= (uint32_t)maxCount) {
- U_ASSERT(*pCounter == maxCount || maxCount == -1);
+ if ((uint64_t)*pCounter >= (uint32_t)maxCount && maxCount != -1) {
+ U_ASSERT(*pCounter == maxCount);
break;
}
if (*pCounter >= minCount) {
+ if (maxCount == -1) {
+ // Loop has no hard upper bound.
+ // Check that it is progressing through the input, break if it is not.
+ int64_t *pLastInputIdx = &fp->fExtra[URX_VAL(initOp) + 1];
+ if (fp->fInputIdx == *pLastInputIdx) {
+ break;
+ } else {
+ *pLastInputIdx = fp->fInputIdx;
+ }
+ }
fp = StateSave(fp, fp->fPatIdx, status);
+ } else {
+ // Increment time-out counter. (StateSave() does it if count >= minCount)
+ fTickCounter--;
+ if (fTickCounter <= 0) {
+ IncrementTime(status); // Re-initializes fTickCounter
+ }
}
+
fp->fPatIdx = opValue + 4; // Loop back.
}
break;
{
// Initialize a non-greedy loop
U_ASSERT(opValue >= 0 && opValue < fFrameSize-2);
- fp->fExtra[opValue] = 0; // Set the loop counter variable to zero
+ fp->fExtra[opValue] = 0; // Set the loop counter variable to zero
- // Pick up the three extra operands that CTR_INIT has, and
- // skip the pattern location counter past
+ // Pick up the three extra operands that CTR_INIT_NG has, and
+ // skip the pattern location counter past
int32_t instrOperandLoc = (int32_t)fp->fPatIdx;
fp->fPatIdx += 3;
int32_t loopLoc = URX_VAL(pat[instrOperandLoc]);
U_ASSERT(minCount>=0);
U_ASSERT(maxCount>=minCount || maxCount==-1);
U_ASSERT(loopLoc>fp->fPatIdx);
+ if (maxCount == -1) {
+ fp->fExtra[opValue+1] = fp->fInputIdx; // Save initial input index for loop breaking.
+ }
if (minCount == 0) {
if (maxCount != 0) {
fp = StateSave(fp, fp->fPatIdx, status);
}
fp->fPatIdx = loopLoc+1; // Continue with stuff after repeated block
- }
+ }
}
break;
int64_t *pCounter = &fp->fExtra[URX_VAL(initOp)];
int32_t minCount = (int32_t)pat[opValue+2];
int32_t maxCount = (int32_t)pat[opValue+3];
- // Increment the counter. Note: we DIDN'T worry about counter
- // overflow, since the data comes from UnicodeStrings, which
- // stores its length in an int32_t. Do we have to think about
- // this now that we're using UText? Probably not, since the length
- // in UChar32s is still an int32_t.
- (*pCounter)++;
- U_ASSERT(*pCounter > 0);
- if ((uint64_t)*pCounter >= (uint32_t)maxCount) {
+ (*pCounter)++;
+ if ((uint64_t)*pCounter >= (uint32_t)maxCount && maxCount != -1) {
// The loop has matched the maximum permitted number of times.
// Break out of here with no action. Matching will
// continue with the following pattern.
- U_ASSERT(*pCounter == maxCount || maxCount == -1);
+ U_ASSERT(*pCounter == maxCount);
break;
}
// We haven't met the minimum number of matches yet.
// Loop back for another one.
fp->fPatIdx = opValue + 4; // Loop back.
+ // Increment time-out counter. (StateSave() does it if count >= minCount)
+ fTickCounter--;
+ if (fTickCounter <= 0) {
+ IncrementTime(status); // Re-initializes fTickCounter
+ }
} else {
// We do have the minimum number of matches.
- // Fall into the following pattern, but first do
- // a state save to the top of the loop, so that a failure
+
+ // If there is no upper bound on the loop iterations, check that the input index
+ // is progressing, and stop the loop if it is not.
+ if (maxCount == -1) {
+ int64_t *pLastInputIdx = &fp->fExtra[URX_VAL(initOp) + 1];
+ if (fp->fInputIdx == *pLastInputIdx) {
+ break;
+ }
+ *pLastInputIdx = fp->fInputIdx;
+ }
+
+ // Loop Continuation: we will fall into the pattern following the loop
+ // (non-greedy, don't execute loop body first), but first do
+ // a state save to the top of the loop, so that a match failure
// in the following pattern will try another iteration of the loop.
fp = StateSave(fp, opValue + 4, status);
}
if (newFP == (int64_t *)fp) {
break;
}
- int32_t i;
- for (i=0; i<fFrameSize; i++) {
- newFP[i] = ((int64_t *)fp)[i];
+ int32_t j;
+ for (j=0; j<fFrameSize; j++) {
+ newFP[j] = ((int64_t *)fp)[j];
}
fp = (REStackFrame *)newFP;
fStack->setSize(newStackSize);
UTEXT_SETNATIVEINDEX(fInputText, fp->fInputIdx);
// Note: if the capture group match was of an empty string the backref
- // match succeeds. Verified by testing: Perl matches succeed
+ // match succeeds. Verified by testing: Perl matches succeed
// in this case, so we do too.
-
+
UBool success = TRUE;
for (;;) {
if (utext_getNativeIndex(fAltInputText) >= groupEndIdx) {
CaseFoldingUTextIterator inputItr(*fInputText);
// Note: if the capture group match was of an empty string the backref
- // match succeeds. Verified by testing: Perl matches succeed
+ // match succeeds. Verified by testing: Perl matches succeed
// in this case, so we do too.
-
+
UBool success = TRUE;
for (;;) {
if (!captureGroupItr.inExpansion() && utext_getNativeIndex(fAltInputText) >= groupEndIdx) {
}
if (success && inputItr.inExpansion()) {
- // We otained a match by consuming part of a string obtained from
- // case-folding a single code point of the input text.
+ // We otained a match by consuming part of a string obtained from
+ // case-folding a single code point of the input text.
// This does not count as an overall match.
success = FALSE;
}
} else {
fp = (REStackFrame *)fStack->popFrame(fFrameSize);
}
-
+
}
break;
-
+
case URX_STO_INP_LOC:
{
U_ASSERT(opValue >= 0 && opValue < fFrameSize);
// This makes the capture groups from within the look-ahead
// expression available.
int64_t *newFP = fStack->getBuffer() + newStackSize - fFrameSize;
- int32_t i;
- for (i=0; i<fFrameSize; i++) {
- newFP[i] = ((int64_t *)fp)[i];
+ int32_t j;
+ for (j=0; j<fFrameSize; j++) {
+ newFP[j] = ((int64_t *)fp)[j];
}
fp = (REStackFrame *)newFP;
fStack->setSize(newStackSize);
} else {
fHitEnd = TRUE;
}
-
+
fp = (REStackFrame *)fStack->popFrame(fFrameSize);
break;
opValue = URX_VAL(op);
U_ASSERT(opType == URX_STRING_LEN);
int32_t patternStringLen = opValue; // Length of the string from the pattern.
-
-
+
+
UChar32 cPattern;
UChar32 cText;
UBool success = TRUE;
// of this op in the pattern.
int32_t minML = (int32_t)pat[fp->fPatIdx++];
int32_t maxML = (int32_t)pat[fp->fPatIdx++];
+ if (!UTEXT_USES_U16(fInputText)) {
+ // utf-8 fix to maximum match length. The pattern compiler assumes utf-16.
+ // The max length need not be exact; it just needs to be >= actual maximum.
+ maxML *= 3;
+ }
U_ASSERT(minML <= maxML);
U_ASSERT(minML >= 0);
// Fetch (from data) the last input index where a match was attempted.
U_ASSERT(opValue>=0 && opValue+1<fPattern->fDataSize);
- int64_t *lbStartIdx = &fData[opValue+2];
- if (*lbStartIdx < 0) {
+ int64_t &lbStartIdx = fData[opValue+2];
+ if (lbStartIdx < 0) {
// First time through loop.
- *lbStartIdx = fp->fInputIdx - minML;
+ lbStartIdx = fp->fInputIdx - minML;
+ if (lbStartIdx > 0) {
+ // move index to a code point boudary, if it's not on one already.
+ UTEXT_SETNATIVEINDEX(fInputText, lbStartIdx);
+ lbStartIdx = UTEXT_GETNATIVEINDEX(fInputText);
+ }
} else {
// 2nd through nth time through the loop.
// Back up start position for match by one.
- if (*lbStartIdx == 0) {
- (*lbStartIdx)--;
+ if (lbStartIdx == 0) {
+ (lbStartIdx)--;
} else {
- UTEXT_SETNATIVEINDEX(fInputText, *lbStartIdx);
+ UTEXT_SETNATIVEINDEX(fInputText, lbStartIdx);
(void)UTEXT_PREVIOUS32(fInputText);
- *lbStartIdx = UTEXT_GETNATIVEINDEX(fInputText);
+ lbStartIdx = UTEXT_GETNATIVEINDEX(fInputText);
}
}
- if (*lbStartIdx < 0 || *lbStartIdx < fp->fInputIdx - maxML) {
+ if (lbStartIdx < 0 || lbStartIdx < fp->fInputIdx - maxML) {
// We have tried all potential match starting points without
// getting a match. Backtrack out, and out of the
// Look Behind altogether.
// Save state to this URX_LB_CONT op, so failure to match will repeat the loop.
// (successful match will fall off the end of the loop.)
fp = StateSave(fp, fp->fPatIdx-3, status);
- fp->fInputIdx = *lbStartIdx;
+ fp->fInputIdx = lbStartIdx;
}
break;
}
// Look-behind match is good. Restore the orignal input string length,
- // which had been truncated to pin the end of the lookbehind match to the
+ // which had been truncated to pin the end of the lookbehind match to the
// position being looked-behind.
int64_t originalInputLen = fData[opValue+3];
U_ASSERT(originalInputLen >= fActiveLimit);
// Fetch the extra parameters of this op.
int32_t minML = (int32_t)pat[fp->fPatIdx++];
int32_t maxML = (int32_t)pat[fp->fPatIdx++];
+ if (!UTEXT_USES_U16(fInputText)) {
+ // utf-8 fix to maximum match length. The pattern compiler assumes utf-16.
+ // The max length need not be exact; it just needs to be >= actual maximum.
+ maxML *= 3;
+ }
int32_t continueLoc = (int32_t)pat[fp->fPatIdx++];
continueLoc = URX_VAL(continueLoc);
U_ASSERT(minML <= maxML);
// Fetch (from data) the last input index where a match was attempted.
U_ASSERT(opValue>=0 && opValue+1<fPattern->fDataSize);
- int64_t *lbStartIdx = &fData[opValue+2];
- if (*lbStartIdx < 0) {
+ int64_t &lbStartIdx = fData[opValue+2];
+ if (lbStartIdx < 0) {
// First time through loop.
- *lbStartIdx = fp->fInputIdx - minML;
+ lbStartIdx = fp->fInputIdx - minML;
+ if (lbStartIdx > 0) {
+ // move index to a code point boudary, if it's not on one already.
+ UTEXT_SETNATIVEINDEX(fInputText, lbStartIdx);
+ lbStartIdx = UTEXT_GETNATIVEINDEX(fInputText);
+ }
} else {
// 2nd through nth time through the loop.
// Back up start position for match by one.
- if (*lbStartIdx == 0) {
- (*lbStartIdx)--;
+ if (lbStartIdx == 0) {
+ (lbStartIdx)--;
} else {
- UTEXT_SETNATIVEINDEX(fInputText, *lbStartIdx);
+ UTEXT_SETNATIVEINDEX(fInputText, lbStartIdx);
(void)UTEXT_PREVIOUS32(fInputText);
- *lbStartIdx = UTEXT_GETNATIVEINDEX(fInputText);
+ lbStartIdx = UTEXT_GETNATIVEINDEX(fInputText);
}
}
- if (*lbStartIdx < 0 || *lbStartIdx < fp->fInputIdx - maxML) {
+ if (lbStartIdx < 0 || lbStartIdx < fp->fInputIdx - maxML) {
// We have tried all potential match starting points without
// getting a match, which means that the negative lookbehind as
// a whole has succeeded. Jump forward to the continue location
// Save state to this URX_LB_CONT op, so failure to match will repeat the loop.
// (successful match will cause a FAIL out of the loop altogether.)
fp = StateSave(fp, fp->fPatIdx-4, status);
- fp->fInputIdx = *lbStartIdx;
+ fp->fInputIdx = lbStartIdx;
}
break;
// Look-behind expression matched, which means look-behind test as
// a whole Fails
-
- // Restore the orignal input string length, which had been truncated
- // inorder to pin the end of the lookbehind match
+
+ // Restore the orignal input string length, which had been truncated
+ // inorder to pin the end of the lookbehind match
// to the position being looked-behind.
int64_t originalInputLen = fData[opValue+3];
U_ASSERT(originalInputLen >= fActiveLimit);
int32_t newStackSize = (int32_t)fData[opValue];
U_ASSERT(fStack->size() > newStackSize);
fStack->setSize(newStackSize);
-
- // FAIL, which will take control back to someplace
+
+ // FAIL, which will take control back to someplace
// prior to entering the look-behind test.
fp = (REStackFrame *)fStack->popFrame(fFrameSize);
}
// This op scans through all matching input.
// The following LOOP_C op emulates stack unwinding if the following pattern fails.
{
- U_ASSERT(opValue > 0 && opValue < sets->size());
+ U_ASSERT(opValue > 0 && opValue < fSets->size());
Regex8BitSet *s8 = &fPattern->fSets8[opValue];
- UnicodeSet *s = (UnicodeSet *)sets->elementAt(opValue);
+ UnicodeSet *s = (UnicodeSet *)fSets->elementAt(opValue);
// Loop through input, until either the input is exhausted or
// we reach a character that is not a member of the set.
if ((c & 0x7f) <= 0x29) { // Fast filter of non-new-line-s
if ((c == 0x0a) || // 0x0a is newline in both modes.
(((opValue & 2) == 0) && // IF not UNIX_LINES mode
- (c<=0x0d && c>=0x0a)) || c==0x85 ||c==0x2028 || c==0x2029) {
+ isLineTerminator(c))) {
// char is a line ending. Exit the scanning loop.
break;
}
U_ASSERT(backSearchIndex <= fp->fInputIdx);
if (backSearchIndex == fp->fInputIdx) {
// We've backed up the input idx to the point that the loop started.
- // The loop is done. Leave here without saving state.
+ // The loop is done. Leave here without saving state.
// Subsequent failures won't come back here.
break;
}
UTEXT_SETNATIVEINDEX(fInputText, fp->fInputIdx);
UChar32 prevC = UTEXT_PREVIOUS32(fInputText);
fp->fInputIdx = UTEXT_GETNATIVEINDEX(fInputText);
-
+
UChar32 twoPrevC = UTEXT_PREVIOUS32(fInputText);
- if (prevC == 0x0a &&
+ if (prevC == 0x0a &&
fp->fInputIdx > backSearchIndex &&
twoPrevC == 0x0d) {
int32_t prevOp = (int32_t)pat[fp->fPatIdx-2];
default:
// Trouble. The compiled pattern contains an entry with an
// unrecognized type tag.
- U_ASSERT(FALSE);
+ UPRV_UNREACHABLE;
}
if (U_FAILURE(status)) {
break;
}
}
-
+
breakFromLoop:
fMatch = isMatch;
if (isMatch) {
fLastMatchEnd = fMatchEnd;
fMatchStart = startIdx;
fMatchEnd = fp->fInputIdx;
- if (fTraceDebug) {
- REGEX_RUN_DEBUG_PRINTF(("Match. start=%d end=%d\n\n", fMatchStart, fMatchEnd));
- }
}
- else
- {
- if (fTraceDebug) {
- REGEX_RUN_DEBUG_PRINTF(("No match\n\n"));
+
+#ifdef REGEX_RUN_DEBUG
+ if (fTraceDebug) {
+ if (isMatch) {
+ printf("Match. start=%ld end=%ld\n\n", fMatchStart, fMatchEnd);
+ } else {
+ printf("No match\n\n");
}
}
+#endif
fFrame = fp; // The active stack frame when the engine stopped.
// Contains the capture group results that we need to
//--------------------------------------------------------------------------------
void RegexMatcher::MatchChunkAt(int32_t startIdx, UBool toEnd, UErrorCode &status) {
UBool isMatch = FALSE; // True if the we have a match.
-
+
int32_t backSearchIndex = INT32_MAX; // used after greedy single-character matches for searching backwards
int32_t op; // Operation from the compiled pattern, split into
int32_t opType; // the opcode
int32_t opValue; // and the operand value.
-
+
#ifdef REGEX_RUN_DEBUG
- if (fTraceDebug)
- {
- printf("MatchAt(startIdx=%ld)\n", startIdx);
- printf("Original Pattern: ");
- UChar32 c = utext_next32From(fPattern->fPattern, 0);
- while (c != U_SENTINEL) {
- if (c<32 || c>256) {
- c = '.';
- }
- REGEX_DUMP_DEBUG_PRINTF(("%c", c));
-
- c = UTEXT_NEXT32(fPattern->fPattern);
- }
- printf("\n");
- printf("Input String: ");
- c = utext_next32From(fInputText, 0);
- while (c != U_SENTINEL) {
- if (c<32 || c>256) {
- c = '.';
- }
- printf("%c", c);
-
- c = UTEXT_NEXT32(fInputText);
- }
- printf("\n");
- printf("\n");
+ if (fTraceDebug) {
+ printf("MatchAt(startIdx=%d)\n", startIdx);
+ printf("Original Pattern: \"%s\"\n", CStr(StringFromUText(fPattern->fPattern))());
+ printf("Input String: \"%s\"\n\n", CStr(StringFromUText(fInputText))());
}
#endif
-
+
if (U_FAILURE(status)) {
return;
}
-
+
// Cache frequently referenced items from the compiled pattern
//
int64_t *pat = fPattern->fCompiledPat->getBuffer();
-
+
const UChar *litText = fPattern->fLiteralText.getBuffer();
- UVector *sets = fPattern->fSets;
-
+ UVector *fSets = fPattern->fSets;
+
const UChar *inputBuf = fInputText->chunkContents;
-
+
fFrameSize = fPattern->fFrameSize;
REStackFrame *fp = resetStack();
-
+ if (U_FAILURE(fDeferredStatus)) {
+ status = fDeferredStatus;
+ return;
+ }
+
fp->fPatIdx = 0;
fp->fInputIdx = startIdx;
-
+
// Zero out the pattern's static data
int32_t i;
for (i = 0; i<fPattern->fDataSize; i++) {
fData[i] = 0;
}
-
+
//
// Main loop for interpreting the compiled pattern.
// One iteration of the loop per pattern operation performed.
//
for (;;) {
-#if 0
- if (_heapchk() != _HEAPOK) {
- fprintf(stderr, "Heap Trouble\n");
- }
-#endif
-
op = (int32_t)pat[fp->fPatIdx];
opType = URX_TYPE(op);
opValue = URX_VAL(op);
#ifdef REGEX_RUN_DEBUG
if (fTraceDebug) {
UTEXT_SETNATIVEINDEX(fInputText, fp->fInputIdx);
- printf("inputIdx=%d inputChar=%x sp=%3d activeLimit=%d ", fp->fInputIdx,
+ printf("inputIdx=%ld inputChar=%x sp=%3ld activeLimit=%ld ", fp->fInputIdx,
UTEXT_CURRENT32(fInputText), (int64_t *)fp-fStack->getBuffer(), fActiveLimit);
fPattern->dumpOp(fp->fPatIdx);
}
#endif
fp->fPatIdx++;
-
+
switch (opType) {
-
-
+
+
case URX_NOP:
break;
-
-
+
+
case URX_BACKTRACK:
// Force a backtrack. In some circumstances, the pattern compiler
// will notice that the pattern can't possibly match anything, and will
// emit one of these at that point.
fp = (REStackFrame *)fStack->popFrame(fFrameSize);
break;
-
-
+
+
case URX_ONECHAR:
if (fp->fInputIdx < fActiveLimit) {
UChar32 c;
}
fp = (REStackFrame *)fStack->popFrame(fFrameSize);
break;
-
-
+
+
case URX_STRING:
{
// Test input against a literal string.
// offset to the string text, and one for the length.
int32_t stringStartIdx = opValue;
int32_t stringLen;
-
+
op = (int32_t)pat[fp->fPatIdx]; // Fetch the second operand
fp->fPatIdx++;
opType = URX_TYPE(op);
stringLen = URX_VAL(op);
U_ASSERT(opType == URX_STRING_LEN);
U_ASSERT(stringLen >= 2);
-
+
const UChar * pInp = inputBuf + fp->fInputIdx;
const UChar * pInpLimit = inputBuf + fActiveLimit;
const UChar * pPat = litText+stringStartIdx;
break;
}
}
-
+
if (success) {
fp->fInputIdx += stringLen;
} else {
}
}
break;
-
-
+
+
case URX_STATE_SAVE:
fp = StateSave(fp, opValue, status);
break;
-
-
+
+
case URX_END:
// The match loop will exit via this path on a successful match,
// when we reach the end of the pattern.
}
isMatch = TRUE;
goto breakFromLoop;
-
+
// Start and End Capture stack frame variables are laid out out like this:
// fp->fExtra[opValue] - The start of a completed capture group
// opValue+1 - The end of a completed capture group
U_ASSERT(opValue >= 0 && opValue < fFrameSize-3);
fp->fExtra[opValue+2] = fp->fInputIdx;
break;
-
-
+
+
case URX_END_CAPTURE:
U_ASSERT(opValue >= 0 && opValue < fFrameSize-3);
U_ASSERT(fp->fExtra[opValue+2] >= 0); // Start pos for this group must be set.
fp->fExtra[opValue+1] = fp->fInputIdx; // End position
U_ASSERT(fp->fExtra[opValue] <= fp->fExtra[opValue+1]);
break;
-
-
+
+
case URX_DOLLAR: // $, test for End of line
// or for position before new line at end of input
if (fp->fInputIdx < fAnchorLimit-2) {
fRequireEnd = TRUE;
break;
}
-
+
// If we are positioned just before a new-line that is located at the
// end of input, succeed.
if (fp->fInputIdx == fAnchorLimit-1) {
UChar32 c;
U16_GET(inputBuf, fAnchorStart, fp->fInputIdx, fAnchorLimit, c);
-
- if ((c>=0x0a && c<=0x0d) || c==0x85 || c==0x2028 || c==0x2029) {
+
+ if (isLineTerminator(c)) {
if ( !(c==0x0a && fp->fInputIdx>fAnchorStart && inputBuf[fp->fInputIdx-1]==0x0d)) {
// At new-line at end of input. Success
fHitEnd = TRUE;
fRequireEnd = TRUE;
break; // At CR/LF at end of input. Success
}
-
+
fp = (REStackFrame *)fStack->popFrame(fFrameSize);
-
+
break;
-
-
+
+
case URX_DOLLAR_D: // $, test for End of Line, in UNIX_LINES mode.
if (fp->fInputIdx >= fAnchorLimit-1) {
// Either at the last character of input, or off the end.
break;
}
}
-
+
// Not at end of input. Back-track out.
fp = (REStackFrame *)fStack->popFrame(fFrameSize);
break;
-
-
+
+
case URX_DOLLAR_M: // $, test for End of line in multi-line mode
{
if (fp->fInputIdx >= fAnchorLimit) {
// If we are positioned just before a new-line, succeed.
// It makes no difference where the new-line is within the input.
UChar32 c = inputBuf[fp->fInputIdx];
- if ((c>=0x0a && c<=0x0d) || c==0x85 ||c==0x2028 || c==0x2029) {
+ if (isLineTerminator(c)) {
// At a line end, except for the odd chance of being in the middle of a CR/LF sequence
// In multi-line mode, hitting a new-line just before the end of input does not
// set the hitEnd or requireEnd flags
fp = (REStackFrame *)fStack->popFrame(fFrameSize);
}
break;
-
-
+
+
case URX_DOLLAR_MD: // $, test for End of line in multi-line and UNIX_LINES mode
{
if (fp->fInputIdx >= fAnchorLimit) {
}
}
break;
-
-
+
+
case URX_CARET: // ^, test for start of line
if (fp->fInputIdx != fAnchorStart) {
fp = (REStackFrame *)fStack->popFrame(fFrameSize);
}
break;
-
-
+
+
case URX_CARET_M: // ^, test for start of line in mulit-line mode
{
if (fp->fInputIdx == fAnchorStart) {
}
// Check whether character just before the current pos is a new-line
// unless we are at the end of input
- UChar c = inputBuf[fp->fInputIdx - 1];
- if ((fp->fInputIdx < fAnchorLimit) &&
- ((c<=0x0d && c>=0x0a) || c==0x85 ||c==0x2028 || c==0x2029)) {
+ UChar c = inputBuf[fp->fInputIdx - 1];
+ if ((fp->fInputIdx < fAnchorLimit) &&
+ isLineTerminator(c)) {
// It's a new-line. ^ is true. Success.
// TODO: what should be done with positions between a CR and LF?
break;
fp = (REStackFrame *)fStack->popFrame(fFrameSize);
}
break;
-
-
+
+
case URX_CARET_M_UNIX: // ^, test for start of line in mulit-line + Unix-line mode
{
U_ASSERT(fp->fInputIdx >= fAnchorStart);
}
// Check whether character just before the current pos is a new-line
U_ASSERT(fp->fInputIdx <= fAnchorLimit);
- UChar c = inputBuf[fp->fInputIdx - 1];
+ UChar c = inputBuf[fp->fInputIdx - 1];
if (c != 0x0a) {
// Not at the start of a line. Back-track out.
fp = (REStackFrame *)fStack->popFrame(fFrameSize);
}
}
break;
-
+
case URX_BACKSLASH_B: // Test for word boundaries
{
UBool success = isChunkWordBoundary((int32_t)fp->fInputIdx);
}
}
break;
-
-
+
+
case URX_BACKSLASH_BU: // Test for word boundaries, Unicode-style
{
UBool success = isUWordBoundary(fp->fInputIdx);
}
}
break;
-
-
+
+
case URX_BACKSLASH_D: // Test for decimal digit
{
if (fp->fInputIdx >= fActiveLimit) {
fp = (REStackFrame *)fStack->popFrame(fFrameSize);
break;
}
-
+
UChar32 c;
U16_NEXT(inputBuf, fp->fInputIdx, fActiveLimit, c);
int8_t ctype = u_charType(c); // TODO: make a unicode set for this. Will be faster.
}
}
break;
-
-
+
+
case URX_BACKSLASH_G: // Test for position at end of previous match
if (!((fMatch && fp->fInputIdx==fMatchEnd) || (fMatch==FALSE && fp->fInputIdx==fActiveStart))) {
fp = (REStackFrame *)fStack->popFrame(fFrameSize);
}
break;
-
-
- case URX_BACKSLASH_X:
+
+
+ case URX_BACKSLASH_H: // Test for \h, horizontal white space.
+ {
+ if (fp->fInputIdx >= fActiveLimit) {
+ fHitEnd = TRUE;
+ fp = (REStackFrame *)fStack->popFrame(fFrameSize);
+ break;
+ }
+ UChar32 c;
+ U16_NEXT(inputBuf, fp->fInputIdx, fActiveLimit, c);
+ int8_t ctype = u_charType(c);
+ UBool success = (ctype == U_SPACE_SEPARATOR || c == 9); // SPACE_SEPARATOR || TAB
+ success ^= (UBool)(opValue != 0); // flip sense for \H
+ if (!success) {
+ fp = (REStackFrame *)fStack->popFrame(fFrameSize);
+ }
+ }
+ break;
+
+
+ case URX_BACKSLASH_R: // Test for \R, any line break sequence.
+ {
+ if (fp->fInputIdx >= fActiveLimit) {
+ fHitEnd = TRUE;
+ fp = (REStackFrame *)fStack->popFrame(fFrameSize);
+ break;
+ }
+ UChar32 c;
+ U16_NEXT(inputBuf, fp->fInputIdx, fActiveLimit, c);
+ if (isLineTerminator(c)) {
+ if (c == 0x0d && fp->fInputIdx < fActiveLimit) {
+ // Check for CR/LF sequence. Consume both together when found.
+ UChar c2;
+ U16_NEXT(inputBuf, fp->fInputIdx, fActiveLimit, c2);
+ if (c2 != 0x0a) {
+ U16_PREV(inputBuf, 0, fp->fInputIdx, c2);
+ }
+ }
+ } else {
+ fp = (REStackFrame *)fStack->popFrame(fFrameSize);
+ }
+ }
+ break;
+
+
+ case URX_BACKSLASH_V: // Any single code point line ending.
+ {
+ if (fp->fInputIdx >= fActiveLimit) {
+ fHitEnd = TRUE;
+ fp = (REStackFrame *)fStack->popFrame(fFrameSize);
+ break;
+ }
+ UChar32 c;
+ U16_NEXT(inputBuf, fp->fInputIdx, fActiveLimit, c);
+ UBool success = isLineTerminator(c);
+ success ^= (UBool)(opValue != 0); // flip sense for \V
+ if (!success) {
+ fp = (REStackFrame *)fStack->popFrame(fFrameSize);
+ }
+ }
+ break;
+
+
+
+ case URX_BACKSLASH_X:
// Match a Grapheme, as defined by Unicode TR 29.
// Differs slightly from Perl, which consumes combining marks independently
// of context.
goto GC_Done;
GC_Control:
- // Most control chars stand alone (don't combine with combining chars),
+ // Most control chars stand alone (don't combine with combining chars),
// except for that CR/LF sequence is a single grapheme cluster.
if (c == 0x0d && fp->fInputIdx < fActiveLimit && inputBuf[fp->fInputIdx] == 0x0a) {
fp->fInputIdx++;
}
break;
}
-
-
-
-
+
+
+
+
case URX_BACKSLASH_Z: // Test for end of Input
if (fp->fInputIdx < fAnchorLimit) {
fp = (REStackFrame *)fStack->popFrame(fFrameSize);
fRequireEnd = TRUE;
}
break;
-
-
-
+
+
+
case URX_STATIC_SETREF:
{
// Test input character against one of the predefined sets
fp = (REStackFrame *)fStack->popFrame(fFrameSize);
break;
}
-
- UBool success = ((opValue & URX_NEG_SET) == URX_NEG_SET);
+
+ UBool success = ((opValue & URX_NEG_SET) == URX_NEG_SET);
opValue &= ~URX_NEG_SET;
U_ASSERT(opValue > 0 && opValue < URX_LAST_SET);
-
+
UChar32 c;
U16_NEXT(inputBuf, fp->fInputIdx, fActiveLimit, c);
if (c < 256) {
}
}
break;
-
-
+
+
case URX_STAT_SETREF_N:
{
- // Test input character for NOT being a member of one of
+ // Test input character for NOT being a member of one of
// the predefined sets (Word Characters, for example)
if (fp->fInputIdx >= fActiveLimit) {
fHitEnd = TRUE;
fp = (REStackFrame *)fStack->popFrame(fFrameSize);
break;
}
-
+
U_ASSERT(opValue > 0 && opValue < URX_LAST_SET);
-
+
UChar32 c;
U16_NEXT(inputBuf, fp->fInputIdx, fActiveLimit, c);
if (c < 256) {
fp = (REStackFrame *)fStack->popFrame(fFrameSize);
}
break;
-
-
+
+
case URX_SETREF:
{
if (fp->fInputIdx >= fActiveLimit) {
fp = (REStackFrame *)fStack->popFrame(fFrameSize);
break;
}
-
- U_ASSERT(opValue > 0 && opValue < sets->size());
+
+ U_ASSERT(opValue > 0 && opValue < fSets->size());
// There is input left. Pick up one char and test it for set membership.
UChar32 c;
break;
}
} else {
- UnicodeSet *s = (UnicodeSet *)sets->elementAt(opValue);
+ UnicodeSet *s = (UnicodeSet *)fSets->elementAt(opValue);
if (s->contains(c)) {
// The character is in the set. A Match.
break;
}
}
-
+
// the character wasn't in the set.
fp = (REStackFrame *)fStack->popFrame(fFrameSize);
}
break;
-
-
+
+
case URX_DOTANY:
{
// . matches anything, but stops at end-of-line.
fp = (REStackFrame *)fStack->popFrame(fFrameSize);
break;
}
-
+
// There is input left. Advance over one char, unless we've hit end-of-line
UChar32 c;
U16_NEXT(inputBuf, fp->fInputIdx, fActiveLimit, c);
- if (((c & 0x7f) <= 0x29) && // First quickly bypass as many chars as possible
- ((c<=0x0d && c>=0x0a) || c==0x85 ||c==0x2028 || c==0x2029)) {
+ if (isLineTerminator(c)) {
// End of line in normal mode. . does not match.
fp = (REStackFrame *)fStack->popFrame(fFrameSize);
break;
}
}
break;
-
-
+
+
case URX_DOTANY_ALL:
{
// . in dot-matches-all (including new lines) mode
fp = (REStackFrame *)fStack->popFrame(fFrameSize);
break;
}
-
+
// There is input left. Advance over one char, except if we are
// at a cr/lf, advance over both of them.
- UChar32 c;
+ UChar32 c;
U16_NEXT(inputBuf, fp->fInputIdx, fActiveLimit, c);
if (c==0x0d && fp->fInputIdx < fActiveLimit) {
// In the case of a CR/LF, we need to advance over both.
}
}
break;
-
-
+
+
case URX_DOTANY_UNIX:
{
// '.' operator, matches all, but stops at end-of-line.
fp = (REStackFrame *)fStack->popFrame(fFrameSize);
break;
}
-
+
// There is input left. Advance over one char, unless we've hit end-of-line
- UChar32 c;
+ UChar32 c;
U16_NEXT(inputBuf, fp->fInputIdx, fActiveLimit, c);
if (c == 0x0a) {
// End of line in normal mode. '.' does not match the \n
}
}
break;
-
-
+
+
case URX_JMP:
fp->fPatIdx = opValue;
break;
-
+
case URX_FAIL:
isMatch = FALSE;
goto breakFromLoop;
-
+
case URX_JMP_SAV:
U_ASSERT(opValue < fPattern->fCompiledPat->size());
fp = StateSave(fp, fp->fPatIdx, status); // State save to loc following current
fp->fPatIdx = opValue; // Then JMP.
break;
-
+
case URX_JMP_SAV_X:
// This opcode is used with (x)+, when x can match a zero length string.
// Same as JMP_SAV, except conditional on the match having made forward progress.
fp = StateSave(fp, fp->fPatIdx, status); // State save to loc following current
fp->fPatIdx = opValue;
fp->fExtra[frameLoc] = fp->fInputIdx;
- }
+ }
// If the input position did not advance, we do nothing here,
// execution will fall out of the loop.
}
break;
-
+
case URX_CTR_INIT:
{
U_ASSERT(opValue >= 0 && opValue < fFrameSize-2);
- fp->fExtra[opValue] = 0; // Set the loop counter variable to zero
-
+ fp->fExtra[opValue] = 0; // Set the loop counter variable to zero
+
// Pick up the three extra operands that CTR_INIT has, and
- // skip the pattern location counter past
+ // skip the pattern location counter past
int32_t instrOperandLoc = (int32_t)fp->fPatIdx;
fp->fPatIdx += 3;
int32_t loopLoc = URX_VAL(pat[instrOperandLoc]);
int32_t maxCount = (int32_t)pat[instrOperandLoc+2];
U_ASSERT(minCount>=0);
U_ASSERT(maxCount>=minCount || maxCount==-1);
- U_ASSERT(loopLoc>fp->fPatIdx);
-
+ U_ASSERT(loopLoc>=fp->fPatIdx);
+
if (minCount == 0) {
fp = StateSave(fp, loopLoc+1, status);
}
- if (maxCount == 0) {
+ if (maxCount == -1) {
+ fp->fExtra[opValue+1] = fp->fInputIdx; // For loop breaking.
+ } else if (maxCount == 0) {
fp = (REStackFrame *)fStack->popFrame(fFrameSize);
}
}
break;
-
+
case URX_CTR_LOOP:
{
U_ASSERT(opValue>0 && opValue < fp->fPatIdx-2);
int64_t *pCounter = &fp->fExtra[URX_VAL(initOp)];
int32_t minCount = (int32_t)pat[opValue+2];
int32_t maxCount = (int32_t)pat[opValue+3];
- // Increment the counter. Note: we DIDN'T worry about counter
- // overflow, since the data comes from UnicodeStrings, which
- // stores its length in an int32_t. Do we have to think about
- // this now that we're using UText? Probably not, since the length
- // in UChar32s is still an int32_t.
(*pCounter)++;
- U_ASSERT(*pCounter > 0);
- if ((uint64_t)*pCounter >= (uint32_t)maxCount) {
- U_ASSERT(*pCounter == maxCount || maxCount == -1);
+ if ((uint64_t)*pCounter >= (uint32_t)maxCount && maxCount != -1) {
+ U_ASSERT(*pCounter == maxCount);
break;
}
if (*pCounter >= minCount) {
+ if (maxCount == -1) {
+ // Loop has no hard upper bound.
+ // Check that it is progressing through the input, break if it is not.
+ int64_t *pLastInputIdx = &fp->fExtra[URX_VAL(initOp) + 1];
+ if (fp->fInputIdx == *pLastInputIdx) {
+ break;
+ } else {
+ *pLastInputIdx = fp->fInputIdx;
+ }
+ }
fp = StateSave(fp, fp->fPatIdx, status);
+ } else {
+ // Increment time-out counter. (StateSave() does it if count >= minCount)
+ fTickCounter--;
+ if (fTickCounter <= 0) {
+ IncrementTime(status); // Re-initializes fTickCounter
+ }
}
fp->fPatIdx = opValue + 4; // Loop back.
}
break;
-
+
case URX_CTR_INIT_NG:
{
// Initialize a non-greedy loop
U_ASSERT(opValue >= 0 && opValue < fFrameSize-2);
- fp->fExtra[opValue] = 0; // Set the loop counter variable to zero
-
- // Pick up the three extra operands that CTR_INIT has, and
- // skip the pattern location counter past
+ fp->fExtra[opValue] = 0; // Set the loop counter variable to zero
+
+ // Pick up the three extra operands that CTR_INIT_NG has, and
+ // skip the pattern location counter past
int32_t instrOperandLoc = (int32_t)fp->fPatIdx;
fp->fPatIdx += 3;
int32_t loopLoc = URX_VAL(pat[instrOperandLoc]);
U_ASSERT(minCount>=0);
U_ASSERT(maxCount>=minCount || maxCount==-1);
U_ASSERT(loopLoc>fp->fPatIdx);
-
+ if (maxCount == -1) {
+ fp->fExtra[opValue+1] = fp->fInputIdx; // Save initial input index for loop breaking.
+ }
+
if (minCount == 0) {
if (maxCount != 0) {
fp = StateSave(fp, fp->fPatIdx, status);
}
fp->fPatIdx = loopLoc+1; // Continue with stuff after repeated block
- }
+ }
}
break;
-
+
case URX_CTR_LOOP_NG:
{
// Non-greedy {min, max} loops
int64_t *pCounter = &fp->fExtra[URX_VAL(initOp)];
int32_t minCount = (int32_t)pat[opValue+2];
int32_t maxCount = (int32_t)pat[opValue+3];
- // Increment the counter. Note: we DIDN'T worry about counter
- // overflow, since the data comes from UnicodeStrings, which
- // stores its length in an int32_t. Do we have to think about
- // this now that we're using UText? Probably not, since the length
- // in UChar32s is still an int32_t.
+
(*pCounter)++;
- U_ASSERT(*pCounter > 0);
-
- if ((uint64_t)*pCounter >= (uint32_t)maxCount) {
+ if ((uint64_t)*pCounter >= (uint32_t)maxCount && maxCount != -1) {
// The loop has matched the maximum permitted number of times.
// Break out of here with no action. Matching will
// continue with the following pattern.
- U_ASSERT(*pCounter == maxCount || maxCount == -1);
+ U_ASSERT(*pCounter == maxCount);
break;
}
-
+
if (*pCounter < minCount) {
// We haven't met the minimum number of matches yet.
// Loop back for another one.
fp->fPatIdx = opValue + 4; // Loop back.
+ fTickCounter--;
+ if (fTickCounter <= 0) {
+ IncrementTime(status); // Re-initializes fTickCounter
+ }
} else {
// We do have the minimum number of matches.
- // Fall into the following pattern, but first do
- // a state save to the top of the loop, so that a failure
+
+ // If there is no upper bound on the loop iterations, check that the input index
+ // is progressing, and stop the loop if it is not.
+ if (maxCount == -1) {
+ int64_t *pLastInputIdx = &fp->fExtra[URX_VAL(initOp) + 1];
+ if (fp->fInputIdx == *pLastInputIdx) {
+ break;
+ }
+ *pLastInputIdx = fp->fInputIdx;
+ }
+
+ // Loop Continuation: we will fall into the pattern following the loop
+ // (non-greedy, don't execute loop body first), but first do
+ // a state save to the top of the loop, so that a match failure
// in the following pattern will try another iteration of the loop.
fp = StateSave(fp, opValue + 4, status);
}
}
break;
-
+
case URX_STO_SP:
U_ASSERT(opValue >= 0 && opValue < fPattern->fDataSize);
fData[opValue] = fStack->size();
break;
-
+
case URX_LD_SP:
{
U_ASSERT(opValue >= 0 && opValue < fPattern->fDataSize);
if (newFP == (int64_t *)fp) {
break;
}
- int32_t i;
- for (i=0; i<fFrameSize; i++) {
- newFP[i] = ((int64_t *)fp)[i];
+ int32_t j;
+ for (j=0; j<fFrameSize; j++) {
+ newFP[j] = ((int64_t *)fp)[j];
}
fp = (REStackFrame *)newFP;
fStack->setSize(newStackSize);
}
break;
-
+
case URX_BACKREF:
{
U_ASSERT(opValue < fFrameSize);
break;
}
}
+ if (success && groupStartIdx < groupEndIdx && U16_IS_LEAD(inputBuf[groupEndIdx-1]) &&
+ inputIndex < fActiveLimit && U16_IS_TRAIL(inputBuf[inputIndex])) {
+ // Capture group ended with an unpaired lead surrogate.
+ // Back reference is not permitted to match lead only of a surrogatge pair.
+ success = FALSE;
+ }
if (success) {
fp->fInputIdx = inputIndex;
} else {
}
}
break;
-
+
case URX_BACKREF_I:
{
U_ASSERT(opValue < fFrameSize);
CaseFoldingUCharIterator inputItr(inputBuf, fp->fInputIdx, fActiveLimit);
// Note: if the capture group match was of an empty string the backref
- // match succeeds. Verified by testing: Perl matches succeed
+ // match succeeds. Verified by testing: Perl matches succeed
// in this case, so we do too.
-
+
UBool success = TRUE;
for (;;) {
UChar32 captureGroupChar = captureGroupItr.next();
}
if (success && inputItr.inExpansion()) {
- // We otained a match by consuming part of a string obtained from
- // case-folding a single code point of the input text.
+ // We otained a match by consuming part of a string obtained from
+ // case-folding a single code point of the input text.
// This does not count as an overall match.
success = FALSE;
}
fp->fExtra[opValue] = fp->fInputIdx;
}
break;
-
+
case URX_JMPX:
{
int32_t instrOperandLoc = (int32_t)fp->fPatIdx;
}
}
break;
-
+
case URX_LA_START:
{
// Entering a lookahead block.
fActiveLimit = fLookLimit; // transparent bounds.
}
break;
-
+
case URX_LA_END:
{
// Leaving a look-ahead block.
// This makes the capture groups from within the look-ahead
// expression available.
int64_t *newFP = fStack->getBuffer() + newStackSize - fFrameSize;
- int32_t i;
- for (i=0; i<fFrameSize; i++) {
- newFP[i] = ((int64_t *)fp)[i];
+ int32_t j;
+ for (j=0; j<fFrameSize; j++) {
+ newFP[j] = ((int64_t *)fp)[j];
}
fp = (REStackFrame *)newFP;
fStack->setSize(newStackSize);
}
fp->fInputIdx = fData[opValue+1];
-
+
// Restore the active region bounds in the input string; they may have
// been changed because of transparent bounds on a Region.
fActiveStart = fRegionStart;
fActiveLimit = fRegionLimit;
}
break;
-
+
case URX_ONECHAR_I:
if (fp->fInputIdx < fActiveLimit) {
- UChar32 c;
+ UChar32 c;
U16_NEXT(inputBuf, fp->fInputIdx, fActiveLimit, c);
if (u_foldCase(c, U_FOLD_CASE_DEFAULT) == opValue) {
break;
}
fp = (REStackFrame *)fStack->popFrame(fFrameSize);
break;
-
+
case URX_STRING_I:
// Case-insensitive test input against a literal string.
// Strings require two slots in the compiled pattern, one for the
opValue = URX_VAL(op);
U_ASSERT(opType == URX_STRING_LEN);
int32_t patternStringLen = opValue; // Length of the string from the pattern.
-
+
UChar32 cText;
UChar32 cPattern;
UBool success = TRUE;
fActiveLimit = fp->fInputIdx;
}
break;
-
-
+
+
case URX_LB_CONT:
{
// Positive Look-Behind, at top of loop checking for matches of LB expression
// at all possible input starting positions.
-
+
// Fetch the min and max possible match lengths. They are the operands
// of this op in the pattern.
int32_t minML = (int32_t)pat[fp->fPatIdx++];
int32_t maxML = (int32_t)pat[fp->fPatIdx++];
U_ASSERT(minML <= maxML);
U_ASSERT(minML >= 0);
-
+
// Fetch (from data) the last input index where a match was attempted.
U_ASSERT(opValue>=0 && opValue+1<fPattern->fDataSize);
- int64_t *lbStartIdx = &fData[opValue+2];
- if (*lbStartIdx < 0) {
+ int64_t &lbStartIdx = fData[opValue+2];
+ if (lbStartIdx < 0) {
// First time through loop.
- *lbStartIdx = fp->fInputIdx - minML;
+ lbStartIdx = fp->fInputIdx - minML;
+ if (lbStartIdx > 0 && lbStartIdx < fInputLength) {
+ U16_SET_CP_START(inputBuf, 0, lbStartIdx);
+ }
} else {
// 2nd through nth time through the loop.
// Back up start position for match by one.
- if (*lbStartIdx == 0) {
- (*lbStartIdx)--;
+ if (lbStartIdx == 0) {
+ lbStartIdx--;
} else {
- U16_BACK_1(inputBuf, 0, *lbStartIdx);
+ U16_BACK_1(inputBuf, 0, lbStartIdx);
}
}
-
- if (*lbStartIdx < 0 || *lbStartIdx < fp->fInputIdx - maxML) {
+
+ if (lbStartIdx < 0 || lbStartIdx < fp->fInputIdx - maxML) {
// We have tried all potential match starting points without
// getting a match. Backtrack out, and out of the
// Look Behind altogether.
fActiveLimit = restoreInputLen;
break;
}
-
+
// Save state to this URX_LB_CONT op, so failure to match will repeat the loop.
// (successful match will fall off the end of the loop.)
fp = StateSave(fp, fp->fPatIdx-3, status);
- fp->fInputIdx = *lbStartIdx;
+ fp->fInputIdx = lbStartIdx;
}
break;
-
+
case URX_LB_END:
// End of a look-behind block, after a successful match.
{
fp = (REStackFrame *)fStack->popFrame(fFrameSize);
break;
}
-
+
// Look-behind match is good. Restore the orignal input string length,
- // which had been truncated to pin the end of the lookbehind match to the
+ // which had been truncated to pin the end of the lookbehind match to the
// position being looked-behind.
int64_t originalInputLen = fData[opValue+3];
U_ASSERT(originalInputLen >= fActiveLimit);
fActiveLimit = originalInputLen;
}
break;
-
-
+
+
case URX_LBN_CONT:
{
// Negative Look-Behind, at top of loop checking for matches of LB expression
// at all possible input starting positions.
-
+
// Fetch the extra parameters of this op.
int32_t minML = (int32_t)pat[fp->fPatIdx++];
int32_t maxML = (int32_t)pat[fp->fPatIdx++];
U_ASSERT(minML <= maxML);
U_ASSERT(minML >= 0);
U_ASSERT(continueLoc > fp->fPatIdx);
-
+
// Fetch (from data) the last input index where a match was attempted.
U_ASSERT(opValue>=0 && opValue+1<fPattern->fDataSize);
- int64_t *lbStartIdx = &fData[opValue+2];
- if (*lbStartIdx < 0) {
+ int64_t &lbStartIdx = fData[opValue+2];
+ if (lbStartIdx < 0) {
// First time through loop.
- *lbStartIdx = fp->fInputIdx - minML;
+ lbStartIdx = fp->fInputIdx - minML;
+ if (lbStartIdx > 0 && lbStartIdx < fInputLength) {
+ U16_SET_CP_START(inputBuf, 0, lbStartIdx);
+ }
} else {
// 2nd through nth time through the loop.
// Back up start position for match by one.
- if (*lbStartIdx == 0) {
- (*lbStartIdx)--; // Because U16_BACK is unsafe starting at 0.
+ if (lbStartIdx == 0) {
+ lbStartIdx--; // Because U16_BACK is unsafe starting at 0.
} else {
- U16_BACK_1(inputBuf, 0, *lbStartIdx);
+ U16_BACK_1(inputBuf, 0, lbStartIdx);
}
}
-
- if (*lbStartIdx < 0 || *lbStartIdx < fp->fInputIdx - maxML) {
+
+ if (lbStartIdx < 0 || lbStartIdx < fp->fInputIdx - maxML) {
// We have tried all potential match starting points without
// getting a match, which means that the negative lookbehind as
// a whole has succeeded. Jump forward to the continue location
fp->fPatIdx = continueLoc;
break;
}
-
+
// Save state to this URX_LB_CONT op, so failure to match will repeat the loop.
// (successful match will cause a FAIL out of the loop altogether.)
fp = StateSave(fp, fp->fPatIdx-4, status);
- fp->fInputIdx = *lbStartIdx;
+ fp->fInputIdx = lbStartIdx;
}
break;
-
+
case URX_LBN_END:
// End of a negative look-behind block, after a successful match.
{
fp = (REStackFrame *)fStack->popFrame(fFrameSize);
break;
}
-
+
// Look-behind expression matched, which means look-behind test as
// a whole Fails
-
- // Restore the orignal input string length, which had been truncated
- // inorder to pin the end of the lookbehind match
+
+ // Restore the orignal input string length, which had been truncated
+ // inorder to pin the end of the lookbehind match
// to the position being looked-behind.
int64_t originalInputLen = fData[opValue+3];
U_ASSERT(originalInputLen >= fActiveLimit);
U_ASSERT(originalInputLen <= fInputLength);
fActiveLimit = originalInputLen;
-
+
// Restore original stack position, discarding any state saved
// by the successful pattern match.
U_ASSERT(opValue>=0 && opValue+1<fPattern->fDataSize);
int32_t newStackSize = (int32_t)fData[opValue];
U_ASSERT(fStack->size() > newStackSize);
fStack->setSize(newStackSize);
-
- // FAIL, which will take control back to someplace
+
+ // FAIL, which will take control back to someplace
// prior to entering the look-behind test.
fp = (REStackFrame *)fStack->popFrame(fFrameSize);
}
break;
-
-
+
+
case URX_LOOP_SR_I:
// Loop Initialization for the optimized implementation of
// [some character set]*
// This op scans through all matching input.
// The following LOOP_C op emulates stack unwinding if the following pattern fails.
{
- U_ASSERT(opValue > 0 && opValue < sets->size());
+ U_ASSERT(opValue > 0 && opValue < fSets->size());
Regex8BitSet *s8 = &fPattern->fSets8[opValue];
- UnicodeSet *s = (UnicodeSet *)sets->elementAt(opValue);
-
+ UnicodeSet *s = (UnicodeSet *)fSets->elementAt(opValue);
+
// Loop through input, until either the input is exhausted or
// we reach a character that is not a member of the set.
int32_t ix = (int32_t)fp->fInputIdx;
}
}
}
-
+
// If there were no matching characters, skip over the loop altogether.
// The loop doesn't run at all, a * op always succeeds.
if (ix == fp->fInputIdx) {
fp->fPatIdx++; // skip the URX_LOOP_C op.
break;
}
-
+
// Peek ahead in the compiled pattern, to the URX_LOOP_C that
// must follow. It's operand is the stack location
// that holds the starting input index for the match of this [set]*
U_ASSERT(stackLoc >= 0 && stackLoc < fFrameSize);
fp->fExtra[stackLoc] = fp->fInputIdx;
fp->fInputIdx = ix;
-
+
// Save State to the URX_LOOP_C op that follows this one,
// so that match failures in the following code will return to there.
// Then bump the pattern idx so the LOOP_C is skipped on the way out of here.
fp->fPatIdx++;
}
break;
-
-
+
+
case URX_LOOP_DOT_I:
// Loop Initialization for the optimized implementation of .*
// This op scans through all remaining input.
if ((c & 0x7f) <= 0x29) { // Fast filter of non-new-line-s
if ((c == 0x0a) || // 0x0a is newline in both modes.
(((opValue & 2) == 0) && // IF not UNIX_LINES mode
- ((c<=0x0d && c>=0x0a) || c==0x85 || c==0x2028 || c==0x2029))) {
+ isLineTerminator(c))) {
// char is a line ending. Put the input pos back to the
// line ending char, and exit the scanning loop.
U16_BACK_1(inputBuf, 0, ix);
}
}
}
-
+
// If there were no matching characters, skip over the loop altogether.
// The loop doesn't run at all, a * op always succeeds.
if (ix == fp->fInputIdx) {
fp->fPatIdx++; // skip the URX_LOOP_C op.
break;
}
-
+
// Peek ahead in the compiled pattern, to the URX_LOOP_C that
// must follow. It's operand is the stack location
// that holds the starting input index for the match of this .*
U_ASSERT(stackLoc >= 0 && stackLoc < fFrameSize);
fp->fExtra[stackLoc] = fp->fInputIdx;
fp->fInputIdx = ix;
-
+
// Save State to the URX_LOOP_C op that follows this one,
// so that match failures in the following code will return to there.
// Then bump the pattern idx so the LOOP_C is skipped on the way out of here.
fp->fPatIdx++;
}
break;
-
-
+
+
case URX_LOOP_C:
{
U_ASSERT(opValue>=0 && opValue<fFrameSize);
U_ASSERT(backSearchIndex <= fp->fInputIdx);
if (backSearchIndex == fp->fInputIdx) {
// We've backed up the input idx to the point that the loop started.
- // The loop is done. Leave here without saving state.
+ // The loop is done. Leave here without saving state.
// Subsequent failures won't come back here.
break;
}
U_ASSERT(fp->fInputIdx > 0);
UChar32 prevC;
U16_PREV(inputBuf, 0, fp->fInputIdx, prevC); // !!!: should this 0 be one of f*Limit?
-
- if (prevC == 0x0a &&
+
+ if (prevC == 0x0a &&
fp->fInputIdx > backSearchIndex &&
inputBuf[fp->fInputIdx-1] == 0x0d) {
int32_t prevOp = (int32_t)pat[fp->fPatIdx-2];
U16_BACK_1(inputBuf, 0, fp->fInputIdx);
}
}
-
-
+
+
fp = StateSave(fp, fp->fPatIdx-1, status);
}
break;
-
-
-
+
+
+
default:
// Trouble. The compiled pattern contains an entry with an
// unrecognized type tag.
- U_ASSERT(FALSE);
+ UPRV_UNREACHABLE;
}
-
+
if (U_FAILURE(status)) {
isMatch = FALSE;
break;
}
}
-
+
breakFromLoop:
fMatch = isMatch;
if (isMatch) {
fLastMatchEnd = fMatchEnd;
fMatchStart = startIdx;
fMatchEnd = fp->fInputIdx;
- if (fTraceDebug) {
- REGEX_RUN_DEBUG_PRINTF(("Match. start=%d end=%d\n\n", fMatchStart, fMatchEnd));
- }
}
- else
- {
- if (fTraceDebug) {
- REGEX_RUN_DEBUG_PRINTF(("No match\n\n"));
+
+#ifdef REGEX_RUN_DEBUG
+ if (fTraceDebug) {
+ if (isMatch) {
+ printf("Match. start=%ld end=%ld\n\n", fMatchStart, fMatchEnd);
+ } else {
+ printf("No match\n\n");
}
}
-
+#endif
+
fFrame = fp; // The active stack frame when the engine stopped.
- // Contains the capture group results that we need to
- // access later.
+ // Contains the capture group results that we need to
+ // access later.
return;
}
U_NAMESPACE_END
#endif // !UCONFIG_NO_REGULAR_EXPRESSIONS
+