Regex leak on error path
[platform/upstream/glib.git] / glib / gregex.c
1 /* GRegex -- regular expression API wrapper around PCRE.
2  *
3  * Copyright (C) 1999, 2000 Scott Wimer
4  * Copyright (C) 2004, Matthias Clasen <mclasen@redhat.com>
5  * Copyright (C) 2005 - 2007, Marco Barisione <marco@barisione.org>
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20  */
21
22 #include "config.h"
23
24 #include <string.h>
25
26 #include "glib.h"
27 #include "glibintl.h"
28 #include "gregex.h"
29
30 #ifdef USE_SYSTEM_PCRE
31 #include <pcre.h>
32 #else
33 #include "pcre/pcre.h"
34 #endif
35
36 /* PCRE 7.3 does not contain the definition of PCRE_ERROR_NULLWSLIMIT */
37 #ifndef PCRE_ERROR_NULLWSLIMIT
38 #define PCRE_ERROR_NULLWSLIMIT (-22)
39 #endif
40
41 #include "galias.h"
42
43 /* Mask of all the possible values for GRegexCompileFlags. */
44 #define G_REGEX_COMPILE_MASK (G_REGEX_CASELESS          | \
45                               G_REGEX_MULTILINE         | \
46                               G_REGEX_DOTALL            | \
47                               G_REGEX_EXTENDED          | \
48                               G_REGEX_ANCHORED          | \
49                               G_REGEX_DOLLAR_ENDONLY    | \
50                               G_REGEX_UNGREEDY          | \
51                               G_REGEX_RAW               | \
52                               G_REGEX_NO_AUTO_CAPTURE   | \
53                               G_REGEX_OPTIMIZE          | \
54                               G_REGEX_DUPNAMES          | \
55                               G_REGEX_NEWLINE_CR        | \
56                               G_REGEX_NEWLINE_LF        | \
57                               G_REGEX_NEWLINE_CRLF)
58
59 /* Mask of all the possible values for GRegexMatchFlags. */
60 #define G_REGEX_MATCH_MASK (G_REGEX_MATCH_ANCHORED      | \
61                             G_REGEX_MATCH_NOTBOL        | \
62                             G_REGEX_MATCH_NOTEOL        | \
63                             G_REGEX_MATCH_NOTEMPTY      | \
64                             G_REGEX_MATCH_PARTIAL       | \
65                             G_REGEX_MATCH_NEWLINE_CR    | \
66                             G_REGEX_MATCH_NEWLINE_LF    | \
67                             G_REGEX_MATCH_NEWLINE_CRLF  | \
68                             G_REGEX_MATCH_NEWLINE_ANY)
69
70 /* if the string is in UTF-8 use g_utf8_ functions, else use
71  * use just +/- 1. */
72 #define NEXT_CHAR(re, s) (((re)->compile_opts & PCRE_UTF8) ? \
73                                 g_utf8_next_char (s) : \
74                                 ((s) + 1))
75 #define PREV_CHAR(re, s) (((re)->compile_opts & PCRE_UTF8) ? \
76                                 g_utf8_prev_char (s) : \
77                                 ((s) - 1))
78
79 struct _GMatchInfo
80 {
81   GRegex *regex;                /* the regex */
82   GRegexMatchFlags match_opts;  /* options used at match time on the regex */
83   gint matches;                 /* number of matching sub patterns */
84   gint pos;                     /* position in the string where last match left off */
85   gint *offsets;                /* array of offsets paired 0,1 ; 2,3 ; 3,4 etc */
86   gint n_offsets;               /* number of offsets */
87   gint *workspace;              /* workspace for pcre_dfa_exec() */
88   gint n_workspace;             /* number of workspace elements */
89   const gchar *string;          /* string passed to the match function */
90   gssize string_len;            /* length of string */
91 };
92
93 struct _GRegex
94 {
95   volatile gint ref_count;      /* the ref count for the immutable part */
96   gchar *pattern;               /* the pattern */
97   pcre *pcre_re;                /* compiled form of the pattern */
98   GRegexCompileFlags compile_opts;      /* options used at compile time on the pattern */
99   GRegexMatchFlags match_opts;  /* options used at match time on the regex */
100   pcre_extra *extra;            /* data stored when G_REGEX_OPTIMIZE is used */
101 };
102
103 /* TRUE if ret is an error code, FALSE otherwise. */
104 #define IS_PCRE_ERROR(ret) ((ret) < PCRE_ERROR_NOMATCH && (ret) != PCRE_ERROR_PARTIAL)
105
106 typedef struct _InterpolationData InterpolationData;
107 static gboolean  interpolation_list_needs_match (GList *list);
108 static gboolean  interpolate_replacement        (const GMatchInfo *match_info,
109                                                  GString *result,
110                                                  gpointer data);
111 static GList    *split_replacement              (const gchar *replacement,
112                                                  GError **error);
113 static void      free_interpolation_data        (InterpolationData *data);
114
115
116 static const gchar *
117 match_error (gint errcode)
118 {
119   switch (errcode)
120     {
121     case PCRE_ERROR_NOMATCH:
122       /* not an error */
123       break;
124     case PCRE_ERROR_NULL:
125       /* NULL argument, this should not happen in GRegex */
126       g_warning ("A NULL argument was passed to PCRE");
127       break;
128     case PCRE_ERROR_BADOPTION:
129       return "bad options";
130     case PCRE_ERROR_BADMAGIC:
131       return _("corrupted object");
132     case PCRE_ERROR_UNKNOWN_OPCODE:
133       return N_("internal error or corrupted object");
134     case PCRE_ERROR_NOMEMORY:
135       return _("out of memory");
136     case PCRE_ERROR_NOSUBSTRING:
137       /* not used by pcre_exec() */
138       break;
139     case PCRE_ERROR_MATCHLIMIT:
140       return _("backtracking limit reached");
141     case PCRE_ERROR_CALLOUT:
142       /* callouts are not implemented */
143       break;
144     case PCRE_ERROR_BADUTF8:
145     case PCRE_ERROR_BADUTF8_OFFSET:
146       /* we do not check if strings are valid */
147       break;
148     case PCRE_ERROR_PARTIAL:
149       /* not an error */
150       break;
151     case PCRE_ERROR_BADPARTIAL:
152       return _("the pattern contains items not supported for partial matching");
153     case PCRE_ERROR_INTERNAL:
154       return _("internal error");
155     case PCRE_ERROR_BADCOUNT:
156       /* negative ovecsize, this should not happen in GRegex */
157       g_warning ("A negative ovecsize was passed to PCRE");
158       break;
159     case PCRE_ERROR_DFA_UITEM:
160       return _("the pattern contains items not supported for partial matching");
161     case PCRE_ERROR_DFA_UCOND:
162       return _("back references as conditions are not supported for partial matching");
163     case PCRE_ERROR_DFA_UMLIMIT:
164       /* the match_field field is not used in GRegex */
165       break;
166     case PCRE_ERROR_DFA_WSSIZE:
167       /* handled expanding the workspace */
168       break;
169     case PCRE_ERROR_DFA_RECURSE:
170     case PCRE_ERROR_RECURSIONLIMIT:
171       return _("recursion limit reached");
172     case PCRE_ERROR_NULLWSLIMIT:
173       return _("workspace limit for empty substrings reached");
174     case PCRE_ERROR_BADNEWLINE:
175       return _("invalid combination of newline flags");
176     default:
177       break;
178     }
179   return _("unknown error");
180 }
181
182 static void
183 translate_compile_error (gint *errcode, const gchar **errmsg)
184 {
185   /* Compile errors are created adding 100 to the error code returned
186    * by PCRE.
187    * If errcode is known we put the translatable error message in
188    * erromsg. If errcode is unknown we put the generic
189    * G_REGEX_ERROR_COMPILE error code in errcode and keep the
190    * untranslated error message returned by PCRE.
191    * Note that there can be more PCRE errors with the same GRegexError
192    * and that some PCRE errors are useless for us.
193    */
194   *errcode += 100;
195
196   switch (*errcode)
197     {
198     case G_REGEX_ERROR_STRAY_BACKSLASH:
199       *errmsg = _("\\ at end of pattern");
200       break;
201     case G_REGEX_ERROR_MISSING_CONTROL_CHAR:
202       *errmsg = _("\\c at end of pattern");
203       break;
204     case G_REGEX_ERROR_UNRECOGNIZED_ESCAPE:
205       *errmsg = _("unrecognized character follows \\");
206       break;
207     case 137:
208       /* A number of Perl escapes are not handled by PCRE.
209        * Therefore it explicitly raises ERR37.
210        */
211       *errcode = G_REGEX_ERROR_UNRECOGNIZED_ESCAPE;
212       *errmsg = _("case-changing escapes (\\l, \\L, \\u, \\U) are not allowed here");
213       break;
214     case G_REGEX_ERROR_QUANTIFIERS_OUT_OF_ORDER:
215       *errmsg = _("numbers out of order in {} quantifier");
216       break;
217     case G_REGEX_ERROR_QUANTIFIER_TOO_BIG:
218       *errmsg = _("number too big in {} quantifier");
219       break;
220     case G_REGEX_ERROR_UNTERMINATED_CHARACTER_CLASS:
221       *errmsg = _("missing terminating ] for character class");
222       break;
223     case G_REGEX_ERROR_INVALID_ESCAPE_IN_CHARACTER_CLASS:
224       *errmsg = _("invalid escape sequence in character class");
225       break;
226     case G_REGEX_ERROR_RANGE_OUT_OF_ORDER:
227       *errmsg = _("range out of order in character class");
228       break;
229     case G_REGEX_ERROR_NOTHING_TO_REPEAT:
230       *errmsg = _("nothing to repeat");
231       break;
232     case G_REGEX_ERROR_UNRECOGNIZED_CHARACTER:
233       *errmsg = _("unrecognized character after (?");
234       break;
235     case 124:
236       *errcode = G_REGEX_ERROR_UNRECOGNIZED_CHARACTER;
237       *errmsg = _("unrecognized character after (?<");
238       break;
239     case 141:
240       *errcode = G_REGEX_ERROR_UNRECOGNIZED_CHARACTER;
241       *errmsg = _("unrecognized character after (?P");
242       break;
243     case G_REGEX_ERROR_POSIX_NAMED_CLASS_OUTSIDE_CLASS:
244       *errmsg = _("POSIX named classes are supported only within a class");
245       break;
246     case G_REGEX_ERROR_UNMATCHED_PARENTHESIS:
247       *errmsg = _("missing terminating )");
248       break;
249     case 122:
250       *errcode = G_REGEX_ERROR_UNMATCHED_PARENTHESIS;
251       *errmsg = _(") without opening (");
252       break;
253     case 129:
254       *errcode = G_REGEX_ERROR_UNMATCHED_PARENTHESIS;
255       /* translators: '(?R' and '(?[+-]digits' are both meant as (groups of) 
256        * sequences here, '(?-54' would be an example for the second group.
257        */
258       *errmsg = _("(?R or (?[+-]digits must be followed by )");
259       break;
260     case G_REGEX_ERROR_INEXISTENT_SUBPATTERN_REFERENCE:
261       *errmsg = _("reference to non-existent subpattern");
262       break;
263     case G_REGEX_ERROR_UNTERMINATED_COMMENT:
264       *errmsg = _("missing ) after comment");
265       break;
266     case G_REGEX_ERROR_EXPRESSION_TOO_LARGE:
267       *errmsg = _("regular expression too large");
268       break;
269     case G_REGEX_ERROR_MEMORY_ERROR:
270       *errmsg = _("failed to get memory");
271       break;
272     case G_REGEX_ERROR_VARIABLE_LENGTH_LOOKBEHIND:
273       *errmsg = _("lookbehind assertion is not fixed length");
274       break;
275     case G_REGEX_ERROR_MALFORMED_CONDITION:
276       *errmsg = _("malformed number or name after (?(");
277       break;
278     case G_REGEX_ERROR_TOO_MANY_CONDITIONAL_BRANCHES:
279       *errmsg = _("conditional group contains more than two branches");
280       break;
281     case G_REGEX_ERROR_ASSERTION_EXPECTED:
282       *errmsg = _("assertion expected after (?(");
283       break;
284     case G_REGEX_ERROR_UNKNOWN_POSIX_CLASS_NAME:
285       *errmsg = _("unknown POSIX class name");
286       break;
287     case G_REGEX_ERROR_POSIX_COLLATING_ELEMENTS_NOT_SUPPORTED:
288       *errmsg = _("POSIX collating elements are not supported");
289       break;
290     case G_REGEX_ERROR_HEX_CODE_TOO_LARGE:
291       *errmsg = _("character value in \\x{...} sequence is too large");
292       break;
293     case G_REGEX_ERROR_INVALID_CONDITION:
294       *errmsg = _("invalid condition (?(0)");
295       break;
296     case G_REGEX_ERROR_SINGLE_BYTE_MATCH_IN_LOOKBEHIND:
297       *errmsg = _("\\C not allowed in lookbehind assertion");
298       break;
299     case G_REGEX_ERROR_INFINITE_LOOP:
300       *errmsg = _("recursive call could loop indefinitely");
301       break;
302     case G_REGEX_ERROR_MISSING_SUBPATTERN_NAME_TERMINATOR:
303       *errmsg = _("missing terminator in subpattern name");
304       break;
305     case G_REGEX_ERROR_DUPLICATE_SUBPATTERN_NAME:
306       *errmsg = _("two named subpatterns have the same name");
307       break;
308     case G_REGEX_ERROR_MALFORMED_PROPERTY:
309       *errmsg = _("malformed \\P or \\p sequence");
310       break;
311     case G_REGEX_ERROR_UNKNOWN_PROPERTY:
312       *errmsg = _("unknown property name after \\P or \\p");
313       break;
314     case G_REGEX_ERROR_SUBPATTERN_NAME_TOO_LONG:
315       *errmsg = _("subpattern name is too long (maximum 32 characters)");
316       break;
317     case G_REGEX_ERROR_TOO_MANY_SUBPATTERNS:
318       *errmsg = _("too many named subpatterns (maximum 10,000)");
319       break;
320     case G_REGEX_ERROR_INVALID_OCTAL_VALUE:
321       *errmsg = _("octal value is greater than \\377");
322       break;
323     case G_REGEX_ERROR_TOO_MANY_BRANCHES_IN_DEFINE:
324       *errmsg = _("DEFINE group contains more than one branch");
325       break;
326     case G_REGEX_ERROR_DEFINE_REPETION:
327       *errmsg = _("repeating a DEFINE group is not allowed");
328       break;
329     case G_REGEX_ERROR_INCONSISTENT_NEWLINE_OPTIONS:
330       *errmsg = _("inconsistent NEWLINE options");
331       break;
332     case G_REGEX_ERROR_MISSING_BACK_REFERENCE:
333       *errmsg = _("\\g is not followed by a braced name or an optionally "
334                  "braced non-zero number");
335       break;
336     case 11:
337       *errcode = G_REGEX_ERROR_INTERNAL;
338       *errmsg = _("unexpected repeat");
339       break;
340     case 23:
341       *errcode = G_REGEX_ERROR_INTERNAL;
342       *errmsg = _("code overflow");
343       break;
344     case 52:
345       *errcode = G_REGEX_ERROR_INTERNAL;
346       *errmsg = _("overran compiling workspace");
347       break;
348     case 53:
349       *errcode = G_REGEX_ERROR_INTERNAL;
350       *errmsg = _("previously-checked referenced subpattern not found");
351       break;
352     case 16:
353       /* This should not happen as we never pass a NULL erroffset */
354       g_warning ("erroffset passed as NULL");
355       *errcode = G_REGEX_ERROR_COMPILE;
356       break;
357     case 17:
358       /* This should not happen as we check options before passing them
359        * to pcre_compile2() */
360       g_warning ("unknown option bit(s) set");
361       *errcode = G_REGEX_ERROR_COMPILE;
362       break;
363     case 32:
364     case 44:
365     case 45:
366       /* These errors should not happen as we are using an UTF8-enabled PCRE
367        * and we do not check if strings are valid */
368       g_warning ("%s", *errmsg);
369       *errcode = G_REGEX_ERROR_COMPILE;
370       break;
371     default:
372       *errcode = G_REGEX_ERROR_COMPILE;
373     }
374 }
375
376 /* GMatchInfo */
377
378 static GMatchInfo *
379 match_info_new (const GRegex *regex,
380                 const gchar  *string,
381                 gint          string_len,
382                 gint          start_position,
383                 gint          match_options,
384                 gboolean      is_dfa)
385 {
386   GMatchInfo *match_info;
387
388   if (string_len < 0)
389     string_len = strlen (string);
390
391   match_info = g_new0 (GMatchInfo, 1);
392   match_info->regex = g_regex_ref ((GRegex *)regex);
393   match_info->string = string;
394   match_info->string_len = string_len;
395   match_info->matches = PCRE_ERROR_NOMATCH;
396   match_info->pos = start_position;
397   match_info->match_opts = match_options;
398
399   if (is_dfa)
400     {
401       /* These values should be enough for most cases, if they are not
402        * enough g_regex_match_all_full() will expand them. */
403       match_info->n_offsets = 24;
404       match_info->n_workspace = 100;
405       match_info->workspace = g_new (gint, match_info->n_workspace);
406     }
407   else
408     {
409       gint capture_count;
410       pcre_fullinfo (regex->pcre_re, regex->extra,
411                      PCRE_INFO_CAPTURECOUNT, &capture_count);
412       match_info->n_offsets = (capture_count + 1) * 3;
413     }
414
415   match_info->offsets = g_new0 (gint, match_info->n_offsets);
416   /* Set an invalid position for the previous match. */
417   match_info->offsets[0] = -1;
418   match_info->offsets[1] = -1;
419
420   return match_info;
421 }
422
423 /**
424  * g_match_info_get_regex:
425  * @match_info: a #GMatchInfo
426  *
427  * Returns #GRegex object used in @match_info. It belongs to Glib
428  * and must not be freed. Use g_regex_ref() if you need to keep it
429  * after you free @match_info object.
430  *
431  * Returns: #GRegex object used in @match_info
432  *
433  * Since: 2.14
434  */
435 GRegex *
436 g_match_info_get_regex (const GMatchInfo *match_info)
437 {
438   g_return_val_if_fail (match_info != NULL, NULL);
439   return match_info->regex;
440 }
441
442 /**
443  * g_match_info_get_string:
444  * @match_info: a #GMatchInfo
445  *
446  * Returns the string searched with @match_info. This is the
447  * string passed to g_regex_match() or g_regex_replace() so
448  * you may not free it before calling this function.
449  *
450  * Returns: the string searched with @match_info
451  *
452  * Since: 2.14
453  */
454 const gchar *
455 g_match_info_get_string (const GMatchInfo *match_info)
456 {
457   g_return_val_if_fail (match_info != NULL, NULL);
458   return match_info->string;
459 }
460
461 /**
462  * g_match_info_free:
463  * @match_info: a #GMatchInfo
464  *
465  * Frees all the memory associated with the #GMatchInfo structure.
466  *
467  * Since: 2.14
468  */
469 void
470 g_match_info_free (GMatchInfo *match_info)
471 {
472   if (match_info)
473     {
474       g_regex_unref (match_info->regex);
475       g_free (match_info->offsets);
476       g_free (match_info->workspace);
477       g_free (match_info);
478     }
479 }
480
481 /**
482  * g_match_info_next:
483  * @match_info: a #GMatchInfo structure
484  * @error: location to store the error occuring, or %NULL to ignore errors
485  *
486  * Scans for the next match using the same parameters of the previous
487  * call to g_regex_match_full() or g_regex_match() that returned
488  * @match_info.
489  *
490  * The match is done on the string passed to the match function, so you
491  * cannot free it before calling this function.
492  *
493  * Returns: %TRUE is the string matched, %FALSE otherwise
494  *
495  * Since: 2.14
496  */
497 gboolean
498 g_match_info_next (GMatchInfo  *match_info,
499                    GError     **error)
500 {
501   gint opts;
502   gint prev_match_start;
503   gint prev_match_end;
504
505   g_return_val_if_fail (match_info != NULL, FALSE);
506   g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
507   g_return_val_if_fail (match_info->pos >= 0, FALSE);
508
509   opts = match_info->regex->match_opts | match_info->match_opts;
510  
511   prev_match_start = match_info->offsets[0];
512   prev_match_end = match_info->offsets[1];
513
514   match_info->matches = pcre_exec (match_info->regex->pcre_re,
515                                    match_info->regex->extra,
516                                    match_info->string,
517                                    match_info->string_len,
518                                    match_info->pos,
519                                    match_info->regex->match_opts |
520                                    match_info->match_opts,
521                                    match_info->offsets,
522                                    match_info->n_offsets);
523   if (IS_PCRE_ERROR (match_info->matches))
524     {
525       g_set_error (error, G_REGEX_ERROR, G_REGEX_ERROR_MATCH,
526                    _("Error while matching regular expression %s: %s"),
527                    match_info->regex->pattern, match_error (match_info->matches));
528       return FALSE;
529     }
530
531   /* avoid infinite loops if the pattern is an empty string or something
532    * equivalent */
533   if (match_info->pos == match_info->offsets[1])
534     {
535       if (match_info->pos > match_info->string_len)
536         {
537           /* we have reached the end of the string */
538           match_info->pos = -1;
539           match_info->matches = PCRE_ERROR_NOMATCH;
540           return FALSE;
541         }
542
543       match_info->pos = NEXT_CHAR (match_info->regex,
544                                    &match_info->string[match_info->pos]) -
545                                    match_info->string;
546     }
547   else
548     {
549       match_info->pos = match_info->offsets[1];
550     }
551
552   /* it's possibile to get two identical matches when we are matching
553    * empty strings, for instance if the pattern is "(?=[A-Z0-9])" and
554    * the string is "RegExTest" we have:
555    *  - search at position 0: match from 0 to 0
556    *  - search at position 1: match from 3 to 3
557    *  - search at position 3: match from 3 to 3 (duplicate)
558    *  - search at position 4: match from 5 to 5
559    *  - search at position 5: match from 5 to 5 (duplicate)
560    *  - search at position 6: no match -> stop
561    * so we have to ignore the duplicates.
562    * see bug #515944: http://bugzilla.gnome.org/show_bug.cgi?id=515944 */
563   if (match_info->matches >= 0 &&
564       prev_match_start == match_info->offsets[0] &&
565       prev_match_end == match_info->offsets[1])
566     {
567       /* ignore this match and search the next one */
568       return g_match_info_next (match_info, error);
569     }
570
571   return match_info->matches >= 0;
572 }
573
574 /**
575  * g_match_info_matches:
576  * @match_info: a #GMatchInfo structure
577  *
578  * Returns whether the previous match operation succeeded.
579  * 
580  * Returns: %TRUE if the previous match operation succeeded, 
581  *   %FALSE otherwise
582  *
583  * Since: 2.14
584  */
585 gboolean
586 g_match_info_matches (const GMatchInfo *match_info)
587 {
588   g_return_val_if_fail (match_info != NULL, FALSE);
589
590   return match_info->matches >= 0;
591 }
592
593 /**
594  * g_match_info_get_match_count:
595  * @match_info: a #GMatchInfo structure
596  *
597  * Retrieves the number of matched substrings (including substring 0, 
598  * that is the whole matched text), so 1 is returned if the pattern 
599  * has no substrings in it and 0 is returned if the match failed.
600  *
601  * If the last match was obtained using the DFA algorithm, that is 
602  * using g_regex_match_all() or g_regex_match_all_full(), the retrieved
603  * count is not that of the number of capturing parentheses but that of
604  * the number of matched substrings.
605  *
606  * Returns: Number of matched substrings, or -1 if an error occurred
607  *
608  * Since: 2.14
609  */
610 gint
611 g_match_info_get_match_count (const GMatchInfo *match_info)
612 {
613   g_return_val_if_fail (match_info, -1);
614
615   if (match_info->matches == PCRE_ERROR_NOMATCH)
616     /* no match */
617     return 0;
618   else if (match_info->matches < PCRE_ERROR_NOMATCH)
619     /* error */
620     return -1;
621   else
622     /* match */
623     return match_info->matches;
624 }
625
626 /**
627  * g_match_info_is_partial_match:
628  * @match_info: a #GMatchInfo structure
629  *
630  * Usually if the string passed to g_regex_match*() matches as far as
631  * it goes, but is too short to match the entire pattern, %FALSE is
632  * returned. There are circumstances where it might be helpful to
633  * distinguish this case from other cases in which there is no match.
634  *
635  * Consider, for example, an application where a human is required to
636  * type in data for a field with specific formatting requirements. An
637  * example might be a date in the form ddmmmyy, defined by the pattern
638  * "^\d?\d(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)\d\d$".
639  * If the application sees the user’s keystrokes one by one, and can
640  * check that what has been typed so far is potentially valid, it is
641  * able to raise an error as soon as a mistake is made.
642  *
643  * GRegex supports the concept of partial matching by means of the
644  * #G_REGEX_MATCH_PARTIAL flag. When this is set the return code for
645  * g_regex_match() or g_regex_match_full() is, as usual, %TRUE
646  * for a complete match, %FALSE otherwise. But, when these functions
647  * return %FALSE, you can check if the match was partial calling
648  * g_match_info_is_partial_match().
649  *
650  * When using partial matching you cannot use g_match_info_fetch*().
651  *
652  * Because of the way certain internal optimizations are implemented 
653  * the partial matching algorithm cannot be used with all patterns. 
654  * So repeated single characters such as "a{2,4}" and repeated single 
655  * meta-sequences such as "\d+" are not permitted if the maximum number 
656  * of occurrences is greater than one. Optional items such as "\d?" 
657  * (where the maximum is one) are permitted. Quantifiers with any values 
658  * are permitted after parentheses, so the invalid examples above can be 
659  * coded thus "(a){2,4}" and "(\d)+". If #G_REGEX_MATCH_PARTIAL is set 
660  * for a pattern that does not conform to the restrictions, matching 
661  * functions return an error.
662  *
663  * Returns: %TRUE if the match was partial, %FALSE otherwise
664  *
665  * Since: 2.14
666  */
667 gboolean
668 g_match_info_is_partial_match (const GMatchInfo *match_info)
669 {
670   g_return_val_if_fail (match_info != NULL, FALSE);
671
672   return match_info->matches == PCRE_ERROR_PARTIAL;
673 }
674
675 /**
676  * g_match_info_expand_references:
677  * @match_info: a #GMatchInfo or %NULL
678  * @string_to_expand: the string to expand
679  * @error: location to store the error occuring, or %NULL to ignore errors
680  *
681  * Returns a new string containing the text in @string_to_expand with
682  * references and escape sequences expanded. References refer to the last
683  * match done with @string against @regex and have the same syntax used by
684  * g_regex_replace().
685  *
686  * The @string_to_expand must be UTF-8 encoded even if #G_REGEX_RAW was
687  * passed to g_regex_new().
688  *
689  * The backreferences are extracted from the string passed to the match
690  * function, so you cannot call this function after freeing the string.
691  *
692  * @match_info may be %NULL in which case @string_to_expand must not
693  * contain references. For instance "foo\n" does not refer to an actual
694  * pattern and '\n' merely will be replaced with \n character,
695  * while to expand "\0" (whole match) one needs the result of a match.
696  * Use g_regex_check_replacement() to find out whether @string_to_expand
697  * contains references.
698  *
699  * Returns: the expanded string, or %NULL if an error occurred
700  *
701  * Since: 2.14
702  */
703 gchar *
704 g_match_info_expand_references (const GMatchInfo  *match_info, 
705                                 const gchar       *string_to_expand,
706                                 GError           **error)
707 {
708   GString *result;
709   GList *list;
710   GError *tmp_error = NULL;
711
712   g_return_val_if_fail (string_to_expand != NULL, NULL);
713   g_return_val_if_fail (error == NULL || *error == NULL, NULL);
714
715   list = split_replacement (string_to_expand, &tmp_error);
716   if (tmp_error != NULL)
717     {
718       g_propagate_error (error, tmp_error);
719       return NULL;
720     }
721
722   if (!match_info && interpolation_list_needs_match (list))
723     {
724       g_critical ("String '%s' contains references to the match, can't "
725                   "expand references without GMatchInfo object",
726                   string_to_expand);
727       return NULL;
728     }
729
730   result = g_string_sized_new (strlen (string_to_expand));
731   interpolate_replacement (match_info, result, list);
732
733   g_list_foreach (list, (GFunc)free_interpolation_data, NULL);
734   g_list_free (list);
735
736   return g_string_free (result, FALSE);
737 }
738
739 /**
740  * g_match_info_fetch:
741  * @match_info: #GMatchInfo structure
742  * @match_num: number of the sub expression
743  *
744  * Retrieves the text matching the @match_num<!-- -->'th capturing 
745  * parentheses. 0 is the full text of the match, 1 is the first paren 
746  * set, 2 the second, and so on.
747  *
748  * If @match_num is a valid sub pattern but it didn't match anything 
749  * (e.g. sub pattern 1, matching "b" against "(a)?b") then an empty 
750  * string is returned.
751  *
752  * If the match was obtained using the DFA algorithm, that is using
753  * g_regex_match_all() or g_regex_match_all_full(), the retrieved
754  * string is not that of a set of parentheses but that of a matched
755  * substring. Substrings are matched in reverse order of length, so 
756  * 0 is the longest match.
757  *
758  * The string is fetched from the string passed to the match function,
759  * so you cannot call this function after freeing the string.
760  *
761  * Returns: The matched substring, or %NULL if an error occurred.
762  *          You have to free the string yourself
763  *
764  * Since: 2.14
765  */
766 gchar *
767 g_match_info_fetch (const GMatchInfo *match_info,
768                     gint              match_num)
769 {
770   /* we cannot use pcre_get_substring() because it allocates the
771    * string using pcre_malloc(). */
772   gchar *match = NULL;
773   gint start, end;
774
775   g_return_val_if_fail (match_info != NULL, NULL);
776   g_return_val_if_fail (match_num >= 0, NULL);
777
778   /* match_num does not exist or it didn't matched, i.e. matching "b"
779    * against "(a)?b" then group 0 is empty. */
780   if (!g_match_info_fetch_pos (match_info, match_num, &start, &end))
781     match = NULL;
782   else if (start == -1)
783     match = g_strdup ("");
784   else
785     match = g_strndup (&match_info->string[start], end - start);
786
787   return match;
788 }
789
790 /**
791  * g_match_info_fetch_pos:
792  * @match_info: #GMatchInfo structure
793  * @match_num: number of the sub expression
794  * @start_pos: pointer to location where to store the start position
795  * @end_pos: pointer to location where to store the end position
796  *
797  * Retrieves the position in bytes of the @match_num<!-- -->'th capturing 
798  * parentheses. 0 is the full text of the match, 1 is the first 
799  * paren set, 2 the second, and so on.
800  *
801  * If @match_num is a valid sub pattern but it didn't match anything 
802  * (e.g. sub pattern 1, matching "b" against "(a)?b") then @start_pos 
803  * and @end_pos are set to -1 and %TRUE is returned.
804  *
805  * If the match was obtained using the DFA algorithm, that is using
806  * g_regex_match_all() or g_regex_match_all_full(), the retrieved
807  * position is not that of a set of parentheses but that of a matched
808  * substring. Substrings are matched in reverse order of length, so 
809  * 0 is the longest match.
810  *
811  * Returns: %TRUE if the position was fetched, %FALSE otherwise. If 
812  *   the position cannot be fetched, @start_pos and @end_pos are left 
813  *   unchanged
814  *
815  * Since: 2.14
816  */
817 gboolean
818 g_match_info_fetch_pos (const GMatchInfo *match_info,
819                         gint              match_num,
820                         gint             *start_pos,
821                         gint             *end_pos)
822 {
823   g_return_val_if_fail (match_info != NULL, FALSE);
824   g_return_val_if_fail (match_num >= 0, FALSE);
825  
826   /* make sure the sub expression number they're requesting is less than
827    * the total number of sub expressions that were matched. */
828   if (match_num >= match_info->matches)
829     return FALSE;
830
831   if (start_pos != NULL)
832     *start_pos = match_info->offsets[2 * match_num];
833
834   if (end_pos != NULL)
835     *end_pos = match_info->offsets[2 * match_num + 1];
836
837   return TRUE;
838 }
839
840 /*
841  * Returns number of first matched subpattern with name @name.
842  * There may be more than one in case when DUPNAMES is used,
843  * and not all subpatterns with that name match;
844  * pcre_get_stringnumber() does not work in that case.
845  */
846 static gint
847 get_matched_substring_number (const GMatchInfo *match_info,
848                               const gchar      *name)
849 {
850   gint entrysize;
851   gchar *first, *last;
852   guchar *entry;
853
854   if (!(match_info->regex->compile_opts & G_REGEX_DUPNAMES))
855     return pcre_get_stringnumber (match_info->regex->pcre_re, name);
856
857   /* This code is copied from pcre_get.c: get_first_set() */
858   entrysize = pcre_get_stringtable_entries (match_info->regex->pcre_re, 
859                                             name,
860                                             &first,
861                                             &last);
862
863   if (entrysize <= 0)
864     return entrysize;
865
866   for (entry = (guchar*) first; entry <= (guchar*) last; entry += entrysize)
867     {
868       gint n = (entry[0] << 8) + entry[1];
869       if (match_info->offsets[n*2] >= 0)
870         return n;
871     }
872
873   return (first[0] << 8) + first[1];
874 }
875
876 /**
877  * g_match_info_fetch_named:
878  * @match_info: #GMatchInfo structure
879  * @name: name of the subexpression
880  *
881  * Retrieves the text matching the capturing parentheses named @name.
882  *
883  * If @name is a valid sub pattern name but it didn't match anything 
884  * (e.g. sub pattern "X", matching "b" against "(?P&lt;X&gt;a)?b") 
885  * then an empty string is returned.
886  *
887  * The string is fetched from the string passed to the match function,
888  * so you cannot call this function after freeing the string.
889  *
890  * Returns: The matched substring, or %NULL if an error occurred.
891  *          You have to free the string yourself
892  *
893  * Since: 2.14
894  */
895 gchar *
896 g_match_info_fetch_named (const GMatchInfo *match_info,
897                           const gchar      *name)
898 {
899   /* we cannot use pcre_get_named_substring() because it allocates the
900    * string using pcre_malloc(). */
901   gint num;
902
903   g_return_val_if_fail (match_info != NULL, NULL);
904   g_return_val_if_fail (name != NULL, NULL);
905
906   num = get_matched_substring_number (match_info, name);
907   if (num < 0)
908     return NULL;
909   else
910     return g_match_info_fetch (match_info, num);
911 }
912
913 /**
914  * g_match_info_fetch_named_pos:
915  * @match_info: #GMatchInfo structure
916  * @name: name of the subexpression
917  * @start_pos: pointer to location where to store the start position
918  * @end_pos: pointer to location where to store the end position
919  *
920  * Retrieves the position in bytes of the capturing parentheses named @name.
921  *
922  * If @name is a valid sub pattern name but it didn't match anything 
923  * (e.g. sub pattern "X", matching "b" against "(?P&lt;X&gt;a)?b") 
924  * then @start_pos and @end_pos are set to -1 and %TRUE is returned.
925  *
926  * Returns: %TRUE if the position was fetched, %FALSE otherwise. If 
927  *   the position cannot be fetched, @start_pos and @end_pos are left
928  *   unchanged
929  *
930  * Since: 2.14
931  */
932 gboolean
933 g_match_info_fetch_named_pos (const GMatchInfo *match_info,
934                               const gchar      *name,
935                               gint             *start_pos,
936                               gint             *end_pos)
937 {
938   gint num;
939
940   g_return_val_if_fail (match_info != NULL, FALSE);
941   g_return_val_if_fail (name != NULL, FALSE);
942
943   num = get_matched_substring_number (match_info, name);
944   if (num < 0)
945     return FALSE;
946
947   return g_match_info_fetch_pos (match_info, num, start_pos, end_pos);
948 }
949
950 /**
951  * g_match_info_fetch_all:
952  * @match_info: a #GMatchInfo structure
953  *
954  * Bundles up pointers to each of the matching substrings from a match
955  * and stores them in an array of gchar pointers. The first element in
956  * the returned array is the match number 0, i.e. the entire matched
957  * text.
958  *
959  * If a sub pattern didn't match anything (e.g. sub pattern 1, matching
960  * "b" against "(a)?b") then an empty string is inserted.
961  *
962  * If the last match was obtained using the DFA algorithm, that is using
963  * g_regex_match_all() or g_regex_match_all_full(), the retrieved
964  * strings are not that matched by sets of parentheses but that of the
965  * matched substring. Substrings are matched in reverse order of length,
966  * so the first one is the longest match.
967  *
968  * The strings are fetched from the string passed to the match function,
969  * so you cannot call this function after freeing the string.
970  *
971  * Returns: a %NULL-terminated array of gchar * pointers. It must be 
972  *   freed using g_strfreev(). If the previous match failed %NULL is
973  *   returned
974  *
975  * Since: 2.14
976  */
977 gchar **
978 g_match_info_fetch_all (const GMatchInfo *match_info)
979 {
980   /* we cannot use pcre_get_substring_list() because the returned value
981    * isn't suitable for g_strfreev(). */
982   gchar **result;
983   gint i;
984
985   g_return_val_if_fail (match_info != NULL, NULL);
986
987   if (match_info->matches < 0)
988     return NULL;
989
990   result = g_new (gchar *, match_info->matches + 1);
991   for (i = 0; i < match_info->matches; i++)
992     result[i] = g_match_info_fetch (match_info, i);
993   result[i] = NULL;
994
995   return result;
996 }
997
998
999 /* GRegex */
1000
1001 GQuark
1002 g_regex_error_quark (void)
1003 {
1004   static GQuark error_quark = 0;
1005
1006   if (error_quark == 0)
1007     error_quark = g_quark_from_static_string ("g-regex-error-quark");
1008
1009   return error_quark;
1010 }
1011
1012 /**
1013  * g_regex_ref:
1014  * @regex: a #GRegex
1015  *
1016  * Increases reference count of @regex by 1.
1017  *
1018  * Returns: @regex
1019  *
1020  * Since: 2.14
1021  */
1022 GRegex *
1023 g_regex_ref (GRegex *regex)
1024 {
1025   g_return_val_if_fail (regex != NULL, NULL);
1026   g_atomic_int_inc (&regex->ref_count);
1027   return regex;
1028 }
1029
1030 /**
1031  * g_regex_unref:
1032  * @regex: a #GRegex
1033  *
1034  * Decreases reference count of @regex by 1. When reference count drops
1035  * to zero, it frees all the memory associated with the regex structure.
1036  *
1037  * Since: 2.14
1038  */
1039 void
1040 g_regex_unref (GRegex *regex)
1041 {
1042   g_return_if_fail (regex != NULL);
1043
1044   if (g_atomic_int_exchange_and_add (&regex->ref_count, -1) - 1 == 0)
1045     {
1046       g_free (regex->pattern);
1047       if (regex->pcre_re != NULL)
1048         pcre_free (regex->pcre_re);
1049       if (regex->extra != NULL)
1050         pcre_free (regex->extra);
1051       g_free (regex);
1052     }
1053 }
1054
1055 /** 
1056  * g_regex_new:
1057  * @pattern: the regular expression
1058  * @compile_options: compile options for the regular expression, or 0 
1059  * @match_options: match options for the regular expression, or 0
1060  * @error: return location for a #GError
1061  * 
1062  * Compiles the regular expression to an internal form, and does 
1063  * the initial setup of the #GRegex structure.  
1064  * 
1065  * Returns: a #GRegex structure. Call g_regex_unref() when you 
1066  *   are done with it
1067  *
1068  * Since: 2.14
1069  */
1070 GRegex *
1071 g_regex_new (const gchar         *pattern, 
1072              GRegexCompileFlags   compile_options,
1073              GRegexMatchFlags     match_options,
1074              GError             **error)
1075 {
1076   GRegex *regex;
1077   pcre *re;
1078   const gchar *errmsg;
1079   gint erroffset;
1080   gint errcode;
1081   gboolean optimize = FALSE;
1082   static gboolean initialized = FALSE;
1083   unsigned long int pcre_compile_options;
1084
1085   g_return_val_if_fail (pattern != NULL, NULL);
1086   g_return_val_if_fail (error == NULL || *error == NULL, NULL);
1087   g_return_val_if_fail ((compile_options & ~G_REGEX_COMPILE_MASK) == 0, NULL);
1088   g_return_val_if_fail ((match_options & ~G_REGEX_MATCH_MASK) == 0, NULL);
1089
1090   if (!initialized)
1091     {
1092       gint support;
1093       const gchar *msg;
1094
1095       pcre_config (PCRE_CONFIG_UTF8, &support);
1096       if (!support)
1097         {
1098           msg = N_("PCRE library is compiled without UTF8 support");
1099           g_critical ("%s", msg);
1100           g_set_error_literal (error, G_REGEX_ERROR, G_REGEX_ERROR_COMPILE, gettext (msg));
1101           return NULL;
1102         }
1103
1104       pcre_config (PCRE_CONFIG_UNICODE_PROPERTIES, &support);
1105       if (!support)
1106         {
1107           msg = N_("PCRE library is compiled without UTF8 properties support");
1108           g_critical ("%s", msg);
1109           g_set_error_literal (error, G_REGEX_ERROR, G_REGEX_ERROR_COMPILE, gettext (msg));
1110           return NULL;
1111         }
1112
1113       initialized = TRUE;
1114     }
1115
1116   /* G_REGEX_OPTIMIZE has the same numeric value of PCRE_NO_UTF8_CHECK,
1117    * as we do not need to wrap PCRE_NO_UTF8_CHECK. */
1118   if (compile_options & G_REGEX_OPTIMIZE)
1119     optimize = TRUE;
1120
1121   /* In GRegex the string are, by default, UTF-8 encoded. PCRE
1122    * instead uses UTF-8 only if required with PCRE_UTF8. */
1123   if (compile_options & G_REGEX_RAW)
1124     {
1125       /* disable utf-8 */
1126       compile_options &= ~G_REGEX_RAW;
1127     }
1128   else
1129     {
1130       /* enable utf-8 */
1131       compile_options |= PCRE_UTF8 | PCRE_NO_UTF8_CHECK;
1132       match_options |= PCRE_NO_UTF8_CHECK;
1133     }
1134
1135   /* PCRE_NEWLINE_ANY is the default for the internal PCRE but
1136    * not for the system one. */
1137   if (!(compile_options & G_REGEX_NEWLINE_CR) &&
1138       !(compile_options & G_REGEX_NEWLINE_LF))
1139     {
1140       compile_options |= PCRE_NEWLINE_ANY;
1141     }
1142
1143   /* compile the pattern */
1144   re = pcre_compile2 (pattern, compile_options, &errcode,
1145                       &errmsg, &erroffset, NULL);
1146
1147   /* if the compilation failed, set the error member and return 
1148    * immediately */
1149   if (re == NULL)
1150     {
1151       GError *tmp_error;
1152
1153       /* Translate the PCRE error code to GRegexError and use a translated
1154        * error message if possible */
1155       translate_compile_error (&errcode, &errmsg);
1156
1157       /* PCRE uses byte offsets but we want to show character offsets */
1158       erroffset = g_utf8_pointer_to_offset (pattern, &pattern[erroffset]);
1159
1160       tmp_error = g_error_new (G_REGEX_ERROR, errcode,
1161                                _("Error while compiling regular "
1162                                  "expression %s at char %d: %s"),
1163                                pattern, erroffset, errmsg);
1164       g_propagate_error (error, tmp_error);
1165
1166       return NULL;
1167     }
1168
1169   /* For options set at the beginning of the pattern, pcre puts them into
1170    * compile options, e.g. "(?i)foo" will make the pcre structure store
1171    * PCRE_CASELESS even though it wasn't explicitly given for compilation. */
1172   pcre_fullinfo (re, NULL, PCRE_INFO_OPTIONS, &pcre_compile_options);
1173   compile_options = pcre_compile_options;
1174
1175   if (!(compile_options & G_REGEX_DUPNAMES))
1176     {
1177       gboolean jchanged = FALSE;
1178       pcre_fullinfo (re, NULL, PCRE_INFO_JCHANGED, &jchanged);
1179       if (jchanged)
1180         compile_options |= G_REGEX_DUPNAMES;
1181     }
1182
1183   regex = g_new0 (GRegex, 1);
1184   regex->ref_count = 1;
1185   regex->pattern = g_strdup (pattern);
1186   regex->pcre_re = re;
1187   regex->compile_opts = compile_options;
1188   regex->match_opts = match_options;
1189
1190   if (optimize)
1191     {
1192       regex->extra = pcre_study (regex->pcre_re, 0, &errmsg);
1193       if (errmsg != NULL)
1194         {
1195           GError *tmp_error = g_error_new (G_REGEX_ERROR,
1196                                            G_REGEX_ERROR_OPTIMIZE, 
1197                                            _("Error while optimizing "
1198                                              "regular expression %s: %s"),
1199                                            regex->pattern,
1200                                            errmsg);
1201           g_propagate_error (error, tmp_error);
1202
1203           g_regex_unref (regex);
1204           return NULL;
1205         }
1206     }
1207
1208   return regex;
1209 }
1210
1211 /**
1212  * g_regex_get_pattern:
1213  * @regex: a #GRegex structure
1214  *
1215  * Gets the pattern string associated with @regex, i.e. a copy of 
1216  * the string passed to g_regex_new().
1217  *
1218  * Returns: the pattern of @regex
1219  *
1220  * Since: 2.14
1221  */
1222 const gchar *
1223 g_regex_get_pattern (const GRegex *regex)
1224 {
1225   g_return_val_if_fail (regex != NULL, NULL);
1226
1227   return regex->pattern;
1228 }
1229
1230 /**
1231  * g_regex_get_max_backref:
1232  * @regex: a #GRegex
1233  *  
1234  * Returns the number of the highest back reference
1235  * in the pattern, or 0 if the pattern does not contain
1236  * back references.
1237  *
1238  * Returns: the number of the highest back reference
1239  *
1240  * Since: 2.14
1241  */
1242 gint
1243 g_regex_get_max_backref (const GRegex *regex)
1244 {
1245   gint value;
1246
1247   pcre_fullinfo (regex->pcre_re, regex->extra,
1248                  PCRE_INFO_BACKREFMAX, &value);
1249
1250   return value;
1251 }
1252
1253 /**
1254  * g_regex_get_capture_count:
1255  * @regex: a #GRegex
1256  *
1257  * Returns the number of capturing subpatterns in the pattern.
1258  *
1259  * Returns: the number of capturing subpatterns
1260  *
1261  * Since: 2.14
1262  */
1263 gint
1264 g_regex_get_capture_count (const GRegex *regex)
1265 {
1266   gint value;
1267
1268   pcre_fullinfo (regex->pcre_re, regex->extra,
1269                  PCRE_INFO_CAPTURECOUNT, &value);
1270
1271   return value;
1272 }
1273
1274 /**
1275  * g_regex_match_simple:
1276  * @pattern: the regular expression
1277  * @string: the string to scan for matches
1278  * @compile_options: compile options for the regular expression, or 0
1279  * @match_options: match options, or 0
1280  *
1281  * Scans for a match in @string for @pattern.
1282  *
1283  * This function is equivalent to g_regex_match() but it does not
1284  * require to compile the pattern with g_regex_new(), avoiding some
1285  * lines of code when you need just to do a match without extracting
1286  * substrings, capture counts, and so on.
1287  *
1288  * If this function is to be called on the same @pattern more than
1289  * once, it's more efficient to compile the pattern once with
1290  * g_regex_new() and then use g_regex_match().
1291  *
1292  * Returns: %TRUE if the string matched, %FALSE otherwise
1293  *
1294  * Since: 2.14
1295  */
1296 gboolean
1297 g_regex_match_simple (const gchar        *pattern, 
1298                       const gchar        *string, 
1299                       GRegexCompileFlags  compile_options,
1300                       GRegexMatchFlags    match_options)
1301 {
1302   GRegex *regex;
1303   gboolean result;
1304
1305   regex = g_regex_new (pattern, compile_options, 0, NULL);
1306   if (!regex)
1307     return FALSE;
1308   result = g_regex_match_full (regex, string, -1, 0, match_options, NULL, NULL);
1309   g_regex_unref (regex);
1310   return result;
1311 }
1312
1313 /**
1314  * g_regex_match:
1315  * @regex: a #GRegex structure from g_regex_new()
1316  * @string: the string to scan for matches
1317  * @match_options: match options
1318  * @match_info: pointer to location where to store the #GMatchInfo, 
1319  *   or %NULL if you do not need it
1320  *
1321  * Scans for a match in string for the pattern in @regex. 
1322  * The @match_options are combined with the match options specified 
1323  * when the @regex structure was created, letting you have more 
1324  * flexibility in reusing #GRegex structures.
1325  *
1326  * A #GMatchInfo structure, used to get information on the match, 
1327  * is stored in @match_info if not %NULL. Note that if @match_info 
1328  * is not %NULL then it is created even if the function returns %FALSE, 
1329  * i.e. you must free it regardless if regular expression actually matched.
1330  *
1331  * To retrieve all the non-overlapping matches of the pattern in 
1332  * string you can use g_match_info_next().
1333  *
1334  * |[
1335  * static void
1336  * print_uppercase_words (const gchar *string)
1337  * {
1338  *   /&ast; Print all uppercase-only words. &ast;/
1339  *   GRegex *regex;
1340  *   GMatchInfo *match_info;
1341  *   &nbsp;
1342  *   regex = g_regex_new ("[A-Z]+", 0, 0, NULL);
1343  *   g_regex_match (regex, string, 0, &amp;match_info);
1344  *   while (g_match_info_matches (match_info))
1345  *     {
1346  *       gchar *word = g_match_info_fetch (match_info, 0);
1347  *       g_print ("Found: %s\n", word);
1348  *       g_free (word);
1349  *       g_match_info_next (match_info, NULL);
1350  *     }
1351  *   g_match_info_free (match_info);
1352  *   g_regex_unref (regex);
1353  * }
1354  * ]|
1355  *
1356  * @string is not copied and is used in #GMatchInfo internally. If 
1357  * you use any #GMatchInfo method (except g_match_info_free()) after 
1358  * freeing or modifying @string then the behaviour is undefined.
1359  *
1360  * Returns: %TRUE is the string matched, %FALSE otherwise
1361  *
1362  * Since: 2.14
1363  */
1364 gboolean
1365 g_regex_match (const GRegex      *regex, 
1366                const gchar       *string, 
1367                GRegexMatchFlags   match_options,
1368                GMatchInfo       **match_info)
1369 {
1370   return g_regex_match_full (regex, string, -1, 0, match_options,
1371                              match_info, NULL);
1372 }
1373
1374 /**
1375  * g_regex_match_full:
1376  * @regex: a #GRegex structure from g_regex_new()
1377  * @string: the string to scan for matches
1378  * @string_len: the length of @string, or -1 if @string is nul-terminated
1379  * @start_position: starting index of the string to match
1380  * @match_options: match options
1381  * @match_info: pointer to location where to store the #GMatchInfo, 
1382  *   or %NULL if you do not need it
1383  * @error: location to store the error occuring, or %NULL to ignore errors
1384  *
1385  * Scans for a match in string for the pattern in @regex. 
1386  * The @match_options are combined with the match options specified 
1387  * when the @regex structure was created, letting you have more 
1388  * flexibility in reusing #GRegex structures.
1389  *
1390  * Setting @start_position differs from just passing over a shortened 
1391  * string and setting #G_REGEX_MATCH_NOTBOL in the case of a pattern 
1392  * that begins with any kind of lookbehind assertion, such as "\b".
1393  *
1394  * A #GMatchInfo structure, used to get information on the match, is 
1395  * stored in @match_info if not %NULL. Note that if @match_info is 
1396  * not %NULL then it is created even if the function returns %FALSE, 
1397  * i.e. you must free it regardless if regular expression actually 
1398  * matched.
1399  *
1400  * @string is not copied and is used in #GMatchInfo internally. If 
1401  * you use any #GMatchInfo method (except g_match_info_free()) after 
1402  * freeing or modifying @string then the behaviour is undefined.
1403  *
1404  * To retrieve all the non-overlapping matches of the pattern in 
1405  * string you can use g_match_info_next().
1406  *
1407  * |[
1408  * static void
1409  * print_uppercase_words (const gchar *string)
1410  * {
1411  *   /&ast; Print all uppercase-only words. &ast;/
1412  *   GRegex *regex;
1413  *   GMatchInfo *match_info;
1414  *   GError *error = NULL;
1415  *   &nbsp;
1416  *   regex = g_regex_new ("[A-Z]+", 0, 0, NULL);
1417  *   g_regex_match_full (regex, string, -1, 0, 0, &amp;match_info, &amp;error);
1418  *   while (g_match_info_matches (match_info))
1419  *     {
1420  *       gchar *word = g_match_info_fetch (match_info, 0);
1421  *       g_print ("Found: %s\n", word);
1422  *       g_free (word);
1423  *       g_match_info_next (match_info, &amp;error);
1424  *     }
1425  *   g_match_info_free (match_info);
1426  *   g_regex_unref (regex);
1427  *   if (error != NULL)
1428  *     {
1429  *       g_printerr ("Error while matching: %s\n", error->message);
1430  *       g_error_free (error);
1431  *     }
1432  * }
1433  * ]|
1434  *
1435  * Returns: %TRUE is the string matched, %FALSE otherwise
1436  *
1437  * Since: 2.14
1438  */
1439 gboolean
1440 g_regex_match_full (const GRegex      *regex,
1441                     const gchar       *string,
1442                     gssize             string_len,
1443                     gint               start_position,
1444                     GRegexMatchFlags   match_options,
1445                     GMatchInfo       **match_info,
1446                     GError           **error)
1447 {
1448   GMatchInfo *info;
1449   gboolean match_ok;
1450
1451   g_return_val_if_fail (regex != NULL, FALSE);
1452   g_return_val_if_fail (string != NULL, FALSE);
1453   g_return_val_if_fail (start_position >= 0, FALSE);
1454   g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
1455   g_return_val_if_fail ((match_options & ~G_REGEX_MATCH_MASK) == 0, FALSE);
1456
1457   info = match_info_new (regex, string, string_len, start_position,
1458                          match_options, FALSE);
1459   match_ok = g_match_info_next (info, error);
1460   if (match_info != NULL)
1461     *match_info = info;
1462   else
1463     g_match_info_free (info);
1464
1465   return match_ok;
1466 }
1467
1468 /**
1469  * g_regex_match_all:
1470  * @regex: a #GRegex structure from g_regex_new()
1471  * @string: the string to scan for matches
1472  * @match_options: match options
1473  * @match_info: pointer to location where to store the #GMatchInfo, 
1474  *   or %NULL if you do not need it
1475  *
1476  * Using the standard algorithm for regular expression matching only 
1477  * the longest match in the string is retrieved. This function uses 
1478  * a different algorithm so it can retrieve all the possible matches.
1479  * For more documentation see g_regex_match_all_full().
1480  *
1481  * A #GMatchInfo structure, used to get information on the match, is 
1482  * stored in @match_info if not %NULL. Note that if @match_info is 
1483  * not %NULL then it is created even if the function returns %FALSE, 
1484  * i.e. you must free it regardless if regular expression actually 
1485  * matched.
1486  *
1487  * @string is not copied and is used in #GMatchInfo internally. If 
1488  * you use any #GMatchInfo method (except g_match_info_free()) after 
1489  * freeing or modifying @string then the behaviour is undefined.
1490  * 
1491  * Returns: %TRUE is the string matched, %FALSE otherwise
1492  *
1493  * Since: 2.14
1494  */
1495 gboolean
1496 g_regex_match_all (const GRegex      *regex,
1497                    const gchar       *string,
1498                    GRegexMatchFlags   match_options,
1499                    GMatchInfo       **match_info)
1500 {
1501   return g_regex_match_all_full (regex, string, -1, 0, match_options,
1502                                  match_info, NULL);
1503 }
1504
1505 /**
1506  * g_regex_match_all_full:
1507  * @regex: a #GRegex structure from g_regex_new()
1508  * @string: the string to scan for matches
1509  * @string_len: the length of @string, or -1 if @string is nul-terminated
1510  * @start_position: starting index of the string to match
1511  * @match_options: match options
1512  * @match_info: pointer to location where to store the #GMatchInfo, 
1513  *   or %NULL if you do not need it
1514  * @error: location to store the error occuring, or %NULL to ignore errors
1515  *
1516  * Using the standard algorithm for regular expression matching only 
1517  * the longest match in the string is retrieved, it is not possibile 
1518  * to obtain all the available matches. For instance matching
1519  * "&lt;a&gt; &lt;b&gt; &lt;c&gt;" against the pattern "&lt;.*&gt;" 
1520  * you get "&lt;a&gt; &lt;b&gt; &lt;c&gt;".
1521  *
1522  * This function uses a different algorithm (called DFA, i.e. deterministic
1523  * finite automaton), so it can retrieve all the possible matches, all
1524  * starting at the same point in the string. For instance matching
1525  * "&lt;a&gt; &lt;b&gt; &lt;c&gt;" against the pattern "&lt;.*&gt;" 
1526  * you would obtain three matches: "&lt;a&gt; &lt;b&gt; &lt;c&gt;",
1527  * "&lt;a&gt; &lt;b&gt;" and "&lt;a&gt;".
1528  *
1529  * The number of matched strings is retrieved using
1530  * g_match_info_get_match_count(). To obtain the matched strings and 
1531  * their position you can use, respectively, g_match_info_fetch() and 
1532  * g_match_info_fetch_pos(). Note that the strings are returned in 
1533  * reverse order of length; that is, the longest matching string is 
1534  * given first.
1535  *
1536  * Note that the DFA algorithm is slower than the standard one and it 
1537  * is not able to capture substrings, so backreferences do not work.
1538  *
1539  * Setting @start_position differs from just passing over a shortened 
1540  * string and setting #G_REGEX_MATCH_NOTBOL in the case of a pattern 
1541  * that begins with any kind of lookbehind assertion, such as "\b".
1542  *
1543  * A #GMatchInfo structure, used to get information on the match, is 
1544  * stored in @match_info if not %NULL. Note that if @match_info is 
1545  * not %NULL then it is created even if the function returns %FALSE, 
1546  * i.e. you must free it regardless if regular expression actually 
1547  * matched.
1548  *
1549  * @string is not copied and is used in #GMatchInfo internally. If 
1550  * you use any #GMatchInfo method (except g_match_info_free()) after 
1551  * freeing or modifying @string then the behaviour is undefined.
1552  *
1553  * Returns: %TRUE is the string matched, %FALSE otherwise
1554  *
1555  * Since: 2.14
1556  */
1557 gboolean
1558 g_regex_match_all_full (const GRegex      *regex,
1559                         const gchar       *string,
1560                         gssize             string_len,
1561                         gint               start_position,
1562                         GRegexMatchFlags   match_options,
1563                         GMatchInfo       **match_info,
1564                         GError           **error)
1565 {
1566   GMatchInfo *info;
1567   gboolean done;
1568
1569   g_return_val_if_fail (regex != NULL, FALSE);
1570   g_return_val_if_fail (string != NULL, FALSE);
1571   g_return_val_if_fail (start_position >= 0, FALSE);
1572   g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
1573   g_return_val_if_fail ((match_options & ~G_REGEX_MATCH_MASK) == 0, FALSE);
1574
1575   info = match_info_new (regex, string, string_len, start_position,
1576                          match_options, TRUE);
1577
1578   done = FALSE;
1579   while (!done)
1580     {
1581       done = TRUE;
1582       info->matches = pcre_dfa_exec (regex->pcre_re, regex->extra,
1583                                      info->string, info->string_len,
1584                                      info->pos,
1585                                      regex->match_opts | match_options,
1586                                      info->offsets, info->n_offsets,
1587                                      info->workspace, info->n_workspace);
1588       if (info->matches == PCRE_ERROR_DFA_WSSIZE)
1589         {
1590           /* info->workspace is too small. */
1591           info->n_workspace *= 2;
1592           info->workspace = g_realloc (info->workspace,
1593                                        info->n_workspace * sizeof (gint));
1594           done = FALSE;
1595         }
1596       else if (info->matches == 0)
1597         {
1598           /* info->offsets is too small. */
1599           info->n_offsets *= 2;
1600           info->offsets = g_realloc (info->offsets,
1601                                      info->n_offsets * sizeof (gint));
1602           done = FALSE;
1603         }
1604       else if (IS_PCRE_ERROR (info->matches))
1605         {
1606           g_set_error (error, G_REGEX_ERROR, G_REGEX_ERROR_MATCH,
1607                        _("Error while matching regular expression %s: %s"),
1608                        regex->pattern, match_error (info->matches));
1609         }
1610     }
1611
1612   /* set info->pos to -1 so that a call to g_match_info_next() fails. */
1613   info->pos = -1;
1614
1615   if (match_info != NULL)
1616     *match_info = info;
1617   else
1618     g_match_info_free (info);
1619
1620   return info->matches >= 0;
1621 }
1622
1623 /**
1624  * g_regex_get_string_number:
1625  * @regex: #GRegex structure
1626  * @name: name of the subexpression
1627  *
1628  * Retrieves the number of the subexpression named @name.
1629  *
1630  * Returns: The number of the subexpression or -1 if @name 
1631  *   does not exists
1632  *
1633  * Since: 2.14
1634  */
1635 gint
1636 g_regex_get_string_number (const GRegex *regex,
1637                            const gchar  *name)
1638 {
1639   gint num;
1640
1641   g_return_val_if_fail (regex != NULL, -1);
1642   g_return_val_if_fail (name != NULL, -1);
1643
1644   num = pcre_get_stringnumber (regex->pcre_re, name);
1645   if (num == PCRE_ERROR_NOSUBSTRING)
1646     num = -1;
1647
1648   return num;
1649 }
1650
1651 /**
1652  * g_regex_split_simple:
1653  * @pattern: the regular expression
1654  * @string: the string to scan for matches
1655  * @compile_options: compile options for the regular expression, or 0
1656  * @match_options: match options, or 0
1657  *
1658  * Breaks the string on the pattern, and returns an array of 
1659  * the tokens. If the pattern contains capturing parentheses, 
1660  * then the text for each of the substrings will also be returned. 
1661  * If the pattern does not match anywhere in the string, then the 
1662  * whole string is returned as the first token.
1663  *
1664  * This function is equivalent to g_regex_split() but it does 
1665  * not require to compile the pattern with g_regex_new(), avoiding 
1666  * some lines of code when you need just to do a split without 
1667  * extracting substrings, capture counts, and so on.
1668  *
1669  * If this function is to be called on the same @pattern more than
1670  * once, it's more efficient to compile the pattern once with
1671  * g_regex_new() and then use g_regex_split().
1672  *
1673  * As a special case, the result of splitting the empty string "" 
1674  * is an empty vector, not a vector containing a single string. 
1675  * The reason for this special case is that being able to represent 
1676  * a empty vector is typically more useful than consistent handling 
1677  * of empty elements. If you do need to represent empty elements, 
1678  * you'll need to check for the empty string before calling this 
1679  * function.
1680  *
1681  * A pattern that can match empty strings splits @string into 
1682  * separate characters wherever it matches the empty string between 
1683  * characters. For example splitting "ab c" using as a separator 
1684  * "\s*", you will get "a", "b" and "c".
1685  *
1686  * Returns: a %NULL-terminated array of strings. Free it using g_strfreev()
1687  *
1688  * Since: 2.14
1689  **/
1690 gchar **
1691 g_regex_split_simple (const gchar        *pattern,
1692                       const gchar        *string, 
1693                       GRegexCompileFlags  compile_options,
1694                       GRegexMatchFlags    match_options)
1695 {
1696   GRegex *regex;
1697   gchar **result;
1698
1699   regex = g_regex_new (pattern, compile_options, 0, NULL);
1700   if (!regex)
1701     return NULL;
1702   result = g_regex_split_full (regex, string, -1, 0, match_options, 0, NULL);
1703   g_regex_unref (regex);
1704   return result;
1705 }
1706
1707 /**
1708  * g_regex_split:
1709  * @regex: a #GRegex structure
1710  * @string: the string to split with the pattern
1711  * @match_options: match time option flags
1712  *
1713  * Breaks the string on the pattern, and returns an array of the tokens.
1714  * If the pattern contains capturing parentheses, then the text for each
1715  * of the substrings will also be returned. If the pattern does not match
1716  * anywhere in the string, then the whole string is returned as the first
1717  * token.
1718  *
1719  * As a special case, the result of splitting the empty string "" is an
1720  * empty vector, not a vector containing a single string. The reason for
1721  * this special case is that being able to represent a empty vector is
1722  * typically more useful than consistent handling of empty elements. If
1723  * you do need to represent empty elements, you'll need to check for the
1724  * empty string before calling this function.
1725  *
1726  * A pattern that can match empty strings splits @string into separate
1727  * characters wherever it matches the empty string between characters.
1728  * For example splitting "ab c" using as a separator "\s*", you will get
1729  * "a", "b" and "c".
1730  *
1731  * Returns: a %NULL-terminated gchar ** array. Free it using g_strfreev()
1732  *
1733  * Since: 2.14
1734  **/
1735 gchar **
1736 g_regex_split (const GRegex     *regex, 
1737                const gchar      *string, 
1738                GRegexMatchFlags  match_options)
1739 {
1740   return g_regex_split_full (regex, string, -1, 0,
1741                              match_options, 0, NULL);
1742 }
1743
1744 /**
1745  * g_regex_split_full:
1746  * @regex: a #GRegex structure
1747  * @string: the string to split with the pattern
1748  * @string_len: the length of @string, or -1 if @string is nul-terminated
1749  * @start_position: starting index of the string to match
1750  * @match_options: match time option flags
1751  * @max_tokens: the maximum number of tokens to split @string into. 
1752  *   If this is less than 1, the string is split completely
1753  * @error: return location for a #GError
1754  *
1755  * Breaks the string on the pattern, and returns an array of the tokens.
1756  * If the pattern contains capturing parentheses, then the text for each
1757  * of the substrings will also be returned. If the pattern does not match
1758  * anywhere in the string, then the whole string is returned as the first
1759  * token.
1760  *
1761  * As a special case, the result of splitting the empty string "" is an
1762  * empty vector, not a vector containing a single string. The reason for
1763  * this special case is that being able to represent a empty vector is
1764  * typically more useful than consistent handling of empty elements. If
1765  * you do need to represent empty elements, you'll need to check for the
1766  * empty string before calling this function.
1767  *
1768  * A pattern that can match empty strings splits @string into separate
1769  * characters wherever it matches the empty string between characters.
1770  * For example splitting "ab c" using as a separator "\s*", you will get
1771  * "a", "b" and "c".
1772  *
1773  * Setting @start_position differs from just passing over a shortened 
1774  * string and setting #G_REGEX_MATCH_NOTBOL in the case of a pattern 
1775  * that begins with any kind of lookbehind assertion, such as "\b".
1776  *
1777  * Returns: a %NULL-terminated gchar ** array. Free it using g_strfreev()
1778  *
1779  * Since: 2.14
1780  **/
1781 gchar **
1782 g_regex_split_full (const GRegex      *regex, 
1783                     const gchar       *string, 
1784                     gssize             string_len,
1785                     gint               start_position,
1786                     GRegexMatchFlags   match_options,
1787                     gint               max_tokens,
1788                     GError           **error)
1789 {
1790   GError *tmp_error = NULL;
1791   GMatchInfo *match_info;
1792   GList *list, *last;
1793   gint i;
1794   gint token_count;
1795   gboolean match_ok;
1796   /* position of the last separator. */
1797   gint last_separator_end;
1798   /* was the last match 0 bytes long? */
1799   gboolean last_match_is_empty;
1800   /* the returned array of char **s */
1801   gchar **string_list;
1802
1803   g_return_val_if_fail (regex != NULL, NULL);
1804   g_return_val_if_fail (string != NULL, NULL);
1805   g_return_val_if_fail (start_position >= 0, NULL);
1806   g_return_val_if_fail (error == NULL || *error == NULL, NULL);
1807   g_return_val_if_fail ((match_options & ~G_REGEX_MATCH_MASK) == 0, NULL);
1808
1809   if (max_tokens <= 0)
1810     max_tokens = G_MAXINT;
1811
1812   if (string_len < 0)
1813     string_len = strlen (string);
1814
1815   /* zero-length string */
1816   if (string_len - start_position == 0)
1817     return g_new0 (gchar *, 1);
1818
1819   if (max_tokens == 1)
1820     {
1821       string_list = g_new0 (gchar *, 2);
1822       string_list[0] = g_strndup (&string[start_position],
1823                                   string_len - start_position);
1824       return string_list;
1825     }
1826
1827   list = NULL;
1828   token_count = 0;
1829   last_separator_end = start_position;
1830   last_match_is_empty = FALSE;
1831
1832   match_ok = g_regex_match_full (regex, string, string_len, start_position,
1833                                  match_options, &match_info, &tmp_error);
1834   while (tmp_error == NULL)
1835     {
1836       if (match_ok)
1837         {
1838           last_match_is_empty =
1839                     (match_info->offsets[0] == match_info->offsets[1]);
1840
1841           /* we need to skip empty separators at the same position of the end
1842            * of another separator. e.g. the string is "a b" and the separator
1843            * is " *", so from 1 to 2 we have a match and at position 2 we have
1844            * an empty match. */
1845           if (last_separator_end != match_info->offsets[1])
1846             {
1847               gchar *token;
1848               gint match_count;
1849
1850               token = g_strndup (string + last_separator_end,
1851                                  match_info->offsets[0] - last_separator_end);
1852               list = g_list_prepend (list, token);
1853               token_count++;
1854
1855               /* if there were substrings, these need to be added to
1856                * the list. */
1857               match_count = g_match_info_get_match_count (match_info);
1858               if (match_count > 1)
1859                 {
1860                   for (i = 1; i < match_count; i++)
1861                     list = g_list_prepend (list, g_match_info_fetch (match_info, i));
1862                 }
1863             }
1864         }
1865       else
1866         {
1867           /* if there was no match, copy to end of string. */
1868           if (!last_match_is_empty)
1869             {
1870               gchar *token = g_strndup (string + last_separator_end,
1871                                         match_info->string_len - last_separator_end);
1872               list = g_list_prepend (list, token);
1873             }
1874           /* no more tokens, end the loop. */
1875           break;
1876         }
1877
1878       /* -1 to leave room for the last part. */
1879       if (token_count >= max_tokens - 1)
1880         {
1881           /* we have reached the maximum number of tokens, so we copy
1882            * the remaining part of the string. */
1883           if (last_match_is_empty)
1884             {
1885               /* the last match was empty, so we have moved one char
1886                * after the real position to avoid empty matches at the
1887                * same position. */
1888               match_info->pos = PREV_CHAR (regex, &string[match_info->pos]) - string;
1889             }
1890           /* the if is needed in the case we have terminated the available
1891            * tokens, but we are at the end of the string, so there are no
1892            * characters left to copy. */
1893           if (string_len > match_info->pos)
1894             {
1895               gchar *token = g_strndup (string + match_info->pos,
1896                                         string_len - match_info->pos);
1897               list = g_list_prepend (list, token);
1898             }
1899           /* end the loop. */
1900           break;
1901         }
1902
1903       last_separator_end = match_info->pos;
1904       if (last_match_is_empty)
1905         /* if the last match was empty, g_match_info_next() has moved
1906          * forward to avoid infinite loops, but we still need to copy that
1907          * character. */
1908         last_separator_end = PREV_CHAR (regex, &string[last_separator_end]) - string;
1909
1910       match_ok = g_match_info_next (match_info, &tmp_error);
1911     }
1912   g_match_info_free (match_info);
1913   if (tmp_error != NULL)
1914     {
1915       g_propagate_error (error, tmp_error);
1916       g_list_foreach (list, (GFunc)g_free, NULL);
1917       g_list_free (list);
1918       match_info->pos = -1;
1919       return NULL;
1920     }
1921
1922   string_list = g_new (gchar *, g_list_length (list) + 1);
1923   i = 0;
1924   for (last = g_list_last (list); last; last = g_list_previous (last))
1925     string_list[i++] = last->data;
1926   string_list[i] = NULL;
1927   g_list_free (list);
1928
1929   return string_list;
1930 }
1931
1932 enum
1933 {
1934   REPL_TYPE_STRING,
1935   REPL_TYPE_CHARACTER,
1936   REPL_TYPE_SYMBOLIC_REFERENCE,
1937   REPL_TYPE_NUMERIC_REFERENCE,
1938   REPL_TYPE_CHANGE_CASE
1939 }; 
1940
1941 typedef enum
1942 {
1943   CHANGE_CASE_NONE         = 1 << 0,
1944   CHANGE_CASE_UPPER        = 1 << 1,
1945   CHANGE_CASE_LOWER        = 1 << 2,
1946   CHANGE_CASE_UPPER_SINGLE = 1 << 3,
1947   CHANGE_CASE_LOWER_SINGLE = 1 << 4,
1948   CHANGE_CASE_SINGLE_MASK  = CHANGE_CASE_UPPER_SINGLE | CHANGE_CASE_LOWER_SINGLE,
1949   CHANGE_CASE_LOWER_MASK   = CHANGE_CASE_LOWER | CHANGE_CASE_LOWER_SINGLE,
1950   CHANGE_CASE_UPPER_MASK   = CHANGE_CASE_UPPER | CHANGE_CASE_UPPER_SINGLE
1951 } ChangeCase;
1952
1953 struct _InterpolationData
1954 {
1955   gchar     *text;   
1956   gint       type;   
1957   gint       num;
1958   gchar      c;
1959   ChangeCase change_case;
1960 };
1961
1962 static void
1963 free_interpolation_data (InterpolationData *data)
1964 {
1965   g_free (data->text);
1966   g_free (data);
1967 }
1968
1969 static const gchar *
1970 expand_escape (const gchar        *replacement,
1971                const gchar        *p, 
1972                InterpolationData  *data,
1973                GError            **error)
1974 {
1975   const gchar *q, *r;
1976   gint x, d, h, i;
1977   const gchar *error_detail;
1978   gint base = 0;
1979   GError *tmp_error = NULL;
1980
1981   p++;
1982   switch (*p)
1983     {
1984     case 't':
1985       p++;
1986       data->c = '\t';
1987       data->type = REPL_TYPE_CHARACTER;
1988       break;
1989     case 'n':
1990       p++;
1991       data->c = '\n';
1992       data->type = REPL_TYPE_CHARACTER;
1993       break;
1994     case 'v':
1995       p++;
1996       data->c = '\v';
1997       data->type = REPL_TYPE_CHARACTER;
1998       break;
1999     case 'r':
2000       p++;
2001       data->c = '\r';
2002       data->type = REPL_TYPE_CHARACTER;
2003       break;
2004     case 'f':
2005       p++;
2006       data->c = '\f';
2007       data->type = REPL_TYPE_CHARACTER;
2008       break;
2009     case 'a':
2010       p++;
2011       data->c = '\a';
2012       data->type = REPL_TYPE_CHARACTER;
2013       break;
2014     case 'b':
2015       p++;
2016       data->c = '\b';
2017       data->type = REPL_TYPE_CHARACTER;
2018       break;
2019     case '\\':
2020       p++;
2021       data->c = '\\';
2022       data->type = REPL_TYPE_CHARACTER;
2023       break;
2024     case 'x':
2025       p++;
2026       x = 0;
2027       if (*p == '{')
2028         {
2029           p++;
2030           do 
2031             {
2032               h = g_ascii_xdigit_value (*p);
2033               if (h < 0)
2034                 {
2035                   error_detail = _("hexadecimal digit or '}' expected");
2036                   goto error;
2037                 }
2038               x = x * 16 + h;
2039               p++;
2040             }
2041           while (*p != '}');
2042           p++;
2043         }
2044       else
2045         {
2046           for (i = 0; i < 2; i++)
2047             {
2048               h = g_ascii_xdigit_value (*p);
2049               if (h < 0)
2050                 {
2051                   error_detail = _("hexadecimal digit expected");
2052                   goto error;
2053                 }
2054               x = x * 16 + h;
2055               p++;
2056             }
2057         }
2058       data->type = REPL_TYPE_STRING;
2059       data->text = g_new0 (gchar, 8);
2060       g_unichar_to_utf8 (x, data->text);
2061       break;
2062     case 'l':
2063       p++;
2064       data->type = REPL_TYPE_CHANGE_CASE;
2065       data->change_case = CHANGE_CASE_LOWER_SINGLE;
2066       break;
2067     case 'u':
2068       p++;
2069       data->type = REPL_TYPE_CHANGE_CASE;
2070       data->change_case = CHANGE_CASE_UPPER_SINGLE;
2071       break;
2072     case 'L':
2073       p++;
2074       data->type = REPL_TYPE_CHANGE_CASE;
2075       data->change_case = CHANGE_CASE_LOWER;
2076       break;
2077     case 'U':
2078       p++;
2079       data->type = REPL_TYPE_CHANGE_CASE;
2080       data->change_case = CHANGE_CASE_UPPER;
2081       break;
2082     case 'E':
2083       p++;
2084       data->type = REPL_TYPE_CHANGE_CASE;
2085       data->change_case = CHANGE_CASE_NONE;
2086       break;
2087     case 'g':
2088       p++;
2089       if (*p != '<')
2090         {
2091           error_detail = _("missing '<' in symbolic reference");
2092           goto error;
2093         }
2094       q = p + 1;
2095       do 
2096         {
2097           p++;
2098           if (!*p)
2099             {
2100               error_detail = _("unfinished symbolic reference");
2101               goto error;
2102             }
2103         }
2104       while (*p != '>');
2105       if (p - q == 0)
2106         {
2107           error_detail = _("zero-length symbolic reference");
2108           goto error;
2109         }
2110       if (g_ascii_isdigit (*q))
2111         {
2112           x = 0;
2113           do 
2114             {
2115               h = g_ascii_digit_value (*q);
2116               if (h < 0)
2117                 {
2118                   error_detail = _("digit expected");
2119                   p = q;
2120                   goto error;
2121                 }
2122               x = x * 10 + h;
2123               q++;
2124             }
2125           while (q != p);
2126           data->num = x;
2127           data->type = REPL_TYPE_NUMERIC_REFERENCE;
2128         }
2129       else
2130         {
2131           r = q;
2132           do 
2133             {
2134               if (!g_ascii_isalnum (*r))
2135                 {
2136                   error_detail = _("illegal symbolic reference");
2137                   p = r;
2138                   goto error;
2139                 }
2140               r++;
2141             }
2142           while (r != p);
2143           data->text = g_strndup (q, p - q);
2144           data->type = REPL_TYPE_SYMBOLIC_REFERENCE;
2145         }
2146       p++;
2147       break;
2148     case '0':
2149       /* if \0 is followed by a number is an octal number representing a
2150        * character, else it is a numeric reference. */
2151       if (g_ascii_digit_value (*g_utf8_next_char (p)) >= 0)
2152         {
2153           base = 8;
2154           p = g_utf8_next_char (p);
2155         }
2156     case '1':
2157     case '2':
2158     case '3':
2159     case '4':
2160     case '5':
2161     case '6':
2162     case '7':
2163     case '8':
2164     case '9':
2165       x = 0;
2166       d = 0;
2167       for (i = 0; i < 3; i++)
2168         {
2169           h = g_ascii_digit_value (*p);
2170           if (h < 0) 
2171             break;
2172           if (h > 7)
2173             {
2174               if (base == 8)
2175                 break;
2176               else 
2177                 base = 10;
2178             }
2179           if (i == 2 && base == 10)
2180             break;
2181           x = x * 8 + h;
2182           d = d * 10 + h;
2183           p++;
2184         }
2185       if (base == 8 || i == 3)
2186         {
2187           data->type = REPL_TYPE_STRING;
2188           data->text = g_new0 (gchar, 8);
2189           g_unichar_to_utf8 (x, data->text);
2190         }
2191       else
2192         {
2193           data->type = REPL_TYPE_NUMERIC_REFERENCE;
2194           data->num = d;
2195         }
2196       break;
2197     case 0:
2198       error_detail = _("stray final '\\'");
2199       goto error;
2200       break;
2201     default:
2202       error_detail = _("unknown escape sequence");
2203       goto error;
2204     }
2205
2206   return p;
2207
2208  error:
2209   /* G_GSSIZE_FORMAT doesn't work with gettext, so we use %lu */
2210   tmp_error = g_error_new (G_REGEX_ERROR, 
2211                            G_REGEX_ERROR_REPLACE,
2212                            _("Error while parsing replacement "
2213                              "text \"%s\" at char %lu: %s"),
2214                            replacement, 
2215                            (gulong)(p - replacement),
2216                            error_detail);
2217   g_propagate_error (error, tmp_error);
2218
2219   return NULL;
2220 }
2221
2222 static GList *
2223 split_replacement (const gchar  *replacement,
2224                    GError      **error)
2225 {
2226   GList *list = NULL;
2227   InterpolationData *data;
2228   const gchar *p, *start;
2229   
2230   start = p = replacement; 
2231   while (*p)
2232     {
2233       if (*p == '\\')
2234         {
2235           data = g_new0 (InterpolationData, 1);
2236           start = p = expand_escape (replacement, p, data, error);
2237           if (p == NULL)
2238             {
2239               g_list_foreach (list, (GFunc)free_interpolation_data, NULL);
2240               g_list_free (list);
2241               free_interpolation_data (data);
2242
2243               return NULL;
2244             }
2245           list = g_list_prepend (list, data);
2246         }
2247       else
2248         {
2249           p++;
2250           if (*p == '\\' || *p == '\0')
2251             {
2252               if (p - start > 0)
2253                 {
2254                   data = g_new0 (InterpolationData, 1);
2255                   data->text = g_strndup (start, p - start);
2256                   data->type = REPL_TYPE_STRING;
2257                   list = g_list_prepend (list, data);
2258                 }
2259             }
2260         }
2261     }
2262
2263   return g_list_reverse (list);
2264 }
2265
2266 /* Change the case of c based on change_case. */
2267 #define CHANGE_CASE(c, change_case) \
2268         (((change_case) & CHANGE_CASE_LOWER_MASK) ? \
2269                 g_unichar_tolower (c) : \
2270                 g_unichar_toupper (c))
2271
2272 static void
2273 string_append (GString     *string,
2274                const gchar *text,
2275                ChangeCase  *change_case)
2276 {
2277   gunichar c;
2278
2279   if (text[0] == '\0')
2280     return;
2281
2282   if (*change_case == CHANGE_CASE_NONE)
2283     {
2284       g_string_append (string, text);
2285     }
2286   else if (*change_case & CHANGE_CASE_SINGLE_MASK)
2287     {
2288       c = g_utf8_get_char (text);
2289       g_string_append_unichar (string, CHANGE_CASE (c, *change_case));
2290       g_string_append (string, g_utf8_next_char (text));
2291       *change_case = CHANGE_CASE_NONE;
2292     }
2293   else
2294     {
2295       while (*text != '\0')
2296         {
2297           c = g_utf8_get_char (text);
2298           g_string_append_unichar (string, CHANGE_CASE (c, *change_case));
2299           text = g_utf8_next_char (text);
2300         }
2301     }
2302 }
2303
2304 static gboolean
2305 interpolate_replacement (const GMatchInfo *match_info,
2306                          GString          *result,
2307                          gpointer          data)
2308 {
2309   GList *list;
2310   InterpolationData *idata;
2311   gchar *match;
2312   ChangeCase change_case = CHANGE_CASE_NONE;
2313
2314   for (list = data; list; list = list->next)
2315     {
2316       idata = list->data;
2317       switch (idata->type)
2318         {
2319         case REPL_TYPE_STRING:
2320           string_append (result, idata->text, &change_case);
2321           break;
2322         case REPL_TYPE_CHARACTER:
2323           g_string_append_c (result, CHANGE_CASE (idata->c, change_case));
2324           if (change_case & CHANGE_CASE_SINGLE_MASK)
2325             change_case = CHANGE_CASE_NONE;
2326           break;
2327         case REPL_TYPE_NUMERIC_REFERENCE:
2328           match = g_match_info_fetch (match_info, idata->num);
2329           if (match)
2330             {
2331               string_append (result, match, &change_case);
2332               g_free (match);
2333             }
2334           break;
2335         case REPL_TYPE_SYMBOLIC_REFERENCE:
2336           match = g_match_info_fetch_named (match_info, idata->text);
2337           if (match)
2338             {
2339               string_append (result, match, &change_case);
2340               g_free (match);
2341             }
2342           break;
2343         case REPL_TYPE_CHANGE_CASE:
2344           change_case = idata->change_case;
2345           break;
2346         }
2347     }
2348
2349   return FALSE; 
2350 }
2351
2352 /* whether actual match_info is needed for replacement, i.e.
2353  * whether there are references
2354  */
2355 static gboolean
2356 interpolation_list_needs_match (GList *list)
2357 {
2358   while (list != NULL)
2359     {
2360       InterpolationData *data = list->data;
2361
2362       if (data->type == REPL_TYPE_SYMBOLIC_REFERENCE ||
2363           data->type == REPL_TYPE_NUMERIC_REFERENCE)
2364         {
2365           return TRUE;
2366         }
2367
2368       list = list->next;
2369     }
2370
2371   return FALSE;
2372 }
2373
2374 /**
2375  * g_regex_replace:
2376  * @regex: a #GRegex structure
2377  * @string: the string to perform matches against
2378  * @string_len: the length of @string, or -1 if @string is nul-terminated
2379  * @start_position: starting index of the string to match
2380  * @replacement: text to replace each match with
2381  * @match_options: options for the match
2382  * @error: location to store the error occuring, or %NULL to ignore errors
2383  *
2384  * Replaces all occurrences of the pattern in @regex with the
2385  * replacement text. Backreferences of the form '\number' or 
2386  * '\g&lt;number&gt;' in the replacement text are interpolated by the 
2387  * number-th captured subexpression of the match, '\g&lt;name&gt;' refers 
2388  * to the captured subexpression with the given name. '\0' refers to the 
2389  * complete match, but '\0' followed by a number is the octal representation 
2390  * of a character. To include a literal '\' in the replacement, write '\\'.
2391  * There are also escapes that changes the case of the following text:
2392  *
2393  * <variablelist>
2394  * <varlistentry><term>\l</term>
2395  * <listitem>
2396  * <para>Convert to lower case the next character</para>
2397  * </listitem>
2398  * </varlistentry>
2399  * <varlistentry><term>\u</term>
2400  * <listitem>
2401  * <para>Convert to upper case the next character</para>
2402  * </listitem>
2403  * </varlistentry>
2404  * <varlistentry><term>\L</term>
2405  * <listitem>
2406  * <para>Convert to lower case till \E</para>
2407  * </listitem>
2408  * </varlistentry>
2409  * <varlistentry><term>\U</term>
2410  * <listitem>
2411  * <para>Convert to upper case till \E</para>
2412  * </listitem>
2413  * </varlistentry>
2414  * <varlistentry><term>\E</term>
2415  * <listitem>
2416  * <para>End case modification</para>
2417  * </listitem>
2418  * </varlistentry>
2419  * </variablelist>
2420  *
2421  * If you do not need to use backreferences use g_regex_replace_literal().
2422  *
2423  * The @replacement string must be UTF-8 encoded even if #G_REGEX_RAW was
2424  * passed to g_regex_new(). If you want to use not UTF-8 encoded stings
2425  * you can use g_regex_replace_literal().
2426  *
2427  * Setting @start_position differs from just passing over a shortened 
2428  * string and setting #G_REGEX_MATCH_NOTBOL in the case of a pattern that 
2429  * begins with any kind of lookbehind assertion, such as "\b".
2430  *
2431  * Returns: a newly allocated string containing the replacements
2432  *
2433  * Since: 2.14
2434  */
2435 gchar *
2436 g_regex_replace (const GRegex      *regex, 
2437                  const gchar       *string, 
2438                  gssize             string_len,
2439                  gint               start_position,
2440                  const gchar       *replacement,
2441                  GRegexMatchFlags   match_options,
2442                  GError           **error)
2443 {
2444   gchar *result;
2445   GList *list;
2446   GError *tmp_error = NULL;
2447
2448   g_return_val_if_fail (regex != NULL, NULL);
2449   g_return_val_if_fail (string != NULL, NULL);
2450   g_return_val_if_fail (start_position >= 0, NULL);
2451   g_return_val_if_fail (replacement != NULL, NULL);
2452   g_return_val_if_fail (error == NULL || *error == NULL, NULL);
2453   g_return_val_if_fail ((match_options & ~G_REGEX_MATCH_MASK) == 0, NULL);
2454
2455   list = split_replacement (replacement, &tmp_error);
2456   if (tmp_error != NULL)
2457     {
2458       g_propagate_error (error, tmp_error);
2459       return NULL;
2460     }
2461
2462   result = g_regex_replace_eval (regex, 
2463                                  string, string_len, start_position,
2464                                  match_options,
2465                                  interpolate_replacement,
2466                                  (gpointer)list,
2467                                  &tmp_error);
2468   if (tmp_error != NULL)
2469     g_propagate_error (error, tmp_error);
2470
2471   g_list_foreach (list, (GFunc)free_interpolation_data, NULL);
2472   g_list_free (list);
2473
2474   return result;
2475 }
2476
2477 static gboolean
2478 literal_replacement (const GMatchInfo *match_info,
2479                      GString          *result,
2480                      gpointer          data)
2481 {
2482   g_string_append (result, data);
2483   return FALSE;
2484 }
2485
2486 /**
2487  * g_regex_replace_literal:
2488  * @regex: a #GRegex structure
2489  * @string: the string to perform matches against
2490  * @string_len: the length of @string, or -1 if @string is nul-terminated
2491  * @start_position: starting index of the string to match
2492  * @replacement: text to replace each match with
2493  * @match_options: options for the match
2494  * @error: location to store the error occuring, or %NULL to ignore errors
2495  *
2496  * Replaces all occurrences of the pattern in @regex with the
2497  * replacement text. @replacement is replaced literally, to
2498  * include backreferences use g_regex_replace().
2499  *
2500  * Setting @start_position differs from just passing over a 
2501  * shortened string and setting #G_REGEX_MATCH_NOTBOL in the 
2502  * case of a pattern that begins with any kind of lookbehind 
2503  * assertion, such as "\b".
2504  *
2505  * Returns: a newly allocated string containing the replacements
2506  *
2507  * Since: 2.14
2508  */
2509 gchar *
2510 g_regex_replace_literal (const GRegex      *regex,
2511                          const gchar       *string,
2512                          gssize             string_len,
2513                          gint               start_position,
2514                          const gchar       *replacement,
2515                          GRegexMatchFlags   match_options,
2516                          GError           **error)
2517 {
2518   g_return_val_if_fail (replacement != NULL, NULL);
2519   g_return_val_if_fail ((match_options & ~G_REGEX_MATCH_MASK) == 0, NULL);
2520
2521   return g_regex_replace_eval (regex,
2522                                string, string_len, start_position,
2523                                match_options,
2524                                literal_replacement,
2525                                (gpointer)replacement,
2526                                error);
2527 }
2528
2529 /**
2530  * g_regex_replace_eval:
2531  * @regex: a #GRegex structure from g_regex_new()
2532  * @string: string to perform matches against
2533  * @string_len: the length of @string, or -1 if @string is nul-terminated
2534  * @start_position: starting index of the string to match
2535  * @match_options: options for the match
2536  * @eval: a function to call for each match
2537  * @user_data: user data to pass to the function
2538  * @error: location to store the error occuring, or %NULL to ignore errors
2539  *
2540  * Replaces occurrences of the pattern in regex with the output of 
2541  * @eval for that occurrence.
2542  *
2543  * Setting @start_position differs from just passing over a shortened 
2544  * string and setting #G_REGEX_MATCH_NOTBOL in the case of a pattern 
2545  * that begins with any kind of lookbehind assertion, such as "\b".
2546  *
2547  * The following example uses g_regex_replace_eval() to replace multiple
2548  * strings at once:
2549  * |[
2550  * static gboolean 
2551  * eval_cb (const GMatchInfo *info,          
2552  *          GString          *res,
2553  *          gpointer          data)
2554  * {
2555  *   gchar *match;
2556  *   gchar *r;
2557  * 
2558  *    match = g_match_info_fetch (info, 0);
2559  *    r = g_hash_table_lookup ((GHashTable *)data, match);
2560  *    g_string_append (res, r);
2561  *    g_free (match);
2562  * 
2563  *    return FALSE;
2564  * }
2565  * 
2566  * /&ast; ... &ast;/
2567  * 
2568  * GRegex *reg;
2569  * GHashTable *h;
2570  * gchar *res;
2571  *
2572  * h = g_hash_table_new (g_str_hash, g_str_equal);
2573  * 
2574  * g_hash_table_insert (h, "1", "ONE");
2575  * g_hash_table_insert (h, "2", "TWO");
2576  * g_hash_table_insert (h, "3", "THREE");
2577  * g_hash_table_insert (h, "4", "FOUR");
2578  * 
2579  * reg = g_regex_new ("1|2|3|4", 0, 0, NULL);
2580  * res = g_regex_replace_eval (reg, text, -1, 0, 0, eval_cb, h, NULL);
2581  * g_hash_table_destroy (h);
2582  *
2583  * /&ast; ... &ast;/
2584  * ]|
2585  *
2586  * Returns: a newly allocated string containing the replacements
2587  *
2588  * Since: 2.14
2589  */
2590 gchar *
2591 g_regex_replace_eval (const GRegex        *regex,
2592                       const gchar         *string,
2593                       gssize               string_len,
2594                       gint                 start_position,
2595                       GRegexMatchFlags     match_options,
2596                       GRegexEvalCallback   eval,
2597                       gpointer             user_data,
2598                       GError             **error)
2599 {
2600   GMatchInfo *match_info;
2601   GString *result;
2602   gint str_pos = 0;
2603   gboolean done = FALSE;
2604   GError *tmp_error = NULL;
2605
2606   g_return_val_if_fail (regex != NULL, NULL);
2607   g_return_val_if_fail (string != NULL, NULL);
2608   g_return_val_if_fail (start_position >= 0, NULL);
2609   g_return_val_if_fail (eval != NULL, NULL);
2610   g_return_val_if_fail ((match_options & ~G_REGEX_MATCH_MASK) == 0, NULL);
2611
2612   if (string_len < 0)
2613     string_len = strlen (string);
2614
2615   result = g_string_sized_new (string_len);
2616
2617   /* run down the string making matches. */
2618   g_regex_match_full (regex, string, string_len, start_position,
2619                       match_options, &match_info, &tmp_error);
2620   while (!done && g_match_info_matches (match_info))
2621     {
2622       g_string_append_len (result,
2623                            string + str_pos,
2624                            match_info->offsets[0] - str_pos);
2625       done = (*eval) (match_info, result, user_data);
2626       str_pos = match_info->offsets[1];
2627       g_match_info_next (match_info, &tmp_error);
2628     }
2629   g_match_info_free (match_info);
2630   if (tmp_error != NULL)
2631     {
2632       g_propagate_error (error, tmp_error);
2633       g_string_free (result, TRUE);
2634       return NULL;
2635     }
2636
2637   g_string_append_len (result, string + str_pos, string_len - str_pos);
2638   return g_string_free (result, FALSE);
2639 }
2640
2641 /**
2642  * g_regex_check_replacement:
2643  * @replacement: the replacement string
2644  * @has_references: location to store information about
2645  *   references in @replacement or %NULL
2646  * @error: location to store error
2647  *
2648  * Checks whether @replacement is a valid replacement string 
2649  * (see g_regex_replace()), i.e. that all escape sequences in 
2650  * it are valid.
2651  *
2652  * If @has_references is not %NULL then @replacement is checked 
2653  * for pattern references. For instance, replacement text 'foo\n'
2654  * does not contain references and may be evaluated without information
2655  * about actual match, but '\0\1' (whole match followed by first 
2656  * subpattern) requires valid #GMatchInfo object.
2657  *
2658  * Returns: whether @replacement is a valid replacement string
2659  *
2660  * Since: 2.14
2661  */
2662 gboolean
2663 g_regex_check_replacement (const gchar  *replacement,
2664                            gboolean     *has_references,
2665                            GError      **error)
2666 {
2667   GList *list;
2668   GError *tmp = NULL;
2669
2670   list = split_replacement (replacement, &tmp);
2671
2672   if (tmp)
2673   {
2674     g_propagate_error (error, tmp);
2675     return FALSE;
2676   }
2677
2678   if (has_references)
2679     *has_references = interpolation_list_needs_match (list);
2680
2681   g_list_foreach (list, (GFunc) free_interpolation_data, NULL);
2682   g_list_free (list);
2683
2684   return TRUE;
2685 }
2686
2687 /**
2688  * g_regex_escape_string:
2689  * @string: the string to escape
2690  * @length: the length of @string, or -1 if @string is nul-terminated
2691  *
2692  * Escapes the special characters used for regular expressions 
2693  * in @string, for instance "a.b*c" becomes "a\.b\*c". This 
2694  * function is useful to dynamically generate regular expressions.
2695  *
2696  * @string can contain nul characters that are replaced with "\0", 
2697  * in this case remember to specify the correct length of @string 
2698  * in @length.
2699  *
2700  * Returns: a newly-allocated escaped string
2701  *
2702  * Since: 2.14
2703  */
2704 gchar *
2705 g_regex_escape_string (const gchar *string,
2706                        gint         length)
2707 {
2708   GString *escaped;
2709   const char *p, *piece_start, *end;
2710
2711   g_return_val_if_fail (string != NULL, NULL);
2712
2713   if (length < 0)
2714     length = strlen (string);
2715
2716   end = string + length;
2717   p = piece_start = string;
2718   escaped = g_string_sized_new (length + 1);
2719
2720   while (p < end)
2721     {
2722       switch (*p)
2723         {
2724         case '\0':
2725         case '\\':
2726         case '|':
2727         case '(':
2728         case ')':
2729         case '[':
2730         case ']':
2731         case '{':
2732         case '}':
2733         case '^':
2734         case '$':
2735         case '*':
2736         case '+':
2737         case '?':
2738         case '.':
2739           if (p != piece_start)
2740             /* copy the previous piece. */
2741             g_string_append_len (escaped, piece_start, p - piece_start);
2742           g_string_append_c (escaped, '\\');
2743           if (*p == '\0')
2744             g_string_append_c (escaped, '0');
2745           else
2746             g_string_append_c (escaped, *p);
2747           piece_start = ++p;
2748           break;
2749         default:
2750           p = g_utf8_next_char (p);
2751           break;
2752         } 
2753   }
2754
2755   if (piece_start < end)
2756     g_string_append_len (escaped, piece_start, end - piece_start);
2757
2758   return g_string_free (escaped, FALSE);
2759 }
2760
2761 #define __G_REGEX_C__
2762 #include "galiasdef.c"