1 # -*- Mode: python; coding: utf-8; indent-tabs-mode: nil -*- */
3 # This file is part of systemd.
5 # Copyright 2012-2013 Zbigniew Jędrzejewski-Szmek
7 # systemd is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU Lesser General Public License as published by
9 # the Free Software Foundation; either version 2.1 of the License, or
10 # (at your option) any later version.
12 # systemd is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 # Lesser General Public License for more details.
17 # You should have received a copy of the GNU Lesser General Public License
18 # along with systemd; If not, see <http://www.gnu.org/licenses/>.
23 from xml_helper import *
24 from copy import deepcopy
27 <refentry id="systemd.directives" conditional="HAVE_PYTHON">
30 <title>systemd.directives</title>
31 <productname>systemd</productname>
35 <contrib>Developer</contrib>
36 <firstname>Zbigniew</firstname>
37 <surname>Jędrzejewski-Szmek</surname>
38 <email>zbyszek@in.waw.pl</email>
44 <refentrytitle>systemd.directives</refentrytitle>
45 <manvolnum>7</manvolnum>
49 <refname>systemd.directives</refname>
50 <refpurpose>Index of configuration directives</refpurpose>
54 <title>Unit directives</title>
56 <para>Directives for configuring units, used in unit
59 <variablelist id='unit-directives' />
63 <title>Options on the kernel command line</title>
65 <para>Kernel boot options for configuring the behaviour of the
66 systemd process.</para>
68 <variablelist id='kernel-commandline-options' />
72 <title>Environment variables</title>
74 <para>Environment variables understood by the systemd
75 manager and other programs.</para>
77 <variablelist id='environment-variables' />
81 <title>UDEV directives</title>
83 <para>Directives for configuring systemd units through the
86 <variablelist id='udev-directives' />
90 <title>Network directives</title>
92 <para>Directives for configuring network links through the
93 net-setup-link udev builtin and networks through
94 systemd-networkd.</para>
96 <variablelist id='network-directives' />
100 <title>Journal fields</title>
102 <para>Fields in the journal events with a well known meaning.</para>
104 <variablelist id='journal-directives' />
108 <title>PAM configuration directives</title>
110 <para>Directives for configuring PAM behaviour.</para>
112 <variablelist id='pam-directives' />
116 <title><filename>/etc/crypttab</filename> and
117 <filename>/etc/fstab</filename> options</title>
119 <para>Options which influence mounted filesystems and
120 encrypted volumes.</para>
122 <variablelist id='fstab-options' />
126 <title>System manager directives</title>
128 <para>Directives for configuring the behaviour of the
129 systemd process.</para>
131 <variablelist id='systemd-directives' />
135 <title>bootchart.conf directives</title>
137 <para>Directives for configuring the behaviour of the
138 systemd-bootchart process.</para>
140 <variablelist id='bootchart-directives' />
144 <title>command-line options</title>
146 <para>Command-line options accepted by programs in the
147 systemd suite.</para>
149 <variablelist id='options' />
153 <title>Constants</title>
155 <para>Various constant used and/or defined by systemd.</para>
157 <variablelist id='constants' />
161 <title>Miscellaneous options and directives</title>
163 <para>Other configuration elements which don't fit in
164 any of the above groups.</para>
166 <variablelist id='miscellaneous' />
170 <title>Files and directories</title>
172 <para>Paths and file names referred to in the
173 documentation.</para>
175 <variablelist id='filenames' />
179 <title>Colophon</title>
180 <para id='colophon' />
186 This index contains {count} entries in {sections} sections,
187 referring to {pages} individual manual pages.
190 def _extract_directives(directive_groups, formatting, page):
192 section = t.find('./refmeta/manvolnum').text
193 pagename = t.find('./refmeta/refentrytitle').text
195 storopt = directive_groups['options']
196 for variablelist in t.iterfind('.//variablelist'):
197 klass = variablelist.attrib.get('class')
198 storvar = directive_groups[klass or 'miscellaneous']
199 # <option>s go in OPTIONS, unless class is specified
200 for xpath, stor in (('./varlistentry/term/varname', storvar),
201 ('./varlistentry/term/option',
202 storvar if klass else storopt)):
203 for name in variablelist.iterfind(xpath):
204 text = re.sub(r'([= ]).*', r'\1', name.text).rstrip()
205 stor[text].append((pagename, section))
206 if text not in formatting:
207 # use element as formatted display
208 if name.text[-1] in '= ':
213 formatting[text] = name
215 storfile = directive_groups['filenames']
216 for xpath, absolute_only in (('.//refsynopsisdiv//filename', False),
217 ('.//refsynopsisdiv//command', False),
218 ('.//filename', True)):
219 for name in t.iterfind(xpath):
220 if absolute_only and not (name.text and name.text.startswith('/')):
222 if name.attrib.get('noindex'):
226 if name.text.endswith('*'):
227 name.text = name.text[:-1]
228 if not name.text.startswith('.'):
229 text = name.text.partition(' ')[0]
230 if text != name.text:
233 if text.endswith('/'):
235 storfile[text].append((pagename, section))
236 if text not in formatting:
237 # use element as formatted display
238 formatting[text] = name
240 text = ' '.join(name.itertext())
241 storfile[text].append((pagename, section))
242 formatting[text] = name
244 storfile = directive_groups['constants']
245 for name in t.iterfind('.//constant'):
246 if name.attrib.get('noindex'):
249 if name.text.startswith('('): # a cast, strip it
250 name.text = name.text.partition(' ')[2]
251 storfile[name.text].append((pagename, section))
252 formatting[name.text] = name
254 def _make_section(template, name, directives, formatting):
255 varlist = template.find(".//*[@id='{}']".format(name))
256 for varname, manpages in sorted(directives.items()):
257 entry = tree.SubElement(varlist, 'varlistentry')
258 term = tree.SubElement(entry, 'term')
259 display = deepcopy(formatting[varname])
262 para = tree.SubElement(tree.SubElement(entry, 'listitem'), 'para')
265 for manpage, manvolume in sorted(set(manpages)):
268 b = tree.SubElement(para, 'citerefentry')
269 c = tree.SubElement(b, 'refentrytitle')
271 d = tree.SubElement(b, 'manvolnum')
275 def _make_colophon(template, groups):
280 for pagelist in group.values():
281 pages |= set(pagelist)
283 para = template.find(".//para[@id='colophon']")
284 para.text = COLOPHON.format(count=count,
285 sections=len(groups),
288 def _make_page(template, directive_groups, formatting):
289 """Create an XML tree from directive_groups.
292 'class': {'variable': [('manpage', 'manvolume'), ...],
297 for name, directives in directive_groups.items():
298 _make_section(template, name, directives, formatting)
300 _make_colophon(template, directive_groups.values())
304 def make_page(*xml_files):
305 "Extract directives from xml_files and return XML index tree."
306 template = tree.fromstring(TEMPLATE)
307 names = [vl.get('id') for vl in template.iterfind('.//variablelist')]
308 directive_groups = {name:collections.defaultdict(list)
311 for page in xml_files:
313 _extract_directives(directive_groups, formatting, page)
315 raise ValueError("failed to process " + page)
317 return _make_page(template, directive_groups, formatting)
319 if __name__ == '__main__':
320 with open(sys.argv[1], 'wb') as f:
321 f.write(xml_print(make_page(*sys.argv[2:])))