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