]>
Commit | Line | Data |
---|---|---|
3313b612 MAL |
1 | #!/usr/bin/env python |
2 | # QAPI texi generator | |
3 | # | |
4 | # This work is licensed under the terms of the GNU LGPL, version 2+. | |
5 | # See the COPYING file in the top-level directory. | |
6 | """This script produces the documentation of a qapi schema in texinfo format""" | |
7 | import re | |
8 | import sys | |
9 | ||
10 | import qapi | |
11 | ||
597494ab | 12 | MSG_FMT = """ |
3313b612 MAL |
13 | @deftypefn {type} {{}} {name} |
14 | ||
15 | {body} | |
16 | ||
17 | @end deftypefn | |
18 | ||
19 | """.format | |
20 | ||
597494ab | 21 | TYPE_FMT = """ |
3313b612 MAL |
22 | @deftp {{{type}}} {name} |
23 | ||
24 | {body} | |
25 | ||
26 | @end deftp | |
27 | ||
28 | """.format | |
29 | ||
30 | EXAMPLE_FMT = """@example | |
31 | {code} | |
32 | @end example | |
33 | """.format | |
34 | ||
35 | ||
36 | def subst_strong(doc): | |
37 | """Replaces *foo* by @strong{foo}""" | |
c32617a1 | 38 | return re.sub(r'\*([^*\n]+)\*', r'@strong{\1}', doc) |
3313b612 MAL |
39 | |
40 | ||
41 | def subst_emph(doc): | |
42 | """Replaces _foo_ by @emph{foo}""" | |
c32617a1 | 43 | return re.sub(r'\b_([^_\n]+)_\b', r'@emph{\1}', doc) |
3313b612 MAL |
44 | |
45 | ||
46 | def subst_vars(doc): | |
47 | """Replaces @var by @code{var}""" | |
48 | return re.sub(r'@([\w-]+)', r'@code{\1}', doc) | |
49 | ||
50 | ||
51 | def subst_braces(doc): | |
52 | """Replaces {} with @{ @}""" | |
ef801a9b | 53 | return doc.replace('{', '@{').replace('}', '@}') |
3313b612 MAL |
54 | |
55 | ||
56 | def texi_example(doc): | |
57 | """Format @example""" | |
58 | # TODO: Neglects to escape @ characters. | |
59 | # We should probably escape them in subst_braces(), and rename the | |
60 | # function to subst_special() or subs_texi_special(). If we do that, we | |
61 | # need to delay it until after subst_vars() in texi_format(). | |
62 | doc = subst_braces(doc).strip('\n') | |
63 | return EXAMPLE_FMT(code=doc) | |
64 | ||
65 | ||
66 | def texi_format(doc): | |
67 | """ | |
68 | Format documentation | |
69 | ||
70 | Lines starting with: | |
71 | - |: generates an @example | |
72 | - =: generates @section | |
73 | - ==: generates @subsection | |
74 | - 1. or 1): generates an @enumerate @item | |
75 | - */-: generates an @itemize list | |
76 | """ | |
77 | lines = [] | |
78 | doc = subst_braces(doc) | |
79 | doc = subst_vars(doc) | |
80 | doc = subst_emph(doc) | |
81 | doc = subst_strong(doc) | |
ef801a9b | 82 | inlist = '' |
3313b612 MAL |
83 | lastempty = False |
84 | for line in doc.split('\n'): | |
ef801a9b | 85 | empty = line == '' |
3313b612 MAL |
86 | |
87 | # FIXME: Doing this in a single if / elif chain is | |
88 | # problematic. For instance, a line without markup terminates | |
89 | # a list if it follows a blank line (reaches the final elif), | |
90 | # but a line with some *other* markup, such as a = title | |
91 | # doesn't. | |
92 | # | |
93 | # Make sure to update section "Documentation markup" in | |
b3125e73 | 94 | # docs/devel/qapi-code-gen.txt when fixing this. |
ef801a9b | 95 | if line.startswith('| '): |
3313b612 | 96 | line = EXAMPLE_FMT(code=line[2:]) |
ef801a9b MA |
97 | elif line.startswith('= '): |
98 | line = '@section ' + line[2:] | |
99 | elif line.startswith('== '): | |
100 | line = '@subsection ' + line[3:] | |
3313b612 MAL |
101 | elif re.match(r'^([0-9]*\.) ', line): |
102 | if not inlist: | |
ef801a9b MA |
103 | lines.append('@enumerate') |
104 | inlist = 'enumerate' | |
105 | line = line[line.find(' ')+1:] | |
106 | lines.append('@item') | |
3313b612 MAL |
107 | elif re.match(r'^[*-] ', line): |
108 | if not inlist: | |
ef801a9b MA |
109 | lines.append('@itemize %s' % {'*': '@bullet', |
110 | '-': '@minus'}[line[0]]) | |
111 | inlist = 'itemize' | |
112 | lines.append('@item') | |
3313b612 MAL |
113 | line = line[2:] |
114 | elif lastempty and inlist: | |
ef801a9b MA |
115 | lines.append('@end %s\n' % inlist) |
116 | inlist = '' | |
3313b612 MAL |
117 | |
118 | lastempty = empty | |
119 | lines.append(line) | |
120 | ||
121 | if inlist: | |
ef801a9b MA |
122 | lines.append('@end %s\n' % inlist) |
123 | return '\n'.join(lines) | |
3313b612 MAL |
124 | |
125 | ||
aa964b7f MA |
126 | def texi_body(doc): |
127 | """Format the main documentation body""" | |
128 | return texi_format(str(doc.body)) + '\n' | |
129 | ||
130 | ||
131 | def texi_enum_value(value): | |
132 | """Format a table of members item for an enumeration value""" | |
71d918a1 | 133 | return '@item @code{%s}\n' % value.name |
aa964b7f MA |
134 | |
135 | ||
5169cd87 | 136 | def texi_member(member, suffix=''): |
aa964b7f | 137 | """Format a table of members item for an object type member""" |
691e0313 | 138 | typ = member.type.doc_type() |
5169cd87 | 139 | return '@item @code{%s%s%s}%s%s\n' % ( |
691e0313 MA |
140 | member.name, |
141 | ': ' if typ else '', | |
142 | typ if typ else '', | |
5169cd87 MA |
143 | ' (optional)' if member.optional else '', |
144 | suffix) | |
aa964b7f | 145 | |
3313b612 | 146 | |
5169cd87 | 147 | def texi_members(doc, what, base, variants, member_func): |
aa964b7f MA |
148 | """Format the table of members""" |
149 | items = '' | |
150 | for section in doc.args.itervalues(): | |
c19eaa64 | 151 | # TODO Drop fallbacks when undocumented members are outlawed |
5da19f14 | 152 | if section.content: |
c19eaa64 MA |
153 | desc = texi_format(str(section)) |
154 | elif (variants and variants.tag_member == section.member | |
155 | and not section.member.type.doc_type()): | |
156 | values = section.member.type.member_names() | |
157 | desc = 'One of ' + ', '.join(['@t{"%s"}' % v for v in values]) | |
5da19f14 MA |
158 | else: |
159 | desc = 'Not documented' | |
c19eaa64 | 160 | items += member_func(section.member) + desc + '\n' |
88f63467 MA |
161 | if base: |
162 | items += '@item The members of @code{%s}\n' % base.doc_type() | |
5169cd87 MA |
163 | if variants: |
164 | for v in variants.variants: | |
165 | when = ' when @code{%s} is @t{"%s"}' % ( | |
166 | variants.tag_member.name, v.name) | |
167 | if v.type.is_implicit(): | |
168 | assert not v.type.base and not v.type.variants | |
169 | for m in v.type.local_members: | |
170 | items += member_func(m, when) | |
171 | else: | |
172 | items += '@item The members of @code{%s}%s\n' % ( | |
173 | v.type.doc_type(), when) | |
aa964b7f MA |
174 | if not items: |
175 | return '' | |
2a1183ce | 176 | return '\n@b{%s:}\n@table @asis\n%s@end table\n' % (what, items) |
aa964b7f MA |
177 | |
178 | ||
179 | def texi_sections(doc): | |
180 | """Format additional sections following arguments""" | |
181 | body = '' | |
3313b612 MAL |
182 | for section in doc.sections: |
183 | name, doc = (section.name, str(section)) | |
184 | func = texi_format | |
ef801a9b | 185 | if name.startswith('Example'): |
3313b612 MAL |
186 | func = texi_example |
187 | ||
188 | if name: | |
1ede77df | 189 | # prefer @b over @strong, so txt doesn't translate it to *Foo:* |
ef801a9b | 190 | body += '\n\n@b{%s:}\n' % name |
1ede77df MAL |
191 | |
192 | body += func(doc) | |
3313b612 MAL |
193 | return body |
194 | ||
195 | ||
5169cd87 MA |
196 | def texi_entity(doc, what, base=None, variants=None, |
197 | member_func=texi_member): | |
aa964b7f | 198 | return (texi_body(doc) |
5169cd87 | 199 | + texi_members(doc, what, base, variants, member_func) |
aa964b7f MA |
200 | + texi_sections(doc)) |
201 | ||
202 | ||
203 | class QAPISchemaGenDocVisitor(qapi.QAPISchemaVisitor): | |
204 | def __init__(self): | |
205 | self.out = None | |
206 | self.cur_doc = None | |
207 | ||
208 | def visit_begin(self, schema): | |
209 | self.out = '' | |
210 | ||
211 | def visit_enum_type(self, name, info, values, prefix): | |
212 | doc = self.cur_doc | |
213 | if self.out: | |
214 | self.out += '\n' | |
215 | self.out += TYPE_FMT(type='Enum', | |
216 | name=doc.symbol, | |
2a1183ce | 217 | body=texi_entity(doc, 'Values', |
2c99f5fd | 218 | member_func=texi_enum_value)) |
aa964b7f MA |
219 | |
220 | def visit_object_type(self, name, info, base, members, variants): | |
221 | doc = self.cur_doc | |
88f63467 MA |
222 | if base and base.is_implicit(): |
223 | base = None | |
aa964b7f MA |
224 | if self.out: |
225 | self.out += '\n' | |
75b50196 | 226 | self.out += TYPE_FMT(type='Object', |
aa964b7f | 227 | name=doc.symbol, |
5169cd87 | 228 | body=texi_entity(doc, 'Members', base, variants)) |
aa964b7f MA |
229 | |
230 | def visit_alternate_type(self, name, info, variants): | |
231 | doc = self.cur_doc | |
232 | if self.out: | |
233 | self.out += '\n' | |
234 | self.out += TYPE_FMT(type='Alternate', | |
235 | name=doc.symbol, | |
2a1183ce | 236 | body=texi_entity(doc, 'Members')) |
aa964b7f MA |
237 | |
238 | def visit_command(self, name, info, arg_type, ret_type, | |
239 | gen, success_response, boxed): | |
240 | doc = self.cur_doc | |
241 | if self.out: | |
242 | self.out += '\n' | |
c2dd311c MA |
243 | if boxed: |
244 | body = texi_body(doc) | |
245 | body += '\n@b{Arguments:} the members of @code{%s}' % arg_type.name | |
246 | body += texi_sections(doc) | |
247 | else: | |
248 | body = texi_entity(doc, 'Arguments') | |
aa964b7f MA |
249 | self.out += MSG_FMT(type='Command', |
250 | name=doc.symbol, | |
c2dd311c | 251 | body=body) |
aa964b7f MA |
252 | |
253 | def visit_event(self, name, info, arg_type, boxed): | |
254 | doc = self.cur_doc | |
255 | if self.out: | |
256 | self.out += '\n' | |
257 | self.out += MSG_FMT(type='Event', | |
258 | name=doc.symbol, | |
2a1183ce | 259 | body=texi_entity(doc, 'Arguments')) |
aa964b7f MA |
260 | |
261 | def symbol(self, doc, entity): | |
262 | self.cur_doc = doc | |
263 | entity.visit(self) | |
264 | self.cur_doc = None | |
265 | ||
266 | def freeform(self, doc): | |
267 | assert not doc.args | |
268 | if self.out: | |
269 | self.out += '\n' | |
270 | self.out += texi_body(doc) + texi_sections(doc) | |
271 | ||
272 | ||
273 | def texi_schema(schema): | |
274 | """Convert QAPI schema documentation to Texinfo""" | |
275 | gen = QAPISchemaGenDocVisitor() | |
276 | gen.visit_begin(schema) | |
277 | for doc in schema.docs: | |
278 | if doc.symbol: | |
279 | gen.symbol(doc, schema.lookup_entity(doc.symbol)) | |
280 | else: | |
281 | gen.freeform(doc) | |
282 | return gen.out | |
3313b612 MAL |
283 | |
284 | ||
285 | def main(argv): | |
286 | """Takes schema argument, prints result to stdout""" | |
287 | if len(argv) != 2: | |
288 | print >>sys.stderr, "%s: need exactly 1 argument: SCHEMA" % argv[0] | |
289 | sys.exit(1) | |
290 | ||
291 | schema = qapi.QAPISchema(argv[1]) | |
bc52d03f MA |
292 | if not qapi.doc_required: |
293 | print >>sys.stderr, ("%s: need pragma 'doc-required' " | |
294 | "to generate documentation" % argv[0]) | |
e8ba07ea | 295 | sys.exit(1) |
aa964b7f | 296 | print texi_schema(schema) |
3313b612 MAL |
297 | |
298 | ||
ef801a9b | 299 | if __name__ == '__main__': |
3313b612 | 300 | main(sys.argv) |