Ref/unref all args in mpdm_seek().
[mpdm.git] / mpdm_r.c
blob924df61bd3f08a73dd0a7ef6d1fcbb0e25b86d84
1 /*
3 MPDM - Minimum Profit Data Manager
4 Copyright (C) 2003/2010 Angel Ortega <angel@triptico.com>
6 mpdm_r.c - Regular expressions
8 This program is free software; you can redistribute it and/or
9 modify it under the terms of the GNU General Public License
10 as published by the Free Software Foundation; either version 2
11 of the License, or (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 http://www.triptico.com
26 #include "config.h"
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <wchar.h>
33 #include "mpdm.h"
35 #ifdef CONFOPT_PCRE
36 #include <pcreposix.h>
37 #endif
39 #ifdef CONFOPT_SYSTEM_REGEX
40 #include <regex.h>
41 #endif
43 #ifdef CONFOPT_INCLUDED_REGEX
44 #include "gnu_regex.h"
45 #endif
48 /** data **/
50 /* matching of the last regex */
52 int mpdm_regex_offset = -1;
53 int mpdm_regex_size = 0;
55 /* number of substitutions in last sregex */
57 int mpdm_sregex_count = 0;
60 /** code **/
62 static wchar_t *regex_flags(const mpdm_t r)
64 return wcsrchr((wchar_t *) r->data, *(wchar_t *) r->data);
68 static mpdm_t mpdm_regcomp(mpdm_t r)
70 mpdm_t c = NULL;
71 mpdm_t regex_cache = NULL;
73 mpdm_ref(r);
75 /* if cache does not exist, create it */
76 if ((regex_cache = mpdm_hget_s(mpdm_root(), L"__REGEX_CACHE__")) == NULL) {
77 regex_cache = MPDM_H(0);
78 mpdm_hset_s(mpdm_root(), L"__REGEX_CACHE__", regex_cache);
81 /* search the regex in the cache */
82 if ((c = mpdm_hget(regex_cache, r)) == NULL) {
83 mpdm_t rmb;
84 regex_t re;
85 char *regex;
86 char *flags;
87 int f = REG_EXTENDED;
89 /* not found; regex must be compiled */
91 /* convert to mbs */
92 rmb = mpdm_ref(MPDM_2MBS(r->data));
93 regex = (char *) rmb->data;
95 if ((flags = strrchr(regex, *regex)) != NULL) {
97 if (strchr(flags, 'i') != NULL)
98 f |= REG_ICASE;
99 if (strchr(flags, 'm') != NULL)
100 f |= REG_NEWLINE;
102 regex++;
103 *flags = '\0';
105 if (!regcomp(&re, regex, f)) {
106 void *ptr;
108 if ((ptr = malloc(sizeof(regex_t))) != NULL) {
109 /* copies */
110 memcpy(ptr, &re, sizeof(regex_t));
112 /* create value */
113 c = mpdm_new(MPDM_FREE, ptr, sizeof(regex_t));
115 /* stores */
116 mpdm_hset(regex_cache, r, c);
121 mpdm_unref(rmb);
124 mpdm_unref(r);
126 return c;
130 static mpdm_t regex1(mpdm_t r, const mpdm_t v, int offset)
131 /* test for one regex */
133 mpdm_t w = NULL;
134 mpdm_t cr;
136 mpdm_ref(r);
137 mpdm_ref(v);
139 /* no matching yet */
140 mpdm_regex_offset = -1;
142 /* compile the regex */
143 if ((cr = mpdm_regcomp(r)) != NULL) {
144 regmatch_t rm;
145 char *ptr;
146 wchar_t *last;
147 int o = 0;
148 int f = 0;
150 /* takes pointer to 'last' flag */
151 if ((last = regex_flags(r)) != NULL)
152 last = wcschr(last, 'l');
154 /* convert to mbs */
155 ptr = mpdm_wcstombs((wchar_t *) v->data + offset, NULL);
157 /* match? */
158 while (regexec((regex_t *) cr->data, ptr + o, 1,
159 &rm, offset > 0 ? REG_NOTBOL : 0) == 0) {
160 f++;
162 /* if 'last' is not set, it's done */
163 if (last == NULL)
164 break;
166 rm.rm_so += o;
167 rm.rm_eo += o;
168 o = rm.rm_eo;
171 if (f) {
172 /* converts to mbs the string from the beginning
173 to the start of the match, just to know
174 the size (and immediately frees it) */
175 free(mpdm_mbstowcs(ptr, &mpdm_regex_offset, rm.rm_so));
177 /* add the offset */
178 mpdm_regex_offset += offset;
180 /* create now the matching string */
181 w = MPDM_NMBS(ptr + rm.rm_so, rm.rm_eo - rm.rm_so);
183 /* and store the size */
184 mpdm_regex_size = mpdm_size(w);
187 free(ptr);
190 mpdm_unref(v);
191 mpdm_unref(r);
193 return w;
198 * mpdm_regex - Matches a regular expression.
199 * @r: the regular expression
200 * @v: the value to be matched
201 * @offset: offset from the start of v->data
203 * Matches a regular expression against a value. Valid flags are 'i',
204 * for case-insensitive matching, 'm', to treat the string as a
205 * multiline string (i.e., one containing newline characters), so
206 * that ^ and $ match the boundaries of each line instead of the
207 * whole string, 'l', to return the last matching instead of the
208 * first one, or 'g', to match globally; in that last case, an array
209 * containing all matches is returned instead of a string scalar.
211 * If @r is a string, an ordinary regular expression matching is tried
212 * over the @v string. If the matching is possible, the match result
213 * is returned, or NULL otherwise.
215 * If @r is an array (of strings), each element is tried sequentially
216 * as an individual regular expression over the @v string, each one using
217 * the offset returned by the previous match. All regular expressions
218 * must match to be successful. If this is the case, an array (with
219 * the same number of arguments) is returned containing the matched
220 * strings, or NULL otherwise.
222 * If @r is NULL, the result of the previous regex matching
223 * is returned as a two element array. The first element will contain
224 * the character offset of the matching and the second the number of
225 * characters matched. If the previous regex was unsuccessful, NULL
226 * is returned.
227 * [Regular Expressions]
229 mpdm_t mpdm_regex(mpdm_t r, const mpdm_t v, int offset)
231 mpdm_t w = NULL;
233 mpdm_ref(r);
234 mpdm_ref(v);
236 /* special case: if r is NULL, return previous match */
237 if (r == NULL) {
238 /* if previous regex was successful... */
239 if (mpdm_regex_offset != -1) {
240 w = MPDM_A(2);
242 mpdm_aset(w, MPDM_I(mpdm_regex_offset), 0);
243 mpdm_aset(w, MPDM_I(mpdm_regex_size), 1);
246 else
247 if (v != NULL) {
248 if (r->flags & MPDM_MULTIPLE) {
249 int n;
250 mpdm_t t;
252 /* multiple value; try sequentially all regexes,
253 moving the offset forward */
255 w = MPDM_A(0);
257 for (n = 0; n < mpdm_size(r); n++) {
258 t = mpdm_regex(mpdm_aget(r, n), v, offset);
260 if (t == NULL)
261 break;
263 /* found; store and move forward */
264 mpdm_push(w, t);
265 offset = mpdm_regex_offset + mpdm_regex_size;
268 else {
269 wchar_t *global;
271 /* takes pointer to 'global' flag */
272 if ((global = regex_flags(r)) != NULL)
273 global = wcschr(global, 'g');
275 if (global != NULL) {
276 mpdm_t t;
278 /* match sequentially until done */
279 w = MPDM_A(0);
281 while ((t = regex1(r, v, offset)) != NULL) {
282 mpdm_push(w, t);
284 offset = mpdm_regex_offset + mpdm_regex_size;
287 else
288 w = regex1(r, v, offset);
292 mpdm_unref(v);
293 mpdm_unref(r);
295 return w;
299 static mpdm_t expand_ampersands(const mpdm_t s, const mpdm_t t)
300 /* substitutes all unescaped ampersands in s with t */
302 const wchar_t *sptr = mpdm_string(s);
303 wchar_t *wptr;
304 wchar_t *optr = NULL;
305 int osize = 0;
306 mpdm_t r = NULL;
308 mpdm_ref(s);
309 mpdm_ref(t);
311 if (s != NULL) {
312 while ((wptr = wcschr(sptr, L'\\')) != NULL ||
313 (wptr = wcschr(sptr, L'&')) != NULL) {
314 int n = wptr - sptr;
316 /* add the leading part */
317 optr = mpdm_pokewsn(optr, &osize, sptr, n);
319 if (*wptr == L'\\') {
320 if (*(wptr + 1) == L'&' || *(wptr + 1) == L'\\')
321 wptr++;
323 optr = mpdm_pokewsn(optr, &osize, wptr, 1);
325 else
326 if (*wptr == '&')
327 optr = mpdm_pokev(optr, &osize, t);
329 sptr = wptr + 1;
332 /* add the rest of the string */
333 optr = mpdm_pokews(optr, &osize, sptr);
334 optr = mpdm_pokewsn(optr, &osize, L"", 1);
335 r = MPDM_ENS(optr, osize - 1);
338 mpdm_unref(t);
339 mpdm_unref(s);
341 return r;
346 * mpdm_sregex - Matches and substitutes a regular expression.
347 * @r: the regular expression
348 * @v: the value to be matched
349 * @s: the substitution string, hash or code
350 * @offset: offset from the start of v->data
352 * Matches a regular expression against a value, and substitutes the
353 * found substring with @s. Valid flags are 'i', for case-insensitive
354 * matching, and 'g', for global replacements (all ocurrences in @v
355 * will be replaced, instead of just the first found one).
357 * If @s is executable, it's executed with the matched part as
358 * the only argument and its return value is used as the
359 * substitution string.
361 * If @s is a hash, the matched string is used as a key to it and
362 * its value used as the substitution. If this value itself is
363 * executable, it's executed with the matched string as its only
364 * argument and its return value used as the substitution.
366 * If @r is NULL, returns the number of substitutions made in the
367 * previous call to mpdm_sregex() (can be zero if none was done).
369 * The global variables @mpdm_regex_offset and @mpdm_regex_size are
370 * set to the offset of the matched string and the size of the
371 * replaced string, respectively.
373 * Always returns a new string (either modified or an exact copy).
374 * [Regular Expressions]
376 mpdm_t mpdm_sregex(mpdm_t r, const mpdm_t v, const mpdm_t s, int offset)
378 mpdm_t cr;
379 wchar_t *optr = NULL;
380 int osize = 0;
381 mpdm_t o = NULL;
383 mpdm_ref(r);
384 mpdm_ref(v);
385 mpdm_ref(s);
387 if (r == NULL) {
388 /* return last count */
389 o = MPDM_I(mpdm_sregex_count);
391 else
392 if (v != NULL) {
393 /* compile the regex */
394 if ((cr = mpdm_regcomp(r)) != NULL) {
395 char *ptr;
396 int f, i = 0;
397 wchar_t *global;
398 mpdm_t t;
400 /* takes pointer to global flag */
401 if ((global = regex_flags(r)) !=NULL)
402 global = wcschr(global, 'g');
404 /* store the first part */
405 optr = mpdm_pokewsn(optr, &osize, v->data, offset);
407 /* convert to mbs */
408 ptr = mpdm_wcstombs((wchar_t *) v->data + offset, NULL);
410 /* reset count */
411 mpdm_sregex_count = 0;
412 mpdm_regex_offset = -1;
414 do {
415 regmatch_t rm;
417 /* try match */
418 f = !regexec((regex_t *) cr->data, ptr + i,
419 1, &rm, offset > 0 ? REG_NOTBOL : 0);
421 if (f) {
422 /* creates a string from the beginning
423 to the start of the match */
424 t = mpdm_ref(MPDM_NMBS(ptr + i, rm.rm_so));
425 optr = mpdm_pokev(optr, &osize, t);
427 /* store offset of substitution */
428 mpdm_regex_offset = mpdm_size(t) + offset;
430 mpdm_unref(t);
432 /* get the matched part */
433 t = MPDM_NMBS(ptr + i + rm.rm_so, rm.rm_eo - rm.rm_so);
435 /* is s an executable value? */
436 if (MPDM_IS_EXEC(s)) {
437 /* execute s, with t as argument */
438 t = mpdm_exec_1(s, t);
440 else
441 /* is s a hash? use match as key */
442 if (MPDM_IS_HASH(s)) {
443 mpdm_t v = mpdm_hget(s, t);
445 mpdm_ref(t);
447 /* is the value executable? */
448 if (MPDM_IS_EXEC(v)) {
449 mpdm_t w = mpdm_ref(v);
451 v = mpdm_exec_1(w, t);
453 mpdm_unref(w);
456 mpdm_unref(t);
458 t = v;
460 else
461 t = expand_ampersands(s, t);
463 /* appends the substitution string */
464 mpdm_ref(t);
466 optr = mpdm_pokev(optr, &osize, t);
468 /* store size of substitution */
469 mpdm_regex_size = mpdm_size(t);
471 mpdm_unref(t);
473 i += rm.rm_eo;
475 /* one more substitution */
476 mpdm_sregex_count++;
478 } while (f && global);
480 /* no (more) matches; convert and append the rest */
481 t = MPDM_MBS(ptr + i);
482 optr = mpdm_pokev(optr, &osize, t);
484 free(ptr);
487 /* NULL-terminate */
488 optr = mpdm_pokewsn(optr, &osize, L"", 1);
490 o = MPDM_ENS(optr, osize - 1);
493 mpdm_unref(s);
494 mpdm_unref(v);
495 mpdm_unref(r);
497 return o;