-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregexparser.py
144 lines (133 loc) · 5.66 KB
/
regexparser.py
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
##
# @file regexparser.py
#
# This file modifies and builds on Xeger,
# which can be found at https://bitbucket.org/leapfrogdevelopment/rstr
#
# Copyright (c) 2011, Leapfrog Direct Response, LLC
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# * Neither the name of the Leapfrog Direct Response, LLC, including
# its subsidiaries and affiliates nor the names of its
# contributors, may be used to endorse or promote products derived
# from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL LEAPFROG DIRECT
# RESPONSE, LLC, INCLUDING ITS SUBSIDIARIES AND AFFILIATES, BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
# IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
import re
class RegexParser(object):
"""
This class contains functionality for building a regular expression from
the parsed result obtained by calling re.sre_parse.parse.
"""
_categories = {
'category_digit': r'\d',
'category_not_digit': r'\D',
'category_space' : r'\s',
'category_not_space': r'\S',
'category_word' : r'\w',
'category_not_word' : r'\W',
}
_at = {
'at_beginning_string' : r'\A',
'at_beginning' : r'^',
'at_end_string' : r'\Z',
'at_end' : r'$',
}
def __init__(self, regex):
self._parsed = re.sre_parse.parse(regex)
self._repeat_bound = None
self._cache = dict()
self._cases = {
'literal' : lambda x: re.escape(chr(x)),
'not_literal' : lambda x: '[^%s]'%re.escape(chr(x)),
'at' : lambda x: self._at[x],
'in' : lambda x: '[%s]'%''.join(self._handle_state(i) for i in x),
'any' : lambda x: '.',
'range' : lambda x: '%c-%c'%x,
'category' : lambda x: self._categories[x],
'branch' : lambda x: self._handle_branch(x[1]),
'subpattern' : lambda x: self._handle_group(x),
'assert' : lambda x: '(?=%s)'%''.join(self._handle_state(i) for i in x[1]),
'assert_not' : lambda x: '(?!%s)'%''.join(self._handle_state(i) for i in x[1]),
'groupref' : lambda x: self._cache[x],
'max_repeat' : lambda x: self._handle_repeat(True, *x),
'min_repeat' : lambda x: self._handle_repeat(False, *x),
'negate' : lambda x: '^',
}
def replace_groups(self):
"""
Builds and returns a regex in which all the back references
are replaced by the referenced group.
"""
newstr = []
for state in self._parsed:
newstr.append(self._handle_state(state))
return ''.join(newstr)
def replace_repeats(self, repeat_bound):
"""
Builds and returns a regex in which all the bounded repetitions
above the given threshold are replaced by unbounded repetitions.
"""
self._repeat_bound = repeat_bound
self._is_changed = False
newstr = []
for state in self._parsed:
newstr.append(self._handle_state(state))
return None if not self._is_changed else ''.join(newstr)
def _handle_state(self, state):
opcode, value = state
return self._cases[opcode](value)
def _handle_group(self, value):
result = ''.join(self._handle_state(i) for i in value[1])
if value[0]:
self._cache[value[0]] = result
result = '(%s)'%result
else:
result = '(?:%s)'%result
return result
def _handle_branch(self, branches):
options = []
for branch in branches:
options.append(''.join(self._handle_state(state) for state in branch))
return '|'.join(options)
def _handle_repeat(self, greedy, start_range, end_range, value):
result = [''.join(self._handle_state(i) for i in value)]
if end_range == re.sre_parse.MAXREPEAT:
if start_range == 0:
result.append('*')
elif start_range == 1:
result.append('+')
else:
result.append('{%d,'%start_range)
else:
repeat = []
repeat.append('{%d'%start_range)
if end_range != start_range:
repeat.append(',%d'%end_range)
repeat.append('}')
if self._repeat_bound is not None and ((start_range > self._repeat_bound) or ((end_range - start_range) > self._repeat_bound)):
result.append('*')
self._is_changed = True
else:
result.extend(repeat)
if not greedy:
result.append('?')
return ''.join(result)