| 275 | /* Build wide character buffer PSTR->WCS like build_wcs_buffer, |
| 276 | but for REG_ICASE. */ |
| 277 | |
| 278 | static reg_errcode_t |
| 279 | internal_function |
| 280 | build_wcs_upper_buffer (re_string_t *pstr) |
| 281 | { |
| 282 | mbstate_t prev_st; |
| 283 | int src_idx, byte_idx, end_idx, remain_len; |
| 284 | size_t mbclen; |
| 285 | #ifdef _LIBC |
| 286 | char buf[MB_LEN_MAX]; |
| 287 | assert (MB_LEN_MAX >= pstr->mb_cur_max); |
| 288 | #else |
| 289 | char buf[64]; |
| 290 | #endif |
| 291 | |
| 292 | byte_idx = pstr->valid_len; |
| 293 | end_idx = (pstr->bufs_len > pstr->len) ? pstr->len : pstr->bufs_len; |
| 294 | |
| 295 | /* The following optimization assumes that ASCII characters can be |
| 296 | mapped to wide characters with a simple cast. */ |
| 297 | if (! pstr->map_notascii && pstr->trans == NULL && !pstr->offsets_needed) |
| 298 | { |
| 299 | while (byte_idx < end_idx) |
| 300 | { |
| 301 | wchar_t wc; |
| 302 | |
| 303 | if (isascii (pstr->raw_mbs[pstr->raw_mbs_idx + byte_idx]) |
| 304 | && mbsinit (&pstr->cur_state)) |
| 305 | { |
| 306 | /* In case of a singlebyte character. */ |
| 307 | pstr->mbs[byte_idx] |
| 308 | = toupper (pstr->raw_mbs[pstr->raw_mbs_idx + byte_idx]); |
| 309 | /* The next step uses the assumption that wchar_t is encoded |
| 310 | ASCII-safe: all ASCII values can be converted like this. */ |
| 311 | pstr->wcs[byte_idx] = (wchar_t) pstr->mbs[byte_idx]; |
| 312 | ++byte_idx; |
| 313 | continue; |
| 314 | } |
| 315 | |
| 316 | remain_len = end_idx - byte_idx; |
| 317 | prev_st = pstr->cur_state; |
| 318 | mbclen = __mbrtowc (&wc, |
| 319 | ((const char *) pstr->raw_mbs + pstr->raw_mbs_idx |
| 320 | + byte_idx), remain_len, &pstr->cur_state); |
| 321 | if (BE (mbclen + 2 > 2, 1)) |
| 322 | { |
| 323 | wchar_t wcu = wc; |
| 324 | if (iswlower (wc)) |
| 325 | { |
| 326 | size_t mbcdlen; |
| 327 | |
| 328 | wcu = towupper (wc); |
| 329 | mbcdlen = wcrtomb (buf, wcu, &prev_st); |
| 330 | if (BE (mbclen == mbcdlen, 1)) |
| 331 | memcpy (pstr->mbs + byte_idx, buf, mbclen); |
| 332 | else |
| 333 | { |
| 334 | src_idx = byte_idx; |
no outgoing calls
no test coverage detected