-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbraceexpand.py
212 lines (161 loc) · 6.15 KB
/
braceexpand.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
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
"""Bash-style brace expansion"""
import re
import string
import sys
from itertools import chain, product
__version__ = '0.1.2'
__all__ = ['braceexpand', 'alphabet', 'UnbalancedBracesError']
class UnbalancedBracesError(ValueError): pass
PY3 = sys.version_info[0] >= 3
if PY3:
xrange = range
alphabet = string.ascii_uppercase + string.ascii_lowercase
int_range_re = re.compile(r'^(\d+)\.\.(\d+)(?:\.\.-?(\d+))?$')
char_range_re = re.compile(r'^([A-Za-z])\.\.([A-Za-z])(?:\.\.-?(\d+))?$')
def braceexpand(pattern, escape=True):
"""braceexpand(pattern) -> iterator over generated strings
Returns an iterator over the strings resulting from brace expansion
of pattern. This function implements Brace Expansion as described in
bash(1), with the following limitations:
* A pattern containing unbalanced braces will raise an
UnbalancedBracesError exception. In bash, unbalanced braces will either
be partly expanded or ignored.
* A mixed-case character range like '{Z..a}' or '{a..Z}' will not
include the characters '[]^_`' between 'Z' and 'a'.
When escape is True (the default), characters in pattern can be
prefixed with a backslash to cause them not to be interpreted as
special characters for brace expansion (such as '{', '}', ',').
To pass through a a literal backslash, double it ('\\\\').
When escape is False, backslashes in pattern have no special
meaning and will be preserved in the output.
Examples:
>>> from braceexpand import braceexpand
# Integer range
>>> list(braceexpand('item{1..3}'))
['item1', 'item2', 'item3']
# Character range
>>> list(braceexpand('{a..c}'))
['a', 'b', 'c']
# Sequence
>>> list(braceexpand('index.html{,.backup}'))
['index.html', 'index.html.backup']
# Nested patterns
>>> list(braceexpand('python{2.{5..7},3.{2,3}}'))
['python2.5', 'python2.6', 'python2.7', 'python3.2', 'python3.3']
# Prefixing an integer with zero causes all numbers to be padded to
# the same width.
>>> list(braceexpand('{07..10}'))
['07', '08', '09', '10']
# An optional increment can be specified for ranges.
>>> list(braceexpand('{a..g..2}'))
['a', 'c', 'e', 'g']
# Ranges can go in both directions.
>>> list(braceexpand('{4..1}'))
['4', '3', '2', '1']
# Unbalanced braces raise an exception.
>>> list(braceexpand('{1{2,3}'))
Traceback (most recent call last):
...
UnbalancedBracesError: Unbalanced braces: '{1{2,3}'
# By default, the backslash is the escape character.
>>> list(braceexpand(r'{1\{2,3}'))
['1{2', '3']
# Setting 'escape' to False disables backslash escaping.
>>> list(braceexpand(r'\{1,2}', escape=False))
['\\\\1', '\\\\2']
"""
return (_flatten(t, escape) for t in parse_pattern(pattern, escape))
def parse_pattern(pattern, escape):
# pattern -> product(*parts)
start = 0
pos = 0
bracketdepth = 0
items = []
#print('pattern:', pattern)
while pos < len(pattern):
if escape and pattern[pos] == '\\':
pos += 2
continue
elif pattern[pos] == '{':
if bracketdepth == 0 and pos > start:
#print('literal:', pattern[start:pos])
items.append([pattern[start:pos]])
start = pos
bracketdepth += 1
elif pattern[pos] == '}':
bracketdepth -= 1
if bracketdepth == 0:
#print('expression:', pattern[start+1:pos])
items.append(parse_expression(pattern[start+1:pos], escape))
start = pos + 1 # skip the closing brace
pos += 1
if bracketdepth != 0: # unbalanced braces
raise UnbalancedBracesError("Unbalanced braces: '%s'" % pattern)
if start < pos:
#print('literal:', pattern[start:])
items.append([pattern[start:]])
return product(*items)
def parse_expression(expr, escape):
int_range_match = int_range_re.match(expr)
if int_range_match:
return make_int_range(*int_range_match.groups())
char_range_match = char_range_re.match(expr)
if char_range_match:
return make_char_range(*char_range_match.groups())
return parse_sequence(expr, escape)
def parse_sequence(seq, escape):
# sequence -> chain(*sequence_items)
start = 0
pos = 0
bracketdepth = 0
items = []
#print('sequence:', seq)
while pos < len(seq):
if escape and seq[pos] == '\\':
pos += 2
continue
elif seq[pos] == '{':
bracketdepth += 1
elif seq[pos] == '}':
bracketdepth -= 1
elif seq[pos] == ',' and bracketdepth == 0:
items.append(parse_pattern(seq[start:pos], escape))
start = pos + 1 # skip the comma
pos += 1
if bracketdepth != 0 or not items: # unbalanced braces or not a sequence
return iter(['{' + seq + '}'])
# part after the last comma (may be the empty string)
items.append(parse_pattern(seq[start:], escape))
return chain(*items)
def make_int_range(start, end, step=None):
if any([s[0] == '0' for s in (start, end) if s != '0']):
padding = max(len(start), len(end))
else:
padding = 0
step = int(step) if step else 1
start = int(start)
end = int(end)
r = xrange(start, end+1, step) if start < end else \
xrange(start, end-1, -step)
return (str(i).rjust(padding, '0') for i in r)
def make_char_range(start, end, step=None):
step = int(step) if step else 1
start = alphabet.index(start)
end = alphabet.index(end)
return alphabet[start:end+1:step] if start < end else \
alphabet[start:end-1:-step]
def braceexpandlist(be):
return list(braceexpand(be))
escape_re = re.compile(r'\\(.)')
def _flatten(t, escape):
l = []
for item in t:
if isinstance(item, tuple): l.extend(_flatten(item, escape))
else: l.append(item)
s = ''.join(l)
# Strip escape characters from generated strings after expansion.
return escape_re.sub(r'\1', s) if escape else s
# if __name__ == '__main__':
# import doctest
# doctest.testmod(optionflags=doctest.IGNORE_EXCEPTION_DETAIL)
#