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 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896
|
""" This file is about supporting unicode strings in RPython,
represented by a byte string that is exactly the UTF-8 version
(for some definition of UTF-8).
This doesn't support Python 2's unicode characters beyond 0x10ffff,
which are theoretically possible to obtain using strange tricks like
the array or ctypes modules.
Fun comes from surrogates. Various functions don't normally accept
any unicode character betwen 0xd800 and 0xdfff, but do if you give
the 'allow_surrogates = True' flag.
This is a minimal reference implementation. A lot of interpreters
need their own copy-pasted copy of some of the logic here, with
extra code in the middle for error handlers and so on.
"""
import sys
from rpython.rlib.objectmodel import enforceargs, we_are_translated, specialize
from rpython.rlib.objectmodel import always_inline, dont_inline, try_inline
from rpython.rlib.rstring import StringBuilder
from rpython.rlib import jit, types, rarithmetic
from rpython.rlib.signature import signature, finishsigs
from rpython.rlib.types import char, none
from rpython.rlib.rarithmetic import r_uint
from rpython.rlib.unicodedata import unicodedb
from rpython.rtyper.lltypesystem import lltype, rffi
# We always use MAXUNICODE = 0x10ffff when unicode objects use utf8
MAXUNICODE = 0x10ffff
allow_surrogate_by_default = False
class OutOfRange(Exception):
def __init__(self, code):
self.code = code
# we need a way to accept both r_uint and int(nonneg=True)
#@signature(types.int_nonneg(), types.bool(), returns=types.str())
def unichr_as_utf8(code, allow_surrogates=False):
"""Encode code (numeric value) as utf8 encoded string
"""
assert code >= 0
code = r_uint(code)
if code <= r_uint(0x7F):
# Encode ASCII
return chr(code)
if code <= r_uint(0x07FF):
return chr((0xc0 | (code >> 6))) + chr((0x80 | (code & 0x3f)))
if code <= r_uint(0xFFFF):
if not allow_surrogates and 0xD800 <= code <= 0xDfff:
raise OutOfRange(code)
return (chr((0xe0 | (code >> 12))) +
chr((0x80 | ((code >> 6) & 0x3f))) +
chr((0x80 | (code & 0x3f))))
if code <= r_uint(0x10FFFF):
return (chr((0xf0 | (code >> 18))) +
chr((0x80 | ((code >> 12) & 0x3f))) +
chr((0x80 | ((code >> 6) & 0x3f))) +
chr((0x80 | (code & 0x3f))))
raise OutOfRange(code)
@try_inline
def unichr_as_utf8_append(builder, code, allow_surrogates=False):
"""Encode code (numeric value) as utf8 encoded string
and emit the result into the given StringBuilder.
Raises ValueError if the code is outside range(0x110000).
"""
code = r_uint(code)
if code <= r_uint(0x7F):
# Encode ASCII
builder.append(chr(code))
else:
# Encode non-ASCII, uses a function call
if allow_surrogates:
_nonascii_unichr_as_utf8_append(builder, code)
else:
_nonascii_unichr_as_utf8_append_nosurrogates(builder, code)
@dont_inline
def _nonascii_unichr_as_utf8_append(builder, code):
if code <= r_uint(0x07FF):
builder.append(chr((0xc0 | (code >> 6))))
builder.append(chr((0x80 | (code & 0x3f))))
return
if code <= r_uint(0xFFFF):
builder.append(chr((0xe0 | (code >> 12))))
builder.append(chr((0x80 | ((code >> 6) & 0x3f))))
builder.append(chr((0x80 | (code & 0x3f))))
return
if code <= r_uint(0x10FFFF):
builder.append(chr((0xf0 | (code >> 18))))
builder.append(chr((0x80 | ((code >> 12) & 0x3f))))
builder.append(chr((0x80 | ((code >> 6) & 0x3f))))
builder.append(chr((0x80 | (code & 0x3f))))
return
raise OutOfRange(code)
@dont_inline
def _nonascii_unichr_as_utf8_append_nosurrogates(builder, code):
if code <= r_uint(0x07FF):
builder.append(chr((0xc0 | (code >> 6))))
builder.append(chr((0x80 | (code & 0x3f))))
return
if code <= r_uint(0xFFFF):
if 0xd800 <= code <= 0xdfff:
raise ValueError
builder.append(chr((0xe0 | (code >> 12))))
builder.append(chr((0x80 | ((code >> 6) & 0x3f))))
builder.append(chr((0x80 | (code & 0x3f))))
return
if code <= r_uint(0x10FFFF):
builder.append(chr((0xf0 | (code >> 18))))
builder.append(chr((0x80 | ((code >> 12) & 0x3f))))
builder.append(chr((0x80 | ((code >> 6) & 0x3f))))
builder.append(chr((0x80 | (code & 0x3f))))
return
raise OutOfRange(code)
# note - table lookups are really slow. Measured on various elements of obama
# chinese wikipedia, they're anywhere between 10% and 30% slower.
# In extreme cases (small, only chinese text), they're 40% slower
# The following was found by hand to be more optimal than both,
# on x86-64...
_is_64bit = sys.maxint > 2**32
_constant_ncp = rarithmetic.r_uint64(0xffff0000ffffffff)
@always_inline
def next_codepoint_pos(code, pos):
"""Gives the position of the next codepoint after pos.
Assumes valid utf8. 'pos' must be before the end of the string.
"""
assert pos >= 0
chr1 = ord(code[pos])
if chr1 <= 0x7F:
return pos + 1
if _is_64bit and not jit.we_are_jitted():
# optimized for Intel x86-64 by hand
res = pos + 1 + (
((chr1 > 0xDF) << 1) +
rarithmetic.intmask((_constant_ncp >> (chr1 & 0x3F)) & 1))
assert res >= 0
return res
if chr1 <= 0xDF:
return pos + 2
if chr1 <= 0xEF:
return pos + 3
return pos + 4
def prev_codepoint_pos(code, pos):
"""Gives the position of the previous codepoint.
'pos' must not be zero.
"""
pos -= 1
assert pos >= 0
if pos >= len(code): # for the case where pos - 1 == len(code):
return pos # assume there is an extra '\x00' character
chr1 = ord(code[pos])
if chr1 <= 0x7F:
return pos
pos -= 1
assert pos >= 0
if ord(code[pos]) >= 0xC0:
return pos
pos -= 1
assert pos >= 0
if ord(code[pos]) >= 0xC0:
return pos
pos -= 1
assert pos >= 0
return pos
def codepoint_at_pos(code, pos):
""" Give a codepoint in code at pos - assumes valid utf8, no checking!
"""
lgt = len(code)
ordch1 = ord(code[pos])
if ordch1 <= 0x7F or pos +1 >= lgt:
return ordch1
ordch2 = ord(code[pos+1])
if ordch1 <= 0xDF or pos +2 >= lgt:
# 110yyyyy 10zzzzzz -> 00000000 00000yyy yyzzzzzz
return (ordch1 << 6) + ordch2 - (
(0xC0 << 6) + 0x80 )
ordch3 = ord(code[pos+2])
if ordch1 <= 0xEF or pos + 3 >= lgt:
# 1110xxxx 10yyyyyy 10zzzzzz -> 00000000 xxxxyyyy yyzzzzzz
return (ordch1 << 12) + (ordch2 << 6) + ordch3 - (
(0xE0 << 12) + (0x80 << 6) + 0x80 )
ordch4 = ord(code[pos+3])
if True:
# 11110www 10xxxxxx 10yyyyyy 10zzzzzz -> 000wwwxx xxxxyyyy yyzzzzzz
return (ordch1 << 18) + (ordch2 << 12) + (ordch3 << 6) + ordch4 - (
(0xF0 << 18) + (0x80 << 12) + (0x80 << 6) + 0x80 )
assert False, "unreachable"
def codepoint_before_pos(code, pos):
"""Give a codepoint in code at the position immediately before pos
- assumes valid utf8, no checking!
"""
pos = r_uint(pos)
ordch1 = ord(code[pos-1])
if ordch1 <= 0x7F:
return ordch1
ordch2 = ordch1
ordch1 = ord(code[pos-2])
if ordch1 >= 0xC0:
# 110yyyyy 10zzzzzz -> 00000000 00000yyy yyzzzzzz
return (((ordch1 & 0x1F) << 6) + # 0b00011111
(ordch2 & 0x3F)) # 0b00111111
ordch3 = ordch2
ordch2 = ordch1
ordch1 = ord(code[pos-3])
if ordch1 >= 0xC0:
# 1110xxxx 10yyyyyy 10zzzzzz -> 00000000 xxxxyyyy yyzzzzzz
return (((ordch1 & 0x0F) << 12) + # 0b00001111
((ordch2 & 0x3F) << 6) + # 0b00111111
(ordch3 & 0x3F)) # 0b00111111
ordch4 = ordch3
ordch3 = ordch2
ordch2 = ordch1
ordch1 = ord(code[pos-4])
if True:
# 11110www 10xxxxxx 10yyyyyy 10zzzzzz -> 000wwwxx xxxxyyyy yyzzzzzz
return (((ordch1 & 0x07) << 18) + # 0b00000111
((ordch2 & 0x3F) << 12) + # 0b00111111
((ordch3 & 0x3F) << 6) + # 0b00111111
(ordch4 & 0x3F)) # 0b00111111
assert False, "unreachable"
class CheckError(Exception):
def __init__(self, pos):
self.pos = pos
def check_ascii(s):
res = first_non_ascii_char(s)
if res < 0:
return
raise CheckError(res)
@jit.elidable
def first_non_ascii_char(s):
for i in range(len(s)):
if ord(s[i]) > 0x7F:
return i
return -1
def islinebreak(s, pos):
chr1 = ord(s[pos])
if 0xa <= chr1 <= 0xd:
return True
if 0x1c <= chr1 <= 0x1e:
return True
if chr1 == 0xc2:
chr2 = ord(s[pos + 1])
return chr2 == 0x85
elif chr1 == 0xe2:
chr2 = ord(s[pos + 1])
if chr2 != 0x80:
return False
chr3 = ord(s[pos + 2])
return chr3 == 0xa8 or chr3 == 0xa9
return False
def isspace(s, pos):
chr1 = ord(s[pos])
if (chr1 == ord(' ') or chr1 == ord('\n') or chr1 == ord('\t') or
chr1 == ord('\r')):
return True # common
if chr1 == 0x0b or chr1 == 0x0c or (chr1 >= 0x1c and chr1 <= 0x1f):
return True # less common
if chr1 < 0x80:
return False
# obscure cases
chr2 = ord(s[pos + 1])
if chr1 == 0xc2:
return chr2 == 0x85 or chr2 == 0xa0
if chr1 == 0xe2:
if chr2 == 0x81 and s[pos + 2] == '\x9f':
return True
if chr2 != 0x80:
return False
chr3 = ord(s[pos + 2])
if chr3 >= 0x80 and chr3 <= 0x8a:
return True
if chr3 == 0xa9 or chr3 == 0xa8 or chr3 == 0xaf:
return True
return False
if chr1 == 0xe1:
chr3 = ord(s[pos + 2])
if chr2 == 0x9a and chr3 == 0x80:
return True
if chr2 == 0xa0 and chr3 == 0x8e:
return True
return False
if chr1 == 0xe3 and chr2 == 0x80 and s[pos + 2] == '\x80':
return True
return False
def utf8_in_chars(value, pos, chars):
"""Equivalent of u'x' in u'xyz', where the left-hand side is
a single UTF-8 character extracted from the string 'value' at 'pos'.
Only works if both 'value' and 'chars' are correctly-formed UTF-8
strings.
"""
end = next_codepoint_pos(value, pos)
i = 0
while i < len(chars):
k = pos
while value[k] == chars[i]:
k += 1
i += 1
if k == end:
return True
i += 1
return False
def _invalid_cont_byte(ordch):
signedchar = rffi.cast(rffi.SIGNEDCHAR, ordch)
return rffi.cast(lltype.Signed, signedchar) >= -0x40
_invalid_byte_2_of_2 = _invalid_cont_byte
_invalid_byte_3_of_3 = _invalid_cont_byte
_invalid_byte_3_of_4 = _invalid_cont_byte
_invalid_byte_4_of_4 = _invalid_cont_byte
def _surrogate_bytes(ch1, ch2):
return ch1 == 0xed and ch2 > 0x9f
@enforceargs(allow_surrogates=bool)
def _invalid_byte_2_of_3(ordch1, ordch2, allow_surrogates):
return (_invalid_cont_byte(ordch2) or
(ordch1 == 0xe0 and ordch2 < 0xa0)
# surrogates shouldn't be valid UTF-8!
or (ordch1 == 0xed and ordch2 > 0x9f and not allow_surrogates))
def _invalid_byte_2_of_4(ordch1, ordch2):
return (_invalid_cont_byte(ordch2) or
(ordch1 == 0xf0 and ordch2 < 0x90) or
(ordch1 == 0xf4 and ordch2 > 0x8f))
def check_utf8(s, allow_surrogates, start=0, stop=-1):
"""Check that 's' is a utf-8-encoded byte string.
Returns the length (number of chars) or raise CheckError.
If allow_surrogates is False, then also raise if we see any.
Note also codepoints_in_utf8(), which also computes the length
faster by assuming that 's' is valid utf-8.
"""
res = _check_utf8(s, allow_surrogates, start, stop)
if res >= 0:
return res
raise CheckError(~res)
def get_utf8_length(s, start=0, end=-1):
# DEPRECATED! use codepoints_in_utf8 instead
""" Get the length out of valid utf8.
"""
if end < 0:
end = len(s)
return codepoints_in_utf8(s, start, end)
@jit.elidable
def _check_utf8(s, allow_surrogates, start, stop):
pos = start
continuation_bytes = 0
if stop < 0:
end = len(s)
else:
end = stop
while pos < end:
ordch1 = ord(s[pos])
pos += 1
# fast path for ASCII
if ordch1 <= 0x7F:
continue
if ordch1 <= 0xC1:
return ~(pos - 1)
if ordch1 <= 0xDF:
if pos >= end:
return ~(pos - 1)
ordch2 = ord(s[pos])
pos += 1
if _invalid_byte_2_of_2(ordch2):
return ~(pos - 2)
# 110yyyyy 10zzzzzz -> 00000000 00000yyy yyzzzzzz
continuation_bytes += 1
continue
if ordch1 <= 0xEF:
if (pos + 2) > end:
return ~(pos - 1)
ordch2 = ord(s[pos])
ordch3 = ord(s[pos + 1])
pos += 2
if (_invalid_byte_2_of_3(ordch1, ordch2, allow_surrogates) or
_invalid_byte_3_of_3(ordch3)):
return ~(pos - 3)
# 1110xxxx 10yyyyyy 10zzzzzz -> 00000000 xxxxyyyy yyzzzzzz
continuation_bytes += 2
continue
if ordch1 <= 0xF4:
if (pos + 3) > end:
return ~(pos - 1)
ordch2 = ord(s[pos])
ordch3 = ord(s[pos + 1])
ordch4 = ord(s[pos + 2])
pos += 3
if (_invalid_byte_2_of_4(ordch1, ordch2) or
_invalid_byte_3_of_4(ordch3) or
_invalid_byte_4_of_4(ordch4)):
return ~(pos - 4)
# 11110www 10xxxxxx 10yyyyyy 10zzzzzz -> 000wwwxx xxxxyyyy yyzzzzzz
continuation_bytes += 3
continue
return ~(pos - 1)
assert pos == end
result = pos - continuation_bytes - start
assert result >= 0
return result
def has_surrogates(utf8):
return surrogate_in_utf8(utf8) >= 0
def reencode_utf8_with_surrogates(utf8):
""" Receiving valid UTF8 which contains surrogates, combine surrogate
pairs into correct UTF8 with pairs collpased. This is a rare case
and you should not be using surrogate pairs in the first place,
so the performance here is a bit secondary
"""
s = StringBuilder(len(utf8))
stop = len(utf8)
i = 0
while i < stop:
uchr = codepoint_at_pos(utf8, i)
if 0xD800 <= uchr <= 0xDBFF:
high = uchr
i = next_codepoint_pos(utf8, i)
if i >= stop:
unichr_as_utf8_append(s, uchr, True)
break
low = codepoint_at_pos(utf8, i)
if 0xDC00 <= low <= 0xDFFF:
uchr = 0x10000 + (high - 0xD800) * 0x400 + (low - 0xDC00)
i = next_codepoint_pos(utf8, i)
# else not really a surrogate pair, just append high
else:
i = next_codepoint_pos(utf8, i)
unichr_as_utf8_append(s, uchr, True)
return s.build()
@jit.elidable
def codepoints_in_utf8(value, start=0, end=sys.maxint):
"""Return the number of codepoints in the UTF-8 byte string
'value[start:end]'. Assumes 0 <= start <= len(value) and start <= end.
"""
if end > len(value):
end = len(value)
assert 0 <= start <= end
length = 0
for i in range(start, end):
# we want to count the number of chars not between 0x80 and 0xBF;
# we do that by casting the char to a signed integer
signedchar = rffi.cast(rffi.SIGNEDCHAR, ord(value[i]))
if rffi.cast(lltype.Signed, signedchar) >= -0x40:
length += 1
return length
@jit.elidable
def surrogate_in_utf8(utf8):
"""Check if the UTF-8 byte string 'value' contains a surrogate.
The 'value' argument must be otherwise correctly formed for UTF-8.
Returns the position of the first surrogate, otherwise -1.
"""
# a surrogate starts with 0xed in utf-8 encoding
pos = 0
while True:
pos = utf8.find("\xed", pos)
if pos < 0:
return -1
assert pos <= len(utf8) - 1 # otherwise invalid utf-8
ordch2 = ord(utf8[pos + 1])
if _invalid_byte_2_of_3(0xed, ordch2, allow_surrogates=False):
return pos
pos += 1
return -1
UTF8_INDEX_STORAGE = lltype.GcArray(lltype.Struct('utf8_loc_elem',
('baseindex', lltype.Signed),
('ofs', lltype.FixedSizeArray(lltype.Char, 16)),
))
def null_storage():
return lltype.nullptr(UTF8_INDEX_STORAGE)
def create_utf8_index_storage(utf8, utf8len):
""" Create an index storage which stores index of each 4th character
in utf8 encoded unicode string.
"""
arraysize = utf8len // 64 + 1
storage = lltype.malloc(UTF8_INDEX_STORAGE, arraysize)
baseindex = 0
current = 0
while True:
storage[current].baseindex = baseindex
next = baseindex
for i in range(16):
if utf8len == 0:
next += 1 # assume there is an extra '\x00' character
else:
next = next_codepoint_pos(utf8, next)
storage[current].ofs[i] = chr(next - baseindex)
utf8len -= 4
if utf8len < 0:
assert current + 1 == len(storage)
break
next = next_codepoint_pos(utf8, next)
next = next_codepoint_pos(utf8, next)
next = next_codepoint_pos(utf8, next)
else:
current += 1
baseindex = next
continue
break
return storage
@jit.elidable
def codepoint_position_at_index(utf8, storage, index):
""" Return byte index of a character inside utf8 encoded string, given
storage of type UTF8_INDEX_STORAGE. The index must be smaller than
or equal to the utf8 length: if needed, check explicitly before calling
this function.
"""
current = index >> 6
ofs = ord(storage[current].ofs[(index >> 2) & 0x0F])
bytepos = storage[current].baseindex + ofs
index &= 0x3
if index == 0:
return prev_codepoint_pos(utf8, bytepos)
elif index == 1:
assert bytepos >= 0
return bytepos
elif index == 2:
return next_codepoint_pos(utf8, bytepos)
else:
return next_codepoint_pos(utf8, next_codepoint_pos(utf8, bytepos))
def _pos_at_index(utf8, index):
# Slow!
pos = 0
for _ in range(index):
pos = next_codepoint_pos(utf8, pos)
return pos
@jit.elidable
def codepoint_at_index(utf8, storage, index):
""" Return codepoint of a character inside utf8 encoded string, given
storage of type UTF8_INDEX_STORAGE
"""
current = index >> 6
ofs = ord(storage[current].ofs[(index >> 2) & 0x0F])
bytepos = storage[current].baseindex + ofs
index &= 0x3
if index == 0:
return codepoint_before_pos(utf8, bytepos)
if index == 3:
bytepos = next_codepoint_pos(utf8, bytepos)
index = 2 # fall-through to the next case
if index == 2:
bytepos = next_codepoint_pos(utf8, bytepos)
return codepoint_at_pos(utf8, bytepos)
@jit.elidable
def codepoint_index_at_byte_position(utf8, storage, bytepos, num_codepoints):
""" Return the character index for which
codepoint_position_at_index(index) == bytepos.
This is a relatively slow operation in that it runs in a time
logarithmic in the length of the string, plus some constant that
is not tiny either.
"""
if bytepos < 0:
return bytepos
# binary search on elements of storage
bytes_remaining = len(utf8) - bytepos
# the fact that one codepoint is encoded in 1-4 bytes constrains the result.
# pick good min and max indexes based on this observation. saves a few
# bisection steps.
index_min = max(bytepos // 4, num_codepoints - bytes_remaining - 1) >> 6
index_max = min(bytepos, num_codepoints - bytes_remaining // 4) >> 6
while index_min < index_max:
# this addition can't overflow because storage has a length that is
# 1/64 of the length of a string
index_middle = (index_min + index_max + 1) // 2
base_bytepos = storage[index_middle].baseindex
if bytepos < base_bytepos:
index_max = index_middle - 1
else:
index_min = index_middle
baseindex = storage[index_min].baseindex
if baseindex == bytepos:
return index_min << 6
# use ofs to get closer to the correct character index
result = index_min << 6
bytepos1 = baseindex
if index_min == len(storage) - 1:
maxindex = ((num_codepoints - 1) >> 2) & 0x0F
else:
maxindex = 16
for i in range(maxindex):
x = baseindex + ord(storage[index_min].ofs[i])
if x >= bytepos:
break
bytepos1 = x
result = (index_min << 6) + (i << 2) + 1
# this loop should runs at most four times
while bytepos1 < bytepos:
bytepos1 = next_codepoint_pos(utf8, bytepos1)
result += 1
return result
TABLE = '0123456789abcdef'
def char_escape_helper(result, char):
if char >= 0x10000 or char < 0:
result.append("\\U")
zeros = 8
elif char >= 0x100:
result.append("\\u")
zeros = 4
else:
result.append("\\x")
zeros = 2
for i in range(zeros-1, -1, -1):
result.append(TABLE[(char >> (4 * i)) & 0x0f])
def make_utf8_escape_function(pass_printable=False, quotes=False, prefix=None, unicodedb=None):
if pass_printable:
assert unicodedb is not None, "need to give unicodedb explicitly!"
@jit.elidable
def unicode_escape(s):
size = len(s)
result = StringBuilder(size)
if quotes:
if prefix:
result.append(prefix)
if s.find('\'') != -1 and s.find('\"') == -1:
quote = ord('\"')
result.append('"')
else:
quote = ord('\'')
result.append('\'')
else:
quote = 0
if size == 0:
return ''
pos = 0
while pos < size:
oc = codepoint_at_pos(s, pos)
ch = s[pos]
# Escape quotes
if quotes and (oc == quote or ch == '\\'):
result.append('\\')
next_pos = next_codepoint_pos(s, pos)
result.append_slice(s, pos, next_pos)
pos = next_pos
continue
# The following logic is enabled only if MAXUNICODE == 0xffff, or
# for testing on top of a host Python where sys.maxunicode == 0xffff
if (not we_are_translated() and sys.maxunicode == 0xFFFF and
0xD800 <= oc < 0xDC00 and pos + 3 < size):
# Map UTF-16 surrogate pairs to Unicode \UXXXXXXXX escapes
pos += 3
oc2 = codepoint_at_pos(s, pos)
if 0xDC00 <= oc2 <= 0xDFFF:
ucs = (((oc & 0x03FF) << 10) | (oc2 & 0x03FF)) + 0x00010000
char_escape_helper(result, ucs)
pos += 3
continue
# Fall through: isolated surrogates are copied as-is
pos -= 3
# Map special whitespace to '\t', \n', '\r'
if ch == '\t':
result.append('\\t')
elif ch == '\n':
result.append('\\n')
elif ch == '\r':
result.append('\\r')
elif ch == '\\':
result.append('\\\\')
# Map non-printable or non-ascii to '\xhh' or '\uhhhh'
elif pass_printable and not (oc <= 0x10ffff and unicodedb.isprintable(oc)):
char_escape_helper(result, oc)
elif not pass_printable and (oc < 32 or oc >= 0x7F):
char_escape_helper(result, oc)
# Copy everything else as-is
else:
if oc < 128:
result.append(ch)
else:
next_pos = next_codepoint_pos(s, pos)
result.append_slice(s, pos, next_pos)
pos = next_codepoint_pos(s, pos)
if quotes:
result.append(chr(quote))
return result.build()
return unicode_escape #, char_escape_helper
@finishsigs
class Utf8StringBuilder(object):
@always_inline
def __init__(self, size=0):
self._s = StringBuilder(size)
self._lgt = 0
@always_inline
def append(self, s):
# for strings
self._s.append(s)
newlgt = codepoints_in_utf8(s)
self._lgt += newlgt
@always_inline
def append_slice(self, s, start, end):
self._s.append_slice(s, start, end)
newlgt = codepoints_in_utf8(s, start, end)
self._lgt += newlgt
@signature(types.self(), char(), returns=none())
@always_inline
def append_char(self, s):
# for characters, ascii
self._s.append(s)
self._lgt += 1
@try_inline
def append_code(self, code):
unichr_as_utf8_append(self._s, code, True)
self._lgt += 1
@always_inline
def append_utf8(self, utf8, length):
self._s.append(utf8)
self._lgt += length
@always_inline
def append_utf8_slice(self, utf8, start, end, slicelength):
self._s.append_slice(utf8, start, end)
self._lgt += slicelength
if not we_are_translated():
assert len(utf8[start: end].decode("utf-8")) == slicelength
@always_inline
def append_multiple_char(self, utf8, times):
self._s.append(utf8 * times)
self._lgt += times
@always_inline
def build(self):
return self._s.build()
@always_inline
def getlength(self):
return self._lgt
class Utf8StringIterator(object):
def __init__(self, utf8s):
self._utf8 = utf8s
self._end = len(utf8s)
self._pos = 0
def __iter__(self):
return self
def get_pos(self):
return self._pos
def done(self):
return self._pos == self._end
@always_inline
def next(self):
pos = self._pos
if pos == self._end:
raise StopIteration
#----- sane-looking version: ------
#ret = codepoint_at_pos(self._utf8, self._pos)
#self._pos = next_codepoint_pos(self._utf8, self._pos)
#return ret
#----- manually inlined version follows, with merged checks -----
code = self._utf8
ordch1 = ord(code[pos])
if ordch1 <= 0x7F:
self._pos = pos + 1
return ordch1
if pos + 1 >= len(code):
self._pos = pos + 1
return ordch1
ordch2 = ord(code[pos+1])
if ordch1 <= 0xDF:
# 110yyyyy 10zzzzzz -> 00000000 00000yyy yyzzzzzz
self._pos = pos + 2
return (ordch1 << 6) + ordch2 - (
(0xC0 << 6) + 0x80 )
ordch3 = ord(code[pos+2])
if ordch1 <= 0xEF:
# 1110xxxx 10yyyyyy 10zzzzzz -> 00000000 xxxxyyyy yyzzzzzz
self._pos = pos + 3
return (ordch1 << 12) + (ordch2 << 6) + ordch3 - (
(0xE0 << 12) + (0x80 << 6) + 0x80 )
ordch4 = ord(code[pos+3])
if True:
# 11110www 10xxxxxx 10yyyyyy 10zzzzzz -> 000wwwxx xxxxyyyy yyzzzzzz
self._pos = pos + 4
return (ordch1 << 18) + (ordch2 << 12) + (ordch3 << 6) + ordch4 - (
(0xF0 << 18) + (0x80 << 12) + (0x80 << 6) + 0x80 )
assert False, "unreachable"
class Utf8StringPosIterator(object):
def __init__(self, utf8s):
self.it = Utf8StringIterator(utf8s)
def __iter__(self):
return self
def next(self):
pos = self.it.get_pos()
return (self.it.next(), pos)
def decode_latin_1(s):
if len(s) == 0:
return s
if len(s) == 1 and ord(s[0]) <= 0x7F:
return s
try:
check_ascii(s)
return s
except CheckError:
return _decode_latin_1_slowpath(s)
def _decode_latin_1_slowpath(s):
res = StringBuilder(len(s))
i = 0
while i < len(s):
if ord(s[i]) > 0x7F:
while i < len(s) and ord(s[i]) > 0x7F:
unichr_as_utf8_append(res, ord(s[i]))
i += 1
else:
start = i
end = i + 1
while end < len(s) and ord(s[end]) <= 0x7F:
end += 1
res.append_slice(s, start, end)
i = end
return res.build()
|