[balsa/port-to-pcre2: 15/18] regex: Use PCRE2's JIT compiler
- From: Peter Bloomfield <peterb src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [balsa/port-to-pcre2: 15/18] regex: Use PCRE2's JIT compiler
- Date: Fri, 5 Feb 2021 00:20:27 +0000 (UTC)
commit eb321195e08a92b6b33f59d433110758e362ec28
Author: Peter Bloomfield <PeterBloomfield bellsouth net>
Date: Tue Sep 8 10:27:11 2020 -0400
regex: Use PCRE2's JIT compiler
for faster matching.
libbalsa/regex.c | 12 ++++++++++++
1 file changed, 12 insertions(+)
---
diff --git a/libbalsa/regex.c b/libbalsa/regex.c
index 5b0f10363..8181b0149 100644
--- a/libbalsa/regex.c
+++ b/libbalsa/regex.c
@@ -73,6 +73,18 @@ libbalsa_regex_new(const gchar *pattern,
pattern, errorbuf);
}
+ if (regex != NULL) {
+ errorcode = pcre2_jit_compile(regex, PCRE2_JIT_COMPLETE);
+ if (errorcode < 0) {
+ gchar errorbuf[120];
+
+ pcre2_get_error_message(errorcode, (PCRE2_UCHAR *) errorbuf, sizeof errorbuf);
+ g_set_error(error, LIBBALSA_REGEX_ERROR, LIBBALSA_REGEX_ERROR_JIT_COMPILE,
+ "Error while JIT-compiling regular expression ā%sā: %s",
+ pattern, errorbuf);
+ }
+ }
+
return regex;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]