Loading...
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 | /* tre_regcomp.c - TRE POSIX compatible regex compilation functions. This software is released under a BSD-style license. See the file LICENSE for details and copyright. */ #ifdef HAVE_CONFIG_H #include <config.h> #endif /* HAVE_CONFIG_H */ #include <string.h> #include <errno.h> #include <stdlib.h> #include "tre.h" #include "tre-internal.h" #include "xmalloc.h" #ifndef BUILDING_VARIANT int tre_regncomp_l(regex_t *preg, const char *regex, size_t n, int cflags, locale_t loc) { int ret; #if TRE_WCHAR tre_char_t *wregex; size_t wlen; wregex = xmalloc(sizeof(tre_char_t) * (n + 1)); if (wregex == NULL) return REG_ESPACE; #ifdef __LIBC__ NORMALIZE_LOCALE(loc); #endif /* __LIBC__ */ /* If the current locale uses the standard single byte encoding of characters, we don't do a multibyte string conversion. If we did, many applications which use the default locale would break since the default "C" locale uses the 7-bit ASCII character set, and all characters with the eighth bit set would be considered invalid. */ #if TRE_MULTIBYTE if (TRE_MB_CUR_MAX_L(loc) == 1) #endif /* TRE_MULTIBYTE */ { unsigned int i; const unsigned char *str = (const unsigned char *)regex; tre_char_t *wstr = wregex; for (i = 0; i < n; i++) *(wstr++) = *(str++); wlen = n; } #if TRE_MULTIBYTE else { size_t consumed; tre_char_t *wcptr = wregex; #ifdef HAVE_MBSTATE_T mbstate_t state; memset(&state, '\0', sizeof(state)); #endif /* HAVE_MBSTATE_T */ while (n > 0) { consumed = tre_mbrtowc_l(wcptr, regex, n, &state, loc); switch (consumed) { case 0: if (*regex == '\0') consumed = 1; else { xfree(wregex); return REG_BADPAT; } break; case (size_t)-1: case (size_t)-2: DPRINT(("mbrtowc: error %d: %s.\n", errno, strerror(errno))); xfree(wregex); return REG_ILLSEQ; } regex += consumed; n -= consumed; wcptr++; } wlen = wcptr - wregex; } #endif /* TRE_MULTIBYTE */ wregex[wlen] = L'\0'; ret = tre_compile(preg, wregex, wlen, cflags, loc); xfree(wregex); #else /* !TRE_WCHAR */ #ifdef __LIBC__ NORMALIZE_LOCALE(loc); #endif /* __LIBC__ */ ret = tre_compile(preg, (const tre_char_t *)regex, n, cflags, loc); #endif /* !TRE_WCHAR */ return ret; } int tre_regncomp(regex_t *preg, const char *regex, size_t n, int cflags) { locale_t loc; #ifdef __LIBC__ loc = __current_locale(); #else /* !__LIBC__ */ loc = duplocale(NULL); if (!loc) return REG_ESPACE; #endif /* !__LIBC__ */ return tre_regncomp_l(preg, regex, n, cflags, loc); } int tre_regcomp_l(regex_t *preg, const char *regex, int cflags, locale_t loc) { size_t len; if (cflags & REG_PEND) { if ((const char *)(preg->re_endp) < regex) return REG_INVARG; len = (const char *)(preg->re_endp) - regex; } else len = strlen(regex); return tre_regncomp_l(preg, regex, len, cflags, loc); } #endif /* !BUILDING_VARIANT */ int tre_regcomp(regex_t *preg, const char *regex, int cflags) { locale_t loc; #ifdef __LIBC__ loc = __current_locale(); #else /* !__LIBC__ */ loc = duplocale(NULL); if (!loc) return REG_ESPACE; #endif /* !__LIBC__ */ return tre_regcomp_l(preg, regex, cflags, loc); } #ifndef BUILDING_VARIANT #ifdef TRE_WCHAR int tre_regwncomp_l(regex_t *preg, const wchar_t *regex, size_t n, int cflags, locale_t loc) { #ifdef __LIBC__ NORMALIZE_LOCALE(loc); #endif /* __LIBC__ */ return tre_compile(preg, regex, n, cflags, loc); } int tre_regwncomp(regex_t *preg, const wchar_t *regex, size_t n, int cflags) { locale_t loc; #ifdef __LIBC__ loc = __current_locale(); #else /* !__LIBC__ */ loc = duplocale(NULL); if (!loc) return REG_ESPACE; #endif /* !__LIBC__ */ return tre_compile(preg, regex, n, cflags, loc); } int tre_regwcomp_l(regex_t *preg, const wchar_t *regex, int cflags, locale_t loc) { #ifdef __LIBC__ NORMALIZE_LOCALE(loc); #endif /* __LIBC__ */ return tre_compile(preg, regex, wcslen(regex), cflags, loc); } int tre_regwcomp(regex_t *preg, const wchar_t *regex, int cflags) { return tre_regwncomp(preg, regex, wcslen(regex), cflags); } #endif /* TRE_WCHAR */ void tre_regfree(regex_t *preg) { tre_free(preg); } #endif /* !BUILDING_VARIANT */ /* EOF */ |