]> git.ipfire.org Git - thirdparty/systemd.git/blame - tools/make-directive-index.py
Also drop <authorgroup> from autogenerated pages
[thirdparty/systemd.git] / tools / make-directive-index.py
CommitLineData
3e67e5c9 1#!/usr/bin/env python3
e7098b69 2# -*- Mode: python; coding: utf-8; indent-tabs-mode: nil -*- */
35df7443 3# SPDX-License-Identifier: LGPL-2.1+
e7098b69 4#
96b2fb93 5# Copyright © 2012-2013 Zbigniew Jędrzejewski-Szmek
e7098b69 6
d9cfd694
ZJS
7import sys
8import collections
ccc9a4f9 9import re
1c6c3ef0 10from xml_helper import xml_parse, xml_print, tree
827f70eb 11from copy import deepcopy
d9cfd694
ZJS
12
13TEMPLATE = '''\
56ba3c78 14<refentry id="systemd.directives" conditional="HAVE_PYTHON">
d9cfd694
ZJS
15
16 <refentryinfo>
17 <title>systemd.directives</title>
18 <productname>systemd</productname>
d9cfd694
ZJS
19 </refentryinfo>
20
21 <refmeta>
22 <refentrytitle>systemd.directives</refentrytitle>
9cc2c8b7 23 <manvolnum>7</manvolnum>
d9cfd694
ZJS
24 </refmeta>
25
26 <refnamediv>
27 <refname>systemd.directives</refname>
28 <refpurpose>Index of configuration directives</refpurpose>
29 </refnamediv>
30
31 <refsect1>
32 <title>Unit directives</title>
33
34 <para>Directives for configuring units, used in unit
35 files.</para>
36
37 <variablelist id='unit-directives' />
38 </refsect1>
e1abd3ef 39
08177c85
ZJS
40 <refsect1>
41 <title>Options on the kernel command line</title>
42
43 <para>Kernel boot options for configuring the behaviour of the
44 systemd process.</para>
45
ccc9a4f9 46 <variablelist id='kernel-commandline-options' />
08177c85
ZJS
47 </refsect1>
48
49 <refsect1>
50 <title>Environment variables</title>
51
ccc9a4f9
ZJS
52 <para>Environment variables understood by the systemd
53 manager and other programs.</para>
08177c85
ZJS
54
55 <variablelist id='environment-variables' />
56 </refsect1>
57
e1abd3ef
ZJS
58 <refsect1>
59 <title>UDEV directives</title>
60
61 <para>Directives for configuring systemd units through the
62 udev database.</para>
63
64 <variablelist id='udev-directives' />
65 </refsect1>
f6c2e28b 66
1f06807c
TG
67 <refsect1>
68 <title>Network directives</title>
69
70 <para>Directives for configuring network links through the
46b0925d
TG
71 net-setup-link udev builtin and networks through
72 systemd-networkd.</para>
1f06807c
TG
73
74 <variablelist id='network-directives' />
75 </refsect1>
76
f6c2e28b 77 <refsect1>
ccc9a4f9 78 <title>Journal fields</title>
f6c2e28b 79
ccc9a4f9 80 <para>Fields in the journal events with a well known meaning.</para>
f6c2e28b
ZJS
81
82 <variablelist id='journal-directives' />
83 </refsect1>
4a431c9a 84
ccc9a4f9
ZJS
85 <refsect1>
86 <title>PAM configuration directives</title>
87
88 <para>Directives for configuring PAM behaviour.</para>
89
90 <variablelist id='pam-directives' />
91 </refsect1>
92
93 <refsect1>
63b03c0b
ZJS
94 <title><filename>/etc/crypttab</filename> and
95 <filename>/etc/fstab</filename> options</title>
ccc9a4f9
ZJS
96
97 <para>Options which influence mounted filesystems and
98 encrypted volumes.</para>
99
63b03c0b 100 <variablelist id='fstab-options' />
ccc9a4f9
ZJS
101 </refsect1>
102
103 <refsect1>
104 <title>System manager directives</title>
105
106 <para>Directives for configuring the behaviour of the
107 systemd process.</para>
108
109 <variablelist id='systemd-directives' />
110 </refsect1>
111
ccc9a4f9 112 <refsect1>
81c7dd89 113 <title>command line options</title>
ccc9a4f9
ZJS
114
115 <para>Command-line options accepted by programs in the
116 systemd suite.</para>
117
118 <variablelist id='options' />
119 </refsect1>
120
785a51eb
ZJS
121 <refsect1>
122 <title>Constants</title>
123
124 <para>Various constant used and/or defined by systemd.</para>
125
126 <variablelist id='constants' />
127 </refsect1>
128
ccc9a4f9
ZJS
129 <refsect1>
130 <title>Miscellaneous options and directives</title>
131
132 <para>Other configuration elements which don't fit in
133 any of the above groups.</para>
134
135 <variablelist id='miscellaneous' />
136 </refsect1>
137
a4e0b94d
ZJS
138 <refsect1>
139 <title>Files and directories</title>
140
141 <para>Paths and file names referred to in the
142 documentation.</para>
143
144 <variablelist id='filenames' />
145 </refsect1>
146
0acfdd61
ZJS
147 <refsect1>
148 <title>Colophon</title>
149 <para id='colophon' />
150 </refsect1>
d9cfd694
ZJS
151</refentry>
152'''
153
0acfdd61
ZJS
154COLOPHON = '''\
155This index contains {count} entries in {sections} sections,
156referring to {pages} individual manual pages.
157'''
158
d970bd6d 159def _extract_directives(directive_groups, formatting, page):
1a13e31d 160 t = xml_parse(page)
d9cfd694
ZJS
161 section = t.find('./refmeta/manvolnum').text
162 pagename = t.find('./refmeta/refentrytitle').text
a4e0b94d
ZJS
163
164 storopt = directive_groups['options']
d9cfd694 165 for variablelist in t.iterfind('.//variablelist'):
ccc9a4f9
ZJS
166 klass = variablelist.attrib.get('class')
167 storvar = directive_groups[klass or 'miscellaneous']
ccc9a4f9
ZJS
168 # <option>s go in OPTIONS, unless class is specified
169 for xpath, stor in (('./varlistentry/term/varname', storvar),
170 ('./varlistentry/term/option',
171 storvar if klass else storopt)):
172 for name in variablelist.iterfind(xpath):
173 text = re.sub(r'([= ]).*', r'\1', name.text).rstrip()
174 stor[text].append((pagename, section))
d970bd6d
ZJS
175 if text not in formatting:
176 # use element as formatted display
699ad6c0
ZJS
177 if name.text[-1] in '= ':
178 name.clear()
179 else:
180 name.tail = ''
d970bd6d
ZJS
181 name.text = text
182 formatting[text] = name
d9cfd694 183
a4e0b94d 184 storfile = directive_groups['filenames']
845c5324
ZJS
185 for xpath, absolute_only in (('.//refsynopsisdiv//filename', False),
186 ('.//refsynopsisdiv//command', False),
187 ('.//filename', True)):
a4e0b94d 188 for name in t.iterfind(xpath):
845c5324
ZJS
189 if absolute_only and not (name.text and name.text.startswith('/')):
190 continue
191 if name.attrib.get('noindex'):
192 continue
a4e0b94d
ZJS
193 name.tail = ''
194 if name.text:
845c5324
ZJS
195 if name.text.endswith('*'):
196 name.text = name.text[:-1]
a4e0b94d
ZJS
197 if not name.text.startswith('.'):
198 text = name.text.partition(' ')[0]
199 if text != name.text:
200 name.clear()
201 name.text = text
845c5324
ZJS
202 if text.endswith('/'):
203 text = text[:-1]
a4e0b94d
ZJS
204 storfile[text].append((pagename, section))
205 if text not in formatting:
206 # use element as formatted display
207 formatting[text] = name
208 else:
209 text = ' '.join(name.itertext())
210 storfile[text].append((pagename, section))
211 formatting[text] = name
212
785a51eb
ZJS
213 storfile = directive_groups['constants']
214 for name in t.iterfind('.//constant'):
215 if name.attrib.get('noindex'):
216 continue
217 name.tail = ''
218 if name.text.startswith('('): # a cast, strip it
219 name.text = name.text.partition(' ')[2]
220 storfile[name.text].append((pagename, section))
221 formatting[name.text] = name
222
d970bd6d 223def _make_section(template, name, directives, formatting):
eeb019b5 224 varlist = template.find(".//*[@id='{}']".format(name))
d9cfd694
ZJS
225 for varname, manpages in sorted(directives.items()):
226 entry = tree.SubElement(varlist, 'varlistentry')
d970bd6d 227 term = tree.SubElement(entry, 'term')
827f70eb
ZJS
228 display = deepcopy(formatting[varname])
229 term.append(display)
d970bd6d 230
d9cfd694
ZJS
231 para = tree.SubElement(tree.SubElement(entry, 'listitem'), 'para')
232
233 b = None
ccc9a4f9 234 for manpage, manvolume in sorted(set(manpages)):
827f70eb
ZJS
235 if b is not None:
236 b.tail = ', '
237 b = tree.SubElement(para, 'citerefentry')
238 c = tree.SubElement(b, 'refentrytitle')
239 c.text = manpage
958caa58 240 c.attrib['target'] = varname
827f70eb
ZJS
241 d = tree.SubElement(b, 'manvolnum')
242 d.text = manvolume
d9cfd694
ZJS
243 entry.tail = '\n\n'
244
0acfdd61
ZJS
245def _make_colophon(template, groups):
246 count = 0
247 pages = set()
248 for group in groups:
249 count += len(group)
250 for pagelist in group.values():
251 pages |= set(pagelist)
252
253 para = template.find(".//para[@id='colophon']")
254 para.text = COLOPHON.format(count=count,
255 sections=len(groups),
256 pages=len(pages))
257
d970bd6d 258def _make_page(template, directive_groups, formatting):
d9cfd694
ZJS
259 """Create an XML tree from directive_groups.
260
261 directive_groups = {
262 'class': {'variable': [('manpage', 'manvolume'), ...],
263 'variable2': ...},
264 ...
265 }
266 """
d9cfd694 267 for name, directives in directive_groups.items():
827f70eb 268 _make_section(template, name, directives, formatting)
d9cfd694 269
0acfdd61
ZJS
270 _make_colophon(template, directive_groups.values())
271
eeb019b5 272 return template
d9cfd694 273
ccc9a4f9 274def make_page(*xml_files):
d9cfd694 275 "Extract directives from xml_files and return XML index tree."
eeb019b5
ZJS
276 template = tree.fromstring(TEMPLATE)
277 names = [vl.get('id') for vl in template.iterfind('.//variablelist')]
d9cfd694 278 directive_groups = {name:collections.defaultdict(list)
eeb019b5 279 for name in names}
d970bd6d 280 formatting = {}
d9cfd694 281 for page in xml_files:
ccc9a4f9 282 try:
d970bd6d 283 _extract_directives(directive_groups, formatting, page)
ccc9a4f9
ZJS
284 except Exception:
285 raise ValueError("failed to process " + page)
d9cfd694 286
d970bd6d 287 return _make_page(template, directive_groups, formatting)
d9cfd694
ZJS
288
289if __name__ == '__main__':
1a13e31d
ZJS
290 with open(sys.argv[1], 'wb') as f:
291 f.write(xml_print(make_page(*sys.argv[2:])))