2002-10-22 00:09:32 +00:00
|
|
|
//
|
|
|
|
// file: rematch.cpp
|
|
|
|
//
|
2002-11-07 02:34:46 +00:00
|
|
|
// Contains the implementation of class RegexMatcher,
|
|
|
|
// which is one of the main API classes for the ICU regular expression package.
|
|
|
|
//
|
2002-10-22 00:09:32 +00:00
|
|
|
/*
|
|
|
|
**********************************************************************
|
|
|
|
* Copyright (C) 2002 International Business Machines Corporation *
|
|
|
|
* and others. All rights reserved. *
|
|
|
|
**********************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "unicode/utypes.h"
|
2002-11-07 02:34:46 +00:00
|
|
|
#if !UCONFIG_NO_REGULAR_EXPRESSIONS
|
|
|
|
|
2002-10-22 00:09:32 +00:00
|
|
|
#include "unicode/regex.h"
|
|
|
|
#include "unicode/uniset.h"
|
2002-10-24 22:16:07 +00:00
|
|
|
#include "unicode/uchar.h"
|
2003-01-08 23:38:23 +00:00
|
|
|
#include "unicode/ustring.h"
|
2002-10-22 00:09:32 +00:00
|
|
|
#include "uassert.h"
|
2003-01-17 01:43:54 +00:00
|
|
|
#include "cmemory.h"
|
2002-10-22 00:09:32 +00:00
|
|
|
#include "uvector.h"
|
2003-01-08 23:38:23 +00:00
|
|
|
#include "uvectr32.h"
|
2002-10-22 00:09:32 +00:00
|
|
|
#include "regeximp.h"
|
|
|
|
|
2003-01-22 19:19:36 +00:00
|
|
|
//#include "stdio.h"
|
|
|
|
//#include "malloc.h"
|
2002-10-22 00:09:32 +00:00
|
|
|
|
|
|
|
U_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// Constructor and Destructor
|
|
|
|
//
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
RegexMatcher::RegexMatcher(const RegexPattern *pat) {
|
|
|
|
fPattern = pat;
|
|
|
|
fInput = NULL;
|
2003-01-08 23:38:23 +00:00
|
|
|
fInputUC = NULL;
|
2002-10-22 00:09:32 +00:00
|
|
|
fInputLength = 0;
|
|
|
|
UErrorCode status = U_ZERO_ERROR;
|
2003-01-16 01:12:04 +00:00
|
|
|
fStack = new UVector32(status); // TODO: do something with status.
|
2003-01-17 01:43:54 +00:00
|
|
|
fData = fSmallData;
|
2003-01-20 06:25:23 +00:00
|
|
|
if (pat->fDataSize > sizeof(fSmallData)/sizeof(int32_t)) {
|
2003-01-17 01:43:54 +00:00
|
|
|
fData = (int32_t *)uprv_malloc(pat->fDataSize * sizeof(int32_t)); // TODO: null check
|
|
|
|
}
|
|
|
|
|
2002-10-22 00:09:32 +00:00
|
|
|
reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
RegexMatcher::~RegexMatcher() {
|
2003-01-16 01:12:04 +00:00
|
|
|
delete fStack;
|
2003-01-17 01:43:54 +00:00
|
|
|
if (fData != fSmallData) {
|
|
|
|
delete fData;
|
|
|
|
}
|
2002-10-22 00:09:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-10-24 22:16:07 +00:00
|
|
|
static const UChar BACKSLASH = 0x5c;
|
|
|
|
static const UChar DOLLARSIGN = 0x24;
|
|
|
|
//--------------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// appendReplacement
|
|
|
|
//
|
|
|
|
//--------------------------------------------------------------------------------
|
2002-10-22 00:09:32 +00:00
|
|
|
RegexMatcher &RegexMatcher::appendReplacement(UnicodeString &dest,
|
2002-10-24 22:16:07 +00:00
|
|
|
const UnicodeString &replacement,
|
|
|
|
UErrorCode &status) {
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
if (fMatch == FALSE) {
|
|
|
|
status = U_REGEX_INVALID_STATE;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Copy input string from the end of previous match to start of current match
|
|
|
|
int32_t len = fMatchStart-fLastMatchEnd;
|
|
|
|
if (len > 0) {
|
|
|
|
dest.append(*fInput, fLastMatchEnd, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// scan the replacement text, looking for substitutions ($n) and \escapes.
|
2002-11-14 18:27:00 +00:00
|
|
|
// TODO: optimize this loop by efficiently scanning for '$' or '\'
|
2002-10-24 22:16:07 +00:00
|
|
|
int32_t replLen = replacement.length();
|
2002-11-14 18:27:00 +00:00
|
|
|
int32_t replIdx = 0;
|
|
|
|
while (replIdx<replLen) {
|
2002-10-24 22:16:07 +00:00
|
|
|
UChar c = replacement.charAt(replIdx);
|
2002-11-14 18:27:00 +00:00
|
|
|
replIdx++;
|
2002-10-24 22:16:07 +00:00
|
|
|
if (c == BACKSLASH) {
|
|
|
|
// Backslash Escape. Copy the following char out without further checks.
|
2002-11-14 18:27:00 +00:00
|
|
|
// Note: Surrogate pairs don't need any special handling
|
|
|
|
// The second half wont be a '$' or a '\', and
|
|
|
|
// will move to the dest normally on the next
|
|
|
|
// loop iteration.
|
2002-10-24 22:16:07 +00:00
|
|
|
if (replIdx >= replLen) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
c = replacement.charAt(replIdx);
|
2002-11-14 18:27:00 +00:00
|
|
|
replIdx++;
|
2002-10-24 22:16:07 +00:00
|
|
|
dest.append(c);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c != DOLLARSIGN) {
|
|
|
|
// Normal char, not a $. Copy it out without further checks.
|
|
|
|
dest.append(c);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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;
|
|
|
|
int32_t groupNum = 0;
|
2002-11-14 18:27:00 +00:00
|
|
|
UChar32 digitC;
|
2002-10-24 22:16:07 +00:00
|
|
|
for (;;) {
|
2002-11-14 18:27:00 +00:00
|
|
|
if (replIdx >= replLen) {
|
2002-10-24 22:16:07 +00:00
|
|
|
break;
|
|
|
|
}
|
2002-11-14 18:27:00 +00:00
|
|
|
digitC = replacement.char32At(replIdx);
|
|
|
|
if (u_isdigit(digitC) == FALSE) {
|
2002-10-24 22:16:07 +00:00
|
|
|
break;
|
|
|
|
}
|
2002-11-14 18:27:00 +00:00
|
|
|
replIdx = replacement.moveIndex32(replIdx, 1);
|
|
|
|
groupNum=groupNum*10 + u_charDigitValue(digitC);
|
|
|
|
numDigits++;
|
2002-10-24 22:16:07 +00:00
|
|
|
if (numDigits >= fPattern->fMaxCaptureDigits) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (numDigits == 0) {
|
|
|
|
// The $ didn't introduce a group number at all.
|
|
|
|
// Treat it as just part of the substitution text.
|
|
|
|
dest.append(DOLLARSIGN);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Finally, append the capture group data to the destination.
|
|
|
|
dest.append(group(groupNum, status));
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
// Can fail if group number is out of range.
|
2002-11-14 18:27:00 +00:00
|
|
|
break;
|
2002-10-24 22:16:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2002-10-22 00:09:32 +00:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-10-24 22:16:07 +00:00
|
|
|
//--------------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// appendTail Intended to be used in conjunction with appendReplacement()
|
|
|
|
// To the destination string, append everything following
|
|
|
|
// the last match position from the input string.
|
|
|
|
//
|
|
|
|
//--------------------------------------------------------------------------------
|
2002-10-22 00:09:32 +00:00
|
|
|
UnicodeString &RegexMatcher::appendTail(UnicodeString &dest) {
|
2002-10-24 22:16:07 +00:00
|
|
|
int32_t len = fInputLength-fMatchEnd;
|
|
|
|
if (len > 0) {
|
|
|
|
dest.append(*fInput, fMatchEnd, len);
|
|
|
|
}
|
2002-10-22 00:09:32 +00:00
|
|
|
return dest;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-10-24 22:16:07 +00:00
|
|
|
//--------------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// end
|
|
|
|
//
|
|
|
|
//--------------------------------------------------------------------------------
|
2002-10-23 01:14:17 +00:00
|
|
|
int32_t RegexMatcher::end(UErrorCode &err) const {
|
|
|
|
return end(0, err);
|
2002-10-22 00:09:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-10-23 01:14:17 +00:00
|
|
|
int32_t RegexMatcher::end(int group, UErrorCode &err) const {
|
|
|
|
if (U_FAILURE(err)) {
|
2002-10-31 01:58:01 +00:00
|
|
|
return -1;
|
2002-10-23 01:14:17 +00:00
|
|
|
}
|
2002-10-24 22:16:07 +00:00
|
|
|
if (fMatch == FALSE) {
|
2002-10-23 01:14:17 +00:00
|
|
|
err = U_REGEX_INVALID_STATE;
|
2002-10-31 01:58:01 +00:00
|
|
|
return -1;
|
2002-10-23 01:14:17 +00:00
|
|
|
}
|
2003-01-16 01:12:04 +00:00
|
|
|
if (group < 0 || group > fPattern->fGroupMap->size()) {
|
2002-10-23 01:14:17 +00:00
|
|
|
err = U_INDEX_OUTOFBOUNDS_ERROR;
|
2002-10-31 01:58:01 +00:00
|
|
|
return -1;
|
2002-10-23 01:14:17 +00:00
|
|
|
}
|
2002-10-28 17:18:44 +00:00
|
|
|
int32_t e = -1;
|
2002-10-23 01:14:17 +00:00
|
|
|
if (group == 0) {
|
2002-10-24 22:16:07 +00:00
|
|
|
e = fMatchEnd;
|
2002-10-23 01:14:17 +00:00
|
|
|
} else {
|
2003-01-16 01:12:04 +00:00
|
|
|
// Get the position within the stack frame of the variables for
|
|
|
|
// this capture group.
|
|
|
|
int32_t groupOffset = fPattern->fGroupMap->elementAti(group-1);
|
|
|
|
U_ASSERT(groupOffset < fPattern->fFrameSize);
|
|
|
|
U_ASSERT(groupOffset >= 0);
|
2003-01-20 06:25:23 +00:00
|
|
|
e = fFrame->fExtra[groupOffset + 1];
|
2002-10-23 01:14:17 +00:00
|
|
|
}
|
|
|
|
return e;
|
2002-10-22 00:09:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-10-24 22:16:07 +00:00
|
|
|
//--------------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// find()
|
|
|
|
//
|
|
|
|
//--------------------------------------------------------------------------------
|
2002-10-22 00:09:32 +00:00
|
|
|
UBool RegexMatcher::find() {
|
2002-10-23 01:14:17 +00:00
|
|
|
// Start at the position of the last match end. (Will be zero if the
|
|
|
|
// matcher has been reset.
|
|
|
|
UErrorCode status = U_ZERO_ERROR;
|
2002-10-31 23:01:54 +00:00
|
|
|
|
|
|
|
int32_t startPos;
|
2002-11-14 18:27:00 +00:00
|
|
|
for (startPos=fMatchEnd; startPos < fInputLength; startPos = fInput->moveIndex32(startPos, 1)) {
|
2002-10-31 23:01:54 +00:00
|
|
|
MatchAt(startPos, status);
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (fMatch) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return FALSE;
|
2002-10-22 00:09:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-10-23 01:14:17 +00:00
|
|
|
UBool RegexMatcher::find(int32_t start, UErrorCode &status) {
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (start < 0 || start >= fInputLength) {
|
|
|
|
status = U_INDEX_OUTOFBOUNDS_ERROR;
|
|
|
|
return FALSE;
|
|
|
|
}
|
2002-10-31 23:01:54 +00:00
|
|
|
this->reset();
|
2002-10-23 01:14:17 +00:00
|
|
|
|
|
|
|
// TODO: optimize a search for the first char of a possible match.
|
|
|
|
// TODO: optimize the search for a leading literal string.
|
|
|
|
// TODO: optimize based on the minimum length of a possible match
|
|
|
|
int32_t startPos;
|
2002-11-14 18:27:00 +00:00
|
|
|
for (startPos=start; startPos < fInputLength; startPos=fInput->moveIndex32(startPos, 1)) {
|
2002-10-23 01:14:17 +00:00
|
|
|
MatchAt(startPos, status);
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
2002-10-24 22:16:07 +00:00
|
|
|
if (fMatch) {
|
2002-10-23 01:14:17 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
2002-10-22 00:09:32 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-10-24 22:16:07 +00:00
|
|
|
//--------------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// group()
|
|
|
|
//
|
|
|
|
//--------------------------------------------------------------------------------
|
2002-10-23 01:14:17 +00:00
|
|
|
UnicodeString RegexMatcher::group(UErrorCode &status) const {
|
|
|
|
return group(0, status);
|
2002-10-22 00:09:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-11-19 19:31:03 +00:00
|
|
|
UnicodeString RegexMatcher::group(int32_t groupNum, UErrorCode &status) const {
|
|
|
|
int32_t s = start(groupNum, status);
|
|
|
|
int32_t e = end(groupNum, status);
|
2002-11-14 18:27:00 +00:00
|
|
|
|
|
|
|
// Note: calling start() and end() above will do all necessary checking that
|
|
|
|
// the group number is OK and that a match exists. status will be set.
|
2002-10-23 01:14:17 +00:00
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
return UnicodeString();
|
|
|
|
}
|
|
|
|
|
2002-11-14 18:27:00 +00:00
|
|
|
if (s < 0) {
|
|
|
|
// A capture group wasn't part of the match
|
2002-10-23 01:14:17 +00:00
|
|
|
return UnicodeString();
|
|
|
|
}
|
2002-11-14 18:27:00 +00:00
|
|
|
U_ASSERT(s <= e);
|
2002-10-23 01:14:17 +00:00
|
|
|
return UnicodeString(*fInput, s, e-s);
|
2002-10-22 00:09:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-10-23 01:14:17 +00:00
|
|
|
int32_t RegexMatcher::groupCount() const {
|
2003-01-16 01:12:04 +00:00
|
|
|
return fPattern->fGroupMap->size();
|
2002-10-22 00:09:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const UnicodeString &RegexMatcher::input() const {
|
|
|
|
return *fInput;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
UBool RegexMatcher::lookingAt(UErrorCode &status) {
|
2002-10-23 01:14:17 +00:00
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
2002-10-22 00:09:32 +00:00
|
|
|
reset();
|
|
|
|
MatchAt(0, status);
|
2002-10-24 22:16:07 +00:00
|
|
|
return fMatch;
|
2002-10-22 00:09:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
UBool RegexMatcher::matches(UErrorCode &status) {
|
2002-10-23 01:14:17 +00:00
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
2002-10-22 00:09:32 +00:00
|
|
|
reset();
|
|
|
|
MatchAt(0, status);
|
2002-10-24 22:16:07 +00:00
|
|
|
UBool success = (fMatch && fMatchEnd==fInputLength);
|
2002-10-22 00:09:32 +00:00
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const RegexPattern &RegexMatcher::pattern() const {
|
|
|
|
return *fPattern;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-10-24 22:16:07 +00:00
|
|
|
//--------------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// replaceAll
|
|
|
|
//
|
|
|
|
//--------------------------------------------------------------------------------
|
|
|
|
UnicodeString RegexMatcher::replaceAll(const UnicodeString &replacement, UErrorCode &status) {
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
return *fInput;
|
|
|
|
}
|
|
|
|
UnicodeString destString;
|
|
|
|
for (reset(); find(); ) {
|
|
|
|
appendReplacement(destString, replacement, status);
|
2002-11-14 18:27:00 +00:00
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
break;
|
|
|
|
}
|
2002-10-24 22:16:07 +00:00
|
|
|
}
|
|
|
|
appendTail(destString);
|
|
|
|
return destString;
|
2002-10-22 00:09:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-10-24 22:16:07 +00:00
|
|
|
//--------------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// replaceFirst
|
|
|
|
//
|
|
|
|
//--------------------------------------------------------------------------------
|
|
|
|
UnicodeString RegexMatcher::replaceFirst(const UnicodeString &replacement, UErrorCode &status) {
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
return *fInput;
|
|
|
|
}
|
|
|
|
reset();
|
|
|
|
if (!find()) {
|
|
|
|
return *fInput;
|
|
|
|
}
|
|
|
|
|
|
|
|
UnicodeString destString;
|
|
|
|
appendReplacement(destString, replacement, status);
|
|
|
|
appendTail(destString);
|
|
|
|
return destString;
|
2002-10-22 00:09:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-10-24 22:16:07 +00:00
|
|
|
//--------------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// reset
|
|
|
|
//
|
|
|
|
//--------------------------------------------------------------------------------
|
2002-10-22 00:09:32 +00:00
|
|
|
RegexMatcher &RegexMatcher::reset() {
|
2002-10-24 22:16:07 +00:00
|
|
|
fMatchStart = 0;
|
|
|
|
fMatchEnd = 0;
|
|
|
|
fLastMatchEnd = 0;
|
|
|
|
fMatch = FALSE;
|
2003-01-16 01:12:04 +00:00
|
|
|
resetStack();
|
2002-10-22 00:09:32 +00:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
RegexMatcher &RegexMatcher::reset(const UnicodeString &input) {
|
|
|
|
fInput = &input;
|
|
|
|
fInputLength = input.length();
|
2003-01-08 23:38:23 +00:00
|
|
|
fInputUC = fInput->getBuffer();
|
2002-10-22 00:09:32 +00:00
|
|
|
reset();
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-01-16 01:12:04 +00:00
|
|
|
REStackFrame *RegexMatcher::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, where
|
|
|
|
// they indicate that a group has not yet matched anything.
|
|
|
|
fStack->removeAllElements();
|
|
|
|
UErrorCode status = U_ZERO_ERROR; // TODO: do something with status
|
2003-01-17 01:43:54 +00:00
|
|
|
|
2003-01-16 01:12:04 +00:00
|
|
|
int32_t *iFrame = fStack->reserveBlock(fPattern->fFrameSize, status);
|
|
|
|
int i;
|
|
|
|
for (i=0; i<fPattern->fFrameSize; i++) {
|
|
|
|
iFrame[i] = -1;
|
|
|
|
}
|
|
|
|
return (REStackFrame *)iFrame;
|
|
|
|
}
|
|
|
|
|
2002-11-13 02:28:04 +00:00
|
|
|
//--------------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// start
|
|
|
|
//
|
|
|
|
//--------------------------------------------------------------------------------
|
2002-10-23 01:14:17 +00:00
|
|
|
int32_t RegexMatcher::start(UErrorCode &err) const {
|
|
|
|
return start(0, err);
|
2002-10-22 00:09:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-10-23 01:14:17 +00:00
|
|
|
int32_t RegexMatcher::start(int group, UErrorCode &err) const {
|
|
|
|
if (U_FAILURE(err)) {
|
2002-10-31 01:58:01 +00:00
|
|
|
return -1;
|
2002-10-23 01:14:17 +00:00
|
|
|
}
|
2002-10-24 22:16:07 +00:00
|
|
|
if (fMatch == FALSE) {
|
2002-10-23 01:14:17 +00:00
|
|
|
err = U_REGEX_INVALID_STATE;
|
2002-10-31 01:58:01 +00:00
|
|
|
return -1;
|
2002-10-23 01:14:17 +00:00
|
|
|
}
|
2003-01-16 01:12:04 +00:00
|
|
|
if (group < 0 || group > fPattern->fGroupMap->size()) {
|
2002-10-23 01:14:17 +00:00
|
|
|
err = U_INDEX_OUTOFBOUNDS_ERROR;
|
2002-10-31 01:58:01 +00:00
|
|
|
return -1;
|
2002-10-23 01:14:17 +00:00
|
|
|
}
|
|
|
|
int32_t s;
|
|
|
|
if (group == 0) {
|
2002-10-24 22:16:07 +00:00
|
|
|
s = fMatchStart;
|
2002-10-23 01:14:17 +00:00
|
|
|
} else {
|
2003-01-16 01:12:04 +00:00
|
|
|
int32_t groupOffset = fPattern->fGroupMap->elementAti(group-1);
|
|
|
|
U_ASSERT(groupOffset < fPattern->fFrameSize);
|
|
|
|
U_ASSERT(groupOffset >= 0);
|
|
|
|
s = fFrame->fExtra[groupOffset];
|
2002-10-23 01:14:17 +00:00
|
|
|
}
|
|
|
|
return s;
|
2002-10-22 00:09:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-10-23 01:14:17 +00:00
|
|
|
|
2002-10-31 01:58:01 +00:00
|
|
|
//--------------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// isWordBoundary
|
|
|
|
// in perl, "xab..cd..", \b is true at positions 0,3,5,7
|
|
|
|
// For us,
|
2002-11-07 02:34:46 +00:00
|
|
|
// If the current char is a combining mark,
|
|
|
|
// \b is FALSE.
|
|
|
|
// Else Scan backwards to the first non-combining char.
|
|
|
|
// We are at a boundary if the this char and the original chars are
|
|
|
|
// opposite in membership in \w set
|
2002-10-31 01:58:01 +00:00
|
|
|
//
|
|
|
|
//--------------------------------------------------------------------------------
|
|
|
|
UBool RegexMatcher::isWordBoundary(int32_t pos) {
|
|
|
|
UBool isBoundary = FALSE;
|
|
|
|
if (pos >= fInputLength) {
|
|
|
|
// off end of string. Not a boundary.
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Determine whether char c at Pos is a member of the word set of chars.
|
|
|
|
UChar32 c = fInput->char32At(pos);
|
|
|
|
int8_t ctype = u_charType(c);
|
|
|
|
if (ctype==U_NON_SPACING_MARK || ctype==U_ENCLOSING_MARK) {
|
|
|
|
// Current char is a combining one. Not a boundary.
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
UBool 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;
|
|
|
|
int32_t prevPos = pos;
|
|
|
|
for (;;) {
|
|
|
|
if (prevPos == 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
prevPos = fInput->moveIndex32(prevPos, -1);
|
|
|
|
UChar32 prevChar = fInput->char32At(prevPos);
|
|
|
|
int8_t prevCType = u_charType(prevChar);
|
|
|
|
if (!(prevCType==U_NON_SPACING_MARK || prevCType==U_ENCLOSING_MARK)) {
|
|
|
|
prevCIsWord = fPattern->fStaticSets[URX_ISWORD_SET]->contains(prevChar);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
isBoundary = cIsWord ^ prevCIsWord;
|
|
|
|
return isBoundary;
|
|
|
|
}
|
|
|
|
|
2002-10-22 00:09:32 +00:00
|
|
|
//--------------------------------------------------------------------------------
|
|
|
|
//
|
2003-01-16 01:12:04 +00:00
|
|
|
// StateSave
|
|
|
|
// Make a new stack frame, initialized as a copy of the current stack frame.
|
|
|
|
// Set the pattern index in the original stack frame from the operand value
|
|
|
|
// in the opcode. Execution of the engine continues with the state in
|
|
|
|
// the newly created stack frame
|
2002-10-22 00:09:32 +00:00
|
|
|
//
|
2003-01-16 01:12:04 +00:00
|
|
|
// Note that reserveBlock() may grow the stack, resulting in the
|
|
|
|
// whole thing being relocated in memory.
|
2002-10-22 00:09:32 +00:00
|
|
|
//
|
|
|
|
//--------------------------------------------------------------------------------
|
2003-01-16 01:12:04 +00:00
|
|
|
inline REStackFrame *RegexMatcher::StateSave(REStackFrame *fp, int32_t savePatIdx, int32_t frameSize, UErrorCode &status) {
|
|
|
|
// push storage for a new frame.
|
|
|
|
int32_t *newFP = fStack->reserveBlock(frameSize, status);
|
|
|
|
fp = (REStackFrame *)(newFP - frameSize); // in case of realloc of stack.
|
|
|
|
|
|
|
|
// New stack frame = copy of old top frame.
|
|
|
|
int32_t *source = (int32_t *)fp;
|
|
|
|
int32_t *dest = newFP;
|
|
|
|
for (;;) {
|
|
|
|
*dest++ = *source++;
|
|
|
|
if (source == newFP) {
|
|
|
|
break;
|
|
|
|
}
|
2002-10-22 00:09:32 +00:00
|
|
|
}
|
2003-01-16 01:12:04 +00:00
|
|
|
|
|
|
|
fp->fPatIdx = savePatIdx;
|
|
|
|
return (REStackFrame *)newFP;
|
2002-10-22 00:09:32 +00:00
|
|
|
}
|
2003-01-16 01:12:04 +00:00
|
|
|
|
2002-10-22 00:09:32 +00:00
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// MatchAt This is the actual matching engine.
|
|
|
|
//
|
|
|
|
//--------------------------------------------------------------------------------
|
|
|
|
void RegexMatcher::MatchAt(int32_t startIdx, UErrorCode &status) {
|
|
|
|
UBool isMatch = FALSE; // True if the we have a match.
|
|
|
|
|
|
|
|
int32_t op; // Operation from the compiled pattern, split into
|
|
|
|
int32_t opType; // the opcode
|
|
|
|
int32_t opValue; // and the operand value.
|
|
|
|
|
2002-11-19 19:31:03 +00:00
|
|
|
#ifdef REGEX_RUN_DEBUG
|
|
|
|
{
|
|
|
|
printf("MatchAt(startIdx=%d)\n", startIdx);
|
|
|
|
printf("Original Pattern: ");
|
|
|
|
int i;
|
|
|
|
for (i=0; i<fPattern->fPattern.length(); i++) {
|
|
|
|
printf("%c", fPattern->fPattern.charAt(i));
|
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
printf("Input String: ");
|
|
|
|
for (i=0; i<fInput->length(); i++) {
|
|
|
|
UChar c = fInput->charAt(i);
|
|
|
|
if (c<32 || c>256) {
|
|
|
|
c = '.';
|
|
|
|
}
|
|
|
|
printf("%c", c);
|
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
#endif
|
2002-10-22 00:09:32 +00:00
|
|
|
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Cache frequently referenced items from the compiled pattern
|
|
|
|
// in local variables.
|
|
|
|
//
|
2003-01-16 01:12:04 +00:00
|
|
|
int32_t *pat = fPattern->fCompiledPat->getBuffer();
|
2003-01-08 23:38:23 +00:00
|
|
|
|
|
|
|
const UChar *litText = fPattern->fLiteralText.getBuffer();
|
|
|
|
UVector *sets = fPattern->fSets;
|
|
|
|
int32_t inputLen = fInput->length();
|
|
|
|
|
2003-01-16 01:12:04 +00:00
|
|
|
REStackFrame *fp = resetStack();
|
|
|
|
int32_t frameSize = fPattern->fFrameSize;
|
|
|
|
|
|
|
|
fp->fPatIdx = 0;
|
|
|
|
fp->fInputIdx = startIdx;
|
|
|
|
|
2002-10-22 00:09:32 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// Main loop for interpreting the compiled pattern.
|
|
|
|
// One iteration of the loop per pattern operation performed.
|
|
|
|
//
|
|
|
|
for (;;) {
|
2003-01-20 06:25:23 +00:00
|
|
|
#if 0
|
|
|
|
if (_heapchk() != _HEAPOK) {
|
|
|
|
fprintf(stderr, "Heap Trouble\n");
|
|
|
|
}
|
|
|
|
#endif
|
2003-01-16 01:12:04 +00:00
|
|
|
op = pat[fp->fPatIdx];
|
2002-10-22 00:09:32 +00:00
|
|
|
opType = URX_TYPE(op);
|
|
|
|
opValue = URX_VAL(op);
|
2002-11-19 19:31:03 +00:00
|
|
|
#ifdef REGEX_RUN_DEBUG
|
2003-01-20 06:25:23 +00:00
|
|
|
printf("inputIdx=%d inputChar=%c sp=%3d ", fp->fInputIdx,
|
2003-01-17 01:43:54 +00:00
|
|
|
fInput->char32At(fp->fInputIdx), (int32_t *)fp-fStack->getBuffer());
|
2003-01-16 01:12:04 +00:00
|
|
|
fPattern->dumpOp(fp->fPatIdx);
|
2002-11-19 19:31:03 +00:00
|
|
|
#endif
|
2003-01-16 01:12:04 +00:00
|
|
|
fp->fPatIdx++;
|
2002-10-22 00:09:32 +00:00
|
|
|
|
|
|
|
switch (opType) {
|
|
|
|
|
|
|
|
|
|
|
|
case URX_NOP:
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
2002-11-19 19:31:03 +00:00
|
|
|
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.
|
2003-01-16 01:12:04 +00:00
|
|
|
fp = (REStackFrame *)fStack->popFrame(frameSize);
|
2002-11-19 19:31:03 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
2002-10-22 00:09:32 +00:00
|
|
|
case URX_ONECHAR:
|
2003-01-16 01:12:04 +00:00
|
|
|
if (fp->fInputIdx < fInputLength) {
|
2003-01-08 23:38:23 +00:00
|
|
|
UChar32 c;
|
2003-01-16 01:12:04 +00:00
|
|
|
U16_NEXT(fInputUC, fp->fInputIdx, fInputLength, c);
|
2003-01-08 23:38:23 +00:00
|
|
|
if (c == opValue) {
|
|
|
|
break;
|
2002-10-22 00:09:32 +00:00
|
|
|
}
|
|
|
|
}
|
2003-01-16 01:12:04 +00:00
|
|
|
fp = (REStackFrame *)fStack->popFrame(frameSize);
|
2003-01-08 23:38:23 +00:00
|
|
|
break;
|
2002-10-22 00:09:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
case URX_STRING:
|
|
|
|
{
|
2002-11-14 18:27:00 +00:00
|
|
|
// Test input against a literal string.
|
|
|
|
// Strings require two slots in the compiled pattern, one for the
|
|
|
|
// offset to the string text, and one for the length.
|
2002-10-22 00:09:32 +00:00
|
|
|
int32_t stringStartIdx, stringLen;
|
|
|
|
stringStartIdx = opValue;
|
|
|
|
|
2003-01-16 01:12:04 +00:00
|
|
|
op = pat[fp->fPatIdx];
|
|
|
|
fp->fPatIdx++;
|
2002-10-22 00:09:32 +00:00
|
|
|
opType = URX_TYPE(op);
|
|
|
|
opValue = URX_VAL(op);
|
|
|
|
U_ASSERT(opType == URX_STRING_LEN);
|
|
|
|
stringLen = opValue;
|
|
|
|
|
2003-01-16 01:12:04 +00:00
|
|
|
int32_t stringEndIndex = fp->fInputIdx + stringLen;
|
2003-01-08 23:38:23 +00:00
|
|
|
if (stringEndIndex <= inputLen &&
|
2003-01-16 01:12:04 +00:00
|
|
|
u_strncmp(fInputUC+fp->fInputIdx, litText+stringStartIdx, stringLen) == 0) {
|
2002-11-14 18:27:00 +00:00
|
|
|
// Success. Advance the current input position.
|
2003-01-16 01:12:04 +00:00
|
|
|
fp->fInputIdx = stringEndIndex;
|
2002-10-22 00:09:32 +00:00
|
|
|
} else {
|
|
|
|
// No match. Back up matching to a saved state
|
2003-01-16 01:12:04 +00:00
|
|
|
fp = (REStackFrame *)fStack->popFrame(frameSize);
|
2002-10-22 00:09:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
case URX_STATE_SAVE:
|
2003-01-16 01:12:04 +00:00
|
|
|
fp = StateSave(fp, opValue, frameSize, status);
|
2002-10-22 00:09:32 +00:00
|
|
|
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;
|
|
|
|
|
2003-01-20 06:25:23 +00:00
|
|
|
// Start and End Capture stack frame variables are layout out like this:
|
|
|
|
// fp->fExtra[opValue] - The start of a completed capture group
|
|
|
|
// opValue+1 - The end of a completed capture group
|
|
|
|
// opValue+2 - the start of a capture group that end
|
|
|
|
// has not yet been reached (and might not ever be).
|
2002-10-22 00:09:32 +00:00
|
|
|
case URX_START_CAPTURE:
|
2003-01-16 01:12:04 +00:00
|
|
|
U_ASSERT(opValue >= 0 && opValue < frameSize-3);
|
2003-01-20 06:25:23 +00:00
|
|
|
fp->fExtra[opValue+2] = fp->fInputIdx;
|
2002-10-22 00:09:32 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case URX_END_CAPTURE:
|
2003-01-20 06:25:23 +00:00
|
|
|
U_ASSERT(opValue >= 0 && opValue < frameSize-3);
|
|
|
|
U_ASSERT(fp->fExtra[opValue+2] >= 0); // Start pos for this group must be set.
|
|
|
|
fp->fExtra[opValue] = fp->fExtra[opValue+2]; // Tentative start becomes real.
|
|
|
|
fp->fExtra[opValue+1] = fp->fInputIdx; // End position
|
|
|
|
U_ASSERT(fp->fExtra[opValue] <= fp->fExtra[opValue+1]);
|
2002-10-22 00:09:32 +00:00
|
|
|
break;
|
|
|
|
|
2002-11-06 02:35:20 +00:00
|
|
|
|
|
|
|
case URX_DOLLAR: // $, test for End of line
|
|
|
|
// or for position before new line at end of input
|
2003-01-16 01:12:04 +00:00
|
|
|
if (fp->fInputIdx < inputLen-2) {
|
2002-11-06 02:35:20 +00:00
|
|
|
// We are no where near the end of input. Fail.
|
2003-01-16 01:12:04 +00:00
|
|
|
fp = (REStackFrame *)fStack->popFrame(frameSize);
|
2002-11-06 02:35:20 +00:00
|
|
|
break;
|
|
|
|
}
|
2003-01-16 01:12:04 +00:00
|
|
|
if (fp->fInputIdx >= inputLen) {
|
2002-11-06 02:35:20 +00:00
|
|
|
// We really are at the end of input. Success.
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// If we are positioned just before a new-line that is located at the
|
|
|
|
// end of input, succeed.
|
2003-01-16 01:12:04 +00:00
|
|
|
if (fp->fInputIdx == inputLen-1) {
|
|
|
|
UChar32 c = fInput->char32At(fp->fInputIdx);
|
2002-11-06 02:35:20 +00:00
|
|
|
if (c == 0x0a || c==0x0d || c==0x0c || c==0x85 ||c==0x2028 || c==0x2029) {
|
|
|
|
break; // At new-line at end of input. Success
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-01-16 01:12:04 +00:00
|
|
|
if (fp->fInputIdx == inputLen-2) {
|
|
|
|
if (fInput->char32At(fp->fInputIdx) == 0x0d && fInput->char32At(fp->fInputIdx+1) == 0x0a) {
|
2002-11-06 02:35:20 +00:00
|
|
|
break; // At CR/LF at end of input. Success
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-01-16 01:12:04 +00:00
|
|
|
fp = (REStackFrame *)fStack->popFrame(frameSize);
|
2002-11-06 02:35:20 +00:00
|
|
|
|
|
|
|
// TODO: support for multi-line mode.
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case URX_CARET: // ^, test for start of line
|
2003-01-16 01:12:04 +00:00
|
|
|
if (fp->fInputIdx != 0) {
|
|
|
|
fp = (REStackFrame *)fStack->popFrame(frameSize);
|
2002-11-06 02:35:20 +00:00
|
|
|
} // TODO: support for multi-line mode.
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
2002-10-28 17:18:44 +00:00
|
|
|
case URX_BACKSLASH_A: // Test for start of input
|
2003-01-16 01:12:04 +00:00
|
|
|
if (fp->fInputIdx != 0) {
|
|
|
|
fp = (REStackFrame *)fStack->popFrame(frameSize);
|
2002-10-24 22:16:07 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2002-10-28 17:18:44 +00:00
|
|
|
case URX_BACKSLASH_B: // Test for word boundaries
|
2002-10-31 01:58:01 +00:00
|
|
|
{
|
2003-01-16 01:12:04 +00:00
|
|
|
UBool success = isWordBoundary(fp->fInputIdx);
|
2002-10-31 01:58:01 +00:00
|
|
|
success ^= (opValue != 0); // flip sense for \B
|
|
|
|
if (!success) {
|
2003-01-16 01:12:04 +00:00
|
|
|
fp = (REStackFrame *)fStack->popFrame(frameSize);
|
2002-10-31 01:58:01 +00:00
|
|
|
}
|
2002-10-28 17:18:44 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
2002-11-14 18:27:00 +00:00
|
|
|
case URX_BACKSLASH_D: // Test for decimal digit
|
2002-10-31 01:58:01 +00:00
|
|
|
{
|
2003-01-16 01:12:04 +00:00
|
|
|
if (fp->fInputIdx >= fInputLength) {
|
|
|
|
fp = (REStackFrame *)fStack->popFrame(frameSize);
|
2002-10-31 01:58:01 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2003-01-16 01:12:04 +00:00
|
|
|
UChar32 c = fInput->char32At(fp->fInputIdx);
|
2002-10-31 01:58:01 +00:00
|
|
|
int8_t ctype = u_charType(c);
|
|
|
|
UBool success = (ctype == U_DECIMAL_DIGIT_NUMBER);
|
2002-11-14 18:27:00 +00:00
|
|
|
success ^= (opValue != 0); // flip sense for \D
|
2002-10-31 01:58:01 +00:00
|
|
|
if (success) {
|
2003-01-16 01:12:04 +00:00
|
|
|
fp->fInputIdx = fInput->moveIndex32(fp->fInputIdx, 1);
|
2002-10-31 01:58:01 +00:00
|
|
|
} else {
|
2003-01-16 01:12:04 +00:00
|
|
|
fp = (REStackFrame *)fStack->popFrame(frameSize);
|
2002-10-31 01:58:01 +00:00
|
|
|
}
|
2002-10-28 17:18:44 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2002-10-31 01:58:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
case URX_BACKSLASH_G: // Test for position at end of previous match
|
2003-01-16 01:12:04 +00:00
|
|
|
if (!((fMatch && fp->fInputIdx==fMatchEnd) || fMatch==FALSE && fp->fInputIdx==0)) {
|
|
|
|
fp = (REStackFrame *)fStack->popFrame(frameSize);
|
2002-10-28 17:18:44 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2002-10-31 01:58:01 +00:00
|
|
|
|
2002-10-28 17:18:44 +00:00
|
|
|
case URX_BACKSLASH_X: // Match combining character sequence
|
2002-11-14 18:27:00 +00:00
|
|
|
{ // Closer to Grapheme cluster than to Perl \X
|
2002-11-04 19:09:35 +00:00
|
|
|
// Fail if at end of input
|
2003-01-16 01:12:04 +00:00
|
|
|
if (fp->fInputIdx >= fInputLength) {
|
|
|
|
fp = (REStackFrame *)fStack->popFrame(frameSize);
|
2002-11-04 19:09:35 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Always consume one char
|
2003-01-16 01:12:04 +00:00
|
|
|
UChar32 c = fInput->char32At(fp->fInputIdx);
|
|
|
|
fp->fInputIdx = fInput->moveIndex32(fp->fInputIdx, 1);
|
2002-11-04 19:09:35 +00:00
|
|
|
|
|
|
|
// Consume CR/LF as a pair
|
|
|
|
if (c == 0x0d) {
|
2003-01-16 01:12:04 +00:00
|
|
|
UChar32 c = fInput->char32At(fp->fInputIdx);
|
2002-11-04 19:09:35 +00:00
|
|
|
if (c == 0x0a) {
|
2003-01-16 01:12:04 +00:00
|
|
|
fp->fInputIdx = fInput->moveIndex32(fp->fInputIdx, 1);
|
2002-11-04 19:09:35 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Consume any combining marks following a non-control char
|
|
|
|
int8_t ctype = u_charType(c);
|
|
|
|
if (ctype != U_CONTROL_CHAR) {
|
|
|
|
for(;;) {
|
2003-01-16 01:12:04 +00:00
|
|
|
c = fInput->char32At(fp->fInputIdx);
|
2002-11-04 19:09:35 +00:00
|
|
|
ctype = u_charType(c);
|
2002-11-06 02:35:20 +00:00
|
|
|
// TODO: make a set and add the "other grapheme extend" chars
|
2002-11-04 19:09:35 +00:00
|
|
|
// to the list of stuff to be skipped over.
|
|
|
|
if (!(ctype == U_NON_SPACING_MARK || ctype == U_ENCLOSING_MARK)) {
|
|
|
|
break;
|
|
|
|
}
|
2003-01-16 01:12:04 +00:00
|
|
|
fp->fInputIdx = fInput->moveIndex32(fp->fInputIdx, 1);
|
|
|
|
if (fp->fInputIdx >= fInputLength) {
|
2002-11-06 02:35:20 +00:00
|
|
|
break;
|
|
|
|
}
|
2002-11-04 19:09:35 +00:00
|
|
|
}
|
|
|
|
}
|
2002-10-28 17:18:44 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2002-11-06 02:35:20 +00:00
|
|
|
|
|
|
|
|
2002-10-28 17:18:44 +00:00
|
|
|
case URX_BACKSLASH_Z: // Test for end of line
|
2003-01-16 01:12:04 +00:00
|
|
|
if (fp->fInputIdx < inputLen) {
|
|
|
|
fp = (REStackFrame *)fStack->popFrame(frameSize);
|
2002-10-28 17:18:44 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
2002-10-22 00:09:32 +00:00
|
|
|
|
2002-10-31 01:58:01 +00:00
|
|
|
case URX_STATIC_SETREF:
|
|
|
|
{
|
|
|
|
// Test input character against one of the predefined sets
|
|
|
|
// (Word Characters, for example)
|
|
|
|
// The high bit of the op value is a flag for the match polarity.
|
|
|
|
// 0: success if input char is in set.
|
|
|
|
// 1: success if input char is not in set.
|
|
|
|
UBool success = ((opValue & URX_NEG_SET) == URX_NEG_SET);
|
|
|
|
opValue &= ~URX_NEG_SET;
|
2003-01-16 01:12:04 +00:00
|
|
|
if (fp->fInputIdx < fInputLength) {
|
2002-10-31 01:58:01 +00:00
|
|
|
// There is input left. Pick up one char and test it for set membership.
|
2003-01-08 23:38:23 +00:00
|
|
|
UChar32 c;
|
2003-01-16 01:12:04 +00:00
|
|
|
U16_NEXT(fInputUC, fp->fInputIdx, fInputLength, c);
|
2002-10-31 01:58:01 +00:00
|
|
|
U_ASSERT(opValue > 0 && opValue < URX_LAST_SET);
|
|
|
|
const UnicodeSet *s = fPattern->fStaticSets[opValue];
|
|
|
|
if (s->contains(c)) {
|
|
|
|
success = !success;
|
|
|
|
}
|
|
|
|
}
|
2003-01-08 23:38:23 +00:00
|
|
|
if (!success) {
|
2003-01-16 01:12:04 +00:00
|
|
|
fp = (REStackFrame *)fStack->popFrame(frameSize);
|
2002-10-31 01:58:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
2002-10-22 00:09:32 +00:00
|
|
|
case URX_SETREF:
|
2003-01-16 01:12:04 +00:00
|
|
|
if (fp->fInputIdx < fInputLength) {
|
2002-10-22 00:09:32 +00:00
|
|
|
// There is input left. Pick up one char and test it for set membership.
|
2003-01-08 23:38:23 +00:00
|
|
|
UChar32 c;
|
2003-01-16 01:12:04 +00:00
|
|
|
U16_NEXT(fInputUC, fp->fInputIdx, fInputLength, c);
|
2002-10-22 00:09:32 +00:00
|
|
|
U_ASSERT(opValue > 0 && opValue < sets->size());
|
|
|
|
UnicodeSet *s = (UnicodeSet *)sets->elementAt(opValue);
|
|
|
|
if (s->contains(c)) {
|
|
|
|
// The character is in the set. A Match.
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Either at end of input, or the character wasn't in the set.
|
|
|
|
// Either way, we need to back track out.
|
2003-01-16 01:12:04 +00:00
|
|
|
fp = (REStackFrame *)fStack->popFrame(frameSize);
|
2002-10-22 00:09:32 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case URX_DOTANY:
|
2002-10-31 01:58:01 +00:00
|
|
|
{
|
|
|
|
// . matches anything
|
2003-01-16 01:12:04 +00:00
|
|
|
if (fp->fInputIdx >= fInputLength) {
|
2002-10-31 01:58:01 +00:00
|
|
|
// At end of input. Match failed. Backtrack out.
|
2003-01-16 01:12:04 +00:00
|
|
|
fp = (REStackFrame *)fStack->popFrame(frameSize);
|
2002-10-31 01:58:01 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
// There is input left. Advance over one char, unless we've hit end-of-line
|
2003-01-08 23:38:23 +00:00
|
|
|
UChar32 c;
|
2003-01-16 01:12:04 +00:00
|
|
|
U16_NEXT(fInputUC, fp->fInputIdx, fInputLength, c);
|
2003-01-08 23:38:23 +00:00
|
|
|
if (((c & 0x7f) <= 0x29) && // First quickly bypass as many chars as possible
|
|
|
|
(c == 0x0a || c==0x0d || c==0x0c || c==0x85 ||c==0x2028 || c==0x2029)) {
|
2002-10-31 01:58:01 +00:00
|
|
|
// End of line in normal mode. . does not match.
|
2003-01-16 01:12:04 +00:00
|
|
|
fp = (REStackFrame *)fStack->popFrame(frameSize);
|
2002-10-31 01:58:01 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case URX_DOTANY_ALL:
|
|
|
|
{
|
|
|
|
// ., in dot-matches-all (including new lines) mode
|
|
|
|
// . matches anything
|
2003-01-16 01:12:04 +00:00
|
|
|
if (fp->fInputIdx >= fInputLength) {
|
2002-10-31 01:58:01 +00:00
|
|
|
// At end of input. Match failed. Backtrack out.
|
2003-01-16 01:12:04 +00:00
|
|
|
fp = (REStackFrame *)fStack->popFrame(frameSize);
|
2002-10-31 01:58:01 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
// There is input left. Advance over one char, unless we've hit end-of-line
|
2003-01-16 01:12:04 +00:00
|
|
|
UChar32 c = fInput->char32At(fp->fInputIdx);
|
|
|
|
fp->fInputIdx = fInput->moveIndex32(fp->fInputIdx, 1);
|
2002-10-31 01:58:01 +00:00
|
|
|
if (c == 0x0a || c==0x0d || c==0x0c || c==0x85 ||c==0x2028 || c==0x2029) {
|
|
|
|
// In the case of a CR/LF, we need to advance over both.
|
2003-01-16 01:12:04 +00:00
|
|
|
UChar32 nextc = fInput->char32At(fp->fInputIdx);
|
2002-10-31 01:58:01 +00:00
|
|
|
if (c == 0x0d && nextc == 0x0a) {
|
2003-01-16 01:12:04 +00:00
|
|
|
fp->fInputIdx = fInput->moveIndex32(fp->fInputIdx, 1);
|
2002-10-31 01:58:01 +00:00
|
|
|
}
|
|
|
|
}
|
2002-10-22 00:09:32 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case URX_JMP:
|
2003-01-16 01:12:04 +00:00
|
|
|
fp->fPatIdx = opValue;
|
2002-10-22 00:09:32 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case URX_FAIL:
|
|
|
|
isMatch = FALSE;
|
|
|
|
goto breakFromLoop;
|
|
|
|
|
2003-01-16 01:12:04 +00:00
|
|
|
case URX_CTR_INIT:
|
|
|
|
{
|
|
|
|
U_ASSERT(opValue >= 0 && opValue < frameSize-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
|
|
|
|
int32_t instrOperandLoc = fp->fPatIdx;
|
|
|
|
fp->fPatIdx += 3;
|
|
|
|
int32_t loopLoc = URX_VAL(pat[instrOperandLoc]);
|
|
|
|
int32_t minCount = pat[instrOperandLoc+1];
|
|
|
|
int32_t maxCount = pat[instrOperandLoc+2];
|
|
|
|
U_ASSERT(minCount>=0);
|
|
|
|
U_ASSERT(maxCount>=minCount || maxCount==-1);
|
|
|
|
U_ASSERT(loopLoc>fp->fPatIdx);
|
|
|
|
|
|
|
|
if (minCount == 0) {
|
|
|
|
fp = StateSave(fp, loopLoc+1, frameSize, status);
|
|
|
|
}
|
|
|
|
if (maxCount == 0) {
|
|
|
|
fp = (REStackFrame *)fStack->popFrame(frameSize);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case URX_CTR_LOOP:
|
|
|
|
{
|
|
|
|
U_ASSERT(opValue>0 && opValue < fp->fPatIdx-2);
|
|
|
|
int32_t initOp = pat[opValue];
|
|
|
|
U_ASSERT(URX_TYPE(initOp) == URX_CTR_INIT);
|
|
|
|
int32_t *pCounter = &fp->fExtra[URX_VAL(initOp)];
|
|
|
|
int32_t minCount = pat[opValue+2];
|
|
|
|
int32_t maxCount = pat[opValue+3];
|
|
|
|
// Increment the counter. Note: we're not worrying about counter
|
|
|
|
// overflow, since the data comes from UnicodeStrings, which
|
|
|
|
// stores its length in an int32_t.
|
|
|
|
(*pCounter)++;
|
|
|
|
U_ASSERT(*pCounter > 0);
|
|
|
|
if ((uint32_t)*pCounter >= (uint32_t)maxCount) {
|
|
|
|
U_ASSERT(*pCounter == maxCount || maxCount == -1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (*pCounter >= minCount) {
|
|
|
|
fp = StateSave(fp, fp->fPatIdx, frameSize, status);
|
|
|
|
}
|
|
|
|
fp->fPatIdx = opValue + 4; // Loop back.
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2003-01-17 01:43:54 +00:00
|
|
|
case URX_CTR_INIT_NG:
|
|
|
|
{
|
|
|
|
U_ASSERT(opValue >= 0 && opValue < frameSize-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
|
|
|
|
int32_t instrOperandLoc = fp->fPatIdx;
|
|
|
|
fp->fPatIdx += 3;
|
|
|
|
int32_t loopLoc = URX_VAL(pat[instrOperandLoc]);
|
|
|
|
int32_t minCount = pat[instrOperandLoc+1];
|
|
|
|
int32_t maxCount = pat[instrOperandLoc+2];
|
|
|
|
U_ASSERT(minCount>=0);
|
|
|
|
U_ASSERT(maxCount>=minCount || maxCount==-1);
|
|
|
|
U_ASSERT(loopLoc>fp->fPatIdx);
|
|
|
|
|
|
|
|
if (minCount == 0) {
|
|
|
|
if (maxCount != 0) {
|
|
|
|
fp = StateSave(fp, fp->fPatIdx, frameSize, status);
|
|
|
|
}
|
|
|
|
fp->fPatIdx = loopLoc+1; // Continue with stuff after repeated block
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case URX_CTR_LOOP_NG:
|
|
|
|
{
|
|
|
|
U_ASSERT(opValue>0 && opValue < fp->fPatIdx-2);
|
|
|
|
int32_t initOp = pat[opValue];
|
|
|
|
U_ASSERT(URX_TYPE(initOp) == URX_CTR_INIT_NG);
|
|
|
|
int32_t *pCounter = &fp->fExtra[URX_VAL(initOp)];
|
|
|
|
int32_t minCount = pat[opValue+2];
|
|
|
|
int32_t maxCount = pat[opValue+3];
|
|
|
|
// Increment the counter. Note: we're not worrying about counter
|
|
|
|
// overflow, since the data comes from UnicodeStrings, which
|
|
|
|
// stores its length in an int32_t.
|
|
|
|
(*pCounter)++;
|
|
|
|
U_ASSERT(*pCounter > 0);
|
|
|
|
|
|
|
|
if ((uint32_t)*pCounter >= (uint32_t)maxCount) {
|
|
|
|
// 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);
|
|
|
|
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.
|
|
|
|
} 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
|
|
|
|
// in the following pattern will try another iteration of the loop.
|
|
|
|
fp = StateSave(fp, opValue + 4, frameSize, 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);
|
|
|
|
int32_t newStackSize = fData[opValue];
|
|
|
|
U_ASSERT(newStackSize <= fStack->size());
|
2003-01-20 06:25:23 +00:00
|
|
|
int32_t *newFP = fStack->getBuffer() + newStackSize - frameSize;
|
|
|
|
if (newFP == (int32_t *)fp) {
|
|
|
|
break;
|
|
|
|
}
|
2003-01-17 01:43:54 +00:00
|
|
|
int32_t i;
|
|
|
|
for (i=0; i<frameSize; i++) {
|
2003-01-20 06:25:23 +00:00
|
|
|
newFP[i] = ((int32_t *)fp)[i];
|
2003-01-17 01:43:54 +00:00
|
|
|
}
|
2003-01-20 06:25:23 +00:00
|
|
|
fp = (REStackFrame *)newFP;
|
2003-01-17 01:43:54 +00:00
|
|
|
fStack->setSize(newStackSize);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2003-01-21 04:56:14 +00:00
|
|
|
case URX_BACKREF:
|
|
|
|
{
|
|
|
|
U_ASSERT(opValue < frameSize);
|
|
|
|
int32_t groupStartIdx = fp->fExtra[opValue];
|
|
|
|
int32_t groupEndIdx = fp->fExtra[opValue+1];
|
|
|
|
U_ASSERT(groupStartIdx <= groupEndIdx);
|
|
|
|
int32_t len = groupEndIdx-groupStartIdx;
|
|
|
|
if (groupStartIdx < 0 || len == 0) {
|
|
|
|
// This capture group has not participated in the match thus far,
|
|
|
|
// or the match was of an empty string.
|
|
|
|
// Verified by testing: Perl matches succeed in these cases, so
|
|
|
|
// we do too.
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if ((fp->fInputIdx + len > inputLen) ||
|
|
|
|
u_strncmp(fInputUC+groupStartIdx, fInputUC+fp->fInputIdx, len) != 0) {
|
|
|
|
fp = (REStackFrame *)fStack->popFrame(frameSize); // FAIL, no match.
|
|
|
|
} else {
|
|
|
|
fp->fInputIdx += len; // Match. Advance current input position.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2002-10-22 00:09:32 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
// Trouble. The compiled pattern contains an entry with an
|
|
|
|
// unrecognized type tag.
|
2002-10-24 22:16:07 +00:00
|
|
|
U_ASSERT(FALSE);
|
2002-10-22 00:09:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
breakFromLoop:
|
2002-10-24 22:16:07 +00:00
|
|
|
fMatch = isMatch;
|
2002-10-22 00:09:32 +00:00
|
|
|
if (isMatch) {
|
2002-10-24 22:16:07 +00:00
|
|
|
fLastMatchEnd = fMatchEnd;
|
|
|
|
fMatchStart = startIdx;
|
2003-01-16 01:12:04 +00:00
|
|
|
fMatchEnd = fp->fInputIdx;
|
2002-11-19 19:31:03 +00:00
|
|
|
REGEX_RUN_DEBUG_PRINTF("Match. start=%d end=%d\n\n", fMatchStart, fMatchEnd);
|
2002-10-22 00:09:32 +00:00
|
|
|
}
|
2002-11-19 19:31:03 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
REGEX_RUN_DEBUG_PRINTF("No match\n\n");
|
|
|
|
}
|
2003-01-16 01:12:04 +00:00
|
|
|
|
|
|
|
fFrame = fp; // The active stack frame when the engine stopped.
|
|
|
|
// Contains the capture group results that we need to
|
|
|
|
// access later.
|
|
|
|
|
2002-10-22 00:09:32 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const char RegexMatcher::fgClassID = 0;
|
|
|
|
|
|
|
|
U_NAMESPACE_END
|
|
|
|
|
2002-11-07 02:34:46 +00:00
|
|
|
#endif // !UCONFIG_NO_REGULAR_EXPRESSIONS
|
2002-10-22 00:09:32 +00:00
|
|
|
|