Hash :
d77378eb
Author :
Date :
2019-09-13T08:54:26
regexp: implement new regular expression API We currently support a set of different regular expression backends with PCRE, PCRE2, regcomp(3P) and regcomp_l(3). The current implementation of this is done via a simple POSIX wrapper that either directly uses supplied functions or that is a very small wrapper. To support PCRE and PCRE2, we use their provided <pcreposix.h> and <pcre2posix.h> wrappers. These wrappers are implemented in such a way that the accompanying libraries pcre-posix and pcre2-posix provide the same symbols as the libc ones, namely regcomp(3P) et al. This works out on some systems just fine, most importantly on glibc-based ones, where the regular expression functions are implemented as weak aliases and thus get overridden by linking in the pcre{,2}-posix library. On other systems we depend on the linking order of libc and pcre library, and as libc always comes first we will end up with the functions of the libc implementation. As a result, we may use the structures `regex_t` and `regmatch_t` declared by <pcre{,2}posix.h>, but use functions defined by the libc, leading to segfaults. The issue is not easily solvable. Somed distributions like Debian have resolved this by patching PCRE and PCRE2 to carry custom prefixes to all the POSIX function wrappers. But this is not supported by upstream and thus inherently unportable between distributions. We could instead try to modify linking order, but this starts becoming fragile and will not work e.g. when libgit2 is loaded via dlopen(3P) or similar ways. In the end, this means that we simply cannot use the POSIX wrappers provided by the PCRE libraries at all. Thus, this commit introduces a new regular expression API. The new API is on a tad higher level than the previous POSIX abstraction layer, as it tries to abstract away any non-portable flags like e.g. REG_EXTENDED, which has no equivalents in all of our supported backends. As there are no users of POSIX regular expressions that do _not_ reguest REG_EXTENDED this is fine to be abstracted away, though. Due to the API being higher-level than before, it should generally be a tad easier to use than the previous one. Note: ideally, the new API would've been called `git_regex_foobar` with a file "regex.h" and "regex.c". Unfortunately, this is currently impossible to implement due to naming clashes between the then-existing "regex.h" and <regex.h> provided by the libc. As we add the source directory of libgit2 to the header search path, an include of <regex.h> would always find our own "regex.h". Thus, we have to take the bitter pill of adding one more character to all the functions to disambiguate the includes. To improve guarantees around cross-backend compatibility, this commit also brings along an improved regular expression test suite core::regexp.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
#include "clar_libgit2.h"
#include <locale.h>
#include "regexp.h"
#include "userdiff.h"
#if LC_ALL > 0
static const char *old_locales[LC_ALL];
#endif
static git_regexp regex;
void test_core_regexp__initialize(void)
{
#if LC_ALL > 0
memset(&old_locales, 0, sizeof(old_locales));
#endif
}
void test_core_regexp__cleanup(void)
{
git_regexp_dispose(®ex);
}
static void try_set_locale(int category)
{
#if LC_ALL > 0
old_locales[category] = setlocale(category, NULL);
#endif
if (!setlocale(category, "UTF-8") &&
!setlocale(category, "c.utf8") &&
!setlocale(category, "en_US.UTF-8"))
cl_skip();
if (MB_CUR_MAX == 1)
cl_fail("Expected locale to be switched to multibyte");
}
void test_core_regexp__compile_ignores_global_locale_ctype(void)
{
try_set_locale(LC_CTYPE);
cl_git_pass(git_regexp_compile(®ex, "[\xc0-\xff][\x80-\xbf]", 0));
}
void test_core_regexp__compile_ignores_global_locale_collate(void)
{
#ifdef GIT_WIN32
cl_skip();
#endif
try_set_locale(LC_COLLATE);
cl_git_pass(git_regexp_compile(®ex, "[\xc0-\xff][\x80-\xbf]", 0));
}
void test_core_regexp__regex_matches_digits_with_locale(void)
{
char c, str[2];
#ifdef GIT_WIN32
cl_skip();
#endif
try_set_locale(LC_COLLATE);
try_set_locale(LC_CTYPE);
cl_git_pass(git_regexp_compile(®ex, "[[:digit:]]", 0));
str[1] = '\0';
for (c = '0'; c <= '9'; c++) {
str[0] = c;
cl_git_pass(git_regexp_match(®ex, str));
}
}
void test_core_regexp__regex_matches_alphabet_with_locale(void)
{
char c, str[2];
#ifdef GIT_WIN32
cl_skip();
#endif
try_set_locale(LC_COLLATE);
try_set_locale(LC_CTYPE);
cl_git_pass(git_regexp_compile(®ex, "[[:alpha:]]", 0));
str[1] = '\0';
for (c = 'a'; c <= 'z'; c++) {
str[0] = c;
cl_git_pass(git_regexp_match(®ex, str));
}
for (c = 'A'; c <= 'Z'; c++) {
str[0] = c;
cl_git_pass(git_regexp_match(®ex, str));
}
}
void test_core_regexp__compile_userdiff_regexps(void)
{
size_t idx;
for (idx = 0; idx < ARRAY_SIZE(builtin_defs); ++idx) {
git_diff_driver_definition ddef = builtin_defs[idx];
cl_git_pass(git_regexp_compile(®ex, ddef.fns, ddef.flags));
git_regexp_dispose(®ex);
cl_git_pass(git_regexp_compile(®ex, ddef.words, 0));
git_regexp_dispose(®ex);
}
}
void test_core_regexp__simple_search_matches(void)
{
cl_git_pass(git_regexp_compile(®ex, "a", 0));
cl_git_pass(git_regexp_search(®ex, "a", 0, NULL));
}
void test_core_regexp__case_insensitive_search_matches(void)
{
cl_git_pass(git_regexp_compile(®ex, "a", GIT_REGEXP_ICASE));
cl_git_pass(git_regexp_search(®ex, "A", 0, NULL));
}
void test_core_regexp__nonmatching_search_returns_error(void)
{
cl_git_pass(git_regexp_compile(®ex, "a", 0));
cl_git_fail(git_regexp_search(®ex, "b", 0, NULL));
}
void test_core_regexp__search_finds_complete_match(void)
{
git_regmatch matches[1];
cl_git_pass(git_regexp_compile(®ex, "abc", 0));
cl_git_pass(git_regexp_search(®ex, "abc", 1, matches));
cl_assert_equal_i(matches[0].start, 0);
cl_assert_equal_i(matches[0].end, 3);
}
void test_core_regexp__search_finds_correct_offsets(void)
{
git_regmatch matches[3];
cl_git_pass(git_regexp_compile(®ex, "(a*)(b*)", 0));
cl_git_pass(git_regexp_search(®ex, "ab", 3, matches));
cl_assert_equal_i(matches[0].start, 0);
cl_assert_equal_i(matches[0].end, 2);
cl_assert_equal_i(matches[1].start, 0);
cl_assert_equal_i(matches[1].end, 1);
cl_assert_equal_i(matches[2].start, 1);
cl_assert_equal_i(matches[2].end, 2);
}
void test_core_regexp__search_finds_empty_group(void)
{
git_regmatch matches[3];
cl_git_pass(git_regexp_compile(®ex, "(a*)(b*)c", 0));
cl_git_pass(git_regexp_search(®ex, "ac", 3, matches));
cl_assert_equal_i(matches[0].start, 0);
cl_assert_equal_i(matches[0].end, 2);
cl_assert_equal_i(matches[1].start, 0);
cl_assert_equal_i(matches[1].end, 1);
cl_assert_equal_i(matches[2].start, 1);
cl_assert_equal_i(matches[2].end, 1);
}
void test_core_regexp__search_fills_matches_with_first_matching_groups(void)
{
git_regmatch matches[2];
cl_git_pass(git_regexp_compile(®ex, "(a)(b)(c)", 0));
cl_git_pass(git_regexp_search(®ex, "abc", 2, matches));
cl_assert_equal_i(matches[0].start, 0);
cl_assert_equal_i(matches[0].end, 3);
cl_assert_equal_i(matches[1].start, 0);
cl_assert_equal_i(matches[1].end, 1);
}
void test_core_regexp__search_skips_nonmatching_group(void)
{
git_regmatch matches[4];
cl_git_pass(git_regexp_compile(®ex, "(a)(b)?(c)", 0));
cl_git_pass(git_regexp_search(®ex, "ac", 4, matches));
cl_assert_equal_i(matches[0].start, 0);
cl_assert_equal_i(matches[0].end, 2);
cl_assert_equal_i(matches[1].start, 0);
cl_assert_equal_i(matches[1].end, 1);
cl_assert_equal_i(matches[2].start, -1);
cl_assert_equal_i(matches[2].end, -1);
cl_assert_equal_i(matches[3].start, 1);
cl_assert_equal_i(matches[3].end, 2);
}
void test_core_regexp__search_initializes_trailing_nonmatching_groups(void)
{
git_regmatch matches[3];
cl_git_pass(git_regexp_compile(®ex, "(a)bc", 0));
cl_git_pass(git_regexp_search(®ex, "abc", 3, matches));
cl_assert_equal_i(matches[0].start, 0);
cl_assert_equal_i(matches[0].end, 3);
cl_assert_equal_i(matches[1].start, 0);
cl_assert_equal_i(matches[1].end, 1);
cl_assert_equal_i(matches[2].start, -1);
cl_assert_equal_i(matches[2].end, -1);
}