• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#
2# Secret Labs' Regular Expression Engine
3#
4# re-compatible interface for the sre matching engine
5#
6# Copyright (c) 1998-2001 by Secret Labs AB.  All rights reserved.
7#
8# This version of the SRE library can be redistributed under CNRI's
9# Python 1.6 license.  For any other use, please contact Secret Labs
10# AB (info@pythonware.com).
11#
12# Portions of this engine have been developed in cooperation with
13# CNRI.  Hewlett-Packard provided funding for 1.6 integration and
14# other compatibility work.
15#
16
17r"""Support for regular expressions (RE).
18
19This module provides regular expression matching operations similar to
20those found in Perl.  It supports both 8-bit and Unicode strings; both
21the pattern and the strings being processed can contain null bytes and
22characters outside the US ASCII range.
23
24Regular expressions can contain both special and ordinary characters.
25Most ordinary characters, like "A", "a", or "0", are the simplest
26regular expressions; they simply match themselves.  You can
27concatenate ordinary characters, so last matches the string 'last'.
28
29The special characters are:
30    "."      Matches any character except a newline.
31    "^"      Matches the start of the string.
32    "$"      Matches the end of the string or just before the newline at
33             the end of the string.
34    "*"      Matches 0 or more (greedy) repetitions of the preceding RE.
35             Greedy means that it will match as many repetitions as possible.
36    "+"      Matches 1 or more (greedy) repetitions of the preceding RE.
37    "?"      Matches 0 or 1 (greedy) of the preceding RE.
38    *?,+?,?? Non-greedy versions of the previous three special characters.
39    {m,n}    Matches from m to n repetitions of the preceding RE.
40    {m,n}?   Non-greedy version of the above.
41    "\\"     Either escapes special characters or signals a special sequence.
42    []       Indicates a set of characters.
43             A "^" as the first character indicates a complementing set.
44    "|"      A|B, creates an RE that will match either A or B.
45    (...)    Matches the RE inside the parentheses.
46             The contents can be retrieved or matched later in the string.
47    (?aiLmsux) Set the A, I, L, M, S, U, or X flag for the RE (see below).
48    (?:...)  Non-grouping version of regular parentheses.
49    (?P<name>...) The substring matched by the group is accessible by name.
50    (?P=name)     Matches the text matched earlier by the group named name.
51    (?#...)  A comment; ignored.
52    (?=...)  Matches if ... matches next, but doesn't consume the string.
53    (?!...)  Matches if ... doesn't match next.
54    (?<=...) Matches if preceded by ... (must be fixed length).
55    (?<!...) Matches if not preceded by ... (must be fixed length).
56    (?(id/name)yes|no) Matches yes pattern if the group with id/name matched,
57                       the (optional) no pattern otherwise.
58
59The special sequences consist of "\\" and a character from the list
60below.  If the ordinary character is not on the list, then the
61resulting RE will match the second character.
62    \number  Matches the contents of the group of the same number.
63    \A       Matches only at the start of the string.
64    \Z       Matches only at the end of the string.
65    \b       Matches the empty string, but only at the start or end of a word.
66    \B       Matches the empty string, but not at the start or end of a word.
67    \d       Matches any decimal digit; equivalent to the set [0-9] in
68             bytes patterns or string patterns with the ASCII flag.
69             In string patterns without the ASCII flag, it will match the whole
70             range of Unicode digits.
71    \D       Matches any non-digit character; equivalent to [^\d].
72    \s       Matches any whitespace character; equivalent to [ \t\n\r\f\v] in
73             bytes patterns or string patterns with the ASCII flag.
74             In string patterns without the ASCII flag, it will match the whole
75             range of Unicode whitespace characters.
76    \S       Matches any non-whitespace character; equivalent to [^\s].
77    \w       Matches any alphanumeric character; equivalent to [a-zA-Z0-9_]
78             in bytes patterns or string patterns with the ASCII flag.
79             In string patterns without the ASCII flag, it will match the
80             range of Unicode alphanumeric characters (letters plus digits
81             plus underscore).
82             With LOCALE, it will match the set [0-9_] plus characters defined
83             as letters for the current locale.
84    \W       Matches the complement of \w.
85    \\       Matches a literal backslash.
86
87This module exports the following functions:
88    match     Match a regular expression pattern to the beginning of a string.
89    fullmatch Match a regular expression pattern to all of a string.
90    search    Search a string for the presence of a pattern.
91    sub       Substitute occurrences of a pattern found in a string.
92    subn      Same as sub, but also return the number of substitutions made.
93    split     Split a string by the occurrences of a pattern.
94    findall   Find all occurrences of a pattern in a string.
95    finditer  Return an iterator yielding a Match object for each match.
96    compile   Compile a pattern into a Pattern object.
97    purge     Clear the regular expression cache.
98    escape    Backslash all non-alphanumerics in a string.
99
100Some of the functions in this module takes flags as optional parameters:
101    A  ASCII       For string patterns, make \w, \W, \b, \B, \d, \D
102                   match the corresponding ASCII character categories
103                   (rather than the whole Unicode categories, which is the
104                   default).
105                   For bytes patterns, this flag is the only available
106                   behaviour and needn't be specified.
107    I  IGNORECASE  Perform case-insensitive matching.
108    L  LOCALE      Make \w, \W, \b, \B, dependent on the current locale.
109    M  MULTILINE   "^" matches the beginning of lines (after a newline)
110                   as well as the string.
111                   "$" matches the end of lines (before a newline) as well
112                   as the end of the string.
113    S  DOTALL      "." matches any character at all, including the newline.
114    X  VERBOSE     Ignore whitespace and comments for nicer looking RE's.
115    U  UNICODE     For compatibility only. Ignored for string patterns (it
116                   is the default), and forbidden for bytes patterns.
117
118This module also defines an exception 'error'.
119
120"""
121
122import enum
123import sre_compile
124import sre_parse
125import functools
126try:
127    import _locale
128except ImportError:
129    _locale = None
130
131
132# public symbols
133__all__ = [
134    "match", "fullmatch", "search", "sub", "subn", "split",
135    "findall", "finditer", "compile", "purge", "template", "escape",
136    "error", "Pattern", "Match", "A", "I", "L", "M", "S", "X", "U",
137    "ASCII", "IGNORECASE", "LOCALE", "MULTILINE", "DOTALL", "VERBOSE",
138    "UNICODE",
139]
140
141__version__ = "2.2.1"
142
143class RegexFlag(enum.IntFlag):
144    ASCII = A = sre_compile.SRE_FLAG_ASCII # assume ascii "locale"
145    IGNORECASE = I = sre_compile.SRE_FLAG_IGNORECASE # ignore case
146    LOCALE = L = sre_compile.SRE_FLAG_LOCALE # assume current 8-bit locale
147    UNICODE = U = sre_compile.SRE_FLAG_UNICODE # assume unicode "locale"
148    MULTILINE = M = sre_compile.SRE_FLAG_MULTILINE # make anchors look for newline
149    DOTALL = S = sre_compile.SRE_FLAG_DOTALL # make dot match newline
150    VERBOSE = X = sre_compile.SRE_FLAG_VERBOSE # ignore whitespace and comments
151    # sre extensions (experimental, don't rely on these)
152    TEMPLATE = T = sre_compile.SRE_FLAG_TEMPLATE # disable backtracking
153    DEBUG = sre_compile.SRE_FLAG_DEBUG # dump pattern after compilation
154
155    def __repr__(self):
156        if self._name_ is not None:
157            return f're.{self._name_}'
158        value = self._value_
159        members = []
160        negative = value < 0
161        if negative:
162            value = ~value
163        for m in self.__class__:
164            if value & m._value_:
165                value &= ~m._value_
166                members.append(f're.{m._name_}')
167        if value:
168            members.append(hex(value))
169        res = '|'.join(members)
170        if negative:
171            if len(members) > 1:
172                res = f'~({res})'
173            else:
174                res = f'~{res}'
175        return res
176    __str__ = object.__str__
177
178globals().update(RegexFlag.__members__)
179
180# sre exception
181error = sre_compile.error
182
183# --------------------------------------------------------------------
184# public interface
185
186def match(pattern, string, flags=0):
187    """Try to apply the pattern at the start of the string, returning
188    a Match object, or None if no match was found."""
189    return _compile(pattern, flags).match(string)
190
191def fullmatch(pattern, string, flags=0):
192    """Try to apply the pattern to all of the string, returning
193    a Match object, or None if no match was found."""
194    return _compile(pattern, flags).fullmatch(string)
195
196def search(pattern, string, flags=0):
197    """Scan through string looking for a match to the pattern, returning
198    a Match object, or None if no match was found."""
199    return _compile(pattern, flags).search(string)
200
201def sub(pattern, repl, string, count=0, flags=0):
202    """Return the string obtained by replacing the leftmost
203    non-overlapping occurrences of the pattern in string by the
204    replacement repl.  repl can be either a string or a callable;
205    if a string, backslash escapes in it are processed.  If it is
206    a callable, it's passed the Match object and must return
207    a replacement string to be used."""
208    return _compile(pattern, flags).sub(repl, string, count)
209
210def subn(pattern, repl, string, count=0, flags=0):
211    """Return a 2-tuple containing (new_string, number).
212    new_string is the string obtained by replacing the leftmost
213    non-overlapping occurrences of the pattern in the source
214    string by the replacement repl.  number is the number of
215    substitutions that were made. repl can be either a string or a
216    callable; if a string, backslash escapes in it are processed.
217    If it is a callable, it's passed the Match object and must
218    return a replacement string to be used."""
219    return _compile(pattern, flags).subn(repl, string, count)
220
221def split(pattern, string, maxsplit=0, flags=0):
222    """Split the source string by the occurrences of the pattern,
223    returning a list containing the resulting substrings.  If
224    capturing parentheses are used in pattern, then the text of all
225    groups in the pattern are also returned as part of the resulting
226    list.  If maxsplit is nonzero, at most maxsplit splits occur,
227    and the remainder of the string is returned as the final element
228    of the list."""
229    return _compile(pattern, flags).split(string, maxsplit)
230
231def findall(pattern, string, flags=0):
232    """Return a list of all non-overlapping matches in the string.
233
234    If one or more capturing groups are present in the pattern, return
235    a list of groups; this will be a list of tuples if the pattern
236    has more than one group.
237
238    Empty matches are included in the result."""
239    return _compile(pattern, flags).findall(string)
240
241def finditer(pattern, string, flags=0):
242    """Return an iterator over all non-overlapping matches in the
243    string.  For each match, the iterator returns a Match object.
244
245    Empty matches are included in the result."""
246    return _compile(pattern, flags).finditer(string)
247
248def compile(pattern, flags=0):
249    "Compile a regular expression pattern, returning a Pattern object."
250    return _compile(pattern, flags)
251
252def purge():
253    "Clear the regular expression caches"
254    _cache.clear()
255    _compile_repl.cache_clear()
256
257def template(pattern, flags=0):
258    "Compile a template pattern, returning a Pattern object"
259    return _compile(pattern, flags|T)
260
261# SPECIAL_CHARS
262# closing ')', '}' and ']'
263# '-' (a range in character set)
264# '&', '~', (extended character set operations)
265# '#' (comment) and WHITESPACE (ignored) in verbose mode
266_special_chars_map = {i: '\\' + chr(i) for i in b'()[]{}?*+-|^$\\.&~# \t\n\r\v\f'}
267
268def escape(pattern):
269    """
270    Escape special characters in a string.
271    """
272    if isinstance(pattern, str):
273        return pattern.translate(_special_chars_map)
274    else:
275        pattern = str(pattern, 'latin1')
276        return pattern.translate(_special_chars_map).encode('latin1')
277
278Pattern = type(sre_compile.compile('', 0))
279Match = type(sre_compile.compile('', 0).match(''))
280
281# --------------------------------------------------------------------
282# internals
283
284_cache = {}  # ordered!
285
286_MAXCACHE = 512
287def _compile(pattern, flags):
288    # internal: compile pattern
289    if isinstance(flags, RegexFlag):
290        flags = flags.value
291    try:
292        return _cache[type(pattern), pattern, flags]
293    except KeyError:
294        pass
295    if isinstance(pattern, Pattern):
296        if flags:
297            raise ValueError(
298                "cannot process flags argument with a compiled pattern")
299        return pattern
300    if not sre_compile.isstring(pattern):
301        raise TypeError("first argument must be string or compiled pattern")
302    p = sre_compile.compile(pattern, flags)
303    if not (flags & DEBUG):
304        if len(_cache) >= _MAXCACHE:
305            # Drop the oldest item
306            try:
307                del _cache[next(iter(_cache))]
308            except (StopIteration, RuntimeError, KeyError):
309                pass
310        _cache[type(pattern), pattern, flags] = p
311    return p
312
313@functools.lru_cache(_MAXCACHE)
314def _compile_repl(repl, pattern):
315    # internal: compile replacement pattern
316    return sre_parse.parse_template(repl, pattern)
317
318def _expand(pattern, match, template):
319    # internal: Match.expand implementation hook
320    template = sre_parse.parse_template(template, pattern)
321    return sre_parse.expand_template(template, match)
322
323def _subx(pattern, template):
324    # internal: Pattern.sub/subn implementation helper
325    template = _compile_repl(template, pattern)
326    if not template[0] and len(template[1]) == 1:
327        # literal replacement
328        return template[1][0]
329    def filter(match, template=template):
330        return sre_parse.expand_template(template, match)
331    return filter
332
333# register myself for pickling
334
335import copyreg
336
337def _pickle(p):
338    return _compile, (p.pattern, p.flags)
339
340copyreg.pickle(Pattern, _pickle, _compile)
341
342# --------------------------------------------------------------------
343# experimental stuff (see python-dev discussions for details)
344
345class Scanner:
346    def __init__(self, lexicon, flags=0):
347        from sre_constants import BRANCH, SUBPATTERN
348        if isinstance(flags, RegexFlag):
349            flags = flags.value
350        self.lexicon = lexicon
351        # combine phrases into a compound pattern
352        p = []
353        s = sre_parse.State()
354        s.flags = flags
355        for phrase, action in lexicon:
356            gid = s.opengroup()
357            p.append(sre_parse.SubPattern(s, [
358                (SUBPATTERN, (gid, 0, 0, sre_parse.parse(phrase, flags))),
359                ]))
360            s.closegroup(gid, p[-1])
361        p = sre_parse.SubPattern(s, [(BRANCH, (None, p))])
362        self.scanner = sre_compile.compile(p)
363    def scan(self, string):
364        result = []
365        append = result.append
366        match = self.scanner.scanner(string).match
367        i = 0
368        while True:
369            m = match()
370            if not m:
371                break
372            j = m.end()
373            if i == j:
374                break
375            action = self.lexicon[m.lastindex-1][1]
376            if callable(action):
377                self.match = m
378                action = action(self, m.group())
379            if action is not None:
380                append(action)
381            i = j
382        return result, string[i:]
383