build: Allow &pathconfig XML entities to be used in all manpages, not just smb.conf
[bbaumbach/samba-autobuild/.git] / docs-xml / wscript_build
1 #!/usr/bin/env python
2 from samba_utils import save_file
3 import os
4 manpages='''
5          manpages/cifsdd.8
6          manpages/dbwrap_tool.1
7          manpages/eventlogadm.8
8          manpages/idmap_ad.8
9          manpages/idmap_autorid.8
10          manpages/idmap_hash.8
11          manpages/idmap_ldap.8
12          manpages/idmap_nss.8
13          manpages/idmap_rfc2307.8
14          manpages/idmap_rid.8
15          manpages/idmap_script.8
16          manpages/idmap_tdb.8
17          manpages/idmap_tdb2.8
18          manpages/libsmbclient.7
19          manpages/lmhosts.5
20          manpages/log2pcap.1
21          manpages/mdsearch.1
22          manpages/mvxattr.1
23          manpages/net.8
24          manpages/nmbd.8
25          manpages/nmblookup.1
26          manpages/ntlm_auth.1
27          manpages/pdbedit.8
28          manpages/profiles.1
29          manpages/rpcclient.1
30          manpages/samba-dcerpcd.8
31          manpages/samba-regedit.8
32          manpages/samba-tool.8
33          manpages/samba.7
34          manpages/samba.8
35          manpages/samba_downgrade_db.8
36          manpages/sharesec.1
37          manpages/smbcacls.1
38          manpages/smbclient.1
39          manpages/smbcontrol.1
40          manpages/smbcquotas.1
41          manpages/smbd.8
42          manpages/smbget.1
43          manpages/smbgetrc.5
44          manpages/smbpasswd.5
45          manpages/smbpasswd.8
46          manpages/smbspool_krb5_wrapper.8
47          manpages/smbspool.8
48          manpages/samba-bgqd.8
49          manpages/smbstatus.1
50          manpages/smbtar.1
51          manpages/smbtree.1
52          manpages/testparm.1
53          manpages/traffic_learner.7
54          manpages/traffic_replay.7
55          manpages/wbinfo.1
56          manpages/winbindd.8
57          '''
58
59 pam_winbind_manpages = '''
60                        manpages/pam_winbind.8
61                        manpages/pam_winbind.conf.5
62                        '''
63
64 krb5_locator_manpages = 'manpages/winbind_krb5_locator.8'
65 krb5_localauth_manpages = 'manpages/winbind_krb5_localauth.8'
66
67 winexe_manpages = 'manpages/winexe.1'
68
69 vfs_module_manpages = ['vfs_acl_tdb',
70                        'vfs_acl_xattr',
71                        'vfs_aio_fork',
72                        'vfs_aio_pthread',
73                        'vfs_io_uring',
74                        'vfs_audit',
75                        'vfs_btrfs',
76                        'vfs_cacheprime',
77                        'vfs_cap',
78                        'vfs_catia',
79                        'vfs_ceph',
80                        'vfs_ceph_snapshots',
81                        'vfs_commit',
82                        'vfs_crossrename',
83                        'vfs_default_quota',
84                        'vfs_dirsort',
85                        'vfs_expand_msdfs',
86                        'vfs_extd_audit',
87                        'vfs_fake_perms',
88                        'vfs_fileid',
89                        'vfs_fruit',
90                        'vfs_full_audit',
91                        'vfs_glusterfs',
92                        'vfs_glusterfs_fuse',
93                        'vfs_gpfs',
94                        'vfs_linux_xfs_sgid',
95                        'vfs_media_harmony',
96                        'vfs_nfs4acl_xattr',
97                        'vfs_offline',
98                        'vfs_prealloc',
99                        'vfs_preopen',
100                        'vfs_readahead',
101                        'vfs_readonly',
102                        'vfs_recycle',
103                        'vfs_shadow_copy',
104                        'vfs_shadow_copy2',
105                        'vfs_shell_snap',
106                        'vfs_snapper',
107                        'vfs_streams_depot',
108                        'vfs_streams_xattr',
109                        'vfs_syncops',
110                        'vfs_time_audit',
111                        'vfs_tsmsm',
112                        'vfs_unityed_media',
113                        'vfs_virusfilter',
114                        'vfs_widelinks',
115                        'vfs_worm',
116                        'vfs_xattr_tdb',
117                        'vfs_zfsacl' ]
118
119 def generate_path_entity_list():
120     entities = bld.pathconfig_entities()
121
122     # We need this if we build with Heimdal as we can't easily make
123     # the whole option go away
124     mit_kdc_path = '""'
125     # The MIT krb5kdc path is set if we build with MIT Kerberos
126     if bld.CONFIG_SET('MIT_KDC_PATH'):
127         mit_kdc_path = bld.CONFIG_GET('MIT_KDC_PATH')
128
129     t = "\n".join(entities) +\
130         "\n" +\
131         "<!ENTITY pathconfig.MITKDCPATH   " + mit_kdc_path + ">\n" +\
132         "\n"
133     return t
134
135 def smbdotconf_generate_parameter_list_file(task):
136     parameter_all = task.outputs[0].bldpath(task.env)
137     articles = task.inputs
138
139     t = "<!DOCTYPE section [\n" +\
140         generate_path_entity_list() + \
141         "]>\n" +\
142         "<section>\n" +\
143         "".join(art.read() for art in articles) +\
144         "</section>\n"
145
146
147     save_file(parameter_all, t , create_dir=True)
148     return 0
149
150 # Since nothing really forces sorting in glob, we have to sort by file name
151 # POSIX file systems aren't required to return sorted content but we want
152 # smb.conf parameters to be sorted alphabetically
153 parameter_all = 'smbdotconf/parameters.all.xml'
154 sources = bld.path.ant_glob("smbdotconf/**/*.xml", flat=False, excl=parameter_all)
155 articles = " ".join(sorted([x.path_from(bld.path) for x in sources],
156                            key=lambda m: m.split(os.sep)[-1]))
157
158 bld.SAMBA_GENERATOR(parameter_all,
159                     source=articles,
160                     target=parameter_all,
161                     rule=smbdotconf_generate_parameter_list_file)
162
163 def generate_path_entity_file(task):
164     path_entities_file = task.outputs[0].bldpath(task.env)
165
166     save_file(path_entities_file,
167               generate_path_entity_list(),
168               create_dir=True)
169     return 0
170
171 path_entities = 'build/DTD/samba.build.pathconfig'
172
173 bld.SAMBA_GENERATOR(path_entities,
174                     source=articles,
175                     target=path_entities,
176                     rule=generate_path_entity_file,
177                     dep_vars=bld.dynconfig_varnames())
178
179
180 def SMBDOTCONF_MANPAGE(bld, target):
181     ''' assemble and build smb.conf.5 manual page'''
182     bld.SAMBAMANPAGES(target, parameter_all)
183
184 if ('XSLTPROC_MANPAGES' in bld.env and bld.env['XSLTPROC_MANPAGES']):
185
186     SMBDOTCONF_MANPAGE(bld, 'manpages/smb.conf.5')
187     bld.SAMBAMANPAGES(manpages)
188
189     if bld.CONFIG_SET('WITH_PAM_MODULES') and bld.CONFIG_SET('HAVE_PAM_START'):
190         bld.SAMBAMANPAGES(pam_winbind_manpages)
191
192     if bld.CONFIG_SET('HAVE_KRB5_LOCATE_PLUGIN_H'):
193         bld.SAMBAMANPAGES(krb5_locator_manpages)
194
195     if bld.CONFIG_SET('HAVE_KRB5_LOCALAUTH_PLUGIN_H'):
196         bld.SAMBAMANPAGES(krb5_localauth_manpages)
197
198     if conf.env.build_winexe == True:
199         bld.SAMBAMANPAGES(winexe_manpages)
200
201     if bld.CONFIG_SET('ENABLE_SELFTEST'):
202         bld.SAMBAMANPAGES('manpages/vfstest.1')
203
204     for manpage in vfs_module_manpages:
205         if bld.SAMBA3_IS_ENABLED_MODULE(manpage):
206             bld.SAMBAMANPAGES('manpages/%s.8' % manpage)