blob: 420d83de6348b086e4d6abf09a4cf2700513316a [file] [log] [blame]
Guido van Rossum7627c0d2000-03-31 14:58:54 +00001#
2# Secret Labs' Regular Expression Engine
Guido van Rossum7627c0d2000-03-31 14:58:54 +00003#
4# convert template to internal format
5#
Fredrik Lundh770617b2001-01-14 15:06:11 +00006# Copyright (c) 1997-2001 by Secret Labs AB. All rights reserved.
Guido van Rossum7627c0d2000-03-31 14:58:54 +00007#
Fredrik Lundh29c4ba92000-08-01 18:20:07 +00008# See the sre.py file for information on usage and redistribution.
Guido van Rossum7627c0d2000-03-31 14:58:54 +00009#
10
Fred Drakeb8f22742001-09-04 19:10:20 +000011"""Internal support module for sre"""
12
Victor Stinner7fa767e2014-03-20 09:16:38 +010013import _sre
Christian Heimes5e696852008-04-09 08:37:03 +000014import sre_parse
Guido van Rossum7627c0d2000-03-31 14:58:54 +000015from sre_constants import *
16
Fredrik Lundhb35ffc02001-01-15 12:46:09 +000017assert _sre.MAGIC == MAGIC, "SRE module mismatch"
18
Raymond Hettingerdf1b6992014-11-09 15:56:33 -080019_LITERAL_CODES = {LITERAL, NOT_LITERAL}
20_REPEATING_CODES = {REPEAT, MIN_REPEAT, MAX_REPEAT}
21_SUCCESS_CODES = {SUCCESS, FAILURE}
22_ASSERT_CODES = {ASSERT, ASSERT_NOT}
Raymond Hettinger049ade22005-02-28 19:27:52 +000023
Serhiy Storchaka0c938f62014-11-10 12:37:16 +020024# Sets of lowercase characters which have the same uppercase.
25_equivalences = (
26 # LATIN SMALL LETTER I, LATIN SMALL LETTER DOTLESS I
27 (0x69, 0x131), # iı
28 # LATIN SMALL LETTER S, LATIN SMALL LETTER LONG S
29 (0x73, 0x17f), # sſ
30 # MICRO SIGN, GREEK SMALL LETTER MU
31 (0xb5, 0x3bc), # µμ
32 # COMBINING GREEK YPOGEGRAMMENI, GREEK SMALL LETTER IOTA, GREEK PROSGEGRAMMENI
33 (0x345, 0x3b9, 0x1fbe), # \u0345ιι
34 # GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS, GREEK SMALL LETTER IOTA WITH DIALYTIKA AND OXIA
35 (0x390, 0x1fd3), # ΐΐ
36 # GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS, GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND OXIA
37 (0x3b0, 0x1fe3), # ΰΰ
38 # GREEK SMALL LETTER BETA, GREEK BETA SYMBOL
39 (0x3b2, 0x3d0), # βϐ
40 # GREEK SMALL LETTER EPSILON, GREEK LUNATE EPSILON SYMBOL
41 (0x3b5, 0x3f5), # εϵ
42 # GREEK SMALL LETTER THETA, GREEK THETA SYMBOL
43 (0x3b8, 0x3d1), # θϑ
44 # GREEK SMALL LETTER KAPPA, GREEK KAPPA SYMBOL
45 (0x3ba, 0x3f0), # κϰ
46 # GREEK SMALL LETTER PI, GREEK PI SYMBOL
47 (0x3c0, 0x3d6), # πϖ
48 # GREEK SMALL LETTER RHO, GREEK RHO SYMBOL
49 (0x3c1, 0x3f1), # ρϱ
50 # GREEK SMALL LETTER FINAL SIGMA, GREEK SMALL LETTER SIGMA
51 (0x3c2, 0x3c3), # ςσ
52 # GREEK SMALL LETTER PHI, GREEK PHI SYMBOL
53 (0x3c6, 0x3d5), # φϕ
54 # LATIN SMALL LETTER S WITH DOT ABOVE, LATIN SMALL LETTER LONG S WITH DOT ABOVE
55 (0x1e61, 0x1e9b), # ṡẛ
56 # LATIN SMALL LIGATURE LONG S T, LATIN SMALL LIGATURE ST
57 (0xfb05, 0xfb06), # ſtst
58)
59
60# Maps the lowercase code to lowercase codes which have the same uppercase.
61_ignorecase_fixes = {i: tuple(j for j in t if i != j)
62 for t in _equivalences for i in t}
63
Fredrik Lundh7898c3e2000-08-07 20:59:04 +000064def _compile(code, pattern, flags):
65 # internal: compile a (sub)pattern
66 emit = code.append
Raymond Hettinger01c9f8c2004-03-26 11:16:55 +000067 _len = len
Raymond Hettinger049ade22005-02-28 19:27:52 +000068 LITERAL_CODES = _LITERAL_CODES
69 REPEATING_CODES = _REPEATING_CODES
70 SUCCESS_CODES = _SUCCESS_CODES
71 ASSERT_CODES = _ASSERT_CODES
Serhiy Storchaka0c938f62014-11-10 12:37:16 +020072 if (flags & SRE_FLAG_IGNORECASE and
73 not (flags & SRE_FLAG_LOCALE) and
Serhiy Storchakabe9a4e52016-09-10 00:57:55 +030074 flags & SRE_FLAG_UNICODE and
75 not (flags & SRE_FLAG_ASCII)):
Serhiy Storchaka0c938f62014-11-10 12:37:16 +020076 fixes = _ignorecase_fixes
77 else:
78 fixes = None
Fredrik Lundh7898c3e2000-08-07 20:59:04 +000079 for op, av in pattern:
Raymond Hettinger01c9f8c2004-03-26 11:16:55 +000080 if op in LITERAL_CODES:
Fredrik Lundh7898c3e2000-08-07 20:59:04 +000081 if flags & SRE_FLAG_IGNORECASE:
Serhiy Storchaka0c938f62014-11-10 12:37:16 +020082 lo = _sre.getlower(av, flags)
83 if fixes and lo in fixes:
Serhiy Storchaka5619ab92014-11-10 12:43:14 +020084 emit(IN_IGNORE)
Serhiy Storchaka0c938f62014-11-10 12:37:16 +020085 skip = _len(code); emit(0)
86 if op is NOT_LITERAL:
Serhiy Storchaka5619ab92014-11-10 12:43:14 +020087 emit(NEGATE)
Serhiy Storchaka0c938f62014-11-10 12:37:16 +020088 for k in (lo,) + fixes[lo]:
Serhiy Storchaka5619ab92014-11-10 12:43:14 +020089 emit(LITERAL)
Serhiy Storchaka0c938f62014-11-10 12:37:16 +020090 emit(k)
Serhiy Storchaka5619ab92014-11-10 12:43:14 +020091 emit(FAILURE)
Serhiy Storchaka0c938f62014-11-10 12:37:16 +020092 code[skip] = _len(code) - skip
93 else:
Serhiy Storchaka5619ab92014-11-10 12:43:14 +020094 emit(OP_IGNORE[op])
Serhiy Storchaka0c938f62014-11-10 12:37:16 +020095 emit(lo)
Fredrik Lundh7898c3e2000-08-07 20:59:04 +000096 else:
Serhiy Storchakac7f7d382014-11-09 20:48:36 +020097 emit(op)
Fredrik Lundh2e240442001-01-15 18:28:14 +000098 emit(av)
Fredrik Lundh7898c3e2000-08-07 20:59:04 +000099 elif op is IN:
100 if flags & SRE_FLAG_IGNORECASE:
Serhiy Storchakac7f7d382014-11-09 20:48:36 +0200101 emit(OP_IGNORE[op])
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000102 def fixup(literal, flags=flags):
103 return _sre.getlower(literal, flags)
104 else:
Serhiy Storchakac7f7d382014-11-09 20:48:36 +0200105 emit(op)
Serhiy Storchaka4b8f8942014-10-31 12:36:56 +0200106 fixup = None
Raymond Hettinger01c9f8c2004-03-26 11:16:55 +0000107 skip = _len(code); emit(0)
Serhiy Storchaka0c938f62014-11-10 12:37:16 +0200108 _compile_charset(av, flags, code, fixup, fixes)
Raymond Hettinger01c9f8c2004-03-26 11:16:55 +0000109 code[skip] = _len(code) - skip
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000110 elif op is ANY:
111 if flags & SRE_FLAG_DOTALL:
Serhiy Storchakac7f7d382014-11-09 20:48:36 +0200112 emit(ANY_ALL)
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000113 else:
Serhiy Storchakac7f7d382014-11-09 20:48:36 +0200114 emit(ANY)
Raymond Hettinger01c9f8c2004-03-26 11:16:55 +0000115 elif op in REPEATING_CODES:
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000116 if flags & SRE_FLAG_TEMPLATE:
Serhiy Storchaka632a77e2015-03-25 21:03:47 +0200117 raise error("internal: unsupported template operator %r" % (op,))
Raymond Hettinger01c9f8c2004-03-26 11:16:55 +0000118 elif _simple(av) and op is not REPEAT:
119 if op is MAX_REPEAT:
Serhiy Storchakac7f7d382014-11-09 20:48:36 +0200120 emit(REPEAT_ONE)
Guido van Rossum41c99e72003-04-14 17:59:34 +0000121 else:
Serhiy Storchakac7f7d382014-11-09 20:48:36 +0200122 emit(MIN_REPEAT_ONE)
Raymond Hettinger01c9f8c2004-03-26 11:16:55 +0000123 skip = _len(code); emit(0)
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000124 emit(av[0])
125 emit(av[1])
126 _compile(code, av[2], flags)
Serhiy Storchakac7f7d382014-11-09 20:48:36 +0200127 emit(SUCCESS)
Raymond Hettinger01c9f8c2004-03-26 11:16:55 +0000128 code[skip] = _len(code) - skip
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000129 else:
Serhiy Storchakac7f7d382014-11-09 20:48:36 +0200130 emit(REPEAT)
Raymond Hettinger01c9f8c2004-03-26 11:16:55 +0000131 skip = _len(code); emit(0)
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000132 emit(av[0])
133 emit(av[1])
134 _compile(code, av[2], flags)
Raymond Hettinger01c9f8c2004-03-26 11:16:55 +0000135 code[skip] = _len(code) - skip
136 if op is MAX_REPEAT:
Serhiy Storchakac7f7d382014-11-09 20:48:36 +0200137 emit(MAX_UNTIL)
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000138 else:
Serhiy Storchakac7f7d382014-11-09 20:48:36 +0200139 emit(MIN_UNTIL)
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000140 elif op is SUBPATTERN:
Serhiy Storchakabe9a4e52016-09-10 00:57:55 +0300141 group, add_flags, del_flags, p = av
142 if group:
Serhiy Storchakac7f7d382014-11-09 20:48:36 +0200143 emit(MARK)
Serhiy Storchakabe9a4e52016-09-10 00:57:55 +0300144 emit((group-1)*2)
145 # _compile_info(code, p, (flags | add_flags) & ~del_flags)
146 _compile(code, p, (flags | add_flags) & ~del_flags)
147 if group:
Serhiy Storchakac7f7d382014-11-09 20:48:36 +0200148 emit(MARK)
Serhiy Storchakabe9a4e52016-09-10 00:57:55 +0300149 emit((group-1)*2+1)
Raymond Hettinger01c9f8c2004-03-26 11:16:55 +0000150 elif op in SUCCESS_CODES:
Serhiy Storchakac7f7d382014-11-09 20:48:36 +0200151 emit(op)
Raymond Hettinger01c9f8c2004-03-26 11:16:55 +0000152 elif op in ASSERT_CODES:
Serhiy Storchakac7f7d382014-11-09 20:48:36 +0200153 emit(op)
Raymond Hettinger01c9f8c2004-03-26 11:16:55 +0000154 skip = _len(code); emit(0)
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000155 if av[0] >= 0:
156 emit(0) # look ahead
157 else:
158 lo, hi = av[1].getwidth()
159 if lo != hi:
Collin Winterce36ad82007-08-30 01:19:48 +0000160 raise error("look-behind requires fixed-width pattern")
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000161 emit(lo) # look behind
162 _compile(code, av[1], flags)
Serhiy Storchakac7f7d382014-11-09 20:48:36 +0200163 emit(SUCCESS)
Raymond Hettinger01c9f8c2004-03-26 11:16:55 +0000164 code[skip] = _len(code) - skip
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000165 elif op is CALL:
Serhiy Storchakac7f7d382014-11-09 20:48:36 +0200166 emit(op)
Raymond Hettinger01c9f8c2004-03-26 11:16:55 +0000167 skip = _len(code); emit(0)
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000168 _compile(code, av, flags)
Serhiy Storchakac7f7d382014-11-09 20:48:36 +0200169 emit(SUCCESS)
Raymond Hettinger01c9f8c2004-03-26 11:16:55 +0000170 code[skip] = _len(code) - skip
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000171 elif op is AT:
Serhiy Storchakac7f7d382014-11-09 20:48:36 +0200172 emit(op)
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000173 if flags & SRE_FLAG_MULTILINE:
Fredrik Lundhb25e1ad2001-03-22 15:50:10 +0000174 av = AT_MULTILINE.get(av, av)
175 if flags & SRE_FLAG_LOCALE:
176 av = AT_LOCALE.get(av, av)
Serhiy Storchakabe9a4e52016-09-10 00:57:55 +0300177 elif (flags & SRE_FLAG_UNICODE) and not (flags & SRE_FLAG_ASCII):
Fredrik Lundhb25e1ad2001-03-22 15:50:10 +0000178 av = AT_UNICODE.get(av, av)
Serhiy Storchakac7f7d382014-11-09 20:48:36 +0200179 emit(av)
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000180 elif op is BRANCH:
Serhiy Storchakac7f7d382014-11-09 20:48:36 +0200181 emit(op)
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000182 tail = []
Raymond Hettinger01c9f8c2004-03-26 11:16:55 +0000183 tailappend = tail.append
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000184 for av in av[1]:
Raymond Hettinger01c9f8c2004-03-26 11:16:55 +0000185 skip = _len(code); emit(0)
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000186 # _compile_info(code, av, flags)
187 _compile(code, av, flags)
Serhiy Storchakac7f7d382014-11-09 20:48:36 +0200188 emit(JUMP)
Raymond Hettinger01c9f8c2004-03-26 11:16:55 +0000189 tailappend(_len(code)); emit(0)
190 code[skip] = _len(code) - skip
Serhiy Storchakaab140882014-11-11 21:13:28 +0200191 emit(FAILURE) # end of branch
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000192 for tail in tail:
Raymond Hettinger01c9f8c2004-03-26 11:16:55 +0000193 code[tail] = _len(code) - tail
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000194 elif op is CATEGORY:
Serhiy Storchakac7f7d382014-11-09 20:48:36 +0200195 emit(op)
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000196 if flags & SRE_FLAG_LOCALE:
Fredrik Lundhb25e1ad2001-03-22 15:50:10 +0000197 av = CH_LOCALE[av]
Serhiy Storchakabe9a4e52016-09-10 00:57:55 +0300198 elif (flags & SRE_FLAG_UNICODE) and not (flags & SRE_FLAG_ASCII):
Fredrik Lundhb25e1ad2001-03-22 15:50:10 +0000199 av = CH_UNICODE[av]
Serhiy Storchakac7f7d382014-11-09 20:48:36 +0200200 emit(av)
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000201 elif op is GROUPREF:
202 if flags & SRE_FLAG_IGNORECASE:
Serhiy Storchakac7f7d382014-11-09 20:48:36 +0200203 emit(OP_IGNORE[op])
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000204 else:
Serhiy Storchakac7f7d382014-11-09 20:48:36 +0200205 emit(op)
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000206 emit(av-1)
Gustavo Niemeyerad3fc442003-10-17 22:13:16 +0000207 elif op is GROUPREF_EXISTS:
Serhiy Storchakac7f7d382014-11-09 20:48:36 +0200208 emit(op)
Andrew M. Kuchlingc30faa82005-06-02 13:35:52 +0000209 emit(av[0]-1)
Raymond Hettinger01c9f8c2004-03-26 11:16:55 +0000210 skipyes = _len(code); emit(0)
Gustavo Niemeyerad3fc442003-10-17 22:13:16 +0000211 _compile(code, av[1], flags)
212 if av[2]:
Serhiy Storchakac7f7d382014-11-09 20:48:36 +0200213 emit(JUMP)
Raymond Hettinger01c9f8c2004-03-26 11:16:55 +0000214 skipno = _len(code); emit(0)
215 code[skipyes] = _len(code) - skipyes + 1
Gustavo Niemeyerad3fc442003-10-17 22:13:16 +0000216 _compile(code, av[2], flags)
Raymond Hettinger01c9f8c2004-03-26 11:16:55 +0000217 code[skipno] = _len(code) - skipno
Gustavo Niemeyerad3fc442003-10-17 22:13:16 +0000218 else:
Raymond Hettinger01c9f8c2004-03-26 11:16:55 +0000219 code[skipyes] = _len(code) - skipyes + 1
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000220 else:
Serhiy Storchaka632a77e2015-03-25 21:03:47 +0200221 raise error("internal: unsupported operand type %r" % (op,))
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000222
Serhiy Storchaka0c938f62014-11-10 12:37:16 +0200223def _compile_charset(charset, flags, code, fixup=None, fixes=None):
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000224 # compile charset subprogram
225 emit = code.append
Serhiy Storchaka5619ab92014-11-10 12:43:14 +0200226 for op, av in _optimize_charset(charset, fixup, fixes):
Serhiy Storchakac7f7d382014-11-09 20:48:36 +0200227 emit(op)
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000228 if op is NEGATE:
229 pass
230 elif op is LITERAL:
Serhiy Storchaka4b8f8942014-10-31 12:36:56 +0200231 emit(av)
232 elif op is RANGE or op is RANGE_IGNORE:
233 emit(av[0])
234 emit(av[1])
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000235 elif op is CHARSET:
236 code.extend(av)
Fredrik Lundh19af43d2001-07-02 16:58:38 +0000237 elif op is BIGCHARSET:
238 code.extend(av)
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000239 elif op is CATEGORY:
240 if flags & SRE_FLAG_LOCALE:
Serhiy Storchakac7f7d382014-11-09 20:48:36 +0200241 emit(CH_LOCALE[av])
Serhiy Storchakabe9a4e52016-09-10 00:57:55 +0300242 elif (flags & SRE_FLAG_UNICODE) and not (flags & SRE_FLAG_ASCII):
Serhiy Storchakac7f7d382014-11-09 20:48:36 +0200243 emit(CH_UNICODE[av])
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000244 else:
Serhiy Storchakac7f7d382014-11-09 20:48:36 +0200245 emit(av)
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000246 else:
Serhiy Storchaka632a77e2015-03-25 21:03:47 +0200247 raise error("internal: unsupported set operator %r" % (op,))
Serhiy Storchakac7f7d382014-11-09 20:48:36 +0200248 emit(FAILURE)
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000249
Serhiy Storchaka5619ab92014-11-10 12:43:14 +0200250def _optimize_charset(charset, fixup, fixes):
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000251 # internal: optimize character set
Fredrik Lundh3562f112000-07-02 12:00:07 +0000252 out = []
Serhiy Storchaka68457be2013-10-27 08:20:29 +0200253 tail = []
254 charmap = bytearray(256)
255 for op, av in charset:
256 while True:
257 try:
258 if op is LITERAL:
Serhiy Storchaka4b8f8942014-10-31 12:36:56 +0200259 if fixup:
Serhiy Storchaka5619ab92014-11-10 12:43:14 +0200260 lo = fixup(av)
261 charmap[lo] = 1
262 if fixes and lo in fixes:
263 for k in fixes[lo]:
Serhiy Storchaka0c938f62014-11-10 12:37:16 +0200264 charmap[k] = 1
265 else:
266 charmap[av] = 1
Serhiy Storchaka68457be2013-10-27 08:20:29 +0200267 elif op is RANGE:
Serhiy Storchaka4b8f8942014-10-31 12:36:56 +0200268 r = range(av[0], av[1]+1)
269 if fixup:
270 r = map(fixup, r)
Serhiy Storchaka0c938f62014-11-10 12:37:16 +0200271 if fixup and fixes:
272 for i in r:
273 charmap[i] = 1
274 if i in fixes:
275 for k in fixes[i]:
276 charmap[k] = 1
277 else:
278 for i in r:
279 charmap[i] = 1
Serhiy Storchaka68457be2013-10-27 08:20:29 +0200280 elif op is NEGATE:
281 out.append((op, av))
282 else:
283 tail.append((op, av))
284 except IndexError:
285 if len(charmap) == 256:
286 # character set contains non-UCS1 character codes
287 charmap += b'\0' * 0xff00
288 continue
Serhiy Storchaka4b8f8942014-10-31 12:36:56 +0200289 # Character set contains non-BMP character codes.
290 # There are only two ranges of cased non-BMP characters:
291 # 10400-1044F (Deseret) and 118A0-118DF (Warang Citi),
292 # and for both ranges RANGE_IGNORE works.
293 if fixup and op is RANGE:
294 op = RANGE_IGNORE
Serhiy Storchaka68457be2013-10-27 08:20:29 +0200295 tail.append((op, av))
296 break
297
Fredrik Lundh3562f112000-07-02 12:00:07 +0000298 # compress character map
Fredrik Lundh3562f112000-07-02 12:00:07 +0000299 runs = []
Serhiy Storchaka68457be2013-10-27 08:20:29 +0200300 q = 0
301 while True:
302 p = charmap.find(1, q)
303 if p < 0:
304 break
305 if len(runs) >= 2:
306 runs = None
307 break
308 q = charmap.find(0, p)
309 if q < 0:
310 runs.append((p, len(charmap)))
311 break
312 runs.append((p, q))
313 if runs is not None:
Fredrik Lundh3562f112000-07-02 12:00:07 +0000314 # use literal/range
Serhiy Storchaka68457be2013-10-27 08:20:29 +0200315 for p, q in runs:
316 if q - p == 1:
317 out.append((LITERAL, p))
Fredrik Lundh3562f112000-07-02 12:00:07 +0000318 else:
Serhiy Storchaka68457be2013-10-27 08:20:29 +0200319 out.append((RANGE, (p, q - 1)))
320 out += tail
Serhiy Storchaka4b8f8942014-10-31 12:36:56 +0200321 # if the case was changed or new representation is more compact
322 if fixup or len(out) < len(charset):
Fredrik Lundh3562f112000-07-02 12:00:07 +0000323 return out
Serhiy Storchaka4b8f8942014-10-31 12:36:56 +0200324 # else original character set is good enough
Serhiy Storchaka68457be2013-10-27 08:20:29 +0200325 return charset
326
327 # use bitmap
328 if len(charmap) == 256:
Fredrik Lundh19af43d2001-07-02 16:58:38 +0000329 data = _mk_bitmap(charmap)
Serhiy Storchaka68457be2013-10-27 08:20:29 +0200330 out.append((CHARSET, data))
331 out += tail
Fredrik Lundh3562f112000-07-02 12:00:07 +0000332 return out
Fredrik Lundh3562f112000-07-02 12:00:07 +0000333
Serhiy Storchaka68457be2013-10-27 08:20:29 +0200334 # To represent a big charset, first a bitmap of all characters in the
335 # set is constructed. Then, this bitmap is sliced into chunks of 256
336 # characters, duplicate chunks are eliminated, and each chunk is
337 # given a number. In the compiled expression, the charset is
338 # represented by a 32-bit word sequence, consisting of one word for
339 # the number of different chunks, a sequence of 256 bytes (64 words)
340 # of chunk numbers indexed by their original chunk position, and a
341 # sequence of 256-bit chunks (8 words each).
Fredrik Lundh19af43d2001-07-02 16:58:38 +0000342
Serhiy Storchaka68457be2013-10-27 08:20:29 +0200343 # Compression is normally good: in a typical charset, large ranges of
344 # Unicode will be either completely excluded (e.g. if only cyrillic
345 # letters are to be matched), or completely included (e.g. if large
346 # subranges of Kanji match). These ranges will be represented by
347 # chunks of all one-bits or all zero-bits.
Fredrik Lundh19af43d2001-07-02 16:58:38 +0000348
Serhiy Storchaka68457be2013-10-27 08:20:29 +0200349 # Matching can be also done efficiently: the more significant byte of
350 # the Unicode character is an index into the chunk number, and the
351 # less significant byte is a bit index in the chunk (just like the
352 # CHARSET matching).
Fredrik Lundh19af43d2001-07-02 16:58:38 +0000353
Serhiy Storchaka68457be2013-10-27 08:20:29 +0200354 charmap = bytes(charmap) # should be hashable
Fredrik Lundh19af43d2001-07-02 16:58:38 +0000355 comps = {}
Serhiy Storchaka68457be2013-10-27 08:20:29 +0200356 mapping = bytearray(256)
Fredrik Lundh19af43d2001-07-02 16:58:38 +0000357 block = 0
Serhiy Storchaka68457be2013-10-27 08:20:29 +0200358 data = bytearray()
359 for i in range(0, 65536, 256):
360 chunk = charmap[i: i + 256]
361 if chunk in comps:
362 mapping[i // 256] = comps[chunk]
363 else:
364 mapping[i // 256] = comps[chunk] = block
365 block += 1
366 data += chunk
367 data = _mk_bitmap(data)
368 data[0:0] = [block] + _bytes_to_codes(mapping)
369 out.append((BIGCHARSET, data))
370 out += tail
371 return out
372
373_CODEBITS = _sre.CODESIZE * 8
Serhiy Storchakaab140882014-11-11 21:13:28 +0200374MAXCODE = (1 << _CODEBITS) - 1
Serhiy Storchaka68457be2013-10-27 08:20:29 +0200375_BITS_TRANS = b'0' + b'1' * 255
376def _mk_bitmap(bits, _CODEBITS=_CODEBITS, _int=int):
377 s = bits.translate(_BITS_TRANS)[::-1]
378 return [_int(s[i - _CODEBITS: i], 2)
379 for i in range(len(s), 0, -_CODEBITS)]
380
381def _bytes_to_codes(b):
382 # Convert block indices to word array
Serhiy Storchaka19e91582014-11-10 13:24:47 +0200383 a = memoryview(b).cast('I')
Serhiy Storchaka68457be2013-10-27 08:20:29 +0200384 assert a.itemsize == _sre.CODESIZE
385 assert len(a) * a.itemsize == len(b)
386 return a.tolist()
Fredrik Lundh19af43d2001-07-02 16:58:38 +0000387
Fredrik Lundhe1869832000-08-01 22:47:49 +0000388def _simple(av):
389 # check if av is a "simple" operator
390 lo, hi = av[2].getwidth()
Fredrik Lundhe1869832000-08-01 22:47:49 +0000391 return lo == hi == 1 and av[2][0][0] != SUBPATTERN
392
Antoine Pitrou79aa68d2013-10-25 21:36:10 +0200393def _generate_overlap_table(prefix):
394 """
395 Generate an overlap table for the following prefix.
396 An overlap table is a table of the same size as the prefix which
397 informs about the potential self-overlap for each index in the prefix:
398 - if overlap[i] == 0, prefix[i:] can't overlap prefix[0:...]
399 - if overlap[i] == k with 0 < k <= i, prefix[i-k+1:i+1] overlaps with
400 prefix[0:k]
401 """
402 table = [0] * len(prefix)
403 for i in range(1, len(prefix)):
404 idx = table[i - 1]
405 while prefix[i] != prefix[idx]:
406 if idx == 0:
407 table[i] = 0
408 break
409 idx = table[idx - 1]
410 else:
411 table[i] = idx + 1
412 return table
413
Serhiy Storchaka66dc4642015-06-21 14:06:55 +0300414def _get_literal_prefix(pattern):
415 # look for literal prefix
Fredrik Lundh29c08be2000-06-29 23:33:12 +0000416 prefix = []
Raymond Hettinger01c9f8c2004-03-26 11:16:55 +0000417 prefixappend = prefix.append
Serhiy Storchaka66dc4642015-06-21 14:06:55 +0300418 prefix_skip = None
Serhiy Storchaka66dc4642015-06-21 14:06:55 +0300419 for op, av in pattern.data:
420 if op is LITERAL:
421 prefixappend(av)
422 elif op is SUBPATTERN:
Serhiy Storchakabe9a4e52016-09-10 00:57:55 +0300423 group, add_flags, del_flags, p = av
424 if add_flags & SRE_FLAG_IGNORECASE:
425 break
426 prefix1, prefix_skip1, got_all = _get_literal_prefix(p)
Serhiy Storchaka66dc4642015-06-21 14:06:55 +0300427 if prefix_skip is None:
Serhiy Storchakabe9a4e52016-09-10 00:57:55 +0300428 if group is not None:
Serhiy Storchaka66dc4642015-06-21 14:06:55 +0300429 prefix_skip = len(prefix)
430 elif prefix_skip1 is not None:
431 prefix_skip = len(prefix) + prefix_skip1
432 prefix.extend(prefix1)
433 if not got_all:
434 break
435 else:
Serhiy Storchaka66dc4642015-06-21 14:06:55 +0300436 break
Serhiy Storchakabe9a4e52016-09-10 00:57:55 +0300437 else:
438 return prefix, prefix_skip, True
439 return prefix, prefix_skip, False
Serhiy Storchaka66dc4642015-06-21 14:06:55 +0300440
441def _get_charset_prefix(pattern):
Fredrik Lundh3562f112000-07-02 12:00:07 +0000442 charset = [] # not used
Raymond Hettinger01c9f8c2004-03-26 11:16:55 +0000443 charsetappend = charset.append
Serhiy Storchaka66dc4642015-06-21 14:06:55 +0300444 if pattern.data:
445 op, av = pattern.data[0]
Serhiy Storchakabe9a4e52016-09-10 00:57:55 +0300446 if op is SUBPATTERN:
447 group, add_flags, del_flags, p = av
448 if p and not (add_flags & SRE_FLAG_IGNORECASE):
449 op, av = p[0]
450 if op is LITERAL:
451 charsetappend((op, av))
452 elif op is BRANCH:
453 c = []
454 cappend = c.append
455 for p in av[1]:
456 if not p:
457 break
458 op, av = p[0]
459 if op is LITERAL:
460 cappend((op, av))
461 else:
462 break
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000463 else:
Serhiy Storchakabe9a4e52016-09-10 00:57:55 +0300464 charset = c
Serhiy Storchaka66dc4642015-06-21 14:06:55 +0300465 elif op is BRANCH:
466 c = []
467 cappend = c.append
468 for p in av[1]:
469 if not p:
470 break
471 op, av = p[0]
472 if op is LITERAL:
473 cappend((op, av))
474 else:
475 break
476 else:
477 charset = c
478 elif op is IN:
479 charset = av
480 return charset
481
482def _compile_info(code, pattern, flags):
483 # internal: compile an info block. in the current version,
484 # this contains min/max pattern width, and an optional literal
485 # prefix or a character map
486 lo, hi = pattern.getwidth()
487 if hi > MAXCODE:
488 hi = MAXCODE
489 if lo == 0:
490 code.extend([INFO, 4, 0, lo, hi])
491 return
492 # look for a literal prefix
493 prefix = []
494 prefix_skip = 0
495 charset = [] # not used
496 if not (flags & SRE_FLAG_IGNORECASE):
497 # look for literal prefix
498 prefix, prefix_skip, got_all = _get_literal_prefix(pattern)
499 # if no prefix, look for charset prefix
500 if not prefix:
501 charset = _get_charset_prefix(pattern)
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000502## if prefix:
Serhiy Storchakaab140882014-11-11 21:13:28 +0200503## print("*** PREFIX", prefix, prefix_skip)
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000504## if charset:
Serhiy Storchakaab140882014-11-11 21:13:28 +0200505## print("*** CHARSET", charset)
Fredrik Lundh29c08be2000-06-29 23:33:12 +0000506 # add an info block
507 emit = code.append
Serhiy Storchakac7f7d382014-11-09 20:48:36 +0200508 emit(INFO)
Fredrik Lundh29c08be2000-06-29 23:33:12 +0000509 skip = len(code); emit(0)
510 # literal flag
511 mask = 0
Fredrik Lundh3562f112000-07-02 12:00:07 +0000512 if prefix:
513 mask = SRE_INFO_PREFIX
Serhiy Storchaka66dc4642015-06-21 14:06:55 +0300514 if prefix_skip is None and got_all:
Serhiy Storchakaab140882014-11-11 21:13:28 +0200515 mask = mask | SRE_INFO_LITERAL
Fredrik Lundh3562f112000-07-02 12:00:07 +0000516 elif charset:
Serhiy Storchakaab140882014-11-11 21:13:28 +0200517 mask = mask | SRE_INFO_CHARSET
Fredrik Lundh29c08be2000-06-29 23:33:12 +0000518 emit(mask)
519 # pattern length
Fredrik Lundh3562f112000-07-02 12:00:07 +0000520 if lo < MAXCODE:
521 emit(lo)
522 else:
523 emit(MAXCODE)
524 prefix = prefix[:MAXCODE]
Serhiy Storchaka83e80272015-02-03 11:04:19 +0200525 emit(min(hi, MAXCODE))
Fredrik Lundh29c08be2000-06-29 23:33:12 +0000526 # add literal prefix
Fredrik Lundh29c08be2000-06-29 23:33:12 +0000527 if prefix:
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000528 emit(len(prefix)) # length
Serhiy Storchaka66dc4642015-06-21 14:06:55 +0300529 if prefix_skip is None:
530 prefix_skip = len(prefix)
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000531 emit(prefix_skip) # skip
532 code.extend(prefix)
533 # generate overlap table
Antoine Pitrou79aa68d2013-10-25 21:36:10 +0200534 code.extend(_generate_overlap_table(prefix))
Fredrik Lundh3562f112000-07-02 12:00:07 +0000535 elif charset:
Guido van Rossum577fb5a2003-02-24 01:18:35 +0000536 _compile_charset(charset, flags, code)
Fredrik Lundh29c08be2000-06-29 23:33:12 +0000537 code[skip] = len(code) - skip
538
Just van Rossum74902502003-07-02 21:37:16 +0000539def isstring(obj):
Thomas Wouters40a088d2008-03-18 20:19:54 +0000540 return isinstance(obj, (str, bytes))
Just van Rossum74902502003-07-02 21:37:16 +0000541
Fredrik Lundh2f2c67d2000-08-01 21:05:41 +0000542def _code(p, flags):
Fredrik Lundh29c08be2000-06-29 23:33:12 +0000543
Jeremy Hyltonb1aa1952000-06-01 17:39:12 +0000544 flags = p.pattern.flags | flags
Fredrik Lundhbe2211e2000-06-29 16:57:40 +0000545 code = []
Fredrik Lundh29c08be2000-06-29 23:33:12 +0000546
547 # compile info block
548 _compile_info(code, p, flags)
549
550 # compile the pattern
Jeremy Hyltonb1aa1952000-06-01 17:39:12 +0000551 _compile(code, p.data, flags)
Fredrik Lundh29c08be2000-06-29 23:33:12 +0000552
Serhiy Storchakac7f7d382014-11-09 20:48:36 +0200553 code.append(SUCCESS)
Fredrik Lundh29c08be2000-06-29 23:33:12 +0000554
Fredrik Lundh29c4ba92000-08-01 18:20:07 +0000555 return code
556
557def compile(p, flags=0):
558 # internal: convert pattern list to internal format
559
Just van Rossum74902502003-07-02 21:37:16 +0000560 if isstring(p):
Fredrik Lundh29c4ba92000-08-01 18:20:07 +0000561 pattern = p
562 p = sre_parse.parse(p, flags)
563 else:
564 pattern = None
565
Fredrik Lundh2f2c67d2000-08-01 21:05:41 +0000566 code = _code(p, flags)
Fredrik Lundh29c4ba92000-08-01 18:20:07 +0000567
Serhiy Storchakac7f7d382014-11-09 20:48:36 +0200568 # print(code)
Fredrik Lundh8a3ebf82000-07-23 21:46:17 +0000569
Fredrik Lundhc2301732000-07-02 22:25:39 +0000570 # map in either direction
571 groupindex = p.pattern.groupdict
572 indexgroup = [None] * p.pattern.groups
573 for k, i in groupindex.items():
574 indexgroup[i] = k
575
Jeremy Hyltonb1aa1952000-06-01 17:39:12 +0000576 return _sre.compile(
Christian Heimes072c0f12008-01-03 23:01:04 +0000577 pattern, flags | p.pattern.flags, code,
Fredrik Lundh6f013982000-07-03 18:44:21 +0000578 p.pattern.groups-1,
579 groupindex, indexgroup
Fredrik Lundh90a07912000-06-30 07:50:59 +0000580 )