-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.py
187 lines (166 loc) · 5.34 KB
/
utils.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
class BracketsError(Exception):
pass
def is_comment(line):
return line.strip().startswith('#')
def trim_comment(line):
result = ''
idn = indentetion(line)
words = line.split()
if words[0] == '#': # FIXIT .startswith
words.pop(0)
else:
raise ValueError('not a comment')
prefix = ' ' * idn + '#' + ' '
start = 0
for i in range(len(words)):
if i > start + 1 and len(' '.join(words[start : i])) > 78 - idn:
result += prefix + ' '.join(words[start : i - 1]) + '\n'
start = i - 1
return result + prefix + ' '.join(words[start:]) + '\n'
def find_docstrings(document):
quotes = ['"""', "'''"]
p = ''
i = 0
start = 0
while i < len(document) - 2:
c = document[i : i + 3]
if p:
if document[i] == '\\':
i += 1
elif c == p:
# Closing quote
p = ''
if c in quotes:
# Docstring finishes
yield start, i + 3
elif c[0] == p:
p = ''
else:
if c in quotes:
# Docstring starts
p = c
start = i
while start > 0 and document[start - 1] != '\n':
start -= 1
i += 2
elif c[0] in '\'\"':
p = c[0]
i += 1
def trim_docstring(text):
result = ''
for line in text.splitlines():
idn = indentetion(line)
words = line.split()
prefix = ' ' * idn
start = 0
for i in range(len(words)):
if i > start + 1 and len(' '.join(words[start : i])) > 80 - idn:
result += prefix + ' '.join(words[start : i - 1]) + '\n'
start = i - 1
result += prefix + ' '.join(words[start:]) + '\n'
return result
def parse_strings(line):
strings = []
stack = []
p = ''
for i, char in enumerate(line):
if char in '\'\"':
if not stack:
if char == line[i + 1] == line[i + 2]:
stack.append((char * 3, i))
p = char * 3
else:
stack.append((char, i))
p = char
elif char == p[0]:
if line[i - 1] == '\\':
continue
if len(p) == 1:
s, start = stack.pop()
yield (start, i)
elif len(p) == 3 and line[i - 2] == line [i - 1] == char and line[i - 3] != '\\':
s, start = stack.pop()
yield (start, i)
def parse_brackets(line, ignored_fragments):
stack = []
n = len(line)
ignored_fragments = ignored_fragments + [(n, n)]
i = 0
for start, end in ignored_fragments:
while i < start:
char = line[i]
if char in '([{':
stack.append((char, i))
elif char in ')]}':
if not stack:
raise BracketsError(
"closinging bracket {char} at pos {i} without opening bracket"
.format(char=char, i=i)
)
last = stack.pop()
if last[0] + char not in '()[]{}':
raise BracketsError(
"closinging bracket {char} at pos {i} doesn't correspond to open bracket"
.format(char=char, i=i)
)
yield last[1], i
i += 1
i = end + 1
while stack:
last = stack.pop()
yield last[1], None
def parse_commas(line, start, end, ignored_fragments):
ignored_fragments = ignored_fragments + [(end, end)]
i = start
for fr_start, fr_end in ignored_fragments:
while i < fr_start:
char = line[i]
if char == ',':
yield i
i += 1
i = fr_end + 1
def main_brackets(line, ignored_fragments):
brackets = list(parse_brackets(line, ignored_fragments))
if brackets:
main = max(
filter(lambda x: x[1], brackets),
key=lambda x: x[1] - x[0]
)
inner = sorted(x for x in brackets if main[0] < x[1] < main[1])
i = 1
while i < len(inner):
if inner[i - 1][1] > inner[i][0]:
inner.pop(i)
else:
i += 1
return main, inner
else:
return (0, 0), []
def indentetion(line):
i = 0
while i < len(line) and line[i] == ' ':
i += 1
return i
def trim_line(line):
if is_comment(line):
return trim_comment(line)
idn = indentetion(line)
ignored_fragments = sorted(list(parse_strings(line)))
(start, end), inner = main_brackets(line, ignored_fragments)
if end != start:
ignored_fragments = sorted(ignored_fragments + inner)
p = start + 1
result = line[:p] + '\n'
for c in list(parse_commas(line, start, end, ignored_fragments)) + [end - 1]:
s = line[p:c + 1]
while s.startswith(' '):
s = s[1:]
fragment = ' ' * (idn + 4) + s + '\n'
if len(fragment) > 80:
fragment = trim_line(fragment)
result += fragment
p = c + 1
result += ' ' * idn + line[end:]
else:
result = line
return result