Rev 45667 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
/** R : A Computer Language for Statistical Data Analysis* Copyright (C) 1995, 1996 Robert Gentleman and Ross Ihaka* Copyright (C) 1997--2008 Robert Gentleman, Ross Ihaka and the* R Development Core Team** This program is free software; you can redistribute it and/or modify* it under the terms of the GNU General Pulic License as published by* the Free Software Foundation; either version 2 of the License, or* (at your option) any later version.** This program 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 General Public License for more details.** You should have received a copy of the GNU General Public License* along with this program; if not, a copy is available at* http://www.r-project.org/Licenses/*/#ifdef HAVE_CONFIG_H# include <config.h>#endif#include <Defn.h>#include <sys/types.h> /* probably not needed */#define imax2(x, y) ((x < y) ? y : x)#ifdef HAVE_PCRE_PCRE_H# include <pcre/pcre.h>#else# include <pcre.h>#endif#ifdef SUPPORT_MBCS# include <R_ext/rlocale.h># include <wchar.h># include <wctype.h>#endif#include <R_ext/RS.h> /* for CallocCharBuf and Free *//* The following R functions do substitution for regular expressions,* either once or globally.* The functions are loosely patterned on the "sub" and "gsub" in "nawk". */static int length_adj(const char *orig, const char *repl, int *ovec,int nsubexpr, Rboolean useBytes){int k, n, nb;const char *p = repl;Rboolean upper = FALSE, lower = FALSE;n = strlen(repl) - (ovec[1] - ovec[0]);while (*p) {if (*p == '\\') {if ('1' <= p[1] && p[1] <= '9') {k = p[1] - '0';if (k > nsubexpr)error(_("invalid backreference %d in regular expression"), k);nb = ovec[2*k+1] - ovec[2*k];#ifdef SUPPORT_MBCS/* assume for now that in UTF-8 upper/lower pairs are same len */if (nb >0 && !useBytes && mbcslocale && (upper || lower)) {wctrans_t tr = wctrans(upper ? "toupper" : "tolower");int j, nc;char *xi, *p;wchar_t *wc;p = xi = (char *) alloca((nb+1)*sizeof(char));R_CheckStack();for (j = 0; j < nb; j++) *p++ = orig[ovec[2*k]+j];*p = '\0';nc = mbstowcs(NULL, xi, 0);if (nc >= 0) {wc = (wchar_t *) alloca((nc+1)*sizeof(wchar_t));R_CheckStack();mbstowcs(wc, xi, nc + 1);for (j = 0; j < nc; j++) wc[j] = towctrans(wc[j], tr);nb = wcstombs(NULL, wc, 0);}}#endifn += nb - 2;p++;} else if (p[1] == 'U') {p++; n -= 2;upper = TRUE; lower = FALSE;} else if (p[1] == 'L') {p++; n -= 2;upper = FALSE; lower = TRUE;} else if (p[1] == 0) {/* can't escape the final '\0' */n--;} else {n--;p++;}}p++;}return n;}static char *string_adj(char *target, const char *orig, const char *repl,int *ovec, Rboolean useBytes, int ienc){int i, k, nb;const char *p = repl; char *t = target, c;Rboolean upper = FALSE, lower = FALSE;while (*p) {if (*p == '\\') {if ('1' <= p[1] && p[1] <= '9') {k = p[1] - '0';/* Here we need to work in chars */nb = ovec[2*k+1] - ovec[2*k];#ifdef SUPPORT_MBCSif (nb > 0 && !useBytes && mbcslocale && (upper || lower)) {wctrans_t tr = wctrans(upper ? "toupper" : "tolower");int j, nc;char *xi, *p;wchar_t *wc;p = xi = (char *) alloca((nb+1)*sizeof(char));R_CheckStack();for (j = 0; j < nb; j++) *p++ = orig[ovec[2*k]+j];*p = '\0';nc = utf8towcs(NULL, xi, 0);if (nc >= 0) {wc = (wchar_t *) alloca((nc+1)*sizeof(wchar_t));R_CheckStack();utf8towcs(wc, xi, nc + 1);for (j = 0; j < nc; j++) wc[j] = towctrans(wc[j], tr);nb = wcstoutf8(NULL, wc, 0);wcstoutf8(xi, wc, nb + 1);for (j = 0; j < nb; j++) *t++ = *xi++;}} else if (nb > 0 && !useBytes && mbcslocale && (upper || lower)) {wctrans_t tr = wctrans(upper ? "toupper" : "tolower");int j, nc;char *xi, *p;wchar_t *wc;p = xi = (char *) alloca((nb+1)*sizeof(char));R_CheckStack();for (j = 0; j < nb; j++) *p++ = orig[ovec[2*k]+j];*p = '\0';nc = mbstowcs(NULL, xi, 0);if (nc >= 0) {wc = (wchar_t *) alloca((nc+1)*sizeof(wchar_t));R_CheckStack();mbstowcs(wc, xi, nc + 1);for (j = 0; j < nc; j++) wc[j] = towctrans(wc[j], tr);nb = wcstombs(NULL, wc, 0);wcstombs(xi, wc, nb + 1);for (j = 0; j < nb; j++) *t++ = *xi++;}} else#endiffor (i = ovec[2*k] ; i < ovec[2*k+1] ; i++) {c = orig[i];*t++ = upper ? toupper(c) : (lower ? tolower(c) : c);}p += 2;} else if (p[1] == 'U') {p += 2;upper = TRUE; lower = FALSE;} else if (p[1] == 'L') {p += 2;upper = FALSE; lower = TRUE;} else if (p[1] == 0) {p += 1;} else {p += 1;*t++ = *p++;}} else *t++ = *p++;}return t;}SEXP attribute_hiddendo_pgsub(SEXP pat, SEXP rep, SEXP vec, int global, int igcase_opt, int useBytes){SEXP ans;int i, j, n, ns, nns, nmatch, offset, re_nsub, ienc;int erroffset, eflag, last_end;int options = 0;const char *spat, *srep, *s, *t;char *u, *cbuf;const char *errorptr;pcre *re_pcre;pcre_extra *re_pe =NULL;const unsigned char *tables;Rboolean use_UTF8 = FALSE;if (getCharCE(STRING_ELT(pat, 0)) == CE_UTF8) use_UTF8 = TRUE;if (getCharCE(STRING_ELT(rep, 0)) == CE_UTF8) use_UTF8 = TRUE;n = LENGTH(vec);for (i = 0; i < n; i++)if (getCharCE(STRING_ELT(vec, 0)) == CE_UTF8) use_UTF8 = TRUE;if (use_UTF8) {spat = translateCharUTF8(STRING_ELT(pat, 0));srep = translateCharUTF8(STRING_ELT(rep, 0));ienc = CE_UTF8;} else {spat = translateChar(STRING_ELT(pat, 0));srep = translateChar(STRING_ELT(rep, 0));ienc = CE_NATIVE;}#ifdef SUPPORT_MBCSif (useBytes) ;else if (utf8locale || use_UTF8) options = PCRE_UTF8;else if (mbcslocale)warning(_("perl = TRUE is only fully implemented in UTF-8 locales"));if (!useBytes && mbcslocale && !mbcsValid(spat))error(_("'pattern' is invalid in this locale"));if (!useBytes && mbcslocale && !mbcsValid(srep))error(_("'replacement' is invalid in this locale"));#endifif (igcase_opt) {options |= PCRE_CASELESS;if (useBytes && utf8locale && !strIsASCII(spat))warning(_("ignore.case = TRUE, perl = TRUE, useBytes = TRUE\n in UTF-8 locales only works caselessly for ASCII patterns"));}tables = pcre_maketables();re_pcre = pcre_compile(spat, options, &errorptr, &erroffset, tables);if (!re_pcre) {if (errorptr)warning(_("PCRE pattern compilation error\n\t'%s'\n\tat '%s'\n"),errorptr, spat+erroffset);error(_("invalid regular expression '%s'"), spat);}re_nsub = pcre_info(re_pcre, NULL, NULL);if (n > 10) {re_pe = pcre_study(re_pcre, 0, &errorptr);if (errorptr)warning(_("PCRE pattern study error\n\t'%s'\n"), errorptr);}PROTECT(ans = allocVector(STRSXP, n));for (i = 0 ; i < n ; i++) {int ovector[30];offset = 0;nmatch = 0;if (use_UTF8)s = translateCharUTF8(STRING_ELT(vec, i));elses = translateChar(STRING_ELT(vec, i));t = srep;nns = ns = strlen(s);#ifdef SUPPORT_MBCSif (!useBytes && mbcslocale && !mbcsValid(s))error(_("input string %d is invalid in this locale"), i+1);#endif/* Looks like PCRE_NOTBOL is not needed in this version,but leave in as a precaution */eflag = 0; last_end = -1;while (pcre_exec(re_pcre, re_pe, s, nns, offset, eflag,ovector, 30) >= 0) {nmatch += 1;/* Do not repeat a 0-length match after a match, sogsub("a*", "x", "baaac") is "xbxcx" not "xbxxcx" */if (ovector[1] > last_end) {ns += length_adj(s, t, ovector, re_nsub, useBytes);last_end = ovector[1];}offset = ovector[1];if (s[offset] == '\0' || !global) break;/* If we have a 0-length match, move on a char */if (ovector[1] == ovector[0]) {#ifdef SUPPORT_MBCSif (!useBytes && ienc == CE_UTF8) {int used, pos = 0;while( (used = utf8clen(s[pos])) ) {pos += used;if (pos > offset) {offset = pos;break;}}} else if (!useBytes && mbcslocale) {wchar_t wc; int used, pos = 0; mbstate_t mb_st;mbs_init(&mb_st);while( (used = Mbrtowc(&wc, s+pos, MB_CUR_MAX, &mb_st)) ) {pos += used;if (pos > offset) {offset = pos;break;}}} else#endifoffset++;}eflag = PCRE_NOTBOL;}if (nmatch == 0)SET_STRING_ELT(ans, i, STRING_ELT(vec, i));else {offset = 0;s = translateChar(STRING_ELT(vec, i));t = srep;cbuf = u = CallocCharBuf(ns);eflag = 0; last_end = -1;while (pcre_exec(re_pcre, re_pe, s, nns, offset, eflag,ovector, 30) >= 0) {/* printf("%s, %d, %d %d\n", s, offset,ovector[0], ovector[1]); */for (j = offset; j < ovector[0]; j++) *u++ = s[j];if (ovector[1] > last_end) {u = string_adj(u, s, t, ovector, useBytes, ienc);last_end = ovector[1];}offset = ovector[1];if (s[offset] == '\0' || !global) break;if (ovector[1] == ovector[0]) {/* advance by a char */#ifdef SUPPORT_MBCSif (!useBytes && ienc == CE_UTF8) {int used, pos = 0;while( (used = utf8clen(s[pos])) ) {pos += used;if (pos > offset) {for (j = offset; j < pos; j++) *u++ = s[j];offset = pos;break;}}} else if (!useBytes && mbcslocale) {wchar_t wc; int used, pos = 0; mbstate_t mb_st;mbs_init(&mb_st);while( (used = Mbrtowc(&wc, s+pos, MB_CUR_MAX, &mb_st)) ) {pos += used;if (pos > offset) {for (j = offset; j < pos; j++) *u++ = s[j];offset = pos;break;}}} else#endif*u++ = s[offset++];}eflag = PCRE_NOTBOL;}for (j = offset ; s[j] ; j++)*u++ = s[j];*u = '\0';if (useBytes)SET_STRING_ELT(ans, i, mkChar(cbuf));else if (use_UTF8) {SET_STRING_ELT(ans, i, mkCharCE(cbuf, CE_UTF8));} elseSET_STRING_ELT(ans, i, markKnown(cbuf, STRING_ELT(vec, i)));Free(cbuf);}}if (re_pe) pcre_free(re_pe);pcre_free(re_pcre);pcre_free((void *)tables);DUPLICATE_ATTRIB(ans, vec);UNPROTECT(1);return ans;}#include "RBufferUtils.h"/* FIXME: this should be using UTF-8 when the strings concerned areUTF-8 */SEXP attribute_hiddendo_gpregexpr(SEXP pat, SEXP text, int igcase_opt, int useBytes){SEXP ansList, ans, matchlen;SEXP matchbuf, matchlenbuf;int bufsize = 1024;int i, n, st, erroffset, ienc;int options = 0;const char *spat, *errorptr;pcre *re_pcre;pcre_extra *re_pe = NULL;const unsigned char *tables;Rboolean use_UTF8 = FALSE;/* To make this thread-safe remove static here useR_FreeStringBuffer below */static R_StringBuffer cbuff = {NULL, 0, MAXELTSIZE};n = LENGTH(text);if (!useBytes) {if (getCharCE(STRING_ELT(pat, 0)) == CE_UTF8) use_UTF8 = TRUE;for (i = 0; i < n; i++)if (getCharCE(STRING_ELT(text, 0)) == CE_UTF8) use_UTF8 = TRUE;}if (use_UTF8) {spat = translateCharUTF8(STRING_ELT(pat, 0));ienc = CE_UTF8;} else {spat = translateChar(STRING_ELT(pat, 0));ienc = CE_NATIVE;}#ifdef SUPPORT_MBCSif (useBytes) ;else if (utf8locale || use_UTF8) options = PCRE_UTF8;else if (mbcslocale)warning(_("perl = TRUE is only fully implemented in UTF-8 locales"));#endifif (igcase_opt) {options |= PCRE_CASELESS;if (useBytes && utf8locale && !strIsASCII(spat))warning(_("ignore.case = TRUE, perl = TRUE, useBytes = TRUE\n in UTF-8 locales only works caselessly for ASCII patterns"));}#ifdef SUPPORT_MBCSif (!useBytes && mbcslocale && !mbcsValid(spat))error(_("regular expression is invalid in this locale"));#endiftables = pcre_maketables();re_pcre = pcre_compile(spat, options, &errorptr, &erroffset, tables);if (!re_pcre) {if (errorptr)warning(_("PCRE pattern compilation error\n\t'%s'\n\tat '%s'\n"),errorptr, spat+erroffset);error(_("invalid regular expression '%s'"), spat);}n = LENGTH(text);if(n > 10) {re_pe = pcre_study(re_pcre, 0, &errorptr);if (errorptr)warning(_("PCRE pattern study error\n\t'%s'\n"), errorptr);}PROTECT(ansList = allocVector(VECSXP, n));matchbuf = PROTECT(allocVector(INTSXP, bufsize));matchlenbuf = PROTECT(allocVector(INTSXP, bufsize));for (i = 0 ; i < n ; i++) {const char *s;int j, foundAll, foundAny, matchIndex, start;foundAll = foundAny = start = 0;matchIndex = -1;if (STRING_ELT(text,i) == NA_STRING){PROTECT(ans = allocVector(INTSXP, 1));PROTECT(matchlen = allocVector(INTSXP, 1));INTEGER(ans)[0] = INTEGER(matchlen)[0] = R_NaInt;setAttrib(ans, install("match.length"), matchlen);SET_VECTOR_ELT(ansList, i, ans);UNPROTECT(2);continue;}if (ienc == CE_UTF8)s = translateCharUTF8(STRING_ELT(text, i));elses = translateChar(STRING_ELT(text, i));#ifdef SUPPORT_MBCSif (!useBytes && ienc != CE_UTF8 && mbcslocale && !mbcsValid(s)) {warning(_("input string %d is invalid in this locale"), i+1);PROTECT(ans = allocVector(INTSXP, 1));PROTECT(matchlen = allocVector(INTSXP, 1));INTEGER(ans)[0] = INTEGER(matchlen)[0] = -1;setAttrib(ans, install("match.length"), matchlen);SET_VECTOR_ELT(ansList, i, ans);UNPROTECT(2);continue;}#endifwhile (!foundAll) {int rc, ovector[3], slen = strlen(s);rc = pcre_exec(re_pcre, re_pe, s, slen, start, 0, ovector, 3);if (rc >= 0) {if ((matchIndex + 1) == bufsize) {/* Reallocate match buffers */int newbufsize = bufsize * 2;SEXP tmp;tmp = allocVector(INTSXP, 2 * bufsize);for (j = 0; j < bufsize; j++)INTEGER(tmp)[j] = INTEGER(matchlenbuf)[j];UNPROTECT(1);matchlenbuf = tmp;PROTECT(matchlenbuf);tmp = allocVector(INTSXP, 2 * bufsize);for (j = 0; j < bufsize; j++)INTEGER(tmp)[j] = INTEGER(matchbuf)[j];matchbuf = tmp;UNPROTECT(2);PROTECT(matchbuf);PROTECT(matchlenbuf);bufsize = newbufsize;}matchIndex++;foundAny = 1;st = ovector[0];INTEGER(matchbuf)[matchIndex] = st + 1; /* index from one */INTEGER(matchlenbuf)[matchIndex] = ovector[1] - st;/* we need to advance 'start' in bytes */if (INTEGER(matchlenbuf)[matchIndex] == 0)start = ovector[0] + 1;elsestart = ovector[1];#ifdef SUPPORT_MBCSif (!useBytes && ienc == CE_UTF8) {int mlen = ovector[1] - st;/* Unfortunately these are in bytes, so we need touse chars instead */R_AllocStringBuffer(imax2(st, mlen+1), &cbuff);if (st > 0) {memcpy(cbuff.data, s, st);cbuff.data[st] = '\0';INTEGER(matchbuf)[matchIndex] = 1 + utf8towcs(NULL, cbuff.data, 0);if (INTEGER(matchbuf)[matchIndex] <= 0) { /* an invalid string */INTEGER(matchbuf)[matchIndex] = NA_INTEGER;foundAll = 1; /* if we get here, we are done */}}memcpy(cbuff.data, s+st, mlen);cbuff.data[mlen] = '\0';INTEGER(matchlenbuf)[matchIndex] = utf8towcs(NULL, cbuff.data, 0);if (INTEGER(matchlenbuf)[matchIndex] < 0) {/* an invalid string */INTEGER(matchlenbuf)[matchIndex] = NA_INTEGER;foundAll = 1;}} else if (!useBytes && mbcslocale) {int mlen = ovector[1] - st;/* Unfortunately these are in bytes, so we need touse chars instead */R_AllocStringBuffer(imax2(st, mlen+1), &cbuff);if (st > 0) {memcpy(cbuff.data, s, st);cbuff.data[st] = '\0';INTEGER(matchbuf)[matchIndex] = 1 + mbstowcs(NULL, cbuff.data, 0);if (INTEGER(matchbuf)[matchIndex] <= 0) { /* an invalid string */INTEGER(matchbuf)[matchIndex] = NA_INTEGER;foundAll = 1; /* if we get here, we are done */}}memcpy(cbuff.data, s+st, mlen);cbuff.data[mlen] = '\0';INTEGER(matchlenbuf)[matchIndex] = mbstowcs(NULL, cbuff.data, 0);if (INTEGER(matchlenbuf)[matchIndex] < 0) {/* an invalid string */INTEGER(matchlenbuf)[matchIndex] = NA_INTEGER;foundAll = 1;}}#endifif (start >= slen)foundAll = 1;} else {foundAll = 1;if (!foundAny)matchIndex = 0;}}PROTECT(ans = allocVector(INTSXP, matchIndex + 1));PROTECT(matchlen = allocVector(INTSXP, matchIndex + 1));if (foundAny) {/* copy from buffers */for (j = 0; j <= matchIndex; j++) {INTEGER(ans)[j] = INTEGER(matchbuf)[j];INTEGER(matchlen)[j] = INTEGER(matchlenbuf)[j];}} else {INTEGER(ans)[0] = INTEGER(matchlen)[0] = -1;}setAttrib(ans, install("match.length"), matchlen);SET_VECTOR_ELT(ansList, i, ans);UNPROTECT(2);}/* see comment above */R_FreeStringBufferL(&cbuff);if(re_pe) pcre_free(re_pe);pcre_free(re_pcre);pcre_free((void *)tables);UNPROTECT(3);return ansList;}