forked from oracle/graalpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_sre.py
More file actions
259 lines (224 loc) · 8.7 KB
/
_sre.py
File metadata and controls
259 lines (224 loc) · 8.7 KB
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
# Copyright (c) 2018, Oracle and/or its affiliates.
#
# The Universal Permissive License (UPL), Version 1.0
#
# Subject to the condition set forth below, permission is hereby granted to any
# person obtaining a copy of this software, associated documentation and/or data
# (collectively the "Software"), free of charge and under any and all copyright
# rights in the Software, and any and all patent rights owned or freely
# licensable by each licensor hereunder covering either (i) the unmodified
# Software as contributed to or provided by such licensor, or (ii) the Larger
# Works (as defined below), to deal in both
#
# (a) the Software, and
# (b) any piece of software and/or hardware listed in the lrgrwrks.txt file if
# one is included with the Software (each a "Larger Work" to which the
# Software is contributed by such licensors),
#
# without restriction, including without limitation the rights to copy, create
# derivative works of, display, perform, and distribute the Software and make,
# use, sell, offer for sale, import, export, have made, and have sold the
# Software and the Larger Work(s), and to sublicense the foregoing rights on
# either these or other terms.
#
# This license is subject to the following condition:
#
# The above copyright notice and either this complete permission notice or at a
# minimum a reference to the UPL must be included in all copies or substantial
# portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
import polyglot as _interop
try:
TREGEX_ENGINE = _interop.eval(string="", language="regex")()
except NotImplementedError as e:
def TREGEX_ENGINE(*args): raise e
CODESIZE = 4
MAGIC = 20140917
MAXREPEAT = 4294967295
MAXGROUPS = 2147483647
FLAG_NAMES = ["re.TEMPLATE", "re.IGNORECASE", "re.LOCALE", "re.MULTILINE",
"re.DOTALL", "re.UNICODE", "re.VERBOSE", "re.DEBUG",
"re.ASCII"]
_FLAGS_TO_JS = ["", "i", "", "m",
"s", "u", "", "",
""]
class SRE_Match():
def __init__(self, pattern, pos, endpos, result):
self.result = result
self.compiled_regex = result.regex
self.re = pattern
self.pos = pos
self.endpos = endpos
def end(self, groupnum=0):
return self.result.end[groupnum]
def group(self, *args):
if not args:
return self.__group__(0)
elif len(args) == 1:
return self.__group__(args[0])
else:
lst = []
for arg in args:
lst.append(self.__group__(arg))
return tuple(lst)
def groups(self, default=None):
lst = []
for arg in range(1, self.result.groupCount):
lst.append(self.__group__(arg))
return tuple(lst)
def __groupidx__(self, idx):
if isinstance(idx, str):
return self.compiled_regex.groups[idx]
else:
return idx
def __group__(self, idx):
idxarg = self.__groupidx__(idx)
start = self.result.start[idxarg]
if start < 0:
return None
else:
return self.result.input[start:self.result.end[idxarg]]
def groupdict(self, default=None):
d = {}
for k in self.compiled_regex.groups:
idx = self.compiled_regex.groups[k]
d[k] = self.__group__(idx)
return d
def span(self, groupnum=0):
idxarg = self.__groupidx__(groupnum)
return (self.result.start[idxarg], self.result.end[idxarg])
def start(self, groupnum=0):
idxarg = self.__groupidx__(groupnum)
return self.result.start[idxarg]
@property
def string(self):
return self.result.input
@property
def lastgroup(self):
return self.result.groupCount
@property
def lastindex(self):
return self.result.end[0]
class SRE_Pattern():
def __init__(self, pattern, flags, code, groups=0, groupindex=None, indexgroup=None):
self.pattern = self._decode_string(pattern, flags)
self.flags = flags
self.code = code
self.num_groups = groups
self.groupindex = groupindex
self.indexgroup = indexgroup
jsflags = []
for i,jsflag in enumerate(_FLAGS_TO_JS):
if flags & (1 << i):
jsflags.append(jsflag)
self.jsflags = "".join(jsflags)
def _decode_string(self, string, flags=0):
if isinstance(string, str):
pattern = string
elif isinstance(string, bytes):
pattern = string.decode()
else:
raise TypeError("invalid search pattern {!r}".format(string))
# TODO: fix this in the regex engine
pattern = pattern.replace(r'\"', '"').replace(r"\'", "'")
# TODO: that's not nearly complete but should be sufficient for now
from sre_compile import SRE_FLAG_VERBOSE
if flags & SRE_FLAG_VERBOSE:
pattern = tregex_preprocess(pattern)
return pattern
def __repr__(self):
flags = self.flags
for i,name in enumerate(FLAG_NAMES):
if flags & (1 << i):
flags -= (1 << i)
flag_items.append(name)
if flags != 0:
flag_items.append("0x%x" % flags)
if len(flag_items) == 0:
sep = ""
sflags = ""
else:
sep = ", "
sflags = "|".join(flag_items)
return "re.compile(%s%s%s)" % (self.pattern, sep, sflags)
def _search(self, pattern, string, pos, endpos):
pattern = TREGEX_ENGINE(self.pattern, self.jsflags)
string = self._decode_string(string)
if endpos == -1 or endpos >= len(string):
result = pattern.exec(string, pos)
else:
result = pattern.exec(string[:endpos], pos)
if result.isMatch:
return SRE_Match(self, pos, endpos, result)
else:
return None
def search(self, string, pos=0, endpos=-1):
return self._search(self.pattern, string, pos, endpos)
def match(self, string, pos=0, endpos=-1):
if not self.pattern.startswith("^"):
return self._search("^" + self.pattern, string, pos, endpos)
else:
return self._search(self.pattern, string, pos, endpos)
def fullmatch(self, string, pos=0, endpos=-1):
pattern = self.pattern
if not pattern.startswith("^"):
pattern = "^" + pattern
if not pattern.endswith("$"):
pattern = pattern + "$"
return self._search(pattern, string, pos, endpos)
def findall(self, string, pos=0, endpos=-1):
pattern = TREGEX_ENGINE(self.pattern, self.jsflags)
string = self._decode_string(string)
if endpos > len(string):
endpos = len(string)
elif endpos < 0:
endpos = endpos % len(string) + 1
matchlist = []
while pos < endpos:
result = pattern.exec(string, pos)
if not result.isMatch:
break
elif self.num_groups == 0:
matchlist.append("")
elif self.num_groups == 1:
matchlist.append(string[result.start[1]:result.end[1]])
else:
matchlist.append(SRE_Match(self, pos, endpos, result).groups())
no_progress = (result.start[0] == result.end[0])
pos = result.end[0] + no_progress
return matchlist
def sub(self, repl, string, count=0):
n = 0
pattern = TREGEX_ENGINE(self.pattern, self.jsflags)
string = self._decode_string(string)
result = []
pos = 0
while count == 0 or n < count:
match = pattern.exec(string, pos)
if not match.isMatch:
break
n += 1
start = match.start[0]
end = match.end[0]
result.append(string[pos:start])
if isinstance(repl, str):
# TODO: backslash replace groups
result.append(repl)
else:
result.append(repl(SRE_Match(self, pos, -1, match)))
no_progress = (start == end)
pos = end + no_progress
result.append(string[pos:])
return "".join(result)
compile = SRE_Pattern
def getcodesize(*args, **kwargs):
raise NotImplementedError("_sre.getcodesize is not yet implemented")
def getlower(char_ord, flags):
return ord(chr(char_ord).lower())