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 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657
|
/*
* Copyright (c) 2017, Herbert Valerio Riedel
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
*
* * Neither the name of Herbert Valerio Riedel nor the names of other
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#if !defined(NDEBUG)
# warning assert(3) checks enabled
#endif
#include <stdint.h>
#include <stdbool.h>
#include <string.h>
#include <stdlib.h>
#include <assert.h>
#include <HsFFI.h>
#if !defined(SIZEOF_VOID_P)
# error <HsFFI.h> SIZEOF_VOID_P not defined
#endif
#if (SIZEOF_VOID_P) == 8
const static bool is_64bit = true;
#elif (SIZEOF_VOID_P) == 4
const static bool is_64bit = false;
#else
# error unexpected SIZEOF_VOID_P value
#endif
#if (WORDS_BIGENDIAN)
const static bool is_bigendian = true;
#else
const static bool is_bigendian = false;
#endif
#if defined(__GNUC__)
# define likely(x) __builtin_expect(!!(x),1)
# define unlikely(x) __builtin_expect(!!(x),0)
#else
# define likely(x) (x)
# define unlikely(x) (x)
#endif
/* test whether octet in UTF-8 steam is not a continuation byte, i.e. a leading byte */
#define utf8_lead_p(octet) (((octet) & 0xc0) != 0x80)
/* 0 <= x <= 0x110000 */
typedef HsWord codepoint_t;
/* Count number of code-points in well-formed utf8 string */
size_t
hs_text_short_length(const uint8_t buf[], const size_t n)
{
size_t j = 0;
size_t l = 0;
/* Both GCC & Clang are able to optimise the code below quite well at -O3 */
for (j = 0; j < n; j++)
if (utf8_lead_p(buf[j]))
l++;
return l;
}
/* Locate offset of j-th code-point in well-formed utf8 string
*
*/
size_t
hs_text_short_index_ofs(const uint8_t buf[], const size_t n, const size_t i)
{
if (!n)
return n;
size_t m = 0;
size_t j = 0;
for (;;) {
assert(m >= 0);
assert(j <= i);
assert(j <= m);
if (j == i)
return m; /* found */
if (i-j >= n-m)
return n; /* i-th char is >= buf+n */
assert(m < n);
const uint8_t b0 = buf[m];
if (!(b0 & 0x80))
m += 1; /* 0_______ */
else
switch(b0 >> 4) {
case 0xf: /* 11110___ */
m += 4;
break;
case 0xe: /* 1110____ */
m += 3;
break;
default: /* 110_____ */
m += 2;
break;
}
j += 1;
}
assert(0);
}
/* Locate offset of j-th code-point (in reverse direction) in
* well-formed utf8 string starting at end of buffer.
*
* The 0-th character from the end is the last character in the utf8
* string (if it exists).
*
* Returns original 'n' if out of bounds.
*
*/
size_t
hs_text_short_index_ofs_rev(const uint8_t buf[], const size_t n, const size_t i)
{
size_t m = n;
size_t j = i;
for (;;) {
assert(m <= n);
assert(j >= 0);
if (j >= m)
return n; /* i-th char is < buf */
/* if (m == i-j) /\* suffix is made up only of ASCII chars, so we can shortcut *\/ */
/* return 0; */
/* scan until octet does not match 10_ */
assert(m > 0);
if (!(buf[--m] & 0x80))
goto l_cont;
assert(m > 0);
if (utf8_lead_p(buf[--m])) {
assert ((buf[m] & 0xe0) == 0xc0); /* 110_ */
goto l_cont;
}
assert(m > 0);
if (utf8_lead_p(buf[--m])) {
assert ((buf[m] & 0xf0) == 0xe0); /* 1110_ */
goto l_cont;
}
/* this must be a non-10_ octet in a well-formed stream */
assert(m > 0);
m -= 1;
assert ((buf[m] & 0xf8) == 0xf0); /* 11110_ */
l_cont:
assert(utf8_lead_p(buf[m]));
if (!j)
return m; /* found */
j -= 1;
}
assert(0);
}
/* Decode UTF8 code units into code-point
* Assumes buf[] points to start of a valid UTF8-encoded code-point
*/
static inline uint32_t
hs_text_short_decode_cp(const uint8_t buf[])
{
/* 7 bits | 0xxxxxxx
* 11 bits | 110yyyyx 10xxxxxx
* 16 bits | 1110yyyy 10yxxxxx 10xxxxxx
* 21 bits | 11110yyy 10yyxxxx 10xxxxxx 10xxxxxx
*/
const uint8_t b0 = buf[0];
if (!(b0 & 0x80))
return b0;
uint32_t cp = 0;
switch(b0 >> 4) {
case 0xf: /* 11110___ */
assert((b0 & 0xf8) == 0xf0);
assert(!utf8_lead_p(buf[1]));
assert(!utf8_lead_p(buf[2]));
assert(!utf8_lead_p(buf[3]));
cp = ((uint32_t)(b0 & 0x07)) << (6+6+6);
cp |= ((uint32_t)(buf[1] & 0x3f)) << (6+6);
cp |= ((uint32_t)(buf[2] & 0x3f)) << 6;
cp |= buf[3] & 0x3f;
assert (cp > 0xffff); assert (cp < 0x110000);
return cp;
case 0xe: /* 1110____ */
assert(!utf8_lead_p(buf[1]));
assert(!utf8_lead_p(buf[2]));
cp = ((uint32_t)(b0 & 0x0f)) << (6+6);
cp |= ((uint32_t)(buf[1] & 0x3f)) << 6;
cp |= buf[2] & 0x3f;
assert (cp > 0x7ff); assert (cp < 0x10000);
assert (cp < 0xd800 || cp > 0xdfff);
return cp;
default: /* 110_____ */
assert((b0 & 0xe0) == 0xc0);
assert(!utf8_lead_p(buf[1]));
cp = ((uint32_t)(b0 & 0x1f)) << 6;
cp |= buf[1] & 0x3f;
assert (cp > 0x7f); assert (cp < 0x800);
return cp;
}
}
/* decode codepoint starting at buf[ofs] */
codepoint_t
hs_text_short_ofs_cp(const uint8_t buf[], const size_t ofs)
{
return hs_text_short_decode_cp(buf+ofs);
}
/* reverse-decode codepoint starting at offset right after a code-point */
codepoint_t
hs_text_short_ofs_cp_rev(const uint8_t *buf, const size_t ofs)
{
/* 7 bits | 0xxxxxxx
* 11 bits | 110yyyyx 10xxxxxx
* 16 bits | 1110yyyy 10yxxxxx 10xxxxxx
* 21 bits | 11110yyy 10yyxxxx 10xxxxxx 10xxxxxx
*/
buf = buf + ofs - 1;
/* this octet is either 10_ or 0_ */
uint32_t cp = *buf;
if (!(cp & 0x80))
return cp;
assert (!utf8_lead_p(cp));
cp &= 0x3f;
/* this octet is either 10_ or 110_ */
{
const uint8_t b = *(--buf);
assert (!utf8_lead_p(b) || ((b & 0xe0) == 0xc0));
cp |= (b & 0x3f) << 6;
if (b & 0x40) {
assert (cp > 0x7f); assert (cp < 0x800);
return cp;
}
}
/* this octet is either 10_ or 1110_ */
{
const uint8_t b = *(--buf);
assert (!utf8_lead_p(b) || ((b & 0xf0) == 0xe0));
if (b & 0x40) {
cp |= (b & 0xf) << 12;
assert (cp > 0x7ff); assert (cp < 0x10000);
assert (cp < 0xd800 || cp > 0xdfff);
return cp;
}
cp |= (b & 0x3f) << 12;
}
/* this octet must be 11110_ */
const uint8_t b = *(buf-1);
assert ((b & 0xf8) == 0xf0);
cp |= (b & 0x7) << 18;
assert (cp > 0xffff); assert (cp < 0x110000);
return cp;
}
/* Retrieve i-th code-point in (valid) UTF8 stream
*
* Returns -1 if out of bounds
*/
codepoint_t
hs_text_short_index_cp(const uint8_t buf[], const size_t n, const size_t i)
{
const size_t ofs = hs_text_short_index_ofs(buf, n, i);
if (ofs >= n)
return -1;
return hs_text_short_decode_cp(&buf[ofs]);
}
/* Retrieve i-th code-point in (valid) UTF8 stream
*
* Returns -1 if out of bounds
*/
codepoint_t
hs_text_short_index_cp_rev(const uint8_t buf[], const size_t n, const size_t i)
{
const size_t ofs = hs_text_short_index_ofs_rev(buf, n, i);
if (ofs >= n)
return -1;
return hs_text_short_decode_cp(&buf[ofs]);
}
/* Validate UTF8 encoding
7 bits | 0xxxxxxx
11 bits | 110yyyyx 10xxxxxx
16 bits | 1110yyyy 10yxxxxx 10xxxxxx
21 bits | 11110yyy 10yyxxxx 10xxxxxx 10xxxxxx
Valid code-points:
[U+0000 .. U+D7FF] + [U+E000 .. U+10FFFF]
Return values:
0 -> ok
1 -> invalid byte/code-point
-1 -> truncated (1 byte missing)
-2 -> truncated (2 byte missing)
-3 -> truncated (3 byte missing)
*/
int
hs_text_short_is_valid_utf8(const uint8_t buf[], const size_t n)
{
size_t j = 0;
while (j < n) {
const uint8_t b0 = buf[j++];
if (!(b0 & 0x80))
continue; /* b0 elem [ 0x00 .. 0x7f ] */
if ((b0 & 0xe0) == 0xc0) { /* [ 0xc0 .. 0xdf ] */
if (!(b0 & 0x1e)) return 1; /* 0xc0 or 0xc1; denorm */
if (j >= n) return -1;
goto l_trail1; /* b1 */
}
if ((b0 & 0xf0) == 0xe0) { /* [ 0xe0 .. 0xef ] */
if ((j+1) >= n) return (n-(j+2));
const uint8_t b1 = buf[j++];
if (utf8_lead_p(b1)) return 1; /* b1 elem [ 0x80 .. 0xbf ] */
/* if b0==0xe0: b1 elem [ 0xa0 .. 0xbf ] */
if (!((b0 & 0x0f) | (b1 & 0x20))) return 1; /* denorm */
/* UTF16 Surrogate pairs [U+D800 .. U+DFFF] */
/* if b0==0xed: b1 elem [ 0x80 .. 0x9f ] */
if ((b0 == 0xed) && (b1 & 0x20)) return 1;
goto l_trail1; /* b2 */
}
if ((b0 & 0xfc) == 0xf0) { /* [ 0xf0 .. 0xf3 ] */
if ((j+2) >= n) return (n-(j+3));
const uint8_t b1 = buf[j++];
if (utf8_lead_p(b1)) /* b1 elem [ 0x80 .. 0xbf ] */
return 1;
if (!((b0 & 0x03) | (b1 & 0x30))) /* if b0==0xf0: b1 elem [ 0x90 .. 0xbf ] */
return 1;
goto l_trail2; /* b1, b2 */
}
if (b0 == 0xf4) {
if ((j+2) >= n) return (n-(j+3));
/* b1 */
if ((buf[j++] & 0xf0) != 0x80) return 1;
/* b1 elem [ 0x80 .. 0x8f ] */
l_trail2:
/* b2 */
if (utf8_lead_p(buf[j++])) return 1;
/* b2 elem [ 0x80 .. 0xbf ] */
l_trail1:
/* b3 */
if (utf8_lead_p(buf[j++])) return 1;
/* b3 elem [ 0x80 .. 0xbf ] */
continue;
}
/* invalid b0 byte */
return 1;
}
assert(j == n);
return 0;
}
/* Returns length of longest ASCII-code-point prefix.
*/
size_t
hs_text_short_ascii_length(const uint8_t buf[], const size_t n)
{
size_t j = 0;
if (is_64bit) {
/* "vectorized" optimisation checking 8 octets at once
*
* NB: A 64-bit aligned buffer is assumed. This is assumption is
* justified when the buffer is the payload of a `ByteArray#`.
*/
const uint64_t *buf64 = (const uint64_t*)buf;
for (; (j+7) < n; j+=8, ++buf64)
if (*buf64 & UINT64_C(0x8080808080808080))
break;
} else {
/* "vectorized" optimisation checking 4 octets at once */
const uint32_t *buf32 = (const uint32_t*)buf;
for (; (j+3) < n; j+=4, ++buf32)
if (*buf32 & UINT64_C(0x80808080))
break;
}
for (; j < n; ++j)
if (buf[j] & 0x80)
return j;
return j;
}
/* Test whether well-formed UTF8 string contains only ASCII code-points
* returns 0 if not ASCII
*
* This code assumes a naturally aligned buf[]
*/
int
hs_text_short_is_ascii(const uint8_t buf[], const size_t n)
{
size_t j = 0;
if (n < 2)
return 1;
if (is_64bit) {
/* "vectorized" optimisation checking 8 octets at once
*
* NB: A 64-bit aligned buffer is assumed. This is assumption is
* justified when the buffer is the payload of a `ByteArray#`.
*
*/
const uint64_t *buf64 = (const uint64_t*)buf;
for (; (j+7) < n; j+=8, ++buf64)
if (*buf64 & UINT64_C(0x8080808080808080))
return 0;
if (j < n) {
const int maskshift = (8 - (n - j)) << 3;
const uint64_t mask = is_bigendian ? (UINT64_C(0x8080808080808080) << maskshift) /* big endian */
: (UINT64_C(0x8080808080808080) >> maskshift); /* little endian */
if (*buf64 & mask)
return 0;
}
} else {
/* "vectorized" optimisation checking 4 octets at once */
const uint32_t *buf32 = (const uint32_t*)buf;
for (; (j+3) < n; j+=4, ++buf32)
if (*buf32 & UINT64_C(0x80808080))
return 0;
for (; j < n; ++j)
if (buf[j] & 0x80)
return 0;
}
return 1;
}
/*
* Compute length of (transcoded) mutf8 literal
*
* If the mutf8 literal does not contain either surrogates nor escaped
* NULs, a positive length is returned which matches what strlen(3)
* would have returned.
*
* Otherwise, a negated size is returned which corresponds to the size
* of a the mutf8->utf8 transcoded string.
*
*/
HsInt
hs_text_short_mutf8_strlen(const uint8_t buf[])
{
size_t j = 0;
size_t nulls = 0;
bool surr_seen = false;
for (;;) {
const uint8_t b0 = buf[j];
if (unlikely(!b0))
break;
if (likely(!(b0 & 0x80)))
j += 1; /* 0_______ */
else
switch(b0 >> 4) {
case 0xf: /* 11110___ */
j += 4;
break;
case 0xe: /* 1110____ */
/* UTF16 Surrogate pairs [U+D800 .. U+DFFF] */
if (unlikely(!surr_seen && (b0 == 0xed) && (buf[j+1] & 0x20)))
surr_seen = true;
j += 3;
break;
default: /* 110_____ */
/* escaped NUL */
if (unlikely((b0 == 0xc0) && (buf[j+1] == 0x80)))
nulls += 1;
j += 2;
break;
}
} /* for */
if ((nulls > 0) || surr_seen)
return -(HsInt)(j - nulls);
return j;
}
/* Transcode Modified UTF-8 to proper UTF-8
*
* This involves
*
* 1. Unescape denormal 2-byte NULs (0xC0 0x80)
* 2. Rewrite surrogate pairs to U+FFFD
*/
void
hs_text_short_mutf8_trans(const uint8_t src0[], uint8_t dst0[])
{
const uint8_t *src = src0;
uint8_t *dst = dst0;
for (;;) {
const uint8_t b0 = *src++;
assert(utf8_lead_p(b0));
if (likely(!(b0 & 0x80))) { /* 0_______ */
if (unlikely(!b0))
break;
*dst++ = b0;
continue;
}
switch(b0 >> 4) {
case 0xf: /* 11110___ */
assert(!utf8_lead_p(src[0]));
assert(!utf8_lead_p(src[1]));
assert(!utf8_lead_p(src[2]));
*dst++ = b0;
*dst++ = *src++;
*dst++ = *src++;
*dst++ = *src++;
break;
case 0xe: { /* 1110____ */
const uint8_t b1 = *src++;
const uint8_t b2 = *src++;
assert(!utf8_lead_p(b1));
assert(!utf8_lead_p(b2));
if (unlikely((b0 == 0xed) && (b1 & 0x20))) {
/* UTF16 Surrogate pairs [U+D800 .. U+DFFF]
* -> translate into U+FFFD
*/
*dst++ = 0xef;
*dst++ = 0xbf;
*dst++ = 0xbd;
} else {
*dst++ = b0;
*dst++ = b1;
*dst++ = b2;
}
break;
}
default: { /* 110_____ */
const uint8_t b1 = *src++;
assert(!utf8_lead_p(b1));
if (unlikely((b0 == 0xc0) && (b1 == 0x80))) {
/* escaped/denormal U+0000 -> normalize */
*dst++ = 0x00;
} else {
*dst++ = b0;
*dst++ = b1;
}
break;
}
} /* switch */
} /* for */
assert(labs(hs_text_short_mutf8_strlen(src0)) == (dst - dst0));
}
|