1 /* GRegex -- regular expression API wrapper around PCRE.
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>
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.
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.
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
30 #ifdef USE_SYSTEM_PCRE
33 #include "pcre/pcre.h"
36 /* PCRE 7.3 does not contain the definition of PCRE_ERROR_NULLWSLIMIT */
37 #ifndef PCRE_ERROR_NULLWSLIMIT
38 #define PCRE_ERROR_NULLWSLIMIT (-22)
43 /* Mask of all the possible values for GRegexCompileFlags. */
44 #define G_REGEX_COMPILE_MASK (G_REGEX_CASELESS | \
49 G_REGEX_DOLLAR_ENDONLY | \
52 G_REGEX_NO_AUTO_CAPTURE | \
55 G_REGEX_NEWLINE_CR | \
56 G_REGEX_NEWLINE_LF | \
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)
70 /* if the string is in UTF-8 use g_utf8_ functions, else use
72 #define NEXT_CHAR(re, s) (((re)->compile_opts & PCRE_UTF8) ? \
73 g_utf8_next_char (s) : \
75 #define PREV_CHAR(re, s) (((re)->compile_opts & PCRE_UTF8) ? \
76 g_utf8_prev_char (s) : \
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 */
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 */
103 /* TRUE if ret is an error code, FALSE otherwise. */
104 #define IS_PCRE_ERROR(ret) ((ret) < PCRE_ERROR_NOMATCH && (ret) != PCRE_ERROR_PARTIAL)
106 typedef struct _InterpolationData InterpolationData;
107 static gboolean interpolation_list_needs_match (GList *list);
108 static gboolean interpolate_replacement (const GMatchInfo *match_info,
111 static GList *split_replacement (const gchar *replacement,
113 static void free_interpolation_data (InterpolationData *data);
117 match_error (gint errcode)
121 case PCRE_ERROR_NOMATCH:
124 case PCRE_ERROR_NULL:
125 /* NULL argument, this should not happen in GRegex */
126 g_warning ("A NULL argument was passed to PCRE");
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() */
139 case PCRE_ERROR_MATCHLIMIT:
140 return _("backtracking limit reached");
141 case PCRE_ERROR_CALLOUT:
142 /* callouts are not implemented */
144 case PCRE_ERROR_BADUTF8:
145 case PCRE_ERROR_BADUTF8_OFFSET:
146 /* we do not check if strings are valid */
148 case PCRE_ERROR_PARTIAL:
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");
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 */
166 case PCRE_ERROR_DFA_WSSIZE:
167 /* handled expanding the workspace */
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");
179 return _("unknown error");
186 match_info_new (const GRegex *regex,
193 GMatchInfo *match_info;
196 string_len = strlen (string);
198 match_info = g_new0 (GMatchInfo, 1);
199 match_info->regex = g_regex_ref ((GRegex *)regex);
200 match_info->string = string;
201 match_info->string_len = string_len;
202 match_info->matches = PCRE_ERROR_NOMATCH;
203 match_info->pos = start_position;
204 match_info->match_opts = match_options;
208 /* These values should be enough for most cases, if they are not
209 * enough g_regex_match_all_full() will expand them. */
210 match_info->n_offsets = 24;
211 match_info->n_workspace = 100;
212 match_info->workspace = g_new (gint, match_info->n_workspace);
217 pcre_fullinfo (regex->pcre_re, regex->extra,
218 PCRE_INFO_CAPTURECOUNT, &capture_count);
219 match_info->n_offsets = (capture_count + 1) * 3;
221 match_info->offsets = g_new0 (gint, match_info->n_offsets);
227 * g_match_info_get_regex:
228 * @match_info: a #GMatchInfo
230 * Returns #GRegex object used in @match_info. It belongs to Glib
231 * and must not be freed. Use g_regex_ref() if you need to keep it
232 * after you free @match_info object.
234 * Returns: #GRegex object used in @match_info
239 g_match_info_get_regex (const GMatchInfo *match_info)
241 g_return_val_if_fail (match_info != NULL, NULL);
242 return match_info->regex;
246 * g_match_info_get_string:
247 * @match_info: a #GMatchInfo
249 * Returns the string searched with @match_info. This is the
250 * string passed to g_regex_match() or g_regex_replace() so
251 * you may not free it before calling this function.
253 * Returns: the string searched with @match_info
258 g_match_info_get_string (const GMatchInfo *match_info)
260 g_return_val_if_fail (match_info != NULL, NULL);
261 return match_info->string;
266 * @match_info: a #GMatchInfo
268 * Frees all the memory associated with the #GMatchInfo structure.
273 g_match_info_free (GMatchInfo *match_info)
277 g_regex_unref (match_info->regex);
278 g_free (match_info->offsets);
279 g_free (match_info->workspace);
286 * @match_info: a #GMatchInfo structure
287 * @error: location to store the error occuring, or %NULL to ignore errors
289 * Scans for the next match using the same parameters of the previous
290 * call to g_regex_match_full() or g_regex_match() that returned
293 * The match is done on the string passed to the match function, so you
294 * cannot free it before calling this function.
296 * Returns: %TRUE is the string matched, %FALSE otherwise
301 g_match_info_next (GMatchInfo *match_info,
306 g_return_val_if_fail (match_info != NULL, FALSE);
307 g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
308 g_return_val_if_fail (match_info->pos >= 0, FALSE);
310 opts = match_info->regex->match_opts | match_info->match_opts;
312 match_info->matches = pcre_exec (match_info->regex->pcre_re,
313 match_info->regex->extra,
315 match_info->string_len,
317 match_info->regex->match_opts |
318 match_info->match_opts,
320 match_info->n_offsets);
321 if (IS_PCRE_ERROR (match_info->matches))
323 g_set_error (error, G_REGEX_ERROR, G_REGEX_ERROR_MATCH,
324 _("Error while matching regular expression %s: %s"),
325 match_info->regex->pattern, match_error (match_info->matches));
329 /* avoid infinite loops if the pattern is an empty string or something
331 if (match_info->pos == match_info->offsets[1])
333 if (match_info->pos > match_info->string_len)
335 /* we have reached the end of the string */
336 match_info->pos = -1;
337 match_info->matches = PCRE_ERROR_NOMATCH;
341 match_info->pos = NEXT_CHAR (match_info->regex,
342 &match_info->string[match_info->pos]) -
347 match_info->pos = match_info->offsets[1];
350 return match_info->matches >= 0;
354 * g_match_info_matches:
355 * @match_info: a #GMatchInfo structure
357 * Returns whether the previous match operation succeeded.
359 * Returns: %TRUE if the previous match operation succeeded,
365 g_match_info_matches (const GMatchInfo *match_info)
367 g_return_val_if_fail (match_info != NULL, FALSE);
369 return match_info->matches >= 0;
373 * g_match_info_get_match_count:
374 * @match_info: a #GMatchInfo structure
376 * Retrieves the number of matched substrings (including substring 0,
377 * that is the whole matched text), so 1 is returned if the pattern
378 * has no substrings in it and 0 is returned if the match failed.
380 * If the last match was obtained using the DFA algorithm, that is
381 * using g_regex_match_all() or g_regex_match_all_full(), the retrieved
382 * count is not that of the number of capturing parentheses but that of
383 * the number of matched substrings.
385 * Returns: Number of matched substrings, or -1 if an error occurred
390 g_match_info_get_match_count (const GMatchInfo *match_info)
392 g_return_val_if_fail (match_info, -1);
394 if (match_info->matches == PCRE_ERROR_NOMATCH)
397 else if (match_info->matches < PCRE_ERROR_NOMATCH)
402 return match_info->matches;
406 * g_match_info_is_partial_match:
407 * @match_info: a #GMatchInfo structure
409 * Usually if the string passed to g_regex_match*() matches as far as
410 * it goes, but is too short to match the entire pattern, %FALSE is
411 * returned. There are circumstances where it might be helpful to
412 * distinguish this case from other cases in which there is no match.
414 * Consider, for example, an application where a human is required to
415 * type in data for a field with specific formatting requirements. An
416 * example might be a date in the form ddmmmyy, defined by the pattern
417 * "^\d?\d(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)\d\d$".
418 * If the application sees the user’s keystrokes one by one, and can
419 * check that what has been typed so far is potentially valid, it is
420 * able to raise an error as soon as a mistake is made.
422 * GRegex supports the concept of partial matching by means of the
423 * #G_REGEX_MATCH_PARTIAL flag. When this is set the return code for
424 * g_regex_match() or g_regex_match_full() is, as usual, %TRUE
425 * for a complete match, %FALSE otherwise. But, when these functions
426 * return %FALSE, you can check if the match was partial calling
427 * g_match_info_is_partial_match().
429 * When using partial matching you cannot use g_match_info_fetch*().
431 * Because of the way certain internal optimizations are implemented
432 * the partial matching algorithm cannot be used with all patterns.
433 * So repeated single characters such as "a{2,4}" and repeated single
434 * meta-sequences such as "\d+" are not permitted if the maximum number
435 * of occurrences is greater than one. Optional items such as "\d?"
436 * (where the maximum is one) are permitted. Quantifiers with any values
437 * are permitted after parentheses, so the invalid examples above can be
438 * coded thus "(a){2,4}" and "(\d)+". If #G_REGEX_MATCH_PARTIAL is set
439 * for a pattern that does not conform to the restrictions, matching
440 * functions return an error.
442 * Returns: %TRUE if the match was partial, %FALSE otherwise
447 g_match_info_is_partial_match (const GMatchInfo *match_info)
449 g_return_val_if_fail (match_info != NULL, FALSE);
451 return match_info->matches == PCRE_ERROR_PARTIAL;
455 * g_match_info_expand_references:
456 * @match_info: a #GMatchInfo or %NULL
457 * @string_to_expand: the string to expand
458 * @error: location to store the error occuring, or %NULL to ignore errors
460 * Returns a new string containing the text in @string_to_expand with
461 * references and escape sequences expanded. References refer to the last
462 * match done with @string against @regex and have the same syntax used by
465 * The @string_to_expand must be UTF-8 encoded even if #G_REGEX_RAW was
466 * passed to g_regex_new().
468 * The backreferences are extracted from the string passed to the match
469 * function, so you cannot call this function after freeing the string.
471 * @match_info may be %NULL in which case @string_to_expand must not
472 * contain references. For instance "foo\n" does not refer to an actual
473 * pattern and '\n' merely will be replaced with \n character,
474 * while to expand "\0" (whole match) one needs the result of a match.
475 * Use g_regex_check_replacement() to find out whether @string_to_expand
476 * contains references.
478 * Returns: the expanded string, or %NULL if an error occurred
483 g_match_info_expand_references (const GMatchInfo *match_info,
484 const gchar *string_to_expand,
489 GError *tmp_error = NULL;
491 g_return_val_if_fail (string_to_expand != NULL, NULL);
492 g_return_val_if_fail (error == NULL || *error == NULL, NULL);
494 list = split_replacement (string_to_expand, &tmp_error);
495 if (tmp_error != NULL)
497 g_propagate_error (error, tmp_error);
501 if (!match_info && interpolation_list_needs_match (list))
503 g_critical ("String '%s' contains references to the match, can't "
504 "expand references without GMatchInfo object",
509 result = g_string_sized_new (strlen (string_to_expand));
510 interpolate_replacement (match_info, result, list);
512 g_list_foreach (list, (GFunc)free_interpolation_data, NULL);
515 return g_string_free (result, FALSE);
519 * g_match_info_fetch:
520 * @match_info: #GMatchInfo structure
521 * @match_num: number of the sub expression
523 * Retrieves the text matching the @match_num<!-- -->'th capturing
524 * parentheses. 0 is the full text of the match, 1 is the first paren
525 * set, 2 the second, and so on.
527 * If @match_num is a valid sub pattern but it didn't match anything
528 * (e.g. sub pattern 1, matching "b" against "(a)?b") then an empty
529 * string is returned.
531 * If the match was obtained using the DFA algorithm, that is using
532 * g_regex_match_all() or g_regex_match_all_full(), the retrieved
533 * string is not that of a set of parentheses but that of a matched
534 * substring. Substrings are matched in reverse order of length, so
535 * 0 is the longest match.
537 * The string is fetched from the string passed to the match function,
538 * so you cannot call this function after freeing the string.
540 * Returns: The matched substring, or %NULL if an error occurred.
541 * You have to free the string yourself
546 g_match_info_fetch (const GMatchInfo *match_info,
549 /* we cannot use pcre_get_substring() because it allocates the
550 * string using pcre_malloc(). */
554 g_return_val_if_fail (match_info != NULL, NULL);
555 g_return_val_if_fail (match_num >= 0, NULL);
557 /* match_num does not exist or it didn't matched, i.e. matching "b"
558 * against "(a)?b" then group 0 is empty. */
559 if (!g_match_info_fetch_pos (match_info, match_num, &start, &end))
561 else if (start == -1)
562 match = g_strdup ("");
564 match = g_strndup (&match_info->string[start], end - start);
570 * g_match_info_fetch_pos:
571 * @match_info: #GMatchInfo structure
572 * @match_num: number of the sub expression
573 * @start_pos: pointer to location where to store the start position
574 * @end_pos: pointer to location where to store the end position
576 * Retrieves the position of the @match_num<!-- -->'th capturing
577 * parentheses. 0 is the full text of the match, 1 is the first
578 * paren set, 2 the second, and so on.
580 * If @match_num is a valid sub pattern but it didn't match anything
581 * (e.g. sub pattern 1, matching "b" against "(a)?b") then @start_pos
582 * and @end_pos are set to -1 and %TRUE is returned.
584 * If the match was obtained using the DFA algorithm, that is using
585 * g_regex_match_all() or g_regex_match_all_full(), the retrieved
586 * position is not that of a set of parentheses but that of a matched
587 * substring. Substrings are matched in reverse order of length, so
588 * 0 is the longest match.
590 * Returns: %TRUE if the position was fetched, %FALSE otherwise. If
591 * the position cannot be fetched, @start_pos and @end_pos are left
597 g_match_info_fetch_pos (const GMatchInfo *match_info,
602 g_return_val_if_fail (match_info != NULL, FALSE);
603 g_return_val_if_fail (match_num >= 0, FALSE);
605 /* make sure the sub expression number they're requesting is less than
606 * the total number of sub expressions that were matched. */
607 if (match_num >= match_info->matches)
610 if (start_pos != NULL)
611 *start_pos = match_info->offsets[2 * match_num];
614 *end_pos = match_info->offsets[2 * match_num + 1];
620 * Returns number of first matched subpattern with name @name.
621 * There may be more than one in case when DUPNAMES is used,
622 * and not all subpatterns with that name match;
623 * pcre_get_stringnumber() does not work in that case.
626 get_matched_substring_number (const GMatchInfo *match_info,
633 if (!(match_info->regex->compile_opts & G_REGEX_DUPNAMES))
634 return pcre_get_stringnumber (match_info->regex->pcre_re, name);
636 /* This code is copied from pcre_get.c: get_first_set() */
637 entrysize = pcre_get_stringtable_entries (match_info->regex->pcre_re,
645 for (entry = (guchar*) first; entry <= (guchar*) last; entry += entrysize)
647 gint n = (entry[0] << 8) + entry[1];
648 if (match_info->offsets[n*2] >= 0)
652 return (first[0] << 8) + first[1];
656 * g_match_info_fetch_named:
657 * @match_info: #GMatchInfo structure
658 * @name: name of the subexpression
660 * Retrieves the text matching the capturing parentheses named @name.
662 * If @name is a valid sub pattern name but it didn't match anything
663 * (e.g. sub pattern "X", matching "b" against "(?P<X>a)?b")
664 * then an empty string is returned.
666 * The string is fetched from the string passed to the match function,
667 * so you cannot call this function after freeing the string.
669 * Returns: The matched substring, or %NULL if an error occurred.
670 * You have to free the string yourself
675 g_match_info_fetch_named (const GMatchInfo *match_info,
678 /* we cannot use pcre_get_named_substring() because it allocates the
679 * string using pcre_malloc(). */
682 g_return_val_if_fail (match_info != NULL, NULL);
683 g_return_val_if_fail (name != NULL, NULL);
685 num = get_matched_substring_number (match_info, name);
689 return g_match_info_fetch (match_info, num);
693 * g_match_info_fetch_named_pos:
694 * @match_info: #GMatchInfo structure
695 * @name: name of the subexpression
696 * @start_pos: pointer to location where to store the start position
697 * @end_pos: pointer to location where to store the end position
699 * Retrieves the position of the capturing parentheses named @name.
701 * If @name is a valid sub pattern name but it didn't match anything
702 * (e.g. sub pattern "X", matching "b" against "(?P<X>a)?b")
703 * then @start_pos and @end_pos are set to -1 and %TRUE is returned.
705 * Returns: %TRUE if the position was fetched, %FALSE otherwise. If
706 * the position cannot be fetched, @start_pos and @end_pos are left
712 g_match_info_fetch_named_pos (const GMatchInfo *match_info,
719 g_return_val_if_fail (match_info != NULL, FALSE);
720 g_return_val_if_fail (name != NULL, FALSE);
722 num = get_matched_substring_number (match_info, name);
726 return g_match_info_fetch_pos (match_info, num, start_pos, end_pos);
730 * g_match_info_fetch_all:
731 * @match_info: a #GMatchInfo structure
733 * Bundles up pointers to each of the matching substrings from a match
734 * and stores them in an array of gchar pointers. The first element in
735 * the returned array is the match number 0, i.e. the entire matched
738 * If a sub pattern didn't match anything (e.g. sub pattern 1, matching
739 * "b" against "(a)?b") then an empty string is inserted.
741 * If the last match was obtained using the DFA algorithm, that is using
742 * g_regex_match_all() or g_regex_match_all_full(), the retrieved
743 * strings are not that matched by sets of parentheses but that of the
744 * matched substring. Substrings are matched in reverse order of length,
745 * so the first one is the longest match.
747 * The strings are fetched from the string passed to the match function,
748 * so you cannot call this function after freeing the string.
750 * Returns: a %NULL-terminated array of gchar * pointers. It must be
751 * freed using g_strfreev(). If the previous match failed %NULL is
757 g_match_info_fetch_all (const GMatchInfo *match_info)
759 /* we cannot use pcre_get_substring_list() because the returned value
760 * isn't suitable for g_strfreev(). */
764 g_return_val_if_fail (match_info != NULL, NULL);
766 if (match_info->matches < 0)
769 result = g_new (gchar *, match_info->matches + 1);
770 for (i = 0; i < match_info->matches; i++)
771 result[i] = g_match_info_fetch (match_info, i);
781 g_regex_error_quark (void)
783 static GQuark error_quark = 0;
785 if (error_quark == 0)
786 error_quark = g_quark_from_static_string ("g-regex-error-quark");
795 * Increases reference count of @regex by 1.
802 g_regex_ref (GRegex *regex)
804 g_return_val_if_fail (regex != NULL, NULL);
805 g_atomic_int_inc (®ex->ref_count);
813 * Decreases reference count of @regex by 1. When reference count drops
814 * to zero, it frees all the memory associated with the regex structure.
819 g_regex_unref (GRegex *regex)
821 g_return_if_fail (regex != NULL);
823 if (g_atomic_int_exchange_and_add (®ex->ref_count, -1) - 1 == 0)
825 g_free (regex->pattern);
826 if (regex->pcre_re != NULL)
827 pcre_free (regex->pcre_re);
828 if (regex->extra != NULL)
829 pcre_free (regex->extra);
836 * @pattern: the regular expression
837 * @compile_options: compile options for the regular expression
838 * @match_options: match options for the regular expression
839 * @error: return location for a #GError
841 * Compiles the regular expression to an internal form, and does
842 * the initial setup of the #GRegex structure.
844 * Returns: a #GRegex structure. Call g_regex_unref() when you
850 g_regex_new (const gchar *pattern,
851 GRegexCompileFlags compile_options,
852 GRegexMatchFlags match_options,
859 gboolean optimize = FALSE;
860 static gboolean initialized = FALSE;
862 g_return_val_if_fail (pattern != NULL, NULL);
863 g_return_val_if_fail (error == NULL || *error == NULL, NULL);
864 g_return_val_if_fail ((compile_options & ~G_REGEX_COMPILE_MASK) == 0, NULL);
865 g_return_val_if_fail ((match_options & ~G_REGEX_MATCH_MASK) == 0, NULL);
872 pcre_config (PCRE_CONFIG_UTF8, &support);
875 msg = N_("PCRE library is compiled without UTF8 support");
877 g_set_error (error, G_REGEX_ERROR, G_REGEX_ERROR_COMPILE, gettext (msg));
881 pcre_config (PCRE_CONFIG_UNICODE_PROPERTIES, &support);
884 msg = N_("PCRE library is compiled without UTF8 properties support");
886 g_set_error (error, G_REGEX_ERROR, G_REGEX_ERROR_COMPILE, gettext (msg));
893 /* G_REGEX_OPTIMIZE has the same numeric value of PCRE_NO_UTF8_CHECK,
894 * as we do not need to wrap PCRE_NO_UTF8_CHECK. */
895 if (compile_options & G_REGEX_OPTIMIZE)
898 /* In GRegex the string are, by default, UTF-8 encoded. PCRE
899 * instead uses UTF-8 only if required with PCRE_UTF8. */
900 if (compile_options & G_REGEX_RAW)
903 compile_options &= ~G_REGEX_RAW;
908 compile_options |= PCRE_UTF8 | PCRE_NO_UTF8_CHECK;
909 match_options |= PCRE_NO_UTF8_CHECK;
912 /* PCRE_NEWLINE_ANY is the default for the internal PCRE but
913 * not for the system one. */
914 if (!(compile_options & G_REGEX_NEWLINE_CR) &&
915 !(compile_options & G_REGEX_NEWLINE_LF))
917 compile_options |= PCRE_NEWLINE_ANY;
920 /* compile the pattern */
921 re = pcre_compile (pattern, compile_options, &errmsg, &erroffset, NULL);
923 /* if the compilation failed, set the error member and return
927 GError *tmp_error = g_error_new (G_REGEX_ERROR,
928 G_REGEX_ERROR_COMPILE,
929 _("Error while compiling regular "
930 "expression %s at char %d: %s"),
931 pattern, erroffset, errmsg);
932 g_propagate_error (error, tmp_error);
937 /* For options set at the beginning of the pattern, pcre puts them into
938 * compile options, e.g. "(?i)foo" will make the pcre structure store
939 * PCRE_CASELESS even though it wasn't explicitly given for compilation. */
940 pcre_fullinfo (re, NULL, PCRE_INFO_OPTIONS, &compile_options);
942 if (!(compile_options & G_REGEX_DUPNAMES))
944 gboolean jchanged = FALSE;
945 pcre_fullinfo (re, NULL, PCRE_INFO_JCHANGED, &jchanged);
947 compile_options |= G_REGEX_DUPNAMES;
950 regex = g_new0 (GRegex, 1);
951 regex->ref_count = 1;
952 regex->pattern = g_strdup (pattern);
954 regex->compile_opts = compile_options;
955 regex->match_opts = match_options;
959 regex->extra = pcre_study (regex->pcre_re, 0, &errmsg);
962 GError *tmp_error = g_error_new (G_REGEX_ERROR,
963 G_REGEX_ERROR_OPTIMIZE,
964 _("Error while optimizing "
965 "regular expression %s: %s"),
968 g_propagate_error (error, tmp_error);
977 * g_regex_get_pattern:
978 * @regex: a #GRegex structure
980 * Gets the pattern string associated with @regex, i.e. a copy of
981 * the string passed to g_regex_new().
983 * Returns: the pattern of @regex
988 g_regex_get_pattern (const GRegex *regex)
990 g_return_val_if_fail (regex != NULL, NULL);
992 return regex->pattern;
996 * g_regex_get_max_backref:
999 * Returns the number of the highest back reference
1000 * in the pattern, or 0 if the pattern does not contain
1003 * Returns: the number of the highest back reference
1008 g_regex_get_max_backref (const GRegex *regex)
1012 pcre_fullinfo (regex->pcre_re, regex->extra,
1013 PCRE_INFO_BACKREFMAX, &value);
1019 * g_regex_get_capture_count:
1022 * Returns the number of capturing subpatterns in the pattern.
1024 * Returns: the number of capturing subpatterns
1029 g_regex_get_capture_count (const GRegex *regex)
1033 pcre_fullinfo (regex->pcre_re, regex->extra,
1034 PCRE_INFO_CAPTURECOUNT, &value);
1040 * g_regex_match_simple:
1041 * @pattern: the regular expression
1042 * @string: the string to scan for matches
1043 * @compile_options: compile options for the regular expression
1044 * @match_options: match options
1046 * Scans for a match in @string for @pattern.
1048 * This function is equivalent to g_regex_match() but it does not
1049 * require to compile the pattern with g_regex_new(), avoiding some
1050 * lines of code when you need just to do a match without extracting
1051 * substrings, capture counts, and so on.
1053 * If this function is to be called on the same @pattern more than
1054 * once, it's more efficient to compile the pattern once with
1055 * g_regex_new() and then use g_regex_match().
1057 * Returns: %TRUE is the string matched, %FALSE otherwise
1062 g_regex_match_simple (const gchar *pattern,
1063 const gchar *string,
1064 GRegexCompileFlags compile_options,
1065 GRegexMatchFlags match_options)
1070 regex = g_regex_new (pattern, compile_options, 0, NULL);
1073 result = g_regex_match_full (regex, string, -1, 0, match_options, NULL, NULL);
1074 g_regex_unref (regex);
1080 * @regex: a #GRegex structure from g_regex_new()
1081 * @string: the string to scan for matches
1082 * @match_options: match options
1083 * @match_info: pointer to location where to store the #GMatchInfo,
1084 * or %NULL if you do not need it
1086 * Scans for a match in string for the pattern in @regex.
1087 * The @match_options are combined with the match options specified
1088 * when the @regex structure was created, letting you have more
1089 * flexibility in reusing #GRegex structures.
1091 * A #GMatchInfo structure, used to get information on the match,
1092 * is stored in @match_info if not %NULL. Note that if @match_info
1093 * is not %NULL then it is created even if the function returns %FALSE,
1094 * i.e. you must free it regardless if regular expression actually matched.
1096 * To retrieve all the non-overlapping matches of the pattern in
1097 * string you can use g_match_info_next().
1099 * <informalexample><programlisting>
1101 * print_uppercase_words (const gchar *string)
1103 * /* Print all uppercase-only words. */
1105 * GMatchInfo *match_info;
1107 * regex = g_regex_new ("[A-Z]+", 0, 0, NULL);
1108 * g_regex_match (regex, string, 0, &match_info);
1109 * while (g_match_info_matches (match_info))
1111 * gchar *word = g_match_info_fetch (match_info, 0);
1112 * g_print ("Found: %s\n", word);
1114 * g_match_info_next (match_info, NULL);
1116 * g_match_info_free (match_info);
1117 * g_regex_unref (regex);
1119 * </programlisting></informalexample>
1121 * Returns: %TRUE is the string matched, %FALSE otherwise
1126 g_regex_match (const GRegex *regex,
1127 const gchar *string,
1128 GRegexMatchFlags match_options,
1129 GMatchInfo **match_info)
1131 return g_regex_match_full (regex, string, -1, 0, match_options,
1136 * g_regex_match_full:
1137 * @regex: a #GRegex structure from g_regex_new()
1138 * @string: the string to scan for matches
1139 * @string_len: the length of @string, or -1 if @string is nul-terminated
1140 * @start_position: starting index of the string to match
1141 * @match_options: match options
1142 * @match_info: pointer to location where to store the #GMatchInfo,
1143 * or %NULL if you do not need it
1144 * @error: location to store the error occuring, or %NULL to ignore errors
1146 * Scans for a match in string for the pattern in @regex.
1147 * The @match_options are combined with the match options specified
1148 * when the @regex structure was created, letting you have more
1149 * flexibility in reusing #GRegex structures.
1151 * Setting @start_position differs from just passing over a shortened
1152 * string and setting #G_REGEX_MATCH_NOTBOL in the case of a pattern
1153 * that begins with any kind of lookbehind assertion, such as "\b".
1155 * A #GMatchInfo structure, used to get information on the match, is
1156 * stored in @match_info if not %NULL. Note that if @match_info is
1157 * not %NULL then it is created even if the function returns %FALSE,
1158 * i.e. you must free it regardless if regular expression actually
1161 * @string is not copied and is used in #GMatchInfo internally. If
1162 * you use any #GMatchInfo method (except g_match_info_free()) after
1163 * freeing or modifying @string then the behaviour is undefined.
1165 * To retrieve all the non-overlapping matches of the pattern in
1166 * string you can use g_match_info_next().
1168 * <informalexample><programlisting>
1170 * print_uppercase_words (const gchar *string)
1172 * /* Print all uppercase-only words. */
1174 * GMatchInfo *match_info;
1175 * GError *error = NULL;
1177 * regex = g_regex_new ("[A-Z]+", 0, 0, NULL);
1178 * g_regex_match_full (regex, string, -1, 0, 0, &match_info, &error);
1179 * while (g_match_info_matches (match_info))
1181 * gchar *word = g_match_info_fetch (match_info, 0);
1182 * g_print ("Found: %s\n", word);
1184 * g_match_info_next (match_info, &error);
1186 * g_match_info_free (match_info);
1187 * g_regex_unref (regex);
1188 * if (error != NULL)
1190 * g_printerr ("Error while matching: %s\n", error->message);
1191 * g_error_free (error);
1194 * </programlisting></informalexample>
1196 * Returns: %TRUE is the string matched, %FALSE otherwise
1201 g_regex_match_full (const GRegex *regex,
1202 const gchar *string,
1204 gint start_position,
1205 GRegexMatchFlags match_options,
1206 GMatchInfo **match_info,
1212 g_return_val_if_fail (regex != NULL, FALSE);
1213 g_return_val_if_fail (string != NULL, FALSE);
1214 g_return_val_if_fail (start_position >= 0, FALSE);
1215 g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
1216 g_return_val_if_fail ((match_options & ~G_REGEX_MATCH_MASK) == 0, FALSE);
1218 info = match_info_new (regex, string, string_len, start_position,
1219 match_options, FALSE);
1220 match_ok = g_match_info_next (info, error);
1221 if (match_info != NULL)
1224 g_match_info_free (info);
1230 * g_regex_match_all:
1231 * @regex: a #GRegex structure from g_regex_new()
1232 * @string: the string to scan for matches
1233 * @match_options: match options
1234 * @match_info: pointer to location where to store the #GMatchInfo,
1235 * or %NULL if you do not need it
1237 * Using the standard algorithm for regular expression matching only
1238 * the longest match in the string is retrieved. This function uses
1239 * a different algorithm so it can retrieve all the possible matches.
1240 * For more documentation see g_regex_match_all_full().
1242 * A #GMatchInfo structure, used to get information on the match, is
1243 * stored in @match_info if not %NULL. Note that if @match_info is
1244 * not %NULL then it is created even if the function returns %FALSE,
1245 * i.e. you must free it regardless if regular expression actually
1248 * Returns: %TRUE is the string matched, %FALSE otherwise
1253 g_regex_match_all (const GRegex *regex,
1254 const gchar *string,
1255 GRegexMatchFlags match_options,
1256 GMatchInfo **match_info)
1258 return g_regex_match_all_full (regex, string, -1, 0, match_options,
1263 * g_regex_match_all_full:
1264 * @regex: a #GRegex structure from g_regex_new()
1265 * @string: the string to scan for matches
1266 * @string_len: the length of @string, or -1 if @string is nul-terminated
1267 * @start_position: starting index of the string to match
1268 * @match_options: match options
1269 * @match_info: pointer to location where to store the #GMatchInfo,
1270 * or %NULL if you do not need it
1271 * @error: location to store the error occuring, or %NULL to ignore errors
1273 * Using the standard algorithm for regular expression matching only
1274 * the longest match in the string is retrieved, it is not possibile
1275 * to obtain all the available matches. For instance matching
1276 * "<a> <b> <c>" against the pattern "<.*>"
1277 * you get "<a> <b> <c>".
1279 * This function uses a different algorithm (called DFA, i.e. deterministic
1280 * finite automaton), so it can retrieve all the possible matches, all
1281 * starting at the same point in the string. For instance matching
1282 * "<a> <b> <c>" against the pattern "<.*>"
1283 * you would obtain three matches: "<a> <b> <c>",
1284 * "<a> <b>" and "<a>".
1286 * The number of matched strings is retrieved using
1287 * g_match_info_get_match_count(). To obtain the matched strings and
1288 * their position you can use, respectively, g_match_info_fetch() and
1289 * g_match_info_fetch_pos(). Note that the strings are returned in
1290 * reverse order of length; that is, the longest matching string is
1293 * Note that the DFA algorithm is slower than the standard one and it
1294 * is not able to capture substrings, so backreferences do not work.
1296 * Setting @start_position differs from just passing over a shortened
1297 * string and setting #G_REGEX_MATCH_NOTBOL in the case of a pattern
1298 * that begins with any kind of lookbehind assertion, such as "\b".
1300 * A #GMatchInfo structure, used to get information on the match, is
1301 * stored in @match_info if not %NULL. Note that if @match_info is
1302 * not %NULL then it is created even if the function returns %FALSE,
1303 * i.e. you must free it regardless if regular expression actually
1306 * Returns: %TRUE is the string matched, %FALSE otherwise
1311 g_regex_match_all_full (const GRegex *regex,
1312 const gchar *string,
1314 gint start_position,
1315 GRegexMatchFlags match_options,
1316 GMatchInfo **match_info,
1322 g_return_val_if_fail (regex != NULL, FALSE);
1323 g_return_val_if_fail (string != NULL, FALSE);
1324 g_return_val_if_fail (start_position >= 0, FALSE);
1325 g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
1326 g_return_val_if_fail ((match_options & ~G_REGEX_MATCH_MASK) == 0, FALSE);
1328 info = match_info_new (regex, string, string_len, start_position,
1329 match_options, TRUE);
1335 info->matches = pcre_dfa_exec (regex->pcre_re, regex->extra,
1336 info->string, info->string_len,
1338 regex->match_opts | match_options,
1339 info->offsets, info->n_offsets,
1340 info->workspace, info->n_workspace);
1341 if (info->matches == PCRE_ERROR_DFA_WSSIZE)
1343 /* info->workspace is too small. */
1344 info->n_workspace *= 2;
1345 info->workspace = g_realloc (info->workspace,
1346 info->n_workspace * sizeof (gint));
1349 else if (info->matches == 0)
1351 /* info->offsets is too small. */
1352 info->n_offsets *= 2;
1353 info->offsets = g_realloc (info->offsets,
1354 info->n_offsets * sizeof (gint));
1357 else if (IS_PCRE_ERROR (info->matches))
1359 g_set_error (error, G_REGEX_ERROR, G_REGEX_ERROR_MATCH,
1360 _("Error while matching regular expression %s: %s"),
1361 regex->pattern, match_error (info->matches));
1365 /* set info->pos to -1 so that a call to g_match_info_next() fails. */
1368 if (match_info != NULL)
1371 g_match_info_free (info);
1373 return info->matches >= 0;
1377 * g_regex_get_string_number:
1378 * @regex: #GRegex structure
1379 * @name: name of the subexpression
1381 * Retrieves the number of the subexpression named @name.
1383 * Returns: The number of the subexpression or -1 if @name
1389 g_regex_get_string_number (const GRegex *regex,
1394 g_return_val_if_fail (regex != NULL, -1);
1395 g_return_val_if_fail (name != NULL, -1);
1397 num = pcre_get_stringnumber (regex->pcre_re, name);
1398 if (num == PCRE_ERROR_NOSUBSTRING)
1405 * g_regex_split_simple:
1406 * @pattern: the regular expression
1407 * @string: the string to scan for matches
1408 * @compile_options: compile options for the regular expression
1409 * @match_options: match options
1411 * Breaks the string on the pattern, and returns an array of
1412 * the tokens. If the pattern contains capturing parentheses,
1413 * then the text for each of the substrings will also be returned.
1414 * If the pattern does not match anywhere in the string, then the
1415 * whole string is returned as the first token.
1417 * This function is equivalent to g_regex_split() but it does
1418 * not require to compile the pattern with g_regex_new(), avoiding
1419 * some lines of code when you need just to do a split without
1420 * extracting substrings, capture counts, and so on.
1422 * If this function is to be called on the same @pattern more than
1423 * once, it's more efficient to compile the pattern once with
1424 * g_regex_new() and then use g_regex_split().
1426 * As a special case, the result of splitting the empty string ""
1427 * is an empty vector, not a vector containing a single string.
1428 * The reason for this special case is that being able to represent
1429 * a empty vector is typically more useful than consistent handling
1430 * of empty elements. If you do need to represent empty elements,
1431 * you'll need to check for the empty string before calling this
1434 * A pattern that can match empty strings splits @string into
1435 * separate characters wherever it matches the empty string between
1436 * characters. For example splitting "ab c" using as a separator
1437 * "\s*", you will get "a", "b" and "c".
1439 * Returns: a %NULL-terminated gchar ** array. Free it using g_strfreev()
1444 g_regex_split_simple (const gchar *pattern,
1445 const gchar *string,
1446 GRegexCompileFlags compile_options,
1447 GRegexMatchFlags match_options)
1452 regex = g_regex_new (pattern, compile_options, 0, NULL);
1455 result = g_regex_split_full (regex, string, -1, 0, match_options, 0, NULL);
1456 g_regex_unref (regex);
1462 * @regex: a #GRegex structure
1463 * @string: the string to split with the pattern
1464 * @match_options: match time option flags
1466 * Breaks the string on the pattern, and returns an array of the tokens.
1467 * If the pattern contains capturing parentheses, then the text for each
1468 * of the substrings will also be returned. If the pattern does not match
1469 * anywhere in the string, then the whole string is returned as the first
1472 * As a special case, the result of splitting the empty string "" is an
1473 * empty vector, not a vector containing a single string. The reason for
1474 * this special case is that being able to represent a empty vector is
1475 * typically more useful than consistent handling of empty elements. If
1476 * you do need to represent empty elements, you'll need to check for the
1477 * empty string before calling this function.
1479 * A pattern that can match empty strings splits @string into separate
1480 * characters wherever it matches the empty string between characters.
1481 * For example splitting "ab c" using as a separator "\s*", you will get
1484 * Returns: a %NULL-terminated gchar ** array. Free it using g_strfreev()
1489 g_regex_split (const GRegex *regex,
1490 const gchar *string,
1491 GRegexMatchFlags match_options)
1493 return g_regex_split_full (regex, string, -1, 0,
1494 match_options, 0, NULL);
1498 * g_regex_split_full:
1499 * @regex: a #GRegex structure
1500 * @string: the string to split with the pattern
1501 * @string_len: the length of @string, or -1 if @string is nul-terminated
1502 * @start_position: starting index of the string to match
1503 * @match_options: match time option flags
1504 * @max_tokens: the maximum number of tokens to split @string into.
1505 * If this is less than 1, the string is split completely
1506 * @error: return location for a #GError
1508 * Breaks the string on the pattern, and returns an array of the tokens.
1509 * If the pattern contains capturing parentheses, then the text for each
1510 * of the substrings will also be returned. If the pattern does not match
1511 * anywhere in the string, then the whole string is returned as the first
1514 * As a special case, the result of splitting the empty string "" is an
1515 * empty vector, not a vector containing a single string. The reason for
1516 * this special case is that being able to represent a empty vector is
1517 * typically more useful than consistent handling of empty elements. If
1518 * you do need to represent empty elements, you'll need to check for the
1519 * empty string before calling this function.
1521 * A pattern that can match empty strings splits @string into separate
1522 * characters wherever it matches the empty string between characters.
1523 * For example splitting "ab c" using as a separator "\s*", you will get
1526 * Setting @start_position differs from just passing over a shortened
1527 * string and setting #G_REGEX_MATCH_NOTBOL in the case of a pattern
1528 * that begins with any kind of lookbehind assertion, such as "\b".
1530 * Returns: a %NULL-terminated gchar ** array. Free it using g_strfreev()
1535 g_regex_split_full (const GRegex *regex,
1536 const gchar *string,
1538 gint start_position,
1539 GRegexMatchFlags match_options,
1543 GError *tmp_error = NULL;
1544 GMatchInfo *match_info;
1549 /* position of the last separator. */
1550 gint last_separator_end;
1551 /* was the last match 0 bytes long? */
1552 gboolean last_match_is_empty;
1553 /* the returned array of char **s */
1554 gchar **string_list;
1556 g_return_val_if_fail (regex != NULL, NULL);
1557 g_return_val_if_fail (string != NULL, NULL);
1558 g_return_val_if_fail (start_position >= 0, NULL);
1559 g_return_val_if_fail (error == NULL || *error == NULL, NULL);
1560 g_return_val_if_fail ((match_options & ~G_REGEX_MATCH_MASK) == 0, NULL);
1562 if (max_tokens <= 0)
1563 max_tokens = G_MAXINT;
1566 string_len = strlen (string);
1568 /* zero-length string */
1569 if (string_len - start_position == 0)
1570 return g_new0 (gchar *, 1);
1572 if (max_tokens == 1)
1574 string_list = g_new0 (gchar *, 2);
1575 string_list[0] = g_strndup (&string[start_position],
1576 string_len - start_position);
1582 last_separator_end = start_position;
1583 last_match_is_empty = FALSE;
1585 match_ok = g_regex_match_full (regex, string, string_len, start_position,
1586 match_options, &match_info, &tmp_error);
1587 while (tmp_error == NULL)
1591 last_match_is_empty =
1592 (match_info->offsets[0] == match_info->offsets[1]);
1594 /* we need to skip empty separators at the same position of the end
1595 * of another separator. e.g. the string is "a b" and the separator
1596 * is " *", so from 1 to 2 we have a match and at position 2 we have
1597 * an empty match. */
1598 if (last_separator_end != match_info->offsets[1])
1603 token = g_strndup (string + last_separator_end,
1604 match_info->offsets[0] - last_separator_end);
1605 list = g_list_prepend (list, token);
1608 /* if there were substrings, these need to be added to
1610 match_count = g_match_info_get_match_count (match_info);
1611 if (match_count > 1)
1613 for (i = 1; i < match_count; i++)
1614 list = g_list_prepend (list, g_match_info_fetch (match_info, i));
1620 /* if there was no match, copy to end of string. */
1621 if (!last_match_is_empty)
1623 gchar *token = g_strndup (string + last_separator_end,
1624 match_info->string_len - last_separator_end);
1625 list = g_list_prepend (list, token);
1627 /* no more tokens, end the loop. */
1631 /* -1 to leave room for the last part. */
1632 if (token_count >= max_tokens - 1)
1634 /* we have reached the maximum number of tokens, so we copy
1635 * the remaining part of the string. */
1636 if (last_match_is_empty)
1638 /* the last match was empty, so we have moved one char
1639 * after the real position to avoid empty matches at the
1641 match_info->pos = PREV_CHAR (regex, &string[match_info->pos]) - string;
1643 /* the if is needed in the case we have terminated the available
1644 * tokens, but we are at the end of the string, so there are no
1645 * characters left to copy. */
1646 if (string_len > match_info->pos)
1648 gchar *token = g_strndup (string + match_info->pos,
1649 string_len - match_info->pos);
1650 list = g_list_prepend (list, token);
1656 last_separator_end = match_info->pos;
1657 if (last_match_is_empty)
1658 /* if the last match was empty, g_match_info_next() has moved
1659 * forward to avoid infinite loops, but we still need to copy that
1661 last_separator_end = PREV_CHAR (regex, &string[last_separator_end]) - string;
1663 match_ok = g_match_info_next (match_info, &tmp_error);
1665 g_match_info_free (match_info);
1666 if (tmp_error != NULL)
1668 g_propagate_error (error, tmp_error);
1669 g_list_foreach (list, (GFunc)g_free, NULL);
1671 match_info->pos = -1;
1675 string_list = g_new (gchar *, g_list_length (list) + 1);
1677 for (last = g_list_last (list); last; last = g_list_previous (last))
1678 string_list[i++] = last->data;
1679 string_list[i] = NULL;
1688 REPL_TYPE_CHARACTER,
1689 REPL_TYPE_SYMBOLIC_REFERENCE,
1690 REPL_TYPE_NUMERIC_REFERENCE,
1691 REPL_TYPE_CHANGE_CASE
1696 CHANGE_CASE_NONE = 1 << 0,
1697 CHANGE_CASE_UPPER = 1 << 1,
1698 CHANGE_CASE_LOWER = 1 << 2,
1699 CHANGE_CASE_UPPER_SINGLE = 1 << 3,
1700 CHANGE_CASE_LOWER_SINGLE = 1 << 4,
1701 CHANGE_CASE_SINGLE_MASK = CHANGE_CASE_UPPER_SINGLE | CHANGE_CASE_LOWER_SINGLE,
1702 CHANGE_CASE_LOWER_MASK = CHANGE_CASE_LOWER | CHANGE_CASE_LOWER_SINGLE,
1703 CHANGE_CASE_UPPER_MASK = CHANGE_CASE_UPPER | CHANGE_CASE_UPPER_SINGLE
1706 struct _InterpolationData
1712 ChangeCase change_case;
1716 free_interpolation_data (InterpolationData *data)
1718 g_free (data->text);
1722 static const gchar *
1723 expand_escape (const gchar *replacement,
1725 InterpolationData *data,
1730 const gchar *error_detail;
1732 GError *tmp_error = NULL;
1740 data->type = REPL_TYPE_CHARACTER;
1745 data->type = REPL_TYPE_CHARACTER;
1750 data->type = REPL_TYPE_CHARACTER;
1755 data->type = REPL_TYPE_CHARACTER;
1760 data->type = REPL_TYPE_CHARACTER;
1765 data->type = REPL_TYPE_CHARACTER;
1770 data->type = REPL_TYPE_CHARACTER;
1775 data->type = REPL_TYPE_CHARACTER;
1785 h = g_ascii_xdigit_value (*p);
1788 error_detail = _("hexadecimal digit or '}' expected");
1799 for (i = 0; i < 2; i++)
1801 h = g_ascii_xdigit_value (*p);
1804 error_detail = _("hexadecimal digit expected");
1811 data->type = REPL_TYPE_STRING;
1812 data->text = g_new0 (gchar, 8);
1813 g_unichar_to_utf8 (x, data->text);
1817 data->type = REPL_TYPE_CHANGE_CASE;
1818 data->change_case = CHANGE_CASE_LOWER_SINGLE;
1822 data->type = REPL_TYPE_CHANGE_CASE;
1823 data->change_case = CHANGE_CASE_UPPER_SINGLE;
1827 data->type = REPL_TYPE_CHANGE_CASE;
1828 data->change_case = CHANGE_CASE_LOWER;
1832 data->type = REPL_TYPE_CHANGE_CASE;
1833 data->change_case = CHANGE_CASE_UPPER;
1837 data->type = REPL_TYPE_CHANGE_CASE;
1838 data->change_case = CHANGE_CASE_NONE;
1844 error_detail = _("missing '<' in symbolic reference");
1853 error_detail = _("unfinished symbolic reference");
1860 error_detail = _("zero-length symbolic reference");
1863 if (g_ascii_isdigit (*q))
1868 h = g_ascii_digit_value (*q);
1871 error_detail = _("digit expected");
1880 data->type = REPL_TYPE_NUMERIC_REFERENCE;
1887 if (!g_ascii_isalnum (*r))
1889 error_detail = _("illegal symbolic reference");
1896 data->text = g_strndup (q, p - q);
1897 data->type = REPL_TYPE_SYMBOLIC_REFERENCE;
1902 /* if \0 is followed by a number is an octal number representing a
1903 * character, else it is a numeric reference. */
1904 if (g_ascii_digit_value (*g_utf8_next_char (p)) >= 0)
1907 p = g_utf8_next_char (p);
1920 for (i = 0; i < 3; i++)
1922 h = g_ascii_digit_value (*p);
1932 if (i == 2 && base == 10)
1938 if (base == 8 || i == 3)
1940 data->type = REPL_TYPE_STRING;
1941 data->text = g_new0 (gchar, 8);
1942 g_unichar_to_utf8 (x, data->text);
1946 data->type = REPL_TYPE_NUMERIC_REFERENCE;
1951 error_detail = _("stray final '\\'");
1955 error_detail = _("unknown escape sequence");
1962 /* G_GSSIZE_FORMAT doesn't work with gettext, so we use %lu */
1963 tmp_error = g_error_new (G_REGEX_ERROR,
1964 G_REGEX_ERROR_REPLACE,
1965 _("Error while parsing replacement "
1966 "text \"%s\" at char %lu: %s"),
1968 (gulong)(p - replacement),
1970 g_propagate_error (error, tmp_error);
1976 split_replacement (const gchar *replacement,
1980 InterpolationData *data;
1981 const gchar *p, *start;
1983 start = p = replacement;
1988 data = g_new0 (InterpolationData, 1);
1989 start = p = expand_escape (replacement, p, data, error);
1992 g_list_foreach (list, (GFunc)free_interpolation_data, NULL);
1994 free_interpolation_data (data);
1998 list = g_list_prepend (list, data);
2003 if (*p == '\\' || *p == '\0')
2007 data = g_new0 (InterpolationData, 1);
2008 data->text = g_strndup (start, p - start);
2009 data->type = REPL_TYPE_STRING;
2010 list = g_list_prepend (list, data);
2016 return g_list_reverse (list);
2019 /* Change the case of c based on change_case. */
2020 #define CHANGE_CASE(c, change_case) \
2021 (((change_case) & CHANGE_CASE_LOWER_MASK) ? \
2022 g_unichar_tolower (c) : \
2023 g_unichar_toupper (c))
2026 string_append (GString *string,
2028 ChangeCase *change_case)
2032 if (text[0] == '\0')
2035 if (*change_case == CHANGE_CASE_NONE)
2037 g_string_append (string, text);
2039 else if (*change_case & CHANGE_CASE_SINGLE_MASK)
2041 c = g_utf8_get_char (text);
2042 g_string_append_unichar (string, CHANGE_CASE (c, *change_case));
2043 g_string_append (string, g_utf8_next_char (text));
2044 *change_case = CHANGE_CASE_NONE;
2048 while (*text != '\0')
2050 c = g_utf8_get_char (text);
2051 g_string_append_unichar (string, CHANGE_CASE (c, *change_case));
2052 text = g_utf8_next_char (text);
2058 interpolate_replacement (const GMatchInfo *match_info,
2063 InterpolationData *idata;
2065 ChangeCase change_case = CHANGE_CASE_NONE;
2067 for (list = data; list; list = list->next)
2070 switch (idata->type)
2072 case REPL_TYPE_STRING:
2073 string_append (result, idata->text, &change_case);
2075 case REPL_TYPE_CHARACTER:
2076 g_string_append_c (result, CHANGE_CASE (idata->c, change_case));
2077 if (change_case & CHANGE_CASE_SINGLE_MASK)
2078 change_case = CHANGE_CASE_NONE;
2080 case REPL_TYPE_NUMERIC_REFERENCE:
2081 match = g_match_info_fetch (match_info, idata->num);
2084 string_append (result, match, &change_case);
2088 case REPL_TYPE_SYMBOLIC_REFERENCE:
2089 match = g_match_info_fetch_named (match_info, idata->text);
2092 string_append (result, match, &change_case);
2096 case REPL_TYPE_CHANGE_CASE:
2097 change_case = idata->change_case;
2105 /* whether actual match_info is needed for replacement, i.e.
2106 * whether there are references
2109 interpolation_list_needs_match (GList *list)
2111 while (list != NULL)
2113 InterpolationData *data = list->data;
2115 if (data->type == REPL_TYPE_SYMBOLIC_REFERENCE ||
2116 data->type == REPL_TYPE_NUMERIC_REFERENCE)
2129 * @regex: a #GRegex structure
2130 * @string: the string to perform matches against
2131 * @string_len: the length of @string, or -1 if @string is nul-terminated
2132 * @start_position: starting index of the string to match
2133 * @replacement: text to replace each match with
2134 * @match_options: options for the match
2135 * @error: location to store the error occuring, or %NULL to ignore errors
2137 * Replaces all occurances of the pattern in @regex with the
2138 * replacement text. Backreferences of the form '\number' or
2139 * '\g<number>' in the replacement text are interpolated by the
2140 * number-th captured subexpression of the match, '\g<name>' refers
2141 * to the captured subexpression with the given name. '\0' refers to the
2142 * complete match, but '\0' followed by a number is the octal representation
2143 * of a character. To include a literal '\' in the replacement, write '\\'.
2144 * There are also escapes that changes the case of the following text:
2147 * <varlistentry><term>\l</term>
2149 * <para>Convert to lower case the next character</para>
2152 * <varlistentry><term>\u</term>
2154 * <para>Convert to upper case the next character</para>
2157 * <varlistentry><term>\L</term>
2159 * <para>Convert to lower case till \E</para>
2162 * <varlistentry><term>\U</term>
2164 * <para>Convert to upper case till \E</para>
2167 * <varlistentry><term>\E</term>
2169 * <para>End case modification</para>
2174 * If you do not need to use backreferences use g_regex_replace_literal().
2176 * The @replacement string must be UTF-8 encoded even if #G_REGEX_RAW was
2177 * passed to g_regex_new(). If you want to use not UTF-8 encoded stings
2178 * you can use g_regex_replace_literal().
2180 * Setting @start_position differs from just passing over a shortened
2181 * string and setting #G_REGEX_MATCH_NOTBOL in the case of a pattern that
2182 * begins with any kind of lookbehind assertion, such as "\b".
2184 * Returns: a newly allocated string containing the replacements
2189 g_regex_replace (const GRegex *regex,
2190 const gchar *string,
2192 gint start_position,
2193 const gchar *replacement,
2194 GRegexMatchFlags match_options,
2199 GError *tmp_error = NULL;
2201 g_return_val_if_fail (regex != NULL, NULL);
2202 g_return_val_if_fail (string != NULL, NULL);
2203 g_return_val_if_fail (start_position >= 0, NULL);
2204 g_return_val_if_fail (replacement != NULL, NULL);
2205 g_return_val_if_fail (error == NULL || *error == NULL, NULL);
2206 g_return_val_if_fail ((match_options & ~G_REGEX_MATCH_MASK) == 0, NULL);
2208 list = split_replacement (replacement, &tmp_error);
2209 if (tmp_error != NULL)
2211 g_propagate_error (error, tmp_error);
2215 result = g_regex_replace_eval (regex,
2216 string, string_len, start_position,
2218 interpolate_replacement,
2221 if (tmp_error != NULL)
2222 g_propagate_error (error, tmp_error);
2224 g_list_foreach (list, (GFunc)free_interpolation_data, NULL);
2231 literal_replacement (const GMatchInfo *match_info,
2235 g_string_append (result, data);
2240 * g_regex_replace_literal:
2241 * @regex: a #GRegex structure
2242 * @string: the string to perform matches against
2243 * @string_len: the length of @string, or -1 if @string is nul-terminated
2244 * @start_position: starting index of the string to match
2245 * @replacement: text to replace each match with
2246 * @match_options: options for the match
2247 * @error: location to store the error occuring, or %NULL to ignore errors
2249 * Replaces all occurances of the pattern in @regex with the
2250 * replacement text. @replacement is replaced literally, to
2251 * include backreferences use g_regex_replace().
2253 * Setting @start_position differs from just passing over a
2254 * shortened string and setting #G_REGEX_MATCH_NOTBOL in the
2255 * case of a pattern that begins with any kind of lookbehind
2256 * assertion, such as "\b".
2258 * Returns: a newly allocated string containing the replacements
2263 g_regex_replace_literal (const GRegex *regex,
2264 const gchar *string,
2266 gint start_position,
2267 const gchar *replacement,
2268 GRegexMatchFlags match_options,
2271 g_return_val_if_fail (replacement != NULL, NULL);
2272 g_return_val_if_fail ((match_options & ~G_REGEX_MATCH_MASK) == 0, NULL);
2274 return g_regex_replace_eval (regex,
2275 string, string_len, start_position,
2277 literal_replacement,
2278 (gpointer)replacement,
2283 * g_regex_replace_eval:
2284 * @regex: a #GRegex structure from g_regex_new()
2285 * @string: string to perform matches against
2286 * @string_len: the length of @string, or -1 if @string is nul-terminated
2287 * @start_position: starting index of the string to match
2288 * @match_options: options for the match
2289 * @eval: a function to call for each match
2290 * @user_data: user data to pass to the function
2291 * @error: location to store the error occuring, or %NULL to ignore errors
2293 * Replaces occurances of the pattern in regex with the output of
2294 * @eval for that occurance.
2296 * Setting @start_position differs from just passing over a shortened
2297 * string and setting #G_REGEX_MATCH_NOTBOL in the case of a pattern
2298 * that begins with any kind of lookbehind assertion, such as "\b".
2300 * Returns: a newly allocated string containing the replacements
2305 g_regex_replace_eval (const GRegex *regex,
2306 const gchar *string,
2308 gint start_position,
2309 GRegexMatchFlags match_options,
2310 GRegexEvalCallback eval,
2314 GMatchInfo *match_info;
2317 gboolean done = FALSE;
2318 GError *tmp_error = NULL;
2320 g_return_val_if_fail (regex != NULL, NULL);
2321 g_return_val_if_fail (string != NULL, NULL);
2322 g_return_val_if_fail (start_position >= 0, NULL);
2323 g_return_val_if_fail (eval != NULL, NULL);
2324 g_return_val_if_fail ((match_options & ~G_REGEX_MATCH_MASK) == 0, NULL);
2327 string_len = strlen (string);
2329 result = g_string_sized_new (string_len);
2331 /* run down the string making matches. */
2332 g_regex_match_full (regex, string, string_len, start_position,
2333 match_options, &match_info, &tmp_error);
2334 while (!done && g_match_info_matches (match_info))
2336 g_string_append_len (result,
2338 match_info->offsets[0] - str_pos);
2339 done = (*eval) (match_info, result, user_data);
2340 str_pos = match_info->offsets[1];
2341 g_match_info_next (match_info, &tmp_error);
2343 g_match_info_free (match_info);
2344 if (tmp_error != NULL)
2346 g_propagate_error (error, tmp_error);
2347 g_string_free (result, TRUE);
2351 g_string_append_len (result, string + str_pos, string_len - str_pos);
2352 return g_string_free (result, FALSE);
2356 * g_regex_check_replacement:
2357 * @replacement: the replacement string
2358 * @has_references: location to store information about
2359 * references in @replacement or %NULL
2360 * @error: location to store error
2362 * Checks whether @replacement is a valid replacement string
2363 * (see g_regex_replace()), i.e. that all escape sequences in
2366 * If @has_references is not %NULL then @replacement is checked
2367 * for pattern references. For instance, replacement text 'foo\n'
2368 * does not contain references and may be evaluated without information
2369 * about actual match, but '\0\1' (whole match followed by first
2370 * subpattern) requires valid #GMatchInfo object.
2372 * Returns: whether @replacement is a valid replacement string
2377 g_regex_check_replacement (const gchar *replacement,
2378 gboolean *has_references,
2384 list = split_replacement (replacement, &tmp);
2388 g_propagate_error (error, tmp);
2393 *has_references = interpolation_list_needs_match (list);
2395 g_list_foreach (list, (GFunc) free_interpolation_data, NULL);
2402 * g_regex_escape_string:
2403 * @string: the string to escape
2404 * @length: the length of @string, or -1 if @string is nul-terminated
2406 * Escapes the special characters used for regular expressions
2407 * in @string, for instance "a.b*c" becomes "a\.b\*c". This
2408 * function is useful to dynamically generate regular expressions.
2410 * @string can contain nul characters that are replaced with "\0",
2411 * in this case remember to specify the correct length of @string
2414 * Returns: a newly-allocated escaped string
2419 g_regex_escape_string (const gchar *string,
2423 const char *p, *piece_start, *end;
2425 g_return_val_if_fail (string != NULL, NULL);
2428 length = strlen (string);
2430 end = string + length;
2431 p = piece_start = string;
2432 escaped = g_string_sized_new (length + 1);
2453 if (p != piece_start)
2454 /* copy the previous piece. */
2455 g_string_append_len (escaped, piece_start, p - piece_start);
2456 g_string_append_c (escaped, '\\');
2458 g_string_append_c (escaped, '0');
2460 g_string_append_c (escaped, *p);
2464 p = g_utf8_next_char (p);
2469 if (piece_start < end)
2470 g_string_append_len (escaped, piece_start, end - piece_start);
2472 return g_string_free (escaped, FALSE);
2475 #define __G_REGEX_C__
2476 #include "galiasdef.c"