blob: 94d526da80232f5d066342c0405ce5c926bb415f [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#
Andrew M. Kuchling815d5b92000-06-09 14:08:07 +00004# convert re-style regular expression to sre pattern
Guido van Rossum7627c0d2000-03-31 14:58:54 +00005#
Fredrik Lundh770617b2001-01-14 15:06:11 +00006# Copyright (c) 1998-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
Fredrik Lundh470ea5a2001-01-14 21:00:44 +000013# XXX: show string offset and offending character for all errors
14
Fredrik Lundhf2989b22001-02-18 12:05:16 +000015# this module works under 1.5.2 and later. don't use string methods
16import string, sys
Guido van Rossum7627c0d2000-03-31 14:58:54 +000017
18from sre_constants import *
19
20SPECIAL_CHARS = ".\\[{()*+?^$|"
Fredrik Lundh143328b2000-09-02 11:03:34 +000021REPEAT_CHARS = "*+?{"
Guido van Rossum7627c0d2000-03-31 14:58:54 +000022
Tim Peters17289422000-09-02 07:44:32 +000023DIGITS = tuple("0123456789")
Guido van Rossumb81e70e2000-04-10 17:10:48 +000024
Fredrik Lundh75f2d672000-06-29 11:34:28 +000025OCTDIGITS = tuple("01234567")
26HEXDIGITS = tuple("0123456789abcdefABCDEF")
Guido van Rossum7627c0d2000-03-31 14:58:54 +000027
Fredrik Lundh8a3ebf82000-07-23 21:46:17 +000028WHITESPACE = tuple(" \t\n\r\v\f")
Andrew M. Kuchling815d5b92000-06-09 14:08:07 +000029
Guido van Rossum7627c0d2000-03-31 14:58:54 +000030ESCAPES = {
Fredrik Lundhf2989b22001-02-18 12:05:16 +000031 r"\a": (LITERAL, ord("\a")),
32 r"\b": (LITERAL, ord("\b")),
33 r"\f": (LITERAL, ord("\f")),
34 r"\n": (LITERAL, ord("\n")),
35 r"\r": (LITERAL, ord("\r")),
36 r"\t": (LITERAL, ord("\t")),
37 r"\v": (LITERAL, ord("\v")),
Fredrik Lundh0640e112000-06-30 13:55:15 +000038 r"\\": (LITERAL, ord("\\"))
Guido van Rossum7627c0d2000-03-31 14:58:54 +000039}
40
41CATEGORIES = {
Fredrik Lundh770617b2001-01-14 15:06:11 +000042 r"\A": (AT, AT_BEGINNING_STRING), # start of string
Fredrik Lundh01016fe2000-06-30 00:27:46 +000043 r"\b": (AT, AT_BOUNDARY),
44 r"\B": (AT, AT_NON_BOUNDARY),
45 r"\d": (IN, [(CATEGORY, CATEGORY_DIGIT)]),
46 r"\D": (IN, [(CATEGORY, CATEGORY_NOT_DIGIT)]),
47 r"\s": (IN, [(CATEGORY, CATEGORY_SPACE)]),
48 r"\S": (IN, [(CATEGORY, CATEGORY_NOT_SPACE)]),
49 r"\w": (IN, [(CATEGORY, CATEGORY_WORD)]),
50 r"\W": (IN, [(CATEGORY, CATEGORY_NOT_WORD)]),
Fredrik Lundh770617b2001-01-14 15:06:11 +000051 r"\Z": (AT, AT_END_STRING), # end of string
Guido van Rossum7627c0d2000-03-31 14:58:54 +000052}
53
Andrew M. Kuchling815d5b92000-06-09 14:08:07 +000054FLAGS = {
Fredrik Lundh436c3d582000-06-29 08:58:44 +000055 # standard flags
Andrew M. Kuchling815d5b92000-06-09 14:08:07 +000056 "i": SRE_FLAG_IGNORECASE,
57 "L": SRE_FLAG_LOCALE,
58 "m": SRE_FLAG_MULTILINE,
59 "s": SRE_FLAG_DOTALL,
Andrew M. Kuchling815d5b92000-06-09 14:08:07 +000060 "x": SRE_FLAG_VERBOSE,
Fredrik Lundh436c3d582000-06-29 08:58:44 +000061 # extensions
62 "t": SRE_FLAG_TEMPLATE,
63 "u": SRE_FLAG_UNICODE,
Andrew M. Kuchling815d5b92000-06-09 14:08:07 +000064}
65
Fredrik Lundhf2989b22001-02-18 12:05:16 +000066# figure out best way to convert hex/octal numbers to integers
67try:
68 int("10", 8)
69 atoi = int # 2.0 and later
70except TypeError:
71 atoi = string.atoi # 1.5.2
72
Fredrik Lundh8a3ebf82000-07-23 21:46:17 +000073class Pattern:
74 # master pattern object. keeps track of global attributes
Guido van Rossum7627c0d2000-03-31 14:58:54 +000075 def __init__(self):
Fredrik Lundh90a07912000-06-30 07:50:59 +000076 self.flags = 0
Fredrik Lundhebc37b22000-10-28 19:30:41 +000077 self.open = []
Fredrik Lundh90a07912000-06-30 07:50:59 +000078 self.groups = 1
79 self.groupdict = {}
Fredrik Lundhebc37b22000-10-28 19:30:41 +000080 def opengroup(self, name=None):
Fredrik Lundh90a07912000-06-30 07:50:59 +000081 gid = self.groups
82 self.groups = gid + 1
Raymond Hettingerf13eb552002-06-02 00:40:05 +000083 if name is not None:
Tim Peters75335872001-11-03 19:35:43 +000084 ogid = self.groupdict.get(name, None)
85 if ogid is not None:
Fredrik Lundh82b23072001-12-09 16:13:15 +000086 raise error, ("redefinition of group name %s as group %d; "
87 "was group %d" % (repr(name), gid, ogid))
Fredrik Lundh90a07912000-06-30 07:50:59 +000088 self.groupdict[name] = gid
Fredrik Lundhebc37b22000-10-28 19:30:41 +000089 self.open.append(gid)
Fredrik Lundh90a07912000-06-30 07:50:59 +000090 return gid
Fredrik Lundhebc37b22000-10-28 19:30:41 +000091 def closegroup(self, gid):
92 self.open.remove(gid)
93 def checkgroup(self, gid):
94 return gid < self.groups and gid not in self.open
Guido van Rossum7627c0d2000-03-31 14:58:54 +000095
96class SubPattern:
97 # a subpattern, in intermediate form
98 def __init__(self, pattern, data=None):
Fredrik Lundh90a07912000-06-30 07:50:59 +000099 self.pattern = pattern
Raymond Hettingerf13eb552002-06-02 00:40:05 +0000100 if data is None:
Fredrik Lundh90a07912000-06-30 07:50:59 +0000101 data = []
102 self.data = data
103 self.width = None
Fredrik Lundh8a3ebf82000-07-23 21:46:17 +0000104 def dump(self, level=0):
105 nl = 1
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000106 seqtypes = type(()), type([])
Fredrik Lundh8a3ebf82000-07-23 21:46:17 +0000107 for op, av in self.data:
108 print level*" " + op,; nl = 0
109 if op == "in":
110 # member sublanguage
111 print; nl = 1
112 for op, a in av:
113 print (level+1)*" " + op, a
114 elif op == "branch":
115 print; nl = 1
116 i = 0
117 for a in av[1]:
118 if i > 0:
119 print level*" " + "or"
120 a.dump(level+1); nl = 1
121 i = i + 1
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000122 elif type(av) in seqtypes:
Fredrik Lundh8a3ebf82000-07-23 21:46:17 +0000123 for a in av:
124 if isinstance(a, SubPattern):
125 if not nl: print
126 a.dump(level+1); nl = 1
127 else:
128 print a, ; nl = 0
129 else:
130 print av, ; nl = 0
131 if not nl: print
Guido van Rossum7627c0d2000-03-31 14:58:54 +0000132 def __repr__(self):
Fredrik Lundh90a07912000-06-30 07:50:59 +0000133 return repr(self.data)
Guido van Rossum7627c0d2000-03-31 14:58:54 +0000134 def __len__(self):
Fredrik Lundh90a07912000-06-30 07:50:59 +0000135 return len(self.data)
Guido van Rossum7627c0d2000-03-31 14:58:54 +0000136 def __delitem__(self, index):
Fredrik Lundh90a07912000-06-30 07:50:59 +0000137 del self.data[index]
Guido van Rossum7627c0d2000-03-31 14:58:54 +0000138 def __getitem__(self, index):
Fredrik Lundh90a07912000-06-30 07:50:59 +0000139 return self.data[index]
Guido van Rossum7627c0d2000-03-31 14:58:54 +0000140 def __setitem__(self, index, code):
Fredrik Lundh90a07912000-06-30 07:50:59 +0000141 self.data[index] = code
Guido van Rossum7627c0d2000-03-31 14:58:54 +0000142 def __getslice__(self, start, stop):
Fredrik Lundh90a07912000-06-30 07:50:59 +0000143 return SubPattern(self.pattern, self.data[start:stop])
Guido van Rossum7627c0d2000-03-31 14:58:54 +0000144 def insert(self, index, code):
Fredrik Lundh90a07912000-06-30 07:50:59 +0000145 self.data.insert(index, code)
Guido van Rossum7627c0d2000-03-31 14:58:54 +0000146 def append(self, code):
Fredrik Lundh90a07912000-06-30 07:50:59 +0000147 self.data.append(code)
Guido van Rossum7627c0d2000-03-31 14:58:54 +0000148 def getwidth(self):
Fredrik Lundh90a07912000-06-30 07:50:59 +0000149 # determine the width (min, max) for this subpattern
150 if self.width:
151 return self.width
152 lo = hi = 0L
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000153 UNITCODES = (ANY, RANGE, IN, LITERAL, NOT_LITERAL, CATEGORY)
154 REPEATCODES = (MIN_REPEAT, MAX_REPEAT)
Fredrik Lundh90a07912000-06-30 07:50:59 +0000155 for op, av in self.data:
156 if op is BRANCH:
Fredrik Lundh2f2c67d2000-08-01 21:05:41 +0000157 i = sys.maxint
158 j = 0
Fredrik Lundh90a07912000-06-30 07:50:59 +0000159 for av in av[1]:
Fredrik Lundh2f2c67d2000-08-01 21:05:41 +0000160 l, h = av.getwidth()
161 i = min(i, l)
Fredrik Lundhe1869832000-08-01 22:47:49 +0000162 j = max(j, h)
Fredrik Lundh90a07912000-06-30 07:50:59 +0000163 lo = lo + i
164 hi = hi + j
165 elif op is CALL:
166 i, j = av.getwidth()
167 lo = lo + i
168 hi = hi + j
169 elif op is SUBPATTERN:
170 i, j = av[1].getwidth()
171 lo = lo + i
172 hi = hi + j
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000173 elif op in REPEATCODES:
Fredrik Lundh90a07912000-06-30 07:50:59 +0000174 i, j = av[2].getwidth()
175 lo = lo + long(i) * av[0]
176 hi = hi + long(j) * av[1]
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000177 elif op in UNITCODES:
Fredrik Lundh90a07912000-06-30 07:50:59 +0000178 lo = lo + 1
179 hi = hi + 1
180 elif op == SUCCESS:
181 break
182 self.width = int(min(lo, sys.maxint)), int(min(hi, sys.maxint))
183 return self.width
Guido van Rossum7627c0d2000-03-31 14:58:54 +0000184
185class Tokenizer:
186 def __init__(self, string):
Fredrik Lundh90a07912000-06-30 07:50:59 +0000187 self.string = string
Fredrik Lundhc13222c2000-07-01 23:49:14 +0000188 self.index = 0
189 self.__next()
Guido van Rossum7627c0d2000-03-31 14:58:54 +0000190 def __next(self):
Fredrik Lundh90a07912000-06-30 07:50:59 +0000191 if self.index >= len(self.string):
Fredrik Lundhc13222c2000-07-01 23:49:14 +0000192 self.next = None
193 return
Fredrik Lundh90a07912000-06-30 07:50:59 +0000194 char = self.string[self.index]
195 if char[0] == "\\":
196 try:
197 c = self.string[self.index + 1]
198 except IndexError:
Fredrik Lundh8a0232d2001-11-02 13:59:51 +0000199 raise error, "bogus escape (end of line)"
Fredrik Lundh90a07912000-06-30 07:50:59 +0000200 char = char + c
201 self.index = self.index + len(char)
Fredrik Lundhc13222c2000-07-01 23:49:14 +0000202 self.next = char
Fredrik Lundh0c4fdba2000-08-31 22:57:55 +0000203 def match(self, char, skip=1):
Fredrik Lundh90a07912000-06-30 07:50:59 +0000204 if char == self.next:
Fredrik Lundh0c4fdba2000-08-31 22:57:55 +0000205 if skip:
206 self.__next()
Fredrik Lundh90a07912000-06-30 07:50:59 +0000207 return 1
208 return 0
Guido van Rossum7627c0d2000-03-31 14:58:54 +0000209 def get(self):
Fredrik Lundh90a07912000-06-30 07:50:59 +0000210 this = self.next
Fredrik Lundhc13222c2000-07-01 23:49:14 +0000211 self.__next()
Fredrik Lundh90a07912000-06-30 07:50:59 +0000212 return this
Fredrik Lundhc13222c2000-07-01 23:49:14 +0000213 def tell(self):
214 return self.index, self.next
215 def seek(self, index):
216 self.index, self.next = index
Guido van Rossum7627c0d2000-03-31 14:58:54 +0000217
Fredrik Lundh4781b072000-06-29 12:38:45 +0000218def isident(char):
219 return "a" <= char <= "z" or "A" <= char <= "Z" or char == "_"
220
221def isdigit(char):
222 return "0" <= char <= "9"
223
224def isname(name):
225 # check that group name is a valid string
Fredrik Lundh4781b072000-06-29 12:38:45 +0000226 if not isident(name[0]):
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000227 return False
Fredrik Lundh4781b072000-06-29 12:38:45 +0000228 for char in name:
Fredrik Lundh90a07912000-06-30 07:50:59 +0000229 if not isident(char) and not isdigit(char):
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000230 return False
231 return True
Fredrik Lundh4781b072000-06-29 12:38:45 +0000232
Fredrik Lundh01016fe2000-06-30 00:27:46 +0000233def _group(escape, groups):
Andrew M. Kuchling815d5b92000-06-09 14:08:07 +0000234 # check if the escape string represents a valid group
235 try:
Fredrik Lundhf2989b22001-02-18 12:05:16 +0000236 gid = atoi(escape[1:])
Fredrik Lundhb71624e2000-06-30 09:13:06 +0000237 if gid and gid < groups:
238 return gid
Andrew M. Kuchling815d5b92000-06-09 14:08:07 +0000239 except ValueError:
Fredrik Lundh90a07912000-06-30 07:50:59 +0000240 pass
Andrew M. Kuchling815d5b92000-06-09 14:08:07 +0000241 return None # not a valid group
242
243def _class_escape(source, escape):
244 # handle escape code inside character class
245 code = ESCAPES.get(escape)
Guido van Rossum7627c0d2000-03-31 14:58:54 +0000246 if code:
Fredrik Lundh90a07912000-06-30 07:50:59 +0000247 return code
Andrew M. Kuchling815d5b92000-06-09 14:08:07 +0000248 code = CATEGORIES.get(escape)
249 if code:
Fredrik Lundh90a07912000-06-30 07:50:59 +0000250 return code
Guido van Rossum7627c0d2000-03-31 14:58:54 +0000251 try:
Fredrik Lundh90a07912000-06-30 07:50:59 +0000252 if escape[1:2] == "x":
Fredrik Lundh0c4fdba2000-08-31 22:57:55 +0000253 # hexadecimal escape (exactly two digits)
254 while source.next in HEXDIGITS and len(escape) < 4:
Fredrik Lundh90a07912000-06-30 07:50:59 +0000255 escape = escape + source.get()
256 escape = escape[2:]
Fredrik Lundh0c4fdba2000-08-31 22:57:55 +0000257 if len(escape) != 2:
258 raise error, "bogus escape: %s" % repr("\\" + escape)
Fredrik Lundhf2989b22001-02-18 12:05:16 +0000259 return LITERAL, atoi(escape, 16) & 0xff
Martin v. Löwis53d93ad2003-04-19 08:37:24 +0000260 elif escape[1:2] in OCTDIGITS:
Fredrik Lundh0c4fdba2000-08-31 22:57:55 +0000261 # octal escape (up to three digits)
262 while source.next in OCTDIGITS and len(escape) < 5:
Fredrik Lundh90a07912000-06-30 07:50:59 +0000263 escape = escape + source.get()
264 escape = escape[1:]
Fredrik Lundhf2989b22001-02-18 12:05:16 +0000265 return LITERAL, atoi(escape, 8) & 0xff
Fredrik Lundh90a07912000-06-30 07:50:59 +0000266 if len(escape) == 2:
Fredrik Lundh0640e112000-06-30 13:55:15 +0000267 return LITERAL, ord(escape[1])
Guido van Rossum7627c0d2000-03-31 14:58:54 +0000268 except ValueError:
Fredrik Lundh90a07912000-06-30 07:50:59 +0000269 pass
Fredrik Lundh436c3d582000-06-29 08:58:44 +0000270 raise error, "bogus escape: %s" % repr(escape)
Guido van Rossum7627c0d2000-03-31 14:58:54 +0000271
Andrew M. Kuchling815d5b92000-06-09 14:08:07 +0000272def _escape(source, escape, state):
273 # handle escape code in expression
274 code = CATEGORIES.get(escape)
275 if code:
Fredrik Lundh90a07912000-06-30 07:50:59 +0000276 return code
Andrew M. Kuchling815d5b92000-06-09 14:08:07 +0000277 code = ESCAPES.get(escape)
278 if code:
Fredrik Lundh90a07912000-06-30 07:50:59 +0000279 return code
Andrew M. Kuchling815d5b92000-06-09 14:08:07 +0000280 try:
Fredrik Lundh90a07912000-06-30 07:50:59 +0000281 if escape[1:2] == "x":
Fredrik Lundh0c4fdba2000-08-31 22:57:55 +0000282 # hexadecimal escape
283 while source.next in HEXDIGITS and len(escape) < 4:
Fredrik Lundh90a07912000-06-30 07:50:59 +0000284 escape = escape + source.get()
Fredrik Lundh143328b2000-09-02 11:03:34 +0000285 if len(escape) != 4:
286 raise ValueError
Fredrik Lundhf2989b22001-02-18 12:05:16 +0000287 return LITERAL, atoi(escape[2:], 16) & 0xff
Fredrik Lundh0c4fdba2000-08-31 22:57:55 +0000288 elif escape[1:2] == "0":
289 # octal escape
Fredrik Lundh143328b2000-09-02 11:03:34 +0000290 while source.next in OCTDIGITS and len(escape) < 4:
Fredrik Lundh0c4fdba2000-08-31 22:57:55 +0000291 escape = escape + source.get()
Fredrik Lundhf2989b22001-02-18 12:05:16 +0000292 return LITERAL, atoi(escape[1:], 8) & 0xff
Fredrik Lundh90a07912000-06-30 07:50:59 +0000293 elif escape[1:2] in DIGITS:
Fredrik Lundh0c4fdba2000-08-31 22:57:55 +0000294 # octal escape *or* decimal group reference (sigh)
Fredrik Lundh0c4fdba2000-08-31 22:57:55 +0000295 if source.next in DIGITS:
296 escape = escape + source.get()
Fredrik Lundh143328b2000-09-02 11:03:34 +0000297 if (escape[1] in OCTDIGITS and escape[2] in OCTDIGITS and
298 source.next in OCTDIGITS):
Fredrik Lundh0c4fdba2000-08-31 22:57:55 +0000299 # got three octal digits; this is an octal escape
Fredrik Lundh90a07912000-06-30 07:50:59 +0000300 escape = escape + source.get()
Fredrik Lundhf2989b22001-02-18 12:05:16 +0000301 return LITERAL, atoi(escape[1:], 8) & 0xff
Fredrik Lundh0c4fdba2000-08-31 22:57:55 +0000302 # got at least one decimal digit; this is a group reference
303 group = _group(escape, state.groups)
304 if group:
Fredrik Lundhebc37b22000-10-28 19:30:41 +0000305 if not state.checkgroup(group):
306 raise error, "cannot refer to open group"
Fredrik Lundh0c4fdba2000-08-31 22:57:55 +0000307 return GROUPREF, group
Fredrik Lundh143328b2000-09-02 11:03:34 +0000308 raise ValueError
Fredrik Lundh90a07912000-06-30 07:50:59 +0000309 if len(escape) == 2:
Fredrik Lundh0640e112000-06-30 13:55:15 +0000310 return LITERAL, ord(escape[1])
Andrew M. Kuchling815d5b92000-06-09 14:08:07 +0000311 except ValueError:
Fredrik Lundh90a07912000-06-30 07:50:59 +0000312 pass
Fredrik Lundh436c3d582000-06-29 08:58:44 +0000313 raise error, "bogus escape: %s" % repr(escape)
Andrew M. Kuchling815d5b92000-06-09 14:08:07 +0000314
Fredrik Lundh8a3ebf82000-07-23 21:46:17 +0000315def _parse_sub(source, state, nested=1):
316 # parse an alternation: a|b|c
Guido van Rossum7627c0d2000-03-31 14:58:54 +0000317
Fredrik Lundh8a3ebf82000-07-23 21:46:17 +0000318 items = []
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000319 itemsappend = items.append
320 sourcematch = source.match
Fredrik Lundh8a3ebf82000-07-23 21:46:17 +0000321 while 1:
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000322 itemsappend(_parse(source, state))
323 if sourcematch("|"):
Fredrik Lundh8a3ebf82000-07-23 21:46:17 +0000324 continue
325 if not nested:
326 break
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000327 if not source.next or sourcematch(")", 0):
Fredrik Lundh8a3ebf82000-07-23 21:46:17 +0000328 break
329 else:
330 raise error, "pattern not properly closed"
331
332 if len(items) == 1:
333 return items[0]
334
335 subpattern = SubPattern(state)
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000336 subpatternappend = subpattern.append
Andrew M. Kuchling815d5b92000-06-09 14:08:07 +0000337
Guido van Rossum7627c0d2000-03-31 14:58:54 +0000338 # check if all items share a common prefix
339 while 1:
Fredrik Lundh90a07912000-06-30 07:50:59 +0000340 prefix = None
341 for item in items:
342 if not item:
343 break
344 if prefix is None:
345 prefix = item[0]
346 elif item[0] != prefix:
347 break
348 else:
349 # all subitems start with a common "prefix".
350 # move it out of the branch
351 for item in items:
352 del item[0]
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000353 subpatternappend(prefix)
Fredrik Lundh90a07912000-06-30 07:50:59 +0000354 continue # check next one
355 break
Guido van Rossum7627c0d2000-03-31 14:58:54 +0000356
357 # check if the branch can be replaced by a character set
358 for item in items:
Fredrik Lundh90a07912000-06-30 07:50:59 +0000359 if len(item) != 1 or item[0][0] != LITERAL:
360 break
Guido van Rossum7627c0d2000-03-31 14:58:54 +0000361 else:
Fredrik Lundh90a07912000-06-30 07:50:59 +0000362 # we can store this as a character set instead of a
Fredrik Lundh8a3ebf82000-07-23 21:46:17 +0000363 # branch (the compiler may optimize this even more)
Fredrik Lundh90a07912000-06-30 07:50:59 +0000364 set = []
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000365 setappend = set.append
Fredrik Lundh90a07912000-06-30 07:50:59 +0000366 for item in items:
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000367 setappend(item[0])
368 subpatternappend((IN, set))
Fredrik Lundh90a07912000-06-30 07:50:59 +0000369 return subpattern
Guido van Rossum7627c0d2000-03-31 14:58:54 +0000370
371 subpattern.append((BRANCH, (None, items)))
Andrew M. Kuchling815d5b92000-06-09 14:08:07 +0000372 return subpattern
Guido van Rossum7627c0d2000-03-31 14:58:54 +0000373
Gustavo Niemeyerad3fc442003-10-17 22:13:16 +0000374def _parse_sub_cond(source, state, condgroup):
Tim Peters58eb11c2004-01-18 20:29:55 +0000375 item_yes = _parse(source, state)
Gustavo Niemeyerad3fc442003-10-17 22:13:16 +0000376 if source.match("|"):
Tim Peters58eb11c2004-01-18 20:29:55 +0000377 item_no = _parse(source, state)
Gustavo Niemeyerad3fc442003-10-17 22:13:16 +0000378 if source.match("|"):
379 raise error, "conditional backref with more than two branches"
380 else:
381 item_no = None
382 if source.next and not source.match(")", 0):
383 raise error, "pattern not properly closed"
384 subpattern = SubPattern(state)
385 subpattern.append((GROUPREF_EXISTS, (condgroup, item_yes, item_no)))
386 return subpattern
387
Fredrik Lundh55a4f4a2000-06-30 22:37:31 +0000388def _parse(source, state):
Fredrik Lundh8a3ebf82000-07-23 21:46:17 +0000389 # parse a simple pattern
Andrew M. Kuchling815d5b92000-06-09 14:08:07 +0000390 subpattern = SubPattern(state)
Guido van Rossum7627c0d2000-03-31 14:58:54 +0000391
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000392 # precompute constants into local variables
393 subpatternappend = subpattern.append
394 sourceget = source.get
395 sourcematch = source.match
396 _len = len
397 PATTERNENDERS = ("|", ")")
398 ASSERTCHARS = ("=", "!", "<")
399 LOOKBEHINDASSERTCHARS = ("=", "!")
400 REPEATCODES = (MIN_REPEAT, MAX_REPEAT)
401
Guido van Rossum7627c0d2000-03-31 14:58:54 +0000402 while 1:
403
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000404 if source.next in PATTERNENDERS:
Fredrik Lundh90a07912000-06-30 07:50:59 +0000405 break # end of subpattern
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000406 this = sourceget()
Fredrik Lundh90a07912000-06-30 07:50:59 +0000407 if this is None:
408 break # end of pattern
Guido van Rossum7627c0d2000-03-31 14:58:54 +0000409
Fredrik Lundh90a07912000-06-30 07:50:59 +0000410 if state.flags & SRE_FLAG_VERBOSE:
411 # skip whitespace and comments
412 if this in WHITESPACE:
413 continue
414 if this == "#":
415 while 1:
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000416 this = sourceget()
Fredrik Lundh90a07912000-06-30 07:50:59 +0000417 if this in (None, "\n"):
418 break
419 continue
Andrew M. Kuchling815d5b92000-06-09 14:08:07 +0000420
Fredrik Lundh90a07912000-06-30 07:50:59 +0000421 if this and this[0] not in SPECIAL_CHARS:
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000422 subpatternappend((LITERAL, ord(this)))
Guido van Rossum7627c0d2000-03-31 14:58:54 +0000423
Fredrik Lundh90a07912000-06-30 07:50:59 +0000424 elif this == "[":
425 # character set
426 set = []
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000427 setappend = set.append
428## if sourcematch(":"):
Fredrik Lundh90a07912000-06-30 07:50:59 +0000429## pass # handle character classes
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000430 if sourcematch("^"):
431 setappend((NEGATE, None))
Fredrik Lundh90a07912000-06-30 07:50:59 +0000432 # check remaining characters
433 start = set[:]
434 while 1:
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000435 this = sourceget()
Fredrik Lundh90a07912000-06-30 07:50:59 +0000436 if this == "]" and set != start:
437 break
438 elif this and this[0] == "\\":
439 code1 = _class_escape(source, this)
440 elif this:
Fredrik Lundh0640e112000-06-30 13:55:15 +0000441 code1 = LITERAL, ord(this)
Fredrik Lundh90a07912000-06-30 07:50:59 +0000442 else:
443 raise error, "unexpected end of regular expression"
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000444 if sourcematch("-"):
Fredrik Lundh90a07912000-06-30 07:50:59 +0000445 # potential range
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000446 this = sourceget()
Fredrik Lundh90a07912000-06-30 07:50:59 +0000447 if this == "]":
Fredrik Lundh025468d2000-10-07 10:16:19 +0000448 if code1[0] is IN:
449 code1 = code1[1][0]
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000450 setappend(code1)
451 setappend((LITERAL, ord("-")))
Fredrik Lundh90a07912000-06-30 07:50:59 +0000452 break
Guido van Rossum41c99e72003-04-14 17:59:34 +0000453 elif this:
Fredrik Lundh90a07912000-06-30 07:50:59 +0000454 if this[0] == "\\":
455 code2 = _class_escape(source, this)
456 else:
Fredrik Lundh0640e112000-06-30 13:55:15 +0000457 code2 = LITERAL, ord(this)
Fredrik Lundh90a07912000-06-30 07:50:59 +0000458 if code1[0] != LITERAL or code2[0] != LITERAL:
Fredrik Lundh470ea5a2001-01-14 21:00:44 +0000459 raise error, "bad character range"
Fredrik Lundh0c4fdba2000-08-31 22:57:55 +0000460 lo = code1[1]
461 hi = code2[1]
462 if hi < lo:
Fredrik Lundh470ea5a2001-01-14 21:00:44 +0000463 raise error, "bad character range"
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000464 setappend((RANGE, (lo, hi)))
Guido van Rossum41c99e72003-04-14 17:59:34 +0000465 else:
466 raise error, "unexpected end of regular expression"
Fredrik Lundh90a07912000-06-30 07:50:59 +0000467 else:
468 if code1[0] is IN:
469 code1 = code1[1][0]
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000470 setappend(code1)
Guido van Rossum7627c0d2000-03-31 14:58:54 +0000471
Fredrik Lundh770617b2001-01-14 15:06:11 +0000472 # XXX: <fl> should move set optimization to compiler!
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000473 if _len(set)==1 and set[0][0] is LITERAL:
474 subpatternappend(set[0]) # optimization
475 elif _len(set)==2 and set[0][0] is NEGATE and set[1][0] is LITERAL:
476 subpatternappend((NOT_LITERAL, set[1][1])) # optimization
Fredrik Lundh90a07912000-06-30 07:50:59 +0000477 else:
Fredrik Lundh770617b2001-01-14 15:06:11 +0000478 # XXX: <fl> should add charmap optimization here
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000479 subpatternappend((IN, set))
Guido van Rossum7627c0d2000-03-31 14:58:54 +0000480
Fredrik Lundh90a07912000-06-30 07:50:59 +0000481 elif this and this[0] in REPEAT_CHARS:
482 # repeat previous item
483 if this == "?":
484 min, max = 0, 1
485 elif this == "*":
486 min, max = 0, MAXREPEAT
Fredrik Lundhc0c7ee32001-02-18 21:04:48 +0000487
Fredrik Lundh90a07912000-06-30 07:50:59 +0000488 elif this == "+":
489 min, max = 1, MAXREPEAT
490 elif this == "{":
Fredrik Lundhc13222c2000-07-01 23:49:14 +0000491 here = source.tell()
Fredrik Lundh90a07912000-06-30 07:50:59 +0000492 min, max = 0, MAXREPEAT
493 lo = hi = ""
494 while source.next in DIGITS:
495 lo = lo + source.get()
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000496 if sourcematch(","):
Fredrik Lundh90a07912000-06-30 07:50:59 +0000497 while source.next in DIGITS:
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000498 hi = hi + sourceget()
Fredrik Lundh90a07912000-06-30 07:50:59 +0000499 else:
500 hi = lo
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000501 if not sourcematch("}"):
502 subpatternappend((LITERAL, ord(this)))
Fredrik Lundhc13222c2000-07-01 23:49:14 +0000503 source.seek(here)
504 continue
Fredrik Lundh90a07912000-06-30 07:50:59 +0000505 if lo:
Fredrik Lundhf2989b22001-02-18 12:05:16 +0000506 min = atoi(lo)
Fredrik Lundh90a07912000-06-30 07:50:59 +0000507 if hi:
Fredrik Lundhf2989b22001-02-18 12:05:16 +0000508 max = atoi(hi)
Fredrik Lundh470ea5a2001-01-14 21:00:44 +0000509 if max < min:
510 raise error, "bad repeat interval"
Fredrik Lundh90a07912000-06-30 07:50:59 +0000511 else:
512 raise error, "not supported"
513 # figure out which item to repeat
514 if subpattern:
515 item = subpattern[-1:]
516 else:
Fredrik Lundhc0c7ee32001-02-18 21:04:48 +0000517 item = None
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000518 if not item or (_len(item) == 1 and item[0][0] == AT):
Fredrik Lundh90a07912000-06-30 07:50:59 +0000519 raise error, "nothing to repeat"
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000520 if item[0][0] in REPEATCODES:
Fredrik Lundh470ea5a2001-01-14 21:00:44 +0000521 raise error, "multiple repeat"
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000522 if sourcematch("?"):
Fredrik Lundh90a07912000-06-30 07:50:59 +0000523 subpattern[-1] = (MIN_REPEAT, (min, max, item))
524 else:
525 subpattern[-1] = (MAX_REPEAT, (min, max, item))
Andrew M. Kuchling815d5b92000-06-09 14:08:07 +0000526
Fredrik Lundh90a07912000-06-30 07:50:59 +0000527 elif this == ".":
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000528 subpatternappend((ANY, None))
Andrew M. Kuchling815d5b92000-06-09 14:08:07 +0000529
Fredrik Lundh90a07912000-06-30 07:50:59 +0000530 elif this == "(":
531 group = 1
532 name = None
Gustavo Niemeyerad3fc442003-10-17 22:13:16 +0000533 condgroup = None
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000534 if sourcematch("?"):
Fredrik Lundh90a07912000-06-30 07:50:59 +0000535 group = 0
536 # options
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000537 if sourcematch("P"):
Fredrik Lundh90a07912000-06-30 07:50:59 +0000538 # python extensions
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000539 if sourcematch("<"):
Fredrik Lundh90a07912000-06-30 07:50:59 +0000540 # named group: skip forward to end of name
541 name = ""
542 while 1:
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000543 char = sourceget()
Fredrik Lundh90a07912000-06-30 07:50:59 +0000544 if char is None:
545 raise error, "unterminated name"
546 if char == ">":
547 break
548 name = name + char
549 group = 1
550 if not isname(name):
Fredrik Lundh470ea5a2001-01-14 21:00:44 +0000551 raise error, "bad character in group name"
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000552 elif sourcematch("="):
Fredrik Lundh90a07912000-06-30 07:50:59 +0000553 # named backreference
Fredrik Lundhb71624e2000-06-30 09:13:06 +0000554 name = ""
555 while 1:
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000556 char = sourceget()
Fredrik Lundhb71624e2000-06-30 09:13:06 +0000557 if char is None:
558 raise error, "unterminated name"
559 if char == ")":
560 break
561 name = name + char
562 if not isname(name):
Fredrik Lundh470ea5a2001-01-14 21:00:44 +0000563 raise error, "bad character in group name"
Fredrik Lundhb71624e2000-06-30 09:13:06 +0000564 gid = state.groupdict.get(name)
565 if gid is None:
566 raise error, "unknown group name"
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000567 subpatternappend((GROUPREF, gid))
Fredrik Lundh7cafe4d2000-07-02 17:33:27 +0000568 continue
Fredrik Lundh90a07912000-06-30 07:50:59 +0000569 else:
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000570 char = sourceget()
Fredrik Lundh90a07912000-06-30 07:50:59 +0000571 if char is None:
572 raise error, "unexpected end of pattern"
573 raise error, "unknown specifier: ?P%s" % char
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000574 elif sourcematch(":"):
Fredrik Lundh90a07912000-06-30 07:50:59 +0000575 # non-capturing group
576 group = 2
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000577 elif sourcematch("#"):
Fredrik Lundh90a07912000-06-30 07:50:59 +0000578 # comment
579 while 1:
580 if source.next is None or source.next == ")":
581 break
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000582 sourceget()
583 if not sourcematch(")"):
Fredrik Lundh0c4fdba2000-08-31 22:57:55 +0000584 raise error, "unbalanced parenthesis"
585 continue
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000586 elif source.next in ASSERTCHARS:
Fredrik Lundh43b3b492000-06-30 10:41:31 +0000587 # lookahead assertions
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000588 char = sourceget()
Fredrik Lundh6f013982000-07-03 18:44:21 +0000589 dir = 1
590 if char == "<":
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000591 if source.next not in LOOKBEHINDASSERTCHARS:
Fredrik Lundh6f013982000-07-03 18:44:21 +0000592 raise error, "syntax error"
593 dir = -1 # lookbehind
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000594 char = sourceget()
Fredrik Lundh8a3ebf82000-07-23 21:46:17 +0000595 p = _parse_sub(source, state)
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000596 if not sourcematch(")"):
Fredrik Lundh0c4fdba2000-08-31 22:57:55 +0000597 raise error, "unbalanced parenthesis"
Fredrik Lundh8a3ebf82000-07-23 21:46:17 +0000598 if char == "=":
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000599 subpatternappend((ASSERT, (dir, p)))
Fredrik Lundh8a3ebf82000-07-23 21:46:17 +0000600 else:
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000601 subpatternappend((ASSERT_NOT, (dir, p)))
Fredrik Lundh8a3ebf82000-07-23 21:46:17 +0000602 continue
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000603 elif sourcematch("("):
Gustavo Niemeyerad3fc442003-10-17 22:13:16 +0000604 # conditional backreference group
605 condname = ""
606 while 1:
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000607 char = sourceget()
Gustavo Niemeyerad3fc442003-10-17 22:13:16 +0000608 if char is None:
609 raise error, "unterminated name"
610 if char == ")":
611 break
612 condname = condname + char
613 group = 2
614 if isname(condname):
615 condgroup = state.groupdict.get(condname)
616 if condgroup is None:
617 raise error, "unknown group name"
618 else:
619 try:
620 condgroup = atoi(condname)
621 except ValueError:
622 raise error, "bad character in group name"
Fredrik Lundh90a07912000-06-30 07:50:59 +0000623 else:
624 # flags
Raymond Hettinger54f02222002-06-01 14:18:47 +0000625 if not source.next in FLAGS:
Fredrik Lundh470ea5a2001-01-14 21:00:44 +0000626 raise error, "unexpected end of pattern"
Raymond Hettinger54f02222002-06-01 14:18:47 +0000627 while source.next in FLAGS:
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000628 state.flags = state.flags | FLAGS[sourceget()]
Fredrik Lundh90a07912000-06-30 07:50:59 +0000629 if group:
630 # parse group contents
Fredrik Lundh90a07912000-06-30 07:50:59 +0000631 if group == 2:
632 # anonymous group
633 group = None
634 else:
Fredrik Lundhebc37b22000-10-28 19:30:41 +0000635 group = state.opengroup(name)
Gustavo Niemeyerad3fc442003-10-17 22:13:16 +0000636 if condgroup:
637 p = _parse_sub_cond(source, state, condgroup)
638 else:
639 p = _parse_sub(source, state)
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000640 if not sourcematch(")"):
Fredrik Lundh0c4fdba2000-08-31 22:57:55 +0000641 raise error, "unbalanced parenthesis"
Fredrik Lundhebc37b22000-10-28 19:30:41 +0000642 if group is not None:
643 state.closegroup(group)
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000644 subpatternappend((SUBPATTERN, (group, p)))
Fredrik Lundh90a07912000-06-30 07:50:59 +0000645 else:
646 while 1:
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000647 char = sourceget()
Fredrik Lundh470ea5a2001-01-14 21:00:44 +0000648 if char is None:
649 raise error, "unexpected end of pattern"
650 if char == ")":
Fredrik Lundh90a07912000-06-30 07:50:59 +0000651 break
652 raise error, "unknown extension"
Guido van Rossum7627c0d2000-03-31 14:58:54 +0000653
Fredrik Lundh90a07912000-06-30 07:50:59 +0000654 elif this == "^":
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000655 subpatternappend((AT, AT_BEGINNING))
Guido van Rossum7627c0d2000-03-31 14:58:54 +0000656
Fredrik Lundh90a07912000-06-30 07:50:59 +0000657 elif this == "$":
658 subpattern.append((AT, AT_END))
Guido van Rossum7627c0d2000-03-31 14:58:54 +0000659
Fredrik Lundh90a07912000-06-30 07:50:59 +0000660 elif this and this[0] == "\\":
661 code = _escape(source, this, state)
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000662 subpatternappend(code)
Guido van Rossum7627c0d2000-03-31 14:58:54 +0000663
Fredrik Lundh90a07912000-06-30 07:50:59 +0000664 else:
665 raise error, "parser error"
Guido van Rossum7627c0d2000-03-31 14:58:54 +0000666
667 return subpattern
668
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000669def parse(str, flags=0, pattern=None):
Andrew M. Kuchling815d5b92000-06-09 14:08:07 +0000670 # parse 're' pattern into list of (opcode, argument) tuples
Fredrik Lundh8a3ebf82000-07-23 21:46:17 +0000671
672 source = Tokenizer(str)
673
Fredrik Lundh7898c3e2000-08-07 20:59:04 +0000674 if pattern is None:
675 pattern = Pattern()
Fredrik Lundh8a3ebf82000-07-23 21:46:17 +0000676 pattern.flags = flags
Fredrik Lundh470ea5a2001-01-14 21:00:44 +0000677 pattern.str = str
Fredrik Lundh8a3ebf82000-07-23 21:46:17 +0000678
679 p = _parse_sub(source, pattern, 0)
680
681 tail = source.get()
682 if tail == ")":
683 raise error, "unbalanced parenthesis"
684 elif tail:
685 raise error, "bogus characters at end of regular expression"
686
Fredrik Lundh770617b2001-01-14 15:06:11 +0000687 if flags & SRE_FLAG_DEBUG:
688 p.dump()
Fredrik Lundh8a3ebf82000-07-23 21:46:17 +0000689
Fredrik Lundhd11b5e52000-10-03 19:22:26 +0000690 if not (flags & SRE_FLAG_VERBOSE) and p.pattern.flags & SRE_FLAG_VERBOSE:
691 # the VERBOSE flag was switched on inside the pattern. to be
692 # on the safe side, we'll parse the whole thing again...
693 return parse(str, p.pattern.flags)
694
Guido van Rossum7627c0d2000-03-31 14:58:54 +0000695 return p
696
Fredrik Lundh436c3d582000-06-29 08:58:44 +0000697def parse_template(source, pattern):
Andrew M. Kuchling815d5b92000-06-09 14:08:07 +0000698 # parse 're' replacement string into list of literals and
699 # group references
700 s = Tokenizer(source)
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000701 sget = s.get
Andrew M. Kuchling815d5b92000-06-09 14:08:07 +0000702 p = []
703 a = p.append
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000704 def literal(literal, p=p, pappend=a):
Fredrik Lundhb25e1ad2001-03-22 15:50:10 +0000705 if p and p[-1][0] is LITERAL:
706 p[-1] = LITERAL, p[-1][1] + literal
707 else:
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000708 pappend((LITERAL, literal))
Fredrik Lundhb25e1ad2001-03-22 15:50:10 +0000709 sep = source[:0]
710 if type(sep) is type(""):
Fredrik Lundh59b68652001-09-18 20:55:24 +0000711 makechar = chr
Fredrik Lundhb25e1ad2001-03-22 15:50:10 +0000712 else:
Fredrik Lundh59b68652001-09-18 20:55:24 +0000713 makechar = unichr
Andrew M. Kuchling815d5b92000-06-09 14:08:07 +0000714 while 1:
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000715 this = sget()
Fredrik Lundh90a07912000-06-30 07:50:59 +0000716 if this is None:
717 break # end of replacement string
718 if this and this[0] == "\\":
719 # group
720 if this == "\\g":
721 name = ""
722 if s.match("<"):
723 while 1:
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000724 char = sget()
Fredrik Lundh90a07912000-06-30 07:50:59 +0000725 if char is None:
726 raise error, "unterminated group name"
727 if char == ">":
728 break
729 name = name + char
730 if not name:
731 raise error, "bad group name"
732 try:
Fredrik Lundhf2989b22001-02-18 12:05:16 +0000733 index = atoi(name)
Fredrik Lundh90a07912000-06-30 07:50:59 +0000734 except ValueError:
735 if not isname(name):
Fredrik Lundh470ea5a2001-01-14 21:00:44 +0000736 raise error, "bad character in group name"
Fredrik Lundh90a07912000-06-30 07:50:59 +0000737 try:
738 index = pattern.groupindex[name]
739 except KeyError:
740 raise IndexError, "unknown group name"
741 a((MARK, index))
742 elif len(this) > 1 and this[1] in DIGITS:
743 code = None
744 while 1:
745 group = _group(this, pattern.groups+1)
746 if group:
Fredrik Lundh19f977b2000-09-24 14:46:23 +0000747 if (s.next not in DIGITS or
Fredrik Lundh90a07912000-06-30 07:50:59 +0000748 not _group(this + s.next, pattern.groups+1)):
Fredrik Lundh1c5aa692001-01-16 07:37:30 +0000749 code = MARK, group
Fredrik Lundh90a07912000-06-30 07:50:59 +0000750 break
751 elif s.next in OCTDIGITS:
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000752 this = this + sget()
Fredrik Lundh90a07912000-06-30 07:50:59 +0000753 else:
754 break
755 if not code:
756 this = this[1:]
Fredrik Lundh59b68652001-09-18 20:55:24 +0000757 code = LITERAL, makechar(atoi(this[-6:], 8) & 0xff)
Fredrik Lundhb25e1ad2001-03-22 15:50:10 +0000758 if code[0] is LITERAL:
759 literal(code[1])
760 else:
761 a(code)
Fredrik Lundh90a07912000-06-30 07:50:59 +0000762 else:
763 try:
Fredrik Lundh59b68652001-09-18 20:55:24 +0000764 this = makechar(ESCAPES[this][1])
Fredrik Lundh90a07912000-06-30 07:50:59 +0000765 except KeyError:
Fredrik Lundhb25e1ad2001-03-22 15:50:10 +0000766 pass
767 literal(this)
Fredrik Lundh90a07912000-06-30 07:50:59 +0000768 else:
Fredrik Lundhb25e1ad2001-03-22 15:50:10 +0000769 literal(this)
770 # convert template to groups and literals lists
771 i = 0
772 groups = []
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000773 groupsappend = groups.append
774 literals = [None] * len(p)
Fredrik Lundhb25e1ad2001-03-22 15:50:10 +0000775 for c, s in p:
776 if c is MARK:
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000777 groupsappend((i, s))
778 # literal[i] is already None
Fredrik Lundhb25e1ad2001-03-22 15:50:10 +0000779 else:
Raymond Hettinger968c56a2004-03-26 23:24:00 +0000780 literals[i] = s
Fredrik Lundhb25e1ad2001-03-22 15:50:10 +0000781 i = i + 1
782 return groups, literals
Andrew M. Kuchling815d5b92000-06-09 14:08:07 +0000783
Fredrik Lundh436c3d582000-06-29 08:58:44 +0000784def expand_template(template, match):
Fredrik Lundhb25e1ad2001-03-22 15:50:10 +0000785 g = match.group
Fredrik Lundh0640e112000-06-30 13:55:15 +0000786 sep = match.string[:0]
Fredrik Lundhb25e1ad2001-03-22 15:50:10 +0000787 groups, literals = template
788 literals = literals[:]
789 try:
790 for index, group in groups:
791 literals[index] = s = g(group)
Fredrik Lundh90a07912000-06-30 07:50:59 +0000792 if s is None:
Fredrik Lundhb25e1ad2001-03-22 15:50:10 +0000793 raise IndexError
794 except IndexError:
795 raise error, "empty group"
796 return string.join(literals, sep)