blob: 82905bf88c9622a41dcd5cc4bae0bf6afdca954c [file] [log] [blame]
// -*- c-basic-offset: 2 -*-
/*
* This file is part of the KDE libraries
* Copyright (C) 1999-2001,2004 Harri Porten (porten@kde.org)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#include "config.h"
#include "regexp.h"
#include "lexer.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <wtf/Assertions.h>
namespace KJS {
RegExp::RegExp(const UString &p, int flags)
: m_flags(flags), m_constructionError(0), m_numSubPatterns(0)
{
#if USE(PCRE16)
int options = PCRE_UTF8;
if (flags & IgnoreCase)
options |= PCRE_CASELESS;
if (flags & Multiline)
options |= PCRE_MULTILINE;
const char* errorMessage;
int errorOffset;
m_regex = pcre_compile2(reinterpret_cast<const uint16_t*>(p.data()), p.size(),
options, NULL, &errorMessage, &errorOffset, NULL);
if (!m_regex) {
m_constructionError = strdup(errorMessage);
return;
}
// Get number of subpatterns that will be returned.
pcre_fullinfo(m_regex, NULL, PCRE_INFO_CAPTURECOUNT, &m_numSubPatterns);
#else /* USE(PCRE16) */
int regflags = 0;
#ifdef REG_EXTENDED
regflags |= REG_EXTENDED;
#endif
#ifdef REG_ICASE
if (flags & IgnoreCase)
regflags |= REG_ICASE;
#endif
//NOTE: Multiline is not feasible with POSIX regex.
//if ( f & Multiline )
// ;
// Note: the Global flag is already handled by RegExpProtoFunc::execute
// FIXME: support \u Unicode escapes.
int errorCode = regcomp(&m_regex, p.ascii(), regflags);
if (errorCode != 0) {
char errorMessage[80];
regerror(errorCode, &m_regex, errorMessage, sizeof errorMessage);
m_constructionError = strdup(errorMessage);
}
#endif
}
RegExp::~RegExp()
{
#if USE(PCRE16)
pcre_free(m_regex);
#else
/* TODO: is this really okay after an error ? */
regfree(&m_regex);
#endif
free(m_constructionError);
}
int RegExp::match(const UString& s, int i, OwnArrayPtr<int>* ovector)
{
if (i < 0)
i = 0;
if (ovector)
ovector->clear();
if (i > s.size() || s.isNull())
return -1;
#if USE(PCRE16)
if (!m_regex)
return -1;
// Set up the offset vector for the result.
// First 2/3 used for result, the last third used by PCRE.
int* offsetVector;
int offsetVectorSize;
int fixedSizeOffsetVector[3];
if (!ovector) {
offsetVectorSize = 3;
offsetVector = fixedSizeOffsetVector;
} else {
offsetVectorSize = (m_numSubPatterns + 1) * 3;
offsetVector = new int [offsetVectorSize];
ovector->set(offsetVector);
}
int numMatches = pcre_exec(m_regex, NULL, reinterpret_cast<const uint16_t *>(s.data()), s.size(), i, 0, offsetVector, offsetVectorSize);
if (numMatches < 0) {
#ifndef NDEBUG
if (numMatches != PCRE_ERROR_NOMATCH)
fprintf(stderr, "KJS: pcre_exec() failed with result %d\n", numMatches);
#endif
if (ovector)
ovector->clear();
return -1;
}
return offsetVector[0];
#else
const unsigned maxMatch = 10;
regmatch_t rmatch[maxMatch];
char *str = strdup(s.ascii()); // TODO: why ???
if (regexec(&m_regex, str + i, maxMatch, rmatch, 0)) {
free(str);
return UString::null();
}
free(str);
if (!ovector) {
*pos = rmatch[0].rm_so + i;
return s.substr(rmatch[0].rm_so + i, rmatch[0].rm_eo - rmatch[0].rm_so);
}
// map rmatch array to ovector used in PCRE case
m_numSubPatterns = 0;
for(unsigned j = 1; j < maxMatch && rmatch[j].rm_so >= 0 ; j++)
m_numSubPatterns++;
int ovecsize = (m_numSubPatterns+1)*3; // see above
*ovector = new int[ovecsize];
for (unsigned j = 0; j < m_numSubPatterns + 1; j++) {
if (j>maxMatch)
break;
(*ovector)[2*j] = rmatch[j].rm_so + i;
(*ovector)[2*j+1] = rmatch[j].rm_eo + i;
}
*pos = (*ovector)[0];
return s.substr((*ovector)[0], (*ovector)[1] - (*ovector)[0]);
#endif
}
} // namespace KJS