2 * UCW Library -- Interface to Regular Expression Libraries
4 * (c) 1997--2004 Martin Mares <mj@ucw.cz>
5 * (c) 2001 Robert Spalek <robert@ucw.cz>
7 * This software may be freely distributed and used according to the terms
8 * of the GNU Lesser General Public License.
12 #include <ucw/chartype.h>
13 #include <ucw/hashfunc.h>
14 #include <ucw/regex.h>
19 #ifdef CONFIG_UCW_POSIX_REGEX
21 /* POSIX regular expression library */
27 regmatch_t matches[10];
31 rx_compile(const char *p, int icase)
33 regex *r = xmalloc_zero(sizeof(regex));
35 int err = regcomp(&r->rx, p, REG_EXTENDED | (icase ? REG_ICASE : 0));
39 regerror(err, &r->rx, msg, sizeof(msg)-1);
40 /* regfree(&r->rx) not needed */
41 die("Error parsing regular expression `%s': %s", p, msg);
54 rx_match(regex *r, const char *s)
56 int err = regexec(&r->rx, s, 10, r->matches, 0);
59 /* regexec doesn't support anchored expressions, so we have to check ourselves that the full string is matched */
60 return !(r->matches[0].rm_so || s[r->matches[0].rm_eo]);
62 else if (err == REG_NOMATCH)
64 else if (err == REG_ESPACE)
65 die("Regex matching ran out of memory");
67 die("Regex matching failed with unknown error %d", err);
71 rx_subst(regex *r, const char *by, const char *src, char *dest, uint destlen)
73 char *end = dest + destlen - 1;
75 if (!rx_match(r, src))
83 if (*by >= '0' && *by <= '9') /* \0 gets replaced by entire pattern */
86 if (j <= r->rx.re_nsub && r->matches[j].rm_so >= 0)
88 const char *s = src + r->matches[j].rm_so;
89 uint i = r->matches[j].rm_eo - r->matches[j].rm_so;
107 #elif defined(CONFIG_UCW_PCRE)
116 uint match_array_size;
118 int matches[0]; /* (max_matches+1) pairs (pos,len) plus some workspace */
122 rx_compile(const char *p, int icase)
125 int errpos, match_array_size, eno;
127 pcre *rx = pcre_compile(p, PCRE_ANCHORED | PCRE_EXTRA | (icase ? PCRE_CASELESS : 0), &err, &errpos, NULL);
129 die("Error parsing regular expression `%s': %s at position %d", p, err, errpos);
130 eno = pcre_fullinfo(rx, NULL, PCRE_INFO_CAPTURECOUNT, &match_array_size);
132 die("Internal error: pcre_fullinfo() failed with error %d", eno);
133 match_array_size = 3*(match_array_size+1);
134 regex *r = xmalloc_zero(sizeof(regex) + match_array_size * sizeof(int));
136 r->match_array_size = match_array_size;
137 r->extra = pcre_study(r->rx, 0, &err);
139 die("Error studying regular expression `%s': %s", p, err);
152 rx_match(regex *r, const char *s)
154 int len = str_len(s);
155 int err = pcre_exec(r->rx, r->extra, s, len, 0, 0, r->matches, r->match_array_size);
158 r->real_matches = err;
159 /* need to check that the full string matches */
160 return !(r->matches[0] || s[r->matches[1]]);
162 else if (err == PCRE_ERROR_NOMATCH)
164 else if (err == PCRE_ERROR_NOMEMORY)
165 die("Regex matching ran out of memory");
167 die("Regex matching failed with unknown error %d", err);
171 rx_subst(regex *r, const char *by, const char *src, char *dest, uint destlen)
173 char *end = dest + destlen - 1;
175 if (!rx_match(r, src))
183 if (*by >= '0' && *by <= '9') /* \0 gets replaced by entire pattern */
185 uint j = *by++ - '0';
186 if (j < r->real_matches && r->matches[2*j] >= 0)
188 const char *s = src + r->matches[2*j];
189 uint i = r->matches[2*j+1] - r->matches[2*j];
209 /* BSD regular expression library */
213 #define INITIAL_MEM 1024 /* Initial space allocated for each pattern */
214 #define CHAR_SET_SIZE 256 /* How many characters in the character set. */
217 struct re_pattern_buffer buf;
218 struct re_registers regs; /* Must not change between re_match() calls */
223 rx_compile(const char *p, int icase)
225 regex *r = xmalloc_zero(sizeof(regex));
228 r->buf.buffer = xmalloc(INITIAL_MEM);
229 r->buf.allocated = INITIAL_MEM;
233 r->buf.translate = xmalloc (CHAR_SET_SIZE);
234 /* Map uppercase characters to corresponding lowercase ones. */
235 for (i = 0; i < CHAR_SET_SIZE; i++)
236 r->buf.translate[i] = Cupcase(i);
239 r->buf.translate = NULL;
240 re_set_syntax(RE_SYNTAX_POSIX_EXTENDED);
241 msg = re_compile_pattern(p, strlen(p), &r->buf);
244 die("Error parsing pattern `%s': %s", p, msg);
250 xfree(r->buf.buffer);
251 if (r->buf.translate)
252 xfree(r->buf.translate);
257 rx_match(regex *r, const char *s)
262 if (re_match(&r->buf, s, len, 0, &r->regs) < 0)
264 if (r->regs.start[0] || r->regs.end[0] != len) /* XXX: Why regex doesn't enforce implicit "^...$" ? */
270 rx_subst(regex *r, const char *by, const char *src, char *dest, uint destlen)
272 char *end = dest + destlen - 1;
274 if (!rx_match(r, src))
282 if (*by >= '0' && *by <= '9') /* \0 gets replaced by entire pattern */
284 uint j = *by++ - '0';
285 if (j < r->regs.num_regs)
287 const char *s = src + r->regs.start[j];
288 uint i = r->regs.end[j] - r->regs.start[j];
289 if (r->regs.start[j] > r->len_cache || r->regs.end[j] > r->len_cache)
312 int main(int argc, char **argv)
315 char buf1[4096], buf2[4096];
318 if (!strcmp(argv[1], "-i"))
324 r = rx_compile(argv[1], opt_i);
325 while (fgets(buf1, sizeof(buf1), stdin))
327 char *p = strchr(buf1, '\n');
332 if (rx_match(r, buf1))
339 int i = rx_subst(r, argv[2], buf1, buf2, sizeof(buf2));