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 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006
|
#!/usr/bin/env python
import sys, os
import itertools
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))))
MAXUNICODE = 0x10FFFF # the value of sys.maxunicode of wide Python builds
MANDATORY_LINE_BREAKS = ["BK", "CR", "LF", "NL"] # line break categories
# Private Use Areas -- in planes 1, 15, 16
PUA_1 = range(0xE000, 0xF900)
PUA_15 = range(0xF0000, 0xFFFFE)
PUA_16 = range(0x100000, 0x10FFFE)
class Fraction:
def __init__(self, numerator, denominator):
self.numerator = numerator
self.denominator = denominator
def __repr__(self):
return '%r / %r' % (self.numerator, self.denominator)
def __str__(self):
return repr(self)
class UnicodeChar:
def __init__(self, data=None):
if data is None:
return
if not data[1] or data[1][0] == '<' and data[1][-1] == '>':
self.name = None
else:
self.name = data[1]
self.category = data[2]
self.east_asian_width = 'N'
self.combining = 0
if data[3]:
self.combining = int(data[3])
self.bidirectional = data[4]
self.raw_decomposition = ''
self.decomposition = []
self.isCompatibility = False
self.canonical_decomp = None
self.compat_decomp = None
self.excluded = False
self.linebreak = False
self.decompositionTag = ''
self.properties = ()
self.casefolding = None
if data[5]:
self.raw_decomposition = data[5]
if data[5][0] == '<':
self.isCompatibility = True
self.decompositionTag, decomp = data[5].split(None, 1)
else:
decomp = data[5]
self.decomposition = map(lambda x:int(x, 16), decomp.split())
self.decimal = None
if data[6]:
self.decimal = int(data[6])
self.digit = None
if data[7]:
self.digit = int(data[7])
self.numeric = None
if data[8]:
try:
numerator, denomenator = data[8].split('/')
self.numeric = Fraction(float(numerator), float(denomenator))
except ValueError:
self.numeric = float(data[8])
self.mirrored = (data[9] == 'Y')
self.upper = None
if data[12]:
self.upper = int(data[12], 16)
self.lower = None
if data[13]:
self.lower = int(data[13], 16)
self.title = None
if data[14]:
self.title = int(data[14], 16)
def copy(self):
uc = UnicodeChar()
uc.__dict__.update(self.__dict__)
return uc
class UnicodeData(object):
# we use this range of PUA_15 to store name aliases and named sequences
NAME_ALIASES_START = 0xF0000
NAMED_SEQUENCES_START = 0xF0200
def __init__(self):
self.table = [None] * (MAXUNICODE + 1)
self.aliases = []
self.named_sequences = []
def add_char(self, code, char):
assert self.table[code] is None, (
'Multiply defined character %04X' % code)
if isinstance(char, list):
char = UnicodeChar(char)
self.table[code] = char
return char
def all_codes(self):
return range(len(self.table))
def enum_chars(self):
for code in range(len(self.table)):
yield code, self.table[code]
def get_char(self, code):
return self.table[code]
def clone_char(self, code):
clone = self.table[code] = self.table[code].copy()
return clone
def set_excluded(self, code):
self.table[code].excluded = True
def set_linebreak(self, code):
self.table[code].linebreak = True
def set_east_asian_width(self, code, width):
self.table[code].east_asian_width = width
def add_property(self, code, p):
self.table[code].properties += (p,)
def get_compat_decomposition(self, code):
if not self.table[code].decomposition:
return [code]
if not self.table[code].compat_decomp:
result = []
for decomp in self.table[code].decomposition:
result.extend(self.get_compat_decomposition(decomp))
self.table[code].compat_decomp = result
return self.table[code].compat_decomp
def get_canonical_decomposition(self, code):
if (not self.table[code].decomposition or
self.table[code].isCompatibility):
return [code]
if not self.table[code].canonical_decomp:
result = []
for decomp in self.table[code].decomposition:
result.extend(self.get_canonical_decomposition(decomp))
self.table[code].canonical_decomp = result
return self.table[code].canonical_decomp
def add_alias(self, name, char):
pua_index = self.NAME_ALIASES_START + len(self.aliases)
self.aliases.append((name, char))
# also store the name in the PUA 1
self.table[pua_index].name = name
def add_named_sequence(self, name, chars):
pua_index = self.NAMED_SEQUENCES_START + len(self.named_sequences)
self.named_sequences.append((name, chars))
# also store these in the PUA 1
self.table[pua_index].name = name
def add_casefold_sequence(self, code, chars):
self.table[code].casefolding = chars
def read_unicodedata(files):
rangeFirst = {}
rangeLast = {}
table = UnicodeData()
for line in files['data']:
line = line.split('#', 1)[0].strip()
if not line:
continue
data = [ v.strip() for v in line.split(';') ]
if data[1].endswith(', First>'):
code = int(data[0], 16)
name = data[1][1:-len(', First>')]
rangeFirst[name] = (code, data)
continue
if data[1].endswith(', Last>'):
code = int(data[0], 16)
rangeLast[name] = code
continue
code = int(data[0], 16)
table.add_char(code, data)
# Collect ranges
ranges = {}
for name, (start, data) in rangeFirst.iteritems():
end = rangeLast[name]
ranges[(start, end)] = ['0000', None] + data[2:]
# Read exclusions
for line in files['exclusions']:
line = line.split('#', 1)[0].strip()
if not line:
continue
table.set_excluded(int(line, 16))
# Read line breaks
for line in files['linebreak']:
line = line.split('#', 1)[0].strip()
if not line:
continue
data = [v.strip() for v in line.split(';')]
if len(data) < 2 or data[1] not in MANDATORY_LINE_BREAKS:
continue
if '..' not in data[0]:
first = last = int(data[0], 16)
else:
first, last = [int(c, 16) for c in data[0].split('..')]
for char in range(first, last+1):
table.set_linebreak(char)
# Expand ranges
for (first, last), data in ranges.iteritems():
for code in range(first, last + 1):
table.add_char(code, data)
# Read east asian width
for line in files['east_asian_width']:
line = line.split('#', 1)[0].strip()
if not line:
continue
code, width = line.split(';')
if '..' in code:
first, last = map(lambda x:int(x,16), code.split('..'))
for code in range(first, last + 1):
uc = table.get_char(code)
if not uc:
uc = table.add_char(code, ['0000', None,
'Cn'] + [''] * 12)
uc.east_asian_width = width
else:
table.set_east_asian_width(int(code, 16), width)
# Read Derived Core Properties:
for line in files['derived_core_properties']:
line = line.split('#', 1)[0].strip()
if not line:
continue
r, p = line.split(";")
r = r.strip()
p = p.strip()
if ".." in r:
first, last = [int(c, 16) for c in r.split('..')]
chars = list(range(first, last+1))
else:
chars = [int(r, 16)]
for char in chars:
if not table.get_char(char):
# Some properties (e.g. Default_Ignorable_Code_Point)
# apply to unassigned code points; ignore them
continue
table.add_property(char, p)
defaultChar = UnicodeChar(['0000', None, 'Cn'] + [''] * 12)
for code, char in table.enum_chars():
if not char:
table.add_char(code, defaultChar)
extra_numeric = read_unihan(files['unihan'])
for code, value in extra_numeric.iteritems():
table.clone_char(code).numeric = value
table.special_casing = {}
if 'special_casing' in files:
for line in files['special_casing']:
line = line[:-1].split('#', 1)[0]
if not line:
continue
data = line.split("; ")
if data[4]:
# We ignore all conditionals (since they depend on
# languages) except for one, which is hardcoded. See
# handle_capital_sigma in unicodeobject.py.
continue
c = int(data[0], 16)
lower = [int(char, 16) for char in data[1].split()]
title = [int(char, 16) for char in data[2].split()]
upper = [int(char, 16) for char in data[3].split()]
table.special_casing[c] = (lower, title, upper)
# Compute full decompositions.
for code, char in table.enum_chars():
table.get_canonical_decomposition(code)
table.get_compat_decomposition(code)
# Name aliases
for line in files['name_aliases']:
line = line.strip()
if not line or line.startswith('#'):
continue
items = line.split(';')
char = int(items[0], 16)
name = items[1]
table.add_alias(name, char)
# Named sequences
for line in files['named_sequences']:
line = line.strip()
if not line or line.startswith('#'):
continue
name, chars = line.split(';')
chars = tuple(int(char, 16) for char in chars.split())
table.add_named_sequence(name, chars)
# Casefold sequences
for line in files['casefolding']:
line = line.strip().split('#', 1)[0]
if not line or line.startswith('#'):
continue
code, status, mapping, _ = line.split('; ')
code = int(code, 16)
if status in 'CF':
chars = [int(char, 16) for char in mapping.split()]
table.add_casefold_sequence(code, chars)
return table
def read_unihan(unihan_file):
if unihan_file is None:
return {}
extra_numeric = {}
for line in unihan_file:
if not line.startswith('U+'):
continue
code, tag, value = line.split(None, 3)[:3]
if tag not in ('kAccountingNumeric', 'kPrimaryNumeric', 'kOtherNumeric'):
continue
value = value.strip().replace(',', '')
if '/' in value:
numerator, denomenator = value.split('/')
numeric = Fraction(float(numerator), float(denomenator))
else:
numeric = float(value)
code = int(code[2:], 16)
extra_numeric[code] = numeric
return extra_numeric
def writeDict(outfile, name, dictionary, base_mod):
if base_mod:
base_dict = getattr(base_mod, name)
else:
base_dict = {}
print >> outfile, '%s = {' % name
items = dictionary.items()
items.sort()
for key, value in items:
if key not in base_dict or base_dict[key] != value:
print >> outfile, '%r: %r,'%(key, dictionary[key])
print >> outfile, '}'
print >> outfile
print >> outfile, '%s_corrected = {' % name
for key in sorted(base_dict):
if key not in dictionary:
print >> outfile, '%r: None,' % key
print >> outfile, '}'
class Cache:
def __init__(self):
self._cache = {}
self._strings = []
def get(self, string):
try:
return self._cache[string]
except KeyError:
index = len(self._cache)
self._cache[string] = index
self._strings.append(string)
return index
def writeDbRecord(outfile, table):
pgbits = 8
chunksize = 64
pgsize = 1 << pgbits
bytemask = ~(-1 << pgbits)
IS_SPACE = 1
IS_ALPHA = 2
IS_LINEBREAK = 4
IS_UPPER = 8
IS_TITLE = 16
IS_LOWER = 32
IS_NUMERIC = 64
IS_DIGIT = 128
IS_DECIMAL = 256
IS_MIRRORED = 512
IS_XID_START = 1024
IS_XID_CONTINUE = 2048
IS_PRINTABLE = 4096 # PEP 3138
IS_CASE_IGNORABLE = 8192
# Create the records
db_records = {}
for code in table.all_codes():
char = table.get_char(code)
flags = 0
if char.category == "Zs" or char.bidirectional in ("WS", "B", "S"):
flags |= IS_SPACE
if char.category in ("Lm", "Lt", "Lu", "Ll", "Lo"):
flags |= IS_ALPHA
if char.linebreak or char.bidirectional == "B":
flags |= IS_LINEBREAK
if char.numeric is not None:
flags |= IS_NUMERIC
if char.digit is not None:
flags |= IS_DIGIT
if char.decimal is not None:
flags |= IS_DECIMAL
if char.category == "Lu" or (table.upper_lower_from_properties and
"Uppercase" in char.properties):
flags |= IS_UPPER
if char.category == "Lt":
flags |= IS_TITLE
if char.category == "Ll" or (table.upper_lower_from_properties and
"Lowercase" in char.properties):
flags |= IS_LOWER
if char.mirrored:
flags |= IS_MIRRORED
if code == ord(" ") or char.category[0] not in ("C", "Z"):
flags |= IS_PRINTABLE
if "XID_Start" in char.properties:
flags |= IS_XID_START
if "XID_Continue" in char.properties:
flags |= IS_XID_CONTINUE
if "Case_Ignorable" in char.properties:
flags |= IS_CASE_IGNORABLE
char.db_record = (char.category, char.bidirectional, char.east_asian_width, flags)
db_records[char.db_record] = 1
db_records = db_records.keys()
db_records.sort()
print >> outfile, '_db_records = ['
for record in db_records:
print >> outfile, '%r,'%(record,)
print >> outfile, ']'
assert len(db_records) <= 256, "too many db_records!"
print >> outfile, '_db_pgtbl = ('
pages = []
line = []
groups = [iter(table.enum_chars())] * pgsize
for group in itertools.izip_longest(*groups):
result = []
for code, char in group:
if not char: continue
result.append(chr(db_records.index(char.db_record)))
categorytbl = ''.join(result)
try:
page = pages.index(categorytbl)
except ValueError:
page = len(pages)
pages.append(categorytbl)
assert len(pages) < 256, 'Too many unique pages for db_record.'
line.append(chr(page))
if len(line) >= chunksize:
print >> outfile, repr(''.join(line))
line = []
if len(line) > 0:
print >> outfile, repr(''.join(line))
print >> outfile, ')'
# Dump pgtbl
print >> outfile, '_db_pages = ( '
for page_string in pages:
for index in range(0, len(page_string), chunksize):
print >> outfile, repr(page_string[index:index + chunksize])
print >> outfile, ')'
print >> outfile, '''
def _get_record(code):
return _db_records[ord(_db_pages[(ord(_db_pgtbl[code >> %d]) << %d) + (code & %d)])]
'''%(pgbits, pgbits, bytemask)
print >> outfile, 'def category(code): return _get_record(code)[0]'
print >> outfile, 'def bidirectional(code): return _get_record(code)[1]'
print >> outfile, 'def east_asian_width(code): return _get_record(code)[2]'
print >> outfile, 'def isspace(code): return _get_record(code)[3] & %d != 0'% IS_SPACE
print >> outfile, 'def isalpha(code): return _get_record(code)[3] & %d != 0'% IS_ALPHA
print >> outfile, 'def islinebreak(code): return _get_record(code)[3] & %d != 0'% IS_LINEBREAK
print >> outfile, 'def isnumeric(code): return _get_record(code)[3] & %d != 0'% IS_NUMERIC
print >> outfile, 'def isdigit(code): return _get_record(code)[3] & %d != 0'% IS_DIGIT
print >> outfile, 'def isdecimal(code): return _get_record(code)[3] & %d != 0'% IS_DECIMAL
print >> outfile, 'def isalnum(code): return _get_record(code)[3] & %d != 0'% (IS_ALPHA | IS_NUMERIC)
print >> outfile, 'def isupper(code): return _get_record(code)[3] & %d != 0'% IS_UPPER
print >> outfile, 'def istitle(code): return _get_record(code)[3] & %d != 0'% IS_TITLE
print >> outfile, 'def islower(code): return _get_record(code)[3] & %d != 0'% IS_LOWER
print >> outfile, 'def iscased(code): return _get_record(code)[3] & %d != 0'% (IS_UPPER | IS_TITLE | IS_LOWER)
print >> outfile, 'def isxidstart(code): return _get_record(code)[3] & %d != 0'% (IS_XID_START)
print >> outfile, 'def isxidcontinue(code): return _get_record(code)[3] & %d != 0'% (IS_XID_CONTINUE)
print >> outfile, 'def isprintable(code): return _get_record(code)[3] & %d != 0'% IS_PRINTABLE
print >> outfile, 'def mirrored(code): return _get_record(code)[3] & %d != 0'% IS_MIRRORED
print >> outfile, 'def iscaseignorable(code): return _get_record(code)[3] & %d != 0'% IS_CASE_IGNORABLE
def write_character_names(outfile, table, base_mod):
import triegenerator
names = dict((table.get_char(code).name, code)
for code in table.all_codes()
if table.get_char(code).name)
sorted_names_codes = sorted(names.iteritems())
if base_mod is None:
triegenerator.build_compression_tree(outfile, names)
print >> outfile, "# the following dictionary is used by modules that take this as a base"
print >> outfile, "_orig_names = {"
for name, code in sorted_names_codes:
print >> outfile, "%r: %r," % (name, code)
print >> outfile, "}"
else:
print >> outfile, '_names = {'
for name, code in sorted_names_codes:
try:
if base_mod.lookup_charcode(code) == name:
continue
except KeyError:
pass
print >> outfile, '%r: %r,' % (code, name)
print >> outfile, '}'
print >> outfile, '_names_corrected = {'
for name, code in sorted(base_mod._orig_names.iteritems()):
if name not in names:
print >> outfile, '%r: None,' % code
print >> outfile, '}'
print >> outfile, '_code_by_name = {'
corrected = {}
for name, code in sorted_names_codes:
try:
if base_mod.lookup_charcode(code) == name:
continue
except KeyError:
pass
print >> outfile, '%r: %r,' % (name, code)
print >> outfile, '}'
print >> outfile, '_code_by_name_corrected = {'
for name, code in sorted(base_mod._orig_names.iteritems()):
if name not in names:
print >> outfile, '%r: None,' % name
print >> outfile, '}'
def writeUnicodedata(version, table, outfile, base):
if base:
print >> outfile, 'import %s as base_mod' % base
base_mod = __import__(base)
else:
print >> outfile, 'base_mod = None'
base_mod = None
# Version
print >> outfile, 'version = %r' % version
print >> outfile
if version < "4.1":
cjk_interval = ("(0x3400 <= code <= 0x4DB5 or"
" 0x4E00 <= code <= 0x9FA5 or"
" 0x20000 <= code <= 0x2A6D6)")
elif version < "5": # don't know the exact limit
cjk_interval = ("(0x3400 <= code <= 0x4DB5 or"
" 0x4E00 <= code <= 0x9FBB or"
" 0x20000 <= code <= 0x2A6D6)")
elif version < "6":
cjk_interval = ("(0x3400 <= code <= 0x4DB5 or"
" 0x4E00 <= code <= 0x9FCB or"
" 0x20000 <= code <= 0x2A6D6 or"
" 0x2A700 <= code <= 0x2B734)")
elif version < "6.1":
cjk_interval = ("(0x3400 <= code <= 0x4DB5 or"
" 0x4E00 <= code <= 0x9FCB or"
" 0x20000 <= code <= 0x2A6D6 or"
" 0x2A700 <= code <= 0x2B734 or"
" 0x2B740 <= code <= 0x2B81D)")
elif version < "8":
cjk_interval = ("(0x3400 <= code <= 0x4DB5 or"
" 0x4E00 <= code <= 0x9FCC or"
" 0x20000 <= code <= 0x2A6D6 or"
" 0x2A700 <= code <= 0x2B734 or"
" 0x2B740 <= code <= 0x2B81D)")
else:
cjk_interval = ("(0x3400 <= code <= 0x4DB5 or"
" 0x4E00 <= code <= 0x9FD5 or"
" 0x20000 <= code <= 0x2A6D6 or"
" 0x2A700 <= code <= 0x2B734 or"
" 0x2B740 <= code <= 0x2B81D or"
" 0x2B820 <= code <= 0x2CEA1)")
write_character_names(outfile, table, base_mod)
print >> outfile, '''
_cjk_prefix = "CJK UNIFIED IDEOGRAPH-"
_hangul_prefix = 'HANGUL SYLLABLE '
_hangul_L = ['G', 'GG', 'N', 'D', 'DD', 'R', 'M', 'B', 'BB',
'S', 'SS', '', 'J', 'JJ', 'C', 'K', 'T', 'P', 'H']
_hangul_V = ['A', 'AE', 'YA', 'YAE', 'EO', 'E', 'YEO', 'YE', 'O', 'WA', 'WAE',
'OE', 'YO', 'U', 'WEO', 'WE', 'WI', 'YU', 'EU', 'YI', 'I']
_hangul_T = ['', 'G', 'GG', 'GS', 'N', 'NJ', 'NH', 'D', 'L', 'LG', 'LM',
'LB', 'LS', 'LT', 'LP', 'LH', 'M', 'B', 'BS', 'S', 'SS',
'NG', 'J', 'C', 'K', 'T', 'P', 'H']
def _lookup_hangul(syllables):
l_code = v_code = t_code = -1
for i in range(len(_hangul_L)):
jamo = _hangul_L[i]
if (syllables[:len(jamo)] == jamo and
(l_code < 0 or len(jamo) > len(_hangul_L[l_code]))):
l_code = i
if l_code < 0:
raise KeyError
start = len(_hangul_L[l_code])
for i in range(len(_hangul_V)):
jamo = _hangul_V[i]
if (syllables[start:start + len(jamo)] == jamo and
(v_code < 0 or len(jamo) > len(_hangul_V[v_code]))):
v_code = i
if v_code < 0:
raise KeyError
start += len(_hangul_V[v_code])
for i in range(len(_hangul_T)):
jamo = _hangul_T[i]
if (syllables[start:start + len(jamo)] == jamo and
(t_code < 0 or len(jamo) > len(_hangul_T[t_code]))):
t_code = i
if t_code < 0:
raise KeyError
start += len(_hangul_T[t_code])
if len(syllables[start:]):
raise KeyError
return 0xAC00 + (l_code * 21 + v_code) * 28 + t_code
def _lookup_cjk(cjk_code):
if len(cjk_code) != 4 and len(cjk_code) != 5:
raise KeyError
for c in cjk_code:
if not ('0' <= c <= '9' or 'A' <= c <= 'F'):
raise KeyError
code = int(cjk_code, 16)
if %(cjk_interval)s:
return code
raise KeyError
def lookup(name, with_named_sequence=False):
if name[:len(_cjk_prefix)] == _cjk_prefix:
return _lookup_cjk(name[len(_cjk_prefix):])
if name[:len(_hangul_prefix)] == _hangul_prefix:
return _lookup_hangul(name[len(_hangul_prefix):])
if not base_mod:
code = trie_lookup(name)
else:
try:
code = _code_by_name[name]
except KeyError:
if name not in _code_by_name_corrected:
code = base_mod.trie_lookup(name)
else:
raise
if not with_named_sequence and %(named_sequence_interval)s:
raise KeyError
return code
def name(code):
if %(cjk_interval)s:
return "CJK UNIFIED IDEOGRAPH-" + hex(code)[2:].upper()
if 0xAC00 <= code <= 0xD7A3:
# vl_code, t_code = divmod(code - 0xAC00, len(_hangul_T))
vl_code = (code - 0xAC00) // len(_hangul_T)
t_code = (code - 0xAC00) %% len(_hangul_T)
# l_code, v_code = divmod(vl_code, len(_hangul_V))
l_code = vl_code // len(_hangul_V)
v_code = vl_code %% len(_hangul_V)
return ("HANGUL SYLLABLE " + _hangul_L[l_code] +
_hangul_V[v_code] + _hangul_T[t_code])
if %(pua_interval)s:
raise KeyError
if not base_mod:
return lookup_charcode(code)
else:
try:
return _names[code]
except KeyError:
if code not in _names_corrected:
return base_mod.lookup_charcode(code)
else:
raise
''' % dict(cjk_interval=cjk_interval,
pua_interval="0xF0000 <= code < 0xF0400",
named_sequence_interval="0xF0200 <= code < 0xF0400")
# Categories
writeDbRecord(outfile, table)
# Numeric characters
decimal = {}
digit = {}
numeric = {}
for code, char in table.enum_chars():
if char.decimal is not None:
decimal[code] = char.decimal
if char.digit is not None:
digit[code] = char.digit
if char.numeric is not None:
numeric[code] = char.numeric
writeDict(outfile, '_decimal', decimal, base_mod)
writeDict(outfile, '_digit', digit, base_mod)
writeDict(outfile, '_numeric', numeric, base_mod)
print >> outfile, '''
def decimal(code):
try:
return _decimal[code]
except KeyError:
if base_mod is not None and code not in _decimal_corrected:
return base_mod._decimal[code]
else:
raise
def digit(code):
try:
return _digit[code]
except KeyError:
if base_mod is not None and code not in _digit_corrected:
return base_mod._digit[code]
else:
raise
def numeric(code):
try:
return _numeric[code]
except KeyError:
if base_mod is not None and code not in _numeric_corrected:
return base_mod._numeric[code]
else:
raise
'''
# Case conversion
toupper = {}
tolower = {}
totitle = {}
for code, char in table.enum_chars():
if char.upper:
toupper[code] = char.upper
if char.lower:
tolower[code] = char.lower
if char.title:
totitle[code] = char.title
writeDict(outfile, '_toupper', toupper, base_mod)
writeDict(outfile, '_tolower', tolower, base_mod)
writeDict(outfile, '_totitle', totitle, base_mod)
writeDict(outfile, '_special_casing', table.special_casing, base_mod)
print >> outfile, '''
def toupper(code):
try:
return _toupper[code]
except KeyError:
if base_mod is not None and code not in _toupper_corrected:
return base_mod._toupper.get(code, code)
else:
return code
def tolower(code):
try:
return _tolower[code]
except KeyError:
if base_mod is not None and code not in _tolower_corrected:
return base_mod._tolower.get(code, code)
else:
return code
def totitle(code):
try:
return _totitle[code]
except KeyError:
if base_mod is not None and code not in _totitle_corrected:
return base_mod._totitle.get(code, code)
else:
return code
def toupper_full(code):
try:
return _special_casing[code][2]
except KeyError:
if base_mod is not None and code not in _special_casing_corrected:
try:
return base_mod._special_casing[code][2]
except KeyError:
pass
return [toupper(code)]
def tolower_full(code):
try:
return _special_casing[code][0]
except KeyError:
if base_mod is not None and code not in _special_casing_corrected:
try:
return base_mod._special_casing[code][0]
except KeyError:
pass
return [tolower(code)]
def totitle_full(code):
try:
return _special_casing[code][1]
except KeyError:
if base_mod is not None and code not in _special_casing_corrected:
try:
return base_mod._special_casing[code][1]
except KeyError:
pass
return [totitle(code)]
'''
# Decomposition
decomposition = {}
for code, char in table.enum_chars():
if char.raw_decomposition:
decomposition[code] = char.raw_decomposition
writeDict(outfile, '_raw_decomposition', decomposition, base_mod)
print >> outfile, '''
def decomposition(code):
try:
return _raw_decomposition[code]
except KeyError:
if base_mod is not None and code not in _raw_decomposition_corrected:
return base_mod._raw_decomposition.get(code, '')
else:
return ''
'''
# Collect the composition pairs.
compositions = []
for code, unichar in table.enum_chars():
if (not unichar.decomposition or
unichar.isCompatibility or
unichar.excluded or
len(unichar.decomposition) != 2 or
table.get_char(unichar.decomposition[0]).combining):
continue
left, right = unichar.decomposition
compositions.append((left, right, code))
print >> outfile, '_composition = {'
for left, right, code in compositions:
print >> outfile, 'r_longlong(%5d << 32 | %5d): %5d,' % (
left, right, code)
print >> outfile, '}'
print >> outfile
decomposition = {}
for code, char in table.enum_chars():
if char.canonical_decomp:
decomposition[code] = char.canonical_decomp
writeDict(outfile, '_canon_decomposition', decomposition, base_mod)
decomposition = {}
for code, char in table.enum_chars():
if char.compat_decomp:
decomposition[code] = char.compat_decomp
writeDict(outfile, '_compat_decomposition', decomposition, base_mod)
print >> outfile, '''
def canon_decomposition(code):
try:
return _canon_decomposition[code]
except KeyError:
if base_mod is not None and code not in _canon_decomposition_corrected:
return base_mod._canon_decomposition.get(code, [])
else:
return []
def compat_decomposition(code):
try:
return _compat_decomposition[code]
except KeyError:
if base_mod is not None and code not in _compat_decomposition_corrected:
return base_mod._compat_decomposition.get(code, [])
else:
return []
'''
# named sequences
print >> outfile, '_named_sequences = ['
for name, chars in table.named_sequences:
print >> outfile, "%r," % (u''.join(unichr(c) for c in chars))
print >> outfile, ']'
print >> outfile, '''
def lookup_named_sequence(code):
if 0 <= code - %(start)s < len(_named_sequences):
return _named_sequences[code - %(start)s]
else:
return None
''' % dict(start=table.NAMED_SEQUENCES_START)
# aliases
print >> outfile, '_name_aliases = ['
for name, char in table.aliases:
print >> outfile, "%s," % (char,)
print >> outfile, ']'
print >> outfile, '''
def lookup_with_alias(name, with_named_sequence=False):
code = lookup(name, with_named_sequence=with_named_sequence)
if 0 <= code - %(start)s < len(_name_aliases):
return _name_aliases[code - %(start)s]
else:
return code
''' % dict(start=table.NAME_ALIASES_START)
casefolds = {}
for code, char in table.enum_chars():
full_casefold = char.casefolding
if full_casefold is None:
full_casefold = [code]
full_lower = char.lower
if full_lower is None:
full_lower = code
# if we don't write anything into the file, then the RPython
# program would compute the result 'full_lower' instead.
# Is that the right answer?
if full_casefold != [full_lower]:
casefolds[code] = full_casefold
writeDict(outfile, '_casefolds', casefolds, base_mod)
print >> outfile, '''
def casefold_lookup(code):
try:
return _casefolds[code]
except KeyError:
if base_mod is not None and code not in _casefolds_corrected:
return base_mod._casefolds.get(code, None)
else:
return None
'''
combining = {}
for code, char in table.enum_chars():
if char.combining:
combining[code] = char.combining
writeDict(outfile, '_combining', combining, base_mod)
print >> outfile, '''
def combining(code):
try:
return _combining[code]
except KeyError:
if base_mod is not None and code not in _combining_corrected:
return base_mod._combining.get(code, 0)
else:
return 0
'''
def main():
import sys
from optparse import OptionParser
infile = None
outfile = sys.stdout
parser = OptionParser('Usage: %prog [options]')
parser.add_option('--base', metavar='FILENAME', help='Base python version (for import)')
parser.add_option('--output', metavar='OUTPUT_MODULE', help='Output module (implied py extension)')
parser.add_option('--unidata_version', metavar='#.#.#', help='Unidata version')
options, args = parser.parse_args()
if not options.unidata_version:
raise Exception("No version specified")
if options.output:
outfile = open(options.output + '.py', "w")
filenames = dict(
data='UnicodeData-%(version)s.txt',
exclusions='CompositionExclusions-%(version)s.txt',
east_asian_width='EastAsianWidth-%(version)s.txt',
unihan='UnihanNumeric-%(version)s.txt',
linebreak='LineBreak-%(version)s.txt',
derived_core_properties='DerivedCoreProperties-%(version)s.txt',
name_aliases='NameAliases-%(version)s.txt',
named_sequences = 'NamedSequences-%(version)s.txt',
casefolding = 'CaseFolding-%(version)s.txt',
)
if options.unidata_version > '5':
filenames['special_casing'] = 'SpecialCasing-%(version)s.txt'
filenames = dict((name, filename % dict(version=options.unidata_version))
for (name, filename) in filenames.items())
files = dict((name, open(filename))
for (name, filename) in filenames.items())
table = read_unicodedata(files)
table.upper_lower_from_properties = (options.unidata_version >= '6')
print >> outfile, '# UNICODE CHARACTER DATABASE'
print >> outfile, '# This file was generated with the command:'
print >> outfile, '# ', ' '.join(sys.argv)
print >> outfile
print >> outfile, 'from rpython.rlib.rarithmetic import r_longlong'
print >> outfile
print >> outfile
writeUnicodedata(options.unidata_version, table, outfile, options.base)
if __name__ == '__main__':
main()
|