1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
|
#!/usr/bin/env python3
#
# Copyright (C) 2016-2024 Matthias Klumpp <matthias@tenstral.net>
#
# Licensed under the GNU Lesser General Public License Version 2.1
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 2.1 of the license, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# This is a helper script for Meson and intended to be called by the
# AppStream buildsystem. You do not want to run this manually.
#
import os
import argparse
import subprocess
import shutil
from pathlib import Path
# additional CSS from system locations, we use it if available
EXTRA_CSS = [['/usr/share/javascript/highlight.js/styles/routeros.css', 'highlight.css']]
def daps_build(src_dir, project_name, daps_exe, valsec_gen):
print('Creating HTML with DAPS...')
sys.stdout.flush()
if valsec_gen:
ret = subprocess.call([valsec_gen, src_dir], cwd=src_dir)
if ret != 0:
print('Failed to generated some documentation sections.')
sys.exit(6)
build_dir = os.path.join(src_dir, '_docbuild')
cmd = [daps_exe, 'html', '--clean']
if project_name:
cmd.extend(['--name', project_name])
if os.path.exists(build_dir):
shutil.rmtree(build_dir)
os.makedirs(build_dir, exist_ok=True)
ret = subprocess.call(cmd, cwd=src_dir)
if ret != 0:
print('Documentation HTML build failed!')
sys.exit(6)
html_out_dir = os.path.join(build_dir, project_name, 'html', project_name)
# copy the (usually missing) plain SVG project icon
shutil.copy(
os.path.join(src_dir, 'images', 'src', 'svg', 'appstream-logo.svg'),
os.path.join(html_out_dir, 'images'),
)
# copy extra CSS if it is available
for css_fname in EXTRA_CSS:
if os.path.exists(css_fname[0]):
shutil.copy(css_fname[0], os.path.join(html_out_dir, 'static', 'css', css_fname[1]))
return build_dir
def copy_result(build_dir, project_name, dest_dir):
print('Copying HTML documentation...')
if os.path.exists(dest_dir):
shutil.rmtree(dest_dir)
shutil.copytree(
os.path.join(build_dir, project_name, 'html', project_name), dest_dir, symlinks=True
)
def cleanup_workspace(src_dir, build_dir):
print('Cleaning up.')
assert src_dir != build_dir
try:
os.remove(os.path.join(src_dir, 'xml', 'validator-compose-hints.xml'))
os.remove(os.path.join(src_dir, 'xml', 'validator-issues.xml'))
except OSError:
pass
if os.path.exists(build_dir):
shutil.rmtree(build_dir)
def daps_validate(src_dir, daps_exe, valsec_gen):
print('Validating documentation with DAPS...')
if valsec_gen:
ret = subprocess.call([valsec_gen, src_dir], cwd=src_dir)
if ret != 0:
print('Failed to generated some documentation sections.')
sys.exit(6)
build_dir = os.path.join(src_dir, '_docbuild')
if os.path.exists(build_dir):
shutil.rmtree(build_dir)
os.makedirs(build_dir, exist_ok=True)
ret = subprocess.call([daps_exe, 'validate'], cwd=src_dir)
if ret != 0:
print('Validation failed!')
cleanup_workspace(src_dir, build_dir)
return ret == 0
def main(args):
parser = argparse.ArgumentParser()
parser.add_argument('--build', action='store_true')
parser.add_argument('--validate', action='store_true')
parser.add_argument('--valsec-gen', action='store')
parser.add_argument('--src', action='store')
parser.add_argument('--builddir', action='store')
parser.add_argument('--daps', action='store', default='daps')
parser.add_argument('project', action='store', default='AppStream', nargs='?')
options = parser.parse_args(args)
if not options.validate and not options.build:
print('No action was specified.')
return 1
if not options.src:
print('Source root directory is not defined!')
return 1
os.chdir(options.src)
if options.build:
# build the HTML files
build_dir = daps_build(options.src, options.project, options.daps, options.valsec_gen)
# copy to output HTML folder, overriding all previous contents
copy_result(build_dir, options.project, os.path.join(options.src, 'html'))
# remove temporary directory
cleanup_workspace(options.src, build_dir)
# make a dummy file so Meson can rebuild documentation on demand
if options.builddir:
Path(os.path.join(options.builddir, 'docs_built.stamp')).touch()
print('Documentation built.')
elif options.validate:
# validate the XML
ret = daps_validate(options.src, options.daps, options.valsec_gen)
if not ret:
sys.exit(6)
return 0
if __name__ == '__main__':
import sys
sys.exit(main(sys.argv[1:]))
|