/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- * gtksourceregex.c * * Copyright (C) 2003 - Paolo Maggi * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library General Public License for more details. * * You should have received a copy of the GNU Library General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H #include #endif #include #include #include #ifdef NATIVE_GNU_REGEX #include #include #else #include "gnu-regex/regex.h" #endif #include "gtksourceregex.h" /* Implementation using GNU Regular Expressions */ struct _GtkSourceRegex { struct re_pattern_buffer buf; struct re_registers reg; }; GtkSourceRegex * gtk_source_regex_compile (const gchar *pattern) { GtkSourceRegex *regex; const char *result = NULL; g_return_val_if_fail (pattern != NULL, NULL); regex = g_new0 (GtkSourceRegex, 1); re_syntax_options = RE_SYNTAX_POSIX_MINIMAL_EXTENDED; regex->buf.translate = NULL; regex->buf.fastmap = g_malloc (256); regex->buf.allocated = 0; regex->buf.buffer = NULL; if ((result = re_compile_pattern (pattern, strlen (pattern), ®ex->buf)) == NULL) { /* success...now try to compile a fastmap */ if (re_compile_fastmap (®ex->buf) != 0) { g_warning ("Regex failed to create a fastmap."); /* error...no fastmap */ g_free (regex->buf.fastmap); regex->buf.fastmap = NULL; } return regex; } else { g_free (regex->buf.fastmap); g_free (regex); g_warning ("Regex failed to compile: %s", result); return NULL; } } void gtk_source_regex_destroy (GtkSourceRegex *regex) { if (regex == NULL) return; g_free (regex->buf.fastmap); regex->buf.fastmap = NULL; regfree (®ex->buf); if (regex->reg.num_regs > 0) { /* FIXME: maybe we should pre-allocate the registers * at compile time? */ free (regex->reg.start); free (regex->reg.end); regex->reg.num_regs = 0; } g_free (regex); } /** * gtk_source_regex_search: * @regex: Regular expression object (#GtkSourceRegex). * @text: Buffer to search. * @pos: Offset position (i.e. character offset, not byte offset). * @length: Length in bytes; -1 for the full text length. * @match: (optional) Where to return match information. * * Return value: the offset where a match occurred, or less than 0 for * errors or no match. **/ gint gtk_source_regex_search (GtkSourceRegex *regex, const gchar *text, gint pos, gint length, GtkSourceBufferMatch *match, guint options) { gint res; g_return_val_if_fail (regex != NULL, -2); g_return_val_if_fail (text != NULL, -2); g_return_val_if_fail (pos >= 0, -2); if (length < 0) length = strlen (text); /* convert pos from offset to byte index */ if (pos > 0) pos = g_utf8_offset_to_pointer (text, pos) - text; regex->buf.not_bol = (options & GTK_SOURCE_REGEX_NOT_BOL); regex->buf.not_eol = (options & GTK_SOURCE_REGEX_NOT_EOL); res = re_search (®ex->buf, text, length, pos, length - pos, ®ex->reg); if (res < 0) return res; if (match != NULL) { match->startindex = res; match->endindex = regex->reg.end [0]; match->startpos = g_utf8_pointer_to_offset (text, text + res); match->endpos = match->startpos + g_utf8_pointer_to_offset (text + res, text + regex->reg.end [0]); return match->startpos; } else return g_utf8_pointer_to_offset (text, text + res); } /* regex_match -- tries to match regex at the 'pos' position in the text. It * returns the number of chars matched, or -1 if no match. * Warning: The number matched can be 0, if the regex matches the empty string. */ /* * pos: offset * * Returns: if @regex matched @text */ gboolean gtk_source_regex_match (GtkSourceRegex *regex, const gchar *text, gint pos, gint length, guint options) { g_return_val_if_fail (regex != NULL, -1); g_return_val_if_fail (pos >= 0, -1); if (length < 0) length = strlen (text); pos = g_utf8_offset_to_pointer (text, pos) - text; regex->buf.not_bol = (options & GTK_SOURCE_REGEX_NOT_BOL); regex->buf.not_eol = (options & GTK_SOURCE_REGEX_NOT_EOL); return (re_match (®ex->buf, text, length, pos, ®ex->reg) > 0); }