1 import re
, unicodedata
, sys
3 if sys
.maxunicode
== 65535:
4 raise RuntimeError, "need UCS-4 Python"
6 def gen_category(cats
):
7 for i
in range(0, 0x110000):
8 if unicodedata
.category(unichr(i
)) in cats
:
11 def gen_bidirectional(cats
):
12 for i
in range(0, 0x110000):
13 if unicodedata
.bidirectional(unichr(i
)) in cats
:
28 tuple.append((prev
,prev
+span
+1))
30 for i
in range(prev
, prev
+span
+1):
37 tuple.append((prev
,prev
+span
+1))
40 tuple = " + ".join(["range(%d,%d)" % t
for t
in tuple])
42 return "set(%s)" % tuple
44 return "set(%s)" % repr(single
)
45 return "set(%s + %s)" % (repr(single
),tuple)
47 ############## Read the tables in the RFC #######################
49 data
= open("rfc3454.txt").readlines()
57 # Skip RFC page breaks
58 if l
.startswith("Hoffman & Blanchet") or\
59 l
.startswith("RFC 3454"):
61 # Find start/end lines
62 m
= re
.match("----- (Start|End) Table ([A-Z](.[0-9])+) -----", l
)
64 if m
.group(1) == "Start":
66 raise "Double Start",(curname
, l
)
69 tables
.append((curname
, table
))
73 raise "End without start", l
78 # Now we are in a table
84 fields
= fields
[0].split("-")
90 raise "Unpacking problem", l
92 start
= end
= fields
[0]
93 start
= int(start
, 16)
95 for i
in range(start
, end
+1):
101 value
= [int(v
, 16) for v
in value
.split(" ")]
105 table
[int(code
, 16)] = value
107 ########### Generate compact Python versions of the tables #############
109 print """# This file is generated by mkstringprep.py. DO NOT EDIT.
110 \"\"\"Library that exposes various tables found in the StringPrep RFC 3454.
112 There are two kinds of tables: sets, for which a member test is provided,
113 and mappings, for which a mapping function is provided.
119 print "assert unicodedata.unidata_version == %s" % repr(unicodedata
.unidata_version
)
121 # A.1 is the table of unassigned characters
122 # XXX Plane 15 PUA is listed as unassigned in Python.
123 name
, table
= tables
[0]
126 table
= set(table
.keys())
127 Cn
= set(gen_category(["Cn"]))
129 # FDD0..FDEF are process internal codes
130 Cn
-= set(range(0xFDD0, 0xFDF0))
132 Cn
-= set(range(0xFFFE, 0x110000, 0x10000))
133 Cn
-= set(range(0xFFFF, 0x110000, 0x10000))
138 def in_table_a1(code):
139 if unicodedata.category(code) != 'Cn': return False
141 if 0xFDD0 <= c < 0xFDF0: return False
142 return (c & 0xFFFF) not in (0xFFFE, 0xFFFF)
145 # B.1 cannot easily be derived
146 name
, table
= tables
[0]
152 b1_set = """ + compact_set(table
) + """
153 def in_table_b1(code):
154 return ord(code) in b1_set
157 # B.2 and B.3 is case folding.
158 # It takes CaseFolding.txt into account, which is
159 # not available in the Python database. Since
160 # B.2 is derived from B.3, we process B.3 first.
161 # B.3 supposedly *is* CaseFolding-3.2.0.txt.
163 name
, table_b2
= tables
[0]
167 name
, table_b3
= tables
[0]
171 # B.3 is mostly Python's .lower, except for a number
172 # of special cases, e.g. considering canonical forms.
176 for k
,v
in table_b2
.items():
177 if map(ord, unichr(k
).lower()) != v
:
178 b3_exceptions
[k
] = u
"".join(map(unichr,v
))
180 b3
= b3_exceptions
.items()
185 for i
,(k
,v
) in enumerate(b3
):
186 print "0x%x:%s," % (k
, repr(v
)),
192 def map_table_b3(code):
193 r = b3_exceptions.get(ord(code))
194 if r is not None: return r
198 def map_table_b3(code
):
199 r
= b3_exceptions
.get(ord(code
))
200 if r
is not None: return r
203 # B.2 is case folding for NFKC. This is the same as B.3,
204 # except where NormalizeWithKC(Fold(a)) !=
205 # NormalizeWithKC(Fold(NormalizeWithKC(Fold(a))))
209 b
= unicodedata
.normalize("NFKC", al
)
210 bl
= u
"".join([map_table_b3(ch
) for ch
in b
])
211 c
= unicodedata
.normalize("NFKC", bl
)
218 for k
,v
in table_b2
.items():
219 if map(ord, map_table_b2(unichr(k
))) != v
:
222 # B.3 should not add any additional special cases
223 assert specials
== {}
228 b = unicodedata.normalize("NFKC", al)
229 bl = u"".join([map_table_b3(ch) for ch in b])
230 c = unicodedata.normalize("NFKC", bl)
237 # C.1.1 is a table with a single character
238 name
, table
= tables
[0]
240 assert name
== "C.1.1"
241 assert table
== {0x20:0x20}
244 def in_table_c11(code):
248 # C.1.2 is the rest of all space characters
249 name
, table
= tables
[0]
251 assert name
== "C.1.2"
253 # table = set(table.keys())
254 # Zs = set(gen_category(["Zs"])) - set([0x20])
258 def in_table_c12(code):
259 return unicodedata.category(code) == "Zs" and code != u" "
261 def in_table_c11_c12(code):
262 return unicodedata.category(code) == "Zs"
265 # C.2.1 ASCII control characters
266 name
, table_c21
= tables
[0]
268 assert name
== "C.2.1"
270 Cc
= set(gen_category(["Cc"]))
271 Cc_ascii
= Cc
& set(range(128))
272 table_c21
= set(table_c21
.keys())
273 assert Cc_ascii
== table_c21
276 def in_table_c21(code):
277 return ord(code) < 128 and unicodedata.category(code) == "Cc"
280 # C.2.2 Non-ASCII control characters. It also includes
281 # a number of characters in category Cf.
282 name
, table_c22
= tables
[0]
284 assert name
== "C.2.2"
286 Cc_nonascii
= Cc
- Cc_ascii
287 table_c22
= set(table_c22
.keys())
288 assert len(Cc_nonascii
- table_c22
) == 0
290 specials
= list(table_c22
- Cc_nonascii
)
293 print """c22_specials = """ + compact_set(specials
) + """
294 def in_table_c22(code):
296 if c < 128: return False
297 if unicodedata.category(code) == "Cc": return True
298 return c in c22_specials
300 def in_table_c21_c22(code):
301 return unicodedata.category(code) == "Cc" or \\
302 ord(code) in c22_specials
306 name
, table
= tables
[0]
310 Co
= set(gen_category(["Co"]))
311 assert set(table
.keys()) == Co
314 def in_table_c3(code):
315 return unicodedata.category(code) == "Co"
318 # C.4 Non-character code points, xFFFE, xFFFF
319 # plus process internal codes
320 name
, table
= tables
[0]
324 nonchar
= set(range(0xFDD0,0xFDF0) +
325 range(0xFFFE,0x110000,0x10000) +
326 range(0xFFFF,0x110000,0x10000))
327 table
= set(table
.keys())
328 assert table
== nonchar
331 def in_table_c4(code):
333 if c < 0xFDD0: return False
334 if c < 0xFDF0: return True
335 return (ord(code) & 0xFFFF) in (0xFFFE, 0xFFFF)
338 # C.5 Surrogate codes
339 name
, table
= tables
[0]
343 Cs
= set(gen_category(["Cs"]))
344 assert set(table
.keys()) == Cs
347 def in_table_c5(code):
348 return unicodedata.category(code) == "Cs"
351 # C.6 Inappropriate for plain text
352 name
, table
= tables
[0]
360 c6_set = """ + compact_set(table
) + """
361 def in_table_c6(code):
362 return ord(code) in c6_set
365 # C.7 Inappropriate for canonical representation
366 name
, table
= tables
[0]
374 c7_set = """ + compact_set(table
) + """
375 def in_table_c7(code):
376 return ord(code) in c7_set
379 # C.8 Change display properties or are deprecated
380 name
, table
= tables
[0]
388 c8_set = """ + compact_set(table
) + """
389 def in_table_c8(code):
390 return ord(code) in c8_set
393 # C.9 Tagging characters
394 name
, table
= tables
[0]
402 c9_set = """ + compact_set(table
) + """
403 def in_table_c9(code):
404 return ord(code) in c9_set
407 # D.1 Characters with bidirectional property "R" or "AL"
408 name
, table
= tables
[0]
412 RandAL
= set(gen_bidirectional(["R","AL"]))
413 assert set(table
.keys()) == RandAL
416 def in_table_d1(code):
417 return unicodedata.bidirectional(code) in ("R","AL")
420 # D.2 Characters with bidirectional property "L"
421 name
, table
= tables
[0]
425 L
= set(gen_bidirectional(["L"]))
426 assert set(table
.keys()) == L
429 def in_table_d2(code):
430 return unicodedata.bidirectional(code) == "L"