3 # QEMU qapidoc QAPI file parsing extension
5 # Copyright (c) 2020 Linaro
7 # This work is licensed under the terms of the GNU GPLv2 or later.
8 # See the COPYING file in the top-level directory.
11 qapidoc is a Sphinx extension that implements the qapi-doc directive
13 The purpose of this extension is to read the documentation comments
14 in QAPI schema files, and insert them all into the current document.
16 It implements one new rST directive, "qapi-doc::".
17 Each qapi-doc:: directive takes one argument, which is the
18 pathname of the schema file to process, relative to the source tree.
20 The docs/conf.py file must set the qapidoc_srctree config value to
21 the root of the QEMU source tree.
23 The Sphinx documentation on writing extensions is at:
24 https://www.sphinx-doc.org/en/master/development/index.html
30 from docutils
import nodes
31 from docutils
.statemachine
import ViewList
32 from docutils
.parsers
.rst
import directives
, Directive
33 from sphinx
.errors
import ExtensionError
34 from sphinx
.util
.nodes
import nested_parse_with_titles
36 from qapi
.gen
import QAPISchemaVisitor
37 from qapi
.error
import QAPIError
, QAPISemError
38 from qapi
.schema
import QAPISchema
41 # Sphinx up to 1.6 uses AutodocReporter; 1.7 and later
42 # use switch_source_input. Check borrowed from kerneldoc.py.
43 Use_SSI
= sphinx
.__version
__[:3] >= '1.7'
45 from sphinx
.util
.docutils
import switch_source_input
47 from sphinx
.ext
.autodoc
import AutodocReporter
53 # Function borrowed from pydash, which is under the MIT license
54 def intersperse(iterable
, separator
):
55 """Yield the members of *iterable* interspersed with *separator*."""
56 iterable
= iter(iterable
)
63 class QAPISchemaGenRSTVisitor(QAPISchemaVisitor
):
64 """A QAPI schema visitor which generates docutils/Sphinx nodes
66 This class builds up a tree of docutils/Sphinx nodes corresponding
67 to documentation for the various QAPI objects. To use it, first
68 create a QAPISchemaGenRSTVisitor object, and call its
69 visit_begin() method. Then you can call one of the two methods
70 'freeform' (to add documentation for a freeform documentation
71 chunk) or 'symbol' (to add documentation for a QAPI symbol). These
72 will cause the visitor to build up the tree of document
73 nodes. Once you've added all the documentation via 'freeform' and
74 'symbol' method calls, you can call 'get_document_nodes' to get
75 the final list of document nodes (in a form suitable for returning
76 from a Sphinx directive's 'run' method).
78 def __init__(self
, sphinx_directive
):
80 self
._sphinx
_directive
= sphinx_directive
81 self
._top
_node
= nodes
.section()
82 self
._active
_headings
= [self
._top
_node
]
84 def _make_dlitem(self
, term
, defn
):
85 """Return a dlitem node with the specified term and definition.
87 term should be a list of Text and literal nodes.
88 defn should be one of:
89 - a string, which will be handed to _parse_text_into_node
90 - a list of Text and literal nodes, which will be put into
93 dlitem
= nodes
.definition_list_item()
94 dlterm
= nodes
.term('', '', *term
)
97 dldef
= nodes
.definition()
98 if isinstance(defn
, list):
99 dldef
+= nodes
.paragraph('', '', *defn
)
101 self
._parse
_text
_into
_node
(defn
, dldef
)
105 def _make_section(self
, title
):
106 """Return a section node with optional title"""
107 section
= nodes
.section(ids
=[self
._sphinx
_directive
.new_serialno()])
109 section
+= nodes
.title(title
, title
)
112 def _nodes_for_ifcond(self
, ifcond
, with_if
=True):
113 """Return list of Text, literal nodes for the ifcond
115 Return a list which gives text like ' (If: condition)'.
116 If with_if is False, we don't return the "(If: " and ")".
119 doc
= ifcond
.docgen()
122 doc
= nodes
.literal('', doc
)
126 nodelist
= [nodes
.Text(' ('), nodes
.strong('', 'If: ')]
128 nodelist
.append(nodes
.Text(')'))
131 def _nodes_for_one_member(self
, member
):
132 """Return list of Text, literal nodes for this member
134 Return a list of doctree nodes which give text like
135 'name: type (optional) (If: ...)' suitable for use as the
136 'term' part of a definition list item.
138 term
= [nodes
.literal('', member
.name
)]
139 if member
.type.doc_type():
140 term
.append(nodes
.Text(': '))
141 term
.append(nodes
.literal('', member
.type.doc_type()))
143 term
.append(nodes
.Text(' (optional)'))
144 if member
.ifcond
.is_present():
145 term
.extend(self
._nodes
_for
_ifcond
(member
.ifcond
))
148 def _nodes_for_variant_when(self
, variants
, variant
):
149 """Return list of Text, literal nodes for variant 'when' clause
151 Return a list of doctree nodes which give text like
152 'when tagname is variant (If: ...)' suitable for use in
153 the 'variants' part of a definition list.
155 term
= [nodes
.Text(' when '),
156 nodes
.literal('', variants
.tag_member
.name
),
158 nodes
.literal('', '"%s"' % variant
.name
)]
159 if variant
.ifcond
.is_present():
160 term
.extend(self
._nodes
_for
_ifcond
(variant
.ifcond
))
163 def _nodes_for_members(self
, doc
, what
, base
=None, variants
=None):
164 """Return list of doctree nodes for the table of members"""
165 dlnode
= nodes
.definition_list()
166 for section
in doc
.args
.values():
167 term
= self
._nodes
_for
_one
_member
(section
.member
)
168 # TODO drop fallbacks when undocumented members are outlawed
171 elif (variants
and variants
.tag_member
== section
.member
172 and not section
.member
.type.doc_type()):
173 values
= section
.member
.type.member_names()
174 defn
= [nodes
.Text('One of ')]
175 defn
.extend(intersperse([nodes
.literal('', v
) for v
in values
],
178 defn
= [nodes
.Text('Not documented')]
180 dlnode
+= self
._make
_dlitem
(term
, defn
)
183 dlnode
+= self
._make
_dlitem
([nodes
.Text('The members of '),
184 nodes
.literal('', base
.doc_type())],
188 for v
in variants
.variants
:
189 if v
.type.is_implicit():
190 assert not v
.type.base
and not v
.type.variants
191 for m
in v
.type.local_members
:
192 term
= self
._nodes
_for
_one
_member
(m
)
193 term
.extend(self
._nodes
_for
_variant
_when
(variants
, v
))
194 dlnode
+= self
._make
_dlitem
(term
, None)
196 term
= [nodes
.Text('The members of '),
197 nodes
.literal('', v
.type.doc_type())]
198 term
.extend(self
._nodes
_for
_variant
_when
(variants
, v
))
199 dlnode
+= self
._make
_dlitem
(term
, None)
201 if not dlnode
.children
:
204 section
= self
._make
_section
(what
)
208 def _nodes_for_enum_values(self
, doc
):
209 """Return list of doctree nodes for the table of enum values"""
211 dlnode
= nodes
.definition_list()
212 for section
in doc
.args
.values():
213 termtext
= [nodes
.literal('', section
.member
.name
)]
214 if section
.member
.ifcond
.is_present():
215 termtext
.extend(self
._nodes
_for
_ifcond
(section
.member
.ifcond
))
216 # TODO drop fallbacks when undocumented members are outlawed
220 defn
= [nodes
.Text('Not documented')]
222 dlnode
+= self
._make
_dlitem
(termtext
, defn
)
228 section
= self
._make
_section
('Values')
232 def _nodes_for_arguments(self
, doc
, boxed_arg_type
):
233 """Return list of doctree nodes for the arguments section"""
236 section
= self
._make
_section
('Arguments')
237 dlnode
= nodes
.definition_list()
238 dlnode
+= self
._make
_dlitem
(
239 [nodes
.Text('The members of '),
240 nodes
.literal('', boxed_arg_type
.name
)],
245 return self
._nodes
_for
_members
(doc
, 'Arguments')
247 def _nodes_for_features(self
, doc
):
248 """Return list of doctree nodes for the table of features"""
250 dlnode
= nodes
.definition_list()
251 for section
in doc
.features
.values():
252 dlnode
+= self
._make
_dlitem
([nodes
.literal('', section
.name
)],
259 section
= self
._make
_section
('Features')
263 def _nodes_for_example(self
, exampletext
):
264 """Return list of doctree nodes for a code example snippet"""
265 return [nodes
.literal_block(exampletext
, exampletext
)]
267 def _nodes_for_sections(self
, doc
):
268 """Return list of doctree nodes for additional sections"""
270 for section
in doc
.sections
:
271 if section
.name
and section
.name
== 'TODO':
272 # Hide TODO: sections
274 snode
= self
._make
_section
(section
.name
)
275 if section
.name
and section
.name
.startswith('Example'):
276 snode
+= self
._nodes
_for
_example
(section
.text
)
278 self
._parse
_text
_into
_node
(section
.text
, snode
)
279 nodelist
.append(snode
)
282 def _nodes_for_if_section(self
, ifcond
):
283 """Return list of doctree nodes for the "If" section"""
285 if ifcond
.is_present():
286 snode
= self
._make
_section
('If')
287 snode
+= nodes
.paragraph(
288 '', '', *self
._nodes
_for
_ifcond
(ifcond
, with_if
=False)
290 nodelist
.append(snode
)
293 def _add_doc(self
, typ
, sections
):
294 """Add documentation for a command/object/enum...
296 We assume we're documenting the thing defined in self._cur_doc.
297 typ is the type of thing being added ("Command", "Object", etc)
299 sections is a list of nodes for sections to add to the definition.
303 snode
= nodes
.section(ids
=[self
._sphinx
_directive
.new_serialno()])
304 snode
+= nodes
.title('', '', *[nodes
.literal(doc
.symbol
, doc
.symbol
),
305 nodes
.Text(' (' + typ
+ ')')])
306 self
._parse
_text
_into
_node
(doc
.body
.text
, snode
)
310 self
._add
_node
_to
_current
_heading
(snode
)
312 def visit_enum_type(self
, name
, info
, ifcond
, features
, members
, prefix
):
314 self
._add
_doc
('Enum',
315 self
._nodes
_for
_enum
_values
(doc
)
316 + self
._nodes
_for
_features
(doc
)
317 + self
._nodes
_for
_sections
(doc
)
318 + self
._nodes
_for
_if
_section
(ifcond
))
320 def visit_object_type(self
, name
, info
, ifcond
, features
,
321 base
, members
, variants
):
323 if base
and base
.is_implicit():
325 self
._add
_doc
('Object',
326 self
._nodes
_for
_members
(doc
, 'Members', base
, variants
)
327 + self
._nodes
_for
_features
(doc
)
328 + self
._nodes
_for
_sections
(doc
)
329 + self
._nodes
_for
_if
_section
(ifcond
))
331 def visit_alternate_type(self
, name
, info
, ifcond
, features
, variants
):
333 self
._add
_doc
('Alternate',
334 self
._nodes
_for
_members
(doc
, 'Members')
335 + self
._nodes
_for
_features
(doc
)
336 + self
._nodes
_for
_sections
(doc
)
337 + self
._nodes
_for
_if
_section
(ifcond
))
339 def visit_command(self
, name
, info
, ifcond
, features
, arg_type
,
340 ret_type
, gen
, success_response
, boxed
, allow_oob
,
341 allow_preconfig
, coroutine
):
343 self
._add
_doc
('Command',
344 self
._nodes
_for
_arguments
(doc
,
345 arg_type
if boxed
else None)
346 + self
._nodes
_for
_features
(doc
)
347 + self
._nodes
_for
_sections
(doc
)
348 + self
._nodes
_for
_if
_section
(ifcond
))
350 def visit_event(self
, name
, info
, ifcond
, features
, arg_type
, boxed
):
352 self
._add
_doc
('Event',
353 self
._nodes
_for
_arguments
(doc
,
354 arg_type
if boxed
else None)
355 + self
._nodes
_for
_features
(doc
)
356 + self
._nodes
_for
_sections
(doc
)
357 + self
._nodes
_for
_if
_section
(ifcond
))
359 def symbol(self
, doc
, entity
):
360 """Add documentation for one symbol to the document tree
362 This is the main entry point which causes us to add documentation
363 nodes for a symbol (which could be a 'command', 'object', 'event',
364 etc). We do this by calling 'visit' on the schema entity, which
365 will then call back into one of our visit_* methods, depending
366 on what kind of thing this symbol is.
372 def _start_new_heading(self
, heading
, level
):
373 """Start a new heading at the specified heading level
375 Create a new section whose title is 'heading' and which is placed
376 in the docutils node tree as a child of the most recent level-1
377 heading. Subsequent document sections (commands, freeform doc chunks,
378 etc) will be placed as children of this new heading section.
380 if len(self
._active
_headings
) < level
:
381 raise QAPISemError(self
._cur
_doc
.info
,
382 'Level %d subheading found outside a '
384 % (level
, level
- 1))
385 snode
= self
._make
_section
(heading
)
386 self
._active
_headings
[level
- 1] += snode
387 self
._active
_headings
= self
._active
_headings
[:level
]
388 self
._active
_headings
.append(snode
)
390 def _add_node_to_current_heading(self
, node
):
391 """Add the node to whatever the current active heading is"""
392 self
._active
_headings
[-1] += node
394 def freeform(self
, doc
):
395 """Add a piece of 'freeform' documentation to the document tree
397 A 'freeform' document chunk doesn't relate to any particular
398 symbol (for instance, it could be an introduction).
400 If the freeform document starts with a line of the form
401 '= Heading text', this is a section or subsection heading, with
402 the heading level indicated by the number of '=' signs.
405 # QAPIDoc documentation says free-form documentation blocks
406 # must have only a body section, nothing else.
407 assert not doc
.sections
409 assert not doc
.features
413 if re
.match(r
'=+ ', text
):
414 # Section/subsection heading (if present, will always be
415 # the first line of the block)
416 (heading
, _
, text
) = text
.partition('\n')
417 (leader
, _
, heading
) = heading
.partition(' ')
418 self
._start
_new
_heading
(heading
, len(leader
))
422 node
= self
._make
_section
(None)
423 self
._parse
_text
_into
_node
(text
, node
)
424 self
._add
_node
_to
_current
_heading
(node
)
427 def _parse_text_into_node(self
, doctext
, node
):
428 """Parse a chunk of QAPI-doc-format text into the node
430 The doc comment can contain most inline rST markup, including
431 bulleted and enumerated lists.
432 As an extra permitted piece of markup, @var will be turned
436 # Handle the "@var means ``var`` case
437 doctext
= re
.sub(r
'@([\w-]+)', r
'``\1``', doctext
)
440 for line
in doctext
.splitlines():
441 # The reported line number will always be that of the start line
442 # of the doc comment, rather than the actual location of the error.
443 # Being more precise would require overhaul of the QAPIDoc class
444 # to track lines more exactly within all the sub-parts of the doc
445 # comment, as well as counting lines here.
446 rstlist
.append(line
, self
._cur
_doc
.info
.fname
,
447 self
._cur
_doc
.info
.line
)
448 # Append a blank line -- in some cases rST syntax errors get
449 # attributed to the line after one with actual text, and if there
450 # isn't anything in the ViewList corresponding to that then Sphinx
451 # 1.6's AutodocReporter will then misidentify the source/line location
452 # in the error message (usually attributing it to the top-level
453 # .rst file rather than the offending .json file). The extra blank
454 # line won't affect the rendered output.
455 rstlist
.append("", self
._cur
_doc
.info
.fname
, self
._cur
_doc
.info
.line
)
456 self
._sphinx
_directive
.do_parse(rstlist
, node
)
458 def get_document_nodes(self
):
459 """Return the list of docutils nodes which make up the document"""
460 return self
._top
_node
.children
463 class QAPISchemaGenDepVisitor(QAPISchemaVisitor
):
464 """A QAPI schema visitor which adds Sphinx dependencies each module
466 This class calls the Sphinx note_dependency() function to tell Sphinx
467 that the generated documentation output depends on the input
468 schema file associated with each module in the QAPI input.
470 def __init__(self
, env
, qapidir
):
472 self
._qapidir
= qapidir
474 def visit_module(self
, name
):
475 if name
!= "./builtin":
476 qapifile
= self
._qapidir
+ '/' + name
477 self
._env
.note_dependency(os
.path
.abspath(qapifile
))
478 super().visit_module(name
)
481 class QAPIDocDirective(Directive
):
482 """Extract documentation from the specified QAPI .json file"""
483 required_argument
= 1
484 optional_arguments
= 1
486 'qapifile': directives
.unchanged_required
490 def new_serialno(self
):
491 """Return a unique new ID string suitable for use as a node's ID"""
492 env
= self
.state
.document
.settings
.env
493 return 'qapidoc-%d' % env
.new_serialno('qapidoc')
496 env
= self
.state
.document
.settings
.env
497 qapifile
= env
.config
.qapidoc_srctree
+ '/' + self
.arguments
[0]
498 qapidir
= os
.path
.dirname(qapifile
)
501 schema
= QAPISchema(qapifile
)
503 # First tell Sphinx about all the schema files that the
504 # output documentation depends on (including 'qapifile' itself)
505 schema
.visit(QAPISchemaGenDepVisitor(env
, qapidir
))
507 vis
= QAPISchemaGenRSTVisitor(self
)
508 vis
.visit_begin(schema
)
509 for doc
in schema
.docs
:
511 vis
.symbol(doc
, schema
.lookup_entity(doc
.symbol
))
514 return vis
.get_document_nodes()
515 except QAPIError
as err
:
516 # Launder QAPI parse errors into Sphinx extension errors
517 # so they are displayed nicely to the user
518 raise ExtensionError(str(err
))
520 def do_parse(self
, rstlist
, node
):
521 """Parse rST source lines and add them to the specified node
523 Take the list of rST source lines rstlist, parse them as
524 rST, and add the resulting docutils nodes as children of node.
525 The nodes are parsed in a way that allows them to include
526 subheadings (titles) without confusing the rendering of
529 # This is from kerneldoc.py -- it works around an API change in
530 # Sphinx between 1.6 and 1.7. Unlike kerneldoc.py, we use
531 # sphinx.util.nodes.nested_parse_with_titles() rather than the
532 # plain self.state.nested_parse(), and so we can drop the saving
533 # of title_styles and section_level that kerneldoc.py does,
534 # because nested_parse_with_titles() does that for us.
536 with
switch_source_input(self
.state
, rstlist
):
537 nested_parse_with_titles(self
.state
, rstlist
, node
)
539 save
= self
.state
.memo
.reporter
540 self
.state
.memo
.reporter
= AutodocReporter(
541 rstlist
, self
.state
.memo
.reporter
)
543 nested_parse_with_titles(self
.state
, rstlist
, node
)
545 self
.state
.memo
.reporter
= save
549 """ Register qapi-doc directive with Sphinx"""
550 app
.add_config_value('qapidoc_srctree', None, 'env')
551 app
.add_directive('qapi-doc', QAPIDocDirective
)
555 parallel_read_safe
=True,
556 parallel_write_safe
=True