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