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
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
|
# GHC User's Guide flag extension
#
# This file defines a Sphinx extension to document GHC flags.
# It introduces a directive:
#
# .. ghc-flag::
# :shortdesc: A short description (REQUIRED)
# :type: dynamic, mode, dynamix/ ``:set`` (REQUIRED)
# :reverse: The reverse of the flag
# :category: The category to list the flag under (default: 'misc')
# :noindex: Do not list the flag anywhere (good for duplicates)
#
# That can be referenced using:
#
# :ghc-flag:`flag`
#
# As well as a directive to generate a display of flags:
#
# .. flag-print::
# :type: table/list/summary (REQUIRED)
# :category: Limit the output to a single category
#
# The two main functions in this extension are Flag.after_content() which adds
# flag metadata into the environment, and flagprint.generate_output(), which
# reads the metadata back out and formats it as desired.
from docutils import nodes
from docutils.parsers.rst import Directive, directives
from sphinx import addnodes
from sphinx.domains.std import GenericObject
### Settings
# Categories to titles as well as a canonical list of categories
categories = {
'': 'All flags',
'codegen': 'Code generation',
'coverage': 'Program coverage',
'cpp': 'C pre-processor',
'debugging': 'Debugging the compiler',
'interactive': 'Interactive mode',
'interface-files': 'Interface files',
'keep-intermediates': 'Keeping intermediate files',
'language': 'Language options',
'linking': 'Linking options',
'misc': 'Miscellaneous options',
'modes': 'Modes of operation',
'optimization': 'Individual optimizations',
'optimization-levels': 'Optimization levels',
'packages': 'Package options',
'phases': 'Phases of compilation',
'phase-programs': 'Overriding external programs',
'phase-options': 'Phase-specific options',
'platform-options': 'Platform-specific options',
'plugins': 'Compiler plugins',
'profiling': 'Profiling',
'recompilation': 'Recompilation checking',
'redirect-output': 'Redirecting output',
'search-path': 'Finding imports',
'temp-files': 'Temporary files',
'verbosity': 'Verbosity options',
'warnings': 'Warnings',
}
# Map file names to default flag categories
file_defaults = {
'debugging': 'debugging',
'ghci': 'interactive',
'glasgow_exts': 'language',
'packages': 'packages',
'profiling': 'profiling',
'safe_haskell': 'language',
'separate_compilation': 'redirect-output',
'using-warnings': 'warnings',
'using-optimisation': 'optimization'
}
### Flag declaration
# This class inherits from Sphinx's internal GenericObject, which drives
# the add_object_type() utility function. We want to keep that tooling,
# but need to override some of the functionality.
class Flag(GenericObject):
# The options that can be passed to our directive and their validators
option_spec = {
'shortdesc': directives.unchanged_required,
'type': directives.unchanged_required,
'reverse': directives.unchanged,
'category': directives.unchanged,
'noindex': directives.flag
}
# The index directive generated unless :noindex: is specified
indextemplate = 'pair: %s; GHC option'
# Generate docutils node from directive arguments
@staticmethod
def _parse_flag(env, sig, signode):
# Break flag into name and args
import re
parts = re.split(r'( |=|\[)', sig, 1)
flag = parts[0]
# Bold printed name
signode += addnodes.desc_name(flag, flag)
if len(parts) > 1:
args = ''.join(parts[1:])
# Smaller arguments
signode += addnodes.desc_addname(args, args)
# Reference name left unchanged
return sig
# Used in the GenericObject class
parse_node = _parse_flag
# Override the (empty) function that is called at the end of run()
# to append metadata about this flag into the environment
def after_content(self):
# If noindex, then do not include this flag in the table
if 'noindex' in self.options:
return
# Set the flag category (default: misc)
self.category = 'misc'
if not 'category' in self.options or self.options['category'] == '':
if self.env.docname in file_defaults:
self.category = file_defaults[self.env.docname]
else:
self.category = self.options['category']
# Manually create references
name_string = ", ".join([':ghc-flag:`'+n+'`' for n in self.names])
reverse_string = ''
if 'reverse' in self.options and self.options['reverse'] != '':
reverse_string = ':ghc-flag:`' + self.options['reverse'] + '`'
# Create nodes for each cell of the table
name_node = nodes.paragraph()
shortdesc_node = nodes.paragraph()
type_node = nodes.paragraph()
reverse_node = nodes.paragraph()
# Nodes expect an internal ViewList type for the content,
# we are just spoofing it here
from docutils.statemachine import ViewList
name_vl = ViewList(initlist=[name_string],
source=self.env.docname, parent=[])
shortdesc_vl = ViewList(initlist=[self.options['shortdesc']],
source=self.env.docname, parent=[])
type_vl = ViewList(initlist=[self.options['type']],
source=self.env.docname, parent=[])
reverse_vl = ViewList(initlist=[reverse_string],
source=self.env.docname, parent=[])
# Parse the content into the nodes
self.state.nested_parse(name_vl, 0, name_node)
self.state.nested_parse(shortdesc_vl, 0, shortdesc_node)
self.state.nested_parse(type_vl, 0, type_node)
self.state.nested_parse(reverse_vl, 0, reverse_node)
# The parsing adds extra layers that we don't need
name_node = name_node[0]
shortdesc_node = shortdesc_node[0]
# Append this flag to the environment, initializing if necessary
if not hasattr(self.env, 'all_flags'):
self.env.all_flags = []
self.env.all_flags.append({
'names': self.names,
'docname': self.env.docname,
'category': self.category,
'cells': [name_node, shortdesc_node, type_node, reverse_node],
})
### Flag Printing
# Taken from Docutils source inside the ListTable class. We must bypass
# using the class itself, but this function comes in handy.
def build_table_from_list(table_data, col_widths):
table = nodes.table()
tgroup = nodes.tgroup(cols=len(col_widths))
table += tgroup
for col_width in col_widths:
colspec = nodes.colspec(colwidth=col_width)
tgroup += colspec
rows = []
for row in table_data:
row_node = nodes.row()
for cell in row:
entry = nodes.entry()
entry += cell
row_node += entry
rows.append(row_node)
thead = nodes.thead()
thead.extend(rows[:1])
tgroup += thead
tbody = nodes.tbody()
tbody.extend(rows[1:])
tgroup += tbody
return table
# Generate a table of flags
def generate_flag_table(flags, category):
# Create column headers for table
header = []
for h in ["Flag", "Description", "Type", "Reverse"]:
inline = nodes.inline(text=h)
header.append(inline)
flags_list = [header]
for flag_info in flags:
flags_list.append(flag_info['cells'])
# The column width hints only apply to html,
# latex widths are set in file (see flags.rst)
table = build_table_from_list(flags_list, [28, 34, 10, 28])
# Flag tables have lots of content, so we need to set 'longtable'
# to allow for pagebreaks. (latex specific)
table['classes'].append('longtable')
return table
# Generate a list of flags and their short descriptions
def generate_flag_list(flags, category):
list_node = nodes.definition_list()
for flag_info in flags:
dl_item_node = nodes.definition_list_item()
term_node = nodes.term()
# The man writer is picky, so we have to remove the outer
# paragraph node to get just the flag name
term_node += flag_info['cells'][0][0]
dl_item_node += term_node
def_node = nodes.definition()
def_node += flag_info['cells'][1]
dl_item_node += def_node
list_node += dl_item_node
return list_node
# Generate a block of flag names under a category
def generate_flag_summary(flags, category):
summary_node = nodes.definition_list_item()
term_node = nodes.term(text=categories[category])
summary_node += term_node
block = nodes.definition()
summary_node += block
# Fill block with flags
for flag_info in flags:
for name in flag_info['names']:
block += nodes.literal(text=name)
block += nodes.inline(text=' ')
block += nodes.inline(text='\n')
return summary_node
# Output dispatch table
handlers = {
'table': generate_flag_table,
'list': generate_flag_list,
'summary': generate_flag_summary
}
# Generic node for printing flag output
class flagprint(nodes.General, nodes.Element):
def __init__(self, output_type='', category='', **kwargs):
nodes.Element.__init__(self, rawsource='', **kwargs)
# Verify options
if category not in categories:
error = "flagprint: Unknown category: " + category
raise ValueError(error)
if output_type not in handlers:
error = "flagprint: Unknown output type: " + output_type
raise ValueError(error)
# Store the options
self.options = {
'type': output_type,
'category': category
}
# The man writer has a copy issue, so we explicitly override it here
def copy(self):
newnode = flagprint(output_type=self.options['type'],
category=self.options['category'], **self.attributes)
newnode.source = self.source
newnode.line = self.line
return newnode
def generate_output(self, app, fromdocname):
env = app.builder.env
# Filter flags before passing to handlers
flags = []
for flag_info in sorted(env.all_flags,
key=lambda fi: fi['names'][0].lower()):
if not (self.options['category'] == '' or
self.options['category'] == flag_info['category']):
continue
# Resolve all references as if they were originated from this node.
# This fixes the relative uri.
for cell in flag_info['cells']:
for ref in cell.traverse(addnodes.pending_xref):
ref['refdoc'] = fromdocname
env.resolve_references(cell, flag_info['docname'], app.builder)
flags.append(flag_info)
handler = handlers[self.options['type']]
self.replace_self(handler(flags, self.options['category']))
# A directive to create flagprint nodes
class FlagPrintDirective(Directive):
option_spec = {
'type': directives.unchanged_required,
'category': directives.unchanged
}
def run(self):
# Process options
category = ''
if 'category' in self.options:
category = self.options['category']
# Create a flagprint node
node = flagprint(output_type=self.options['type'], category=category)
return [node]
### Additional processing
# Convert every flagprint node into its output format
def process_print_nodes(app, doctree, fromdocname):
for node in doctree.traverse(flagprint):
node.generate_output(app, fromdocname)
# To avoid creating duplicates in the serialized environment, clear all
# flags originating from a file before re-reading it.
def purge_flags(app, env, docname):
if not hasattr(env, 'all_flags'):
return
env.all_flags = [flag for flag in env.all_flags
if flag['docname'] != docname]
### Initialization
def setup(app):
# Add ghc-flag directive, and override the class with our own
app.add_object_type('ghc-flag', 'ghc-flag')
app.add_directive_to_domain('std', 'ghc-flag', Flag)
# Add new node and directive
app.add_node(flagprint)
app.add_directive('flag-print', FlagPrintDirective)
# Add our generator and cleanup functions as callbacks
app.connect('doctree-resolved', process_print_nodes)
app.connect('env-purge-doc', purge_flags)
return {'version': '1.0'}
|