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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
|
# minirst.py - minimal reStructuredText parser
#
# Copyright 2009 Matt Mackall <mpm@selenic.com> and others
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2, incorporated herein by reference.
"""simplified reStructuredText parser.
This parser knows just enough about reStructuredText to parse the
Mercurial docstrings.
It cheats in a major way: nested blocks are not really nested. They
are just indented blocks that look like they are nested. This relies
on the user to keep the right indentation for the blocks.
It only supports a small subset of reStructuredText:
- paragraphs
- definition lists (must use ' ' to indent definitions)
- lists (items must start with '-')
- field lists (colons cannot be escaped)
- literal blocks
- option lists (supports only long options without arguments)
- inline markup is not recognized at all.
"""
import re, sys, textwrap
def findblocks(text):
"""Find continuous blocks of lines in text.
Returns a list of dictionaries representing the blocks. Each block
has an 'indent' field and a 'lines' field.
"""
blocks = [[]]
lines = text.splitlines()
for line in lines:
if line.strip():
blocks[-1].append(line)
elif blocks[-1]:
blocks.append([])
if not blocks[-1]:
del blocks[-1]
for i, block in enumerate(blocks):
indent = min((len(l) - len(l.lstrip())) for l in block)
blocks[i] = dict(indent=indent, lines=[l[indent:] for l in block])
return blocks
def findliteralblocks(blocks):
"""Finds literal blocks and adds a 'type' field to the blocks.
Literal blocks are given the type 'literal', all other blocks are
given type the 'paragraph'.
"""
i = 0
while i < len(blocks):
# Searching for a block that looks like this:
#
# +------------------------------+
# | paragraph |
# | (ends with "::") |
# +------------------------------+
# +---------------------------+
# | indented literal block |
# +---------------------------+
blocks[i]['type'] = 'paragraph'
if blocks[i]['lines'][-1].endswith('::') and i+1 < len(blocks):
indent = blocks[i]['indent']
adjustment = blocks[i+1]['indent'] - indent
if blocks[i]['lines'] == ['::']:
# Expanded form: remove block
del blocks[i]
i -= 1
elif blocks[i]['lines'][-1].endswith(' ::'):
# Partially minimized form: remove space and both
# colons.
blocks[i]['lines'][-1] = blocks[i]['lines'][-1][:-3]
else:
# Fully minimized form: remove just one colon.
blocks[i]['lines'][-1] = blocks[i]['lines'][-1][:-1]
# List items are formatted with a hanging indent. We must
# correct for this here while we still have the original
# information on the indentation of the subsequent literal
# blocks available.
if blocks[i]['lines'][0].startswith('- '):
indent += 2
adjustment -= 2
# Mark the following indented blocks.
while i+1 < len(blocks) and blocks[i+1]['indent'] > indent:
blocks[i+1]['type'] = 'literal'
blocks[i+1]['indent'] -= adjustment
i += 1
i += 1
return blocks
def findsections(blocks):
"""Finds sections.
The blocks must have a 'type' field, i.e., they should have been
run through findliteralblocks first.
"""
for block in blocks:
# Searching for a block that looks like this:
#
# +------------------------------+
# | Section title |
# | ------------- |
# +------------------------------+
if (block['type'] == 'paragraph' and
len(block['lines']) == 2 and
block['lines'][1] == '-' * len(block['lines'][0])):
block['type'] = 'section'
return blocks
def findbulletlists(blocks):
"""Finds bullet lists.
The blocks must have a 'type' field, i.e., they should have been
run through findliteralblocks first.
"""
i = 0
while i < len(blocks):
# Searching for a paragraph that looks like this:
#
# +------+-----------------------+
# | "- " | list item |
# +------| (body elements)+ |
# +-----------------------+
if (blocks[i]['type'] == 'paragraph' and
blocks[i]['lines'][0].startswith('- ')):
items = []
for line in blocks[i]['lines']:
if line.startswith('- '):
items.append(dict(type='bullet', lines=[],
indent=blocks[i]['indent']))
line = line[2:]
items[-1]['lines'].append(line)
blocks[i:i+1] = items
i += len(items) - 1
i += 1
return blocks
_optionre = re.compile(r'^(--[a-z-]+)((?:[ =][a-zA-Z][\w-]*)? +)(.*)$')
def findoptionlists(blocks):
"""Finds option lists.
The blocks must have a 'type' field, i.e., they should have been
run through findliteralblocks first.
"""
i = 0
while i < len(blocks):
# Searching for a paragraph that looks like this:
#
# +----------------------------+-------------+
# | "--" option " " | description |
# +-------+--------------------+ |
# | (body elements)+ |
# +----------------------------------+
if (blocks[i]['type'] == 'paragraph' and
_optionre.match(blocks[i]['lines'][0])):
options = []
for line in blocks[i]['lines']:
m = _optionre.match(line)
if m:
option, arg, rest = m.groups()
width = len(option) + len(arg)
options.append(dict(type='option', lines=[],
indent=blocks[i]['indent'],
width=width))
options[-1]['lines'].append(line)
blocks[i:i+1] = options
i += len(options) - 1
i += 1
return blocks
_fieldre = re.compile(r':(?![: ])([^:]*)(?<! ):( +)(.*)')
def findfieldlists(blocks):
"""Finds fields lists.
The blocks must have a 'type' field, i.e., they should have been
run through findliteralblocks first.
"""
i = 0
while i < len(blocks):
# Searching for a paragraph that looks like this:
#
#
# +--------------------+----------------------+
# | ":" field name ":" | field body |
# +-------+------------+ |
# | (body elements)+ |
# +-----------------------------------+
if (blocks[i]['type'] == 'paragraph' and
_fieldre.match(blocks[i]['lines'][0])):
indent = blocks[i]['indent']
fields = []
for line in blocks[i]['lines']:
m = _fieldre.match(line)
if m:
key, spaces, rest = m.groups()
width = 2 + len(key) + len(spaces)
fields.append(dict(type='field', lines=[],
indent=indent, width=width))
# Turn ":foo: bar" into "foo bar".
line = '%s %s%s' % (key, spaces, rest)
fields[-1]['lines'].append(line)
blocks[i:i+1] = fields
i += len(fields) - 1
i += 1
return blocks
def finddefinitionlists(blocks):
"""Finds definition lists.
The blocks must have a 'type' field, i.e., they should have been
run through findliteralblocks first.
"""
i = 0
while i < len(blocks):
# Searching for a paragraph that looks like this:
#
# +----------------------------+
# | term |
# +--+-------------------------+--+
# | definition |
# | (body elements)+ |
# +----------------------------+
if (blocks[i]['type'] == 'paragraph' and
len(blocks[i]['lines']) > 1 and
not blocks[i]['lines'][0].startswith(' ') and
blocks[i]['lines'][1].startswith(' ')):
definitions = []
for line in blocks[i]['lines']:
if not line.startswith(' '):
definitions.append(dict(type='definition', lines=[],
indent=blocks[i]['indent']))
definitions[-1]['lines'].append(line)
definitions[-1]['hang'] = len(line) - len(line.lstrip())
blocks[i:i+1] = definitions
i += len(definitions) - 1
i += 1
return blocks
def addmargins(blocks):
"""Adds empty blocks for vertical spacing.
This groups bullets, options, and definitions together with no vertical
space between them, and adds an empty block between all other blocks.
"""
i = 1
while i < len(blocks):
if (blocks[i]['type'] == blocks[i-1]['type'] and
blocks[i]['type'] in ('bullet', 'option', 'field', 'definition')):
i += 1
else:
blocks.insert(i, dict(lines=[''], indent=0, type='margin'))
i += 2
return blocks
def formatblock(block, width):
"""Format a block according to width."""
indent = ' ' * block['indent']
if block['type'] == 'margin':
return ''
elif block['type'] == 'literal':
indent += ' '
return indent + ('\n' + indent).join(block['lines'])
elif block['type'] == 'section':
return indent + ('\n' + indent).join(block['lines'])
elif block['type'] == 'definition':
term = indent + block['lines'][0]
defindent = indent + block['hang'] * ' '
text = ' '.join(map(str.strip, block['lines'][1:]))
return "%s\n%s" % (term, textwrap.fill(text, width=width,
initial_indent=defindent,
subsequent_indent=defindent))
else:
initindent = subindent = indent
text = ' '.join(map(str.strip, block['lines']))
if block['type'] == 'bullet':
initindent = indent + '- '
subindent = indent + ' '
elif block['type'] in ('option', 'field'):
subindent = indent + block['width'] * ' '
return textwrap.fill(text, width=width,
initial_indent=initindent,
subsequent_indent=subindent)
def format(text, width):
"""Parse and format the text according to width."""
blocks = findblocks(text)
blocks = findliteralblocks(blocks)
blocks = findsections(blocks)
blocks = findbulletlists(blocks)
blocks = findoptionlists(blocks)
blocks = findfieldlists(blocks)
blocks = finddefinitionlists(blocks)
blocks = addmargins(blocks)
return '\n'.join(formatblock(b, width) for b in blocks)
if __name__ == "__main__":
from pprint import pprint
def debug(func, blocks):
blocks = func(blocks)
print "*** after %s:" % func.__name__
pprint(blocks)
print
return blocks
text = open(sys.argv[1]).read()
blocks = debug(findblocks, text)
blocks = debug(findliteralblocks, blocks)
blocks = debug(findsections, blocks)
blocks = debug(findbulletlists, blocks)
blocks = debug(findoptionlists, blocks)
blocks = debug(findfieldlists, blocks)
blocks = debug(finddefinitionlists, blocks)
blocks = debug(addmargins, blocks)
print '\n'.join(formatblock(b, 30) for b in blocks)
|