bcde96e16d
Generate a log file build-${book}.log.gz for each book in the top-level directory. Also, add --debug option that for now only serializes the built to see errors in the build_book invocation. Change-Id: I1d81eaefa15f0d6bc103b9d3adbbf12b092ba7e6
1192 lines
41 KiB
Python
Executable File
1192 lines
41 KiB
Python
Executable File
#!/usr/bin/env python
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
'''
|
|
|
|
Usage:
|
|
test.py [path]
|
|
|
|
Validates all xml files against the DocBook 5 RELAX NG schema, and
|
|
attempts to build all books.
|
|
|
|
Options:
|
|
path Root directory, defaults to <repo root>/doc
|
|
|
|
Ignores pom.xml files and subdirectories named "target".
|
|
|
|
Requires:
|
|
- Python 2.7 or greater
|
|
- lxml Python library
|
|
- Maven
|
|
|
|
'''
|
|
|
|
import gzip
|
|
import multiprocessing
|
|
import os
|
|
import re
|
|
import shutil
|
|
import subprocess
|
|
import sys
|
|
|
|
from lxml import etree
|
|
|
|
import os_doc_tools
|
|
from oslo.config import cfg
|
|
|
|
|
|
# These are files that are known to not be in DocBook format.
|
|
# Add values via --exceptions-file
|
|
FILE_EXCEPTIONS = []
|
|
|
|
# These are books that we aren't checking yet
|
|
BOOK_EXCEPTIONS = []
|
|
|
|
# Mappings from books to directories
|
|
BOOK_MAPPINGS = {}
|
|
|
|
RESULTS_OF_BUILDS = []
|
|
|
|
# List of recognized (allowable) os profiling directives.
|
|
KNOWN_OS_VALUES = ["debian",
|
|
"centos",
|
|
"fedora",
|
|
"opensuse",
|
|
"rhel",
|
|
"sles",
|
|
"ubuntu"]
|
|
|
|
|
|
# List of recognized (allowable) audience profiling directives.
|
|
KNOWN_AUDIENCE_VALUES = ["enduser",
|
|
"adminuser",
|
|
"installer",
|
|
"webpage"]
|
|
|
|
BASE_RNG = os.path.join(os.path.dirname(__file__), 'resources/')
|
|
RACKBOOK_RNG = os.path.join(BASE_RNG, 'rackbook.rng')
|
|
DOCBOOKXI_RNG = os.path.join(BASE_RNG, 'docbookxi.rng')
|
|
WADL_RNG = os.path.join(BASE_RNG, 'wadl.rng')
|
|
WADL_XSD = os.path.join(BASE_RNG, 'wadl.xsd')
|
|
|
|
|
|
# NOTE(berendt): check_output as provided in Python 2.7.5 to make script
|
|
# usable with Python < 2.7
|
|
def check_output(*popenargs, **kwargs):
|
|
"""Run command with arguments and return its output as a byte string.
|
|
|
|
If the exit code was non-zero it raises a CalledProcessError. The
|
|
CalledProcessError object will have the return code in the returncode
|
|
attribute and output in the output attribute.
|
|
"""
|
|
if 'stdout' in kwargs:
|
|
raise ValueError('stdout argument not allowed, it will be overridden.')
|
|
process = subprocess.Popen(stdout=subprocess.PIPE, *popenargs, **kwargs)
|
|
output, unused_err = process.communicate()
|
|
retcode = process.poll()
|
|
if retcode:
|
|
cmd = kwargs.get("args")
|
|
if cmd is None:
|
|
cmd = popenargs[0]
|
|
raise subprocess.CalledProcessError(retcode, cmd, output=output)
|
|
return output
|
|
|
|
|
|
def get_schema(is_api_site=False):
|
|
"""Return the DocBook RELAX NG schema."""
|
|
if is_api_site:
|
|
url = RACKBOOK_RNG
|
|
else:
|
|
url = DOCBOOKXI_RNG
|
|
relaxng_doc = etree.parse(url)
|
|
return etree.RelaxNG(relaxng_doc)
|
|
|
|
|
|
def get_wadl_schema():
|
|
"""Return the Wadl schema."""
|
|
# NOTE(jaegerandi): We could use the RelaxNG instead
|
|
# like follows but this gives quite some errors at the
|
|
# moment, so only validate using the XMLSchema
|
|
#url = WADL_RNG
|
|
#relaxng_doc = etree.parse(url, base_url=BASE_RNG)
|
|
#return etree.RelaxNG(relaxng_doc)
|
|
url = WADL_XSD
|
|
schema = etree.parse(url, base_url=BASE_RNG)
|
|
return etree.XMLSchema(schema)
|
|
|
|
|
|
def validation_failed(schema, doc):
|
|
"""Return True if the parsed doc fails against the schema
|
|
|
|
This will ignore validation failures of the type: IDREF attribute linkend
|
|
references an unknown ID. This is because we are validating individual
|
|
files that are being imported, and sometimes the reference isn't present
|
|
in the current file.
|
|
"""
|
|
return not schema.validate(doc) and \
|
|
any(log.type_name != "DTD_UNKNOWN_ID" for log in schema.error_log)
|
|
|
|
|
|
def verify_section_tags_have_xmid(doc):
|
|
"""Check that all section tags have an xml:id attribute
|
|
|
|
Will throw an exception if there's at least one missing.
|
|
"""
|
|
ns = {"docbook": "http://docbook.org/ns/docbook"}
|
|
for node in doc.xpath('//docbook:section', namespaces=ns):
|
|
if "{http://www.w3.org/XML/1998/namespace}id" not in node.attrib:
|
|
raise ValueError("section missing xml:id attribute, line %d" %
|
|
node.sourceline)
|
|
|
|
|
|
def verify_resources_tags_have_xmid(doc):
|
|
"""Check that all resources tags have an xml:id attribute
|
|
|
|
Will throw an exception if there's at least one missing.
|
|
"""
|
|
ns = {"wadl": "http://wadl.dev.java.net/2009/02"}
|
|
for node in doc.xpath('//wadl:resources', namespaces=ns):
|
|
if "{http://www.w3.org/XML/1998/namespace}id" not in node.attrib:
|
|
raise ValueError("resources missing xml:id attribute, line %d" %
|
|
node.sourceline)
|
|
|
|
|
|
def verify_attribute_profiling(doc, attribute, known_values):
|
|
"""Check for elements with attribute profiling set that conflicts with
|
|
the attribute profiling of nodes below them in the DOM
|
|
tree. This picks up cases where content is accidentally
|
|
omitted via conflicting profiling. Checks known_values also for
|
|
supported profiling values.
|
|
"""
|
|
|
|
ns = {"docbook": "http://docbook.org/ns/docbook"}
|
|
|
|
path = '//docbook:*[@%s]' % attribute
|
|
for parent in doc.xpath(path, namespaces=ns):
|
|
p_tag = parent.tag
|
|
p_line = parent.sourceline
|
|
p_att_list = parent.attrib[attribute].split(';')
|
|
|
|
for att in p_att_list:
|
|
if att not in known_values:
|
|
raise ValueError(
|
|
"'%s' is not a recognized %s profile on line %d." %
|
|
(att, attribute, p_line))
|
|
|
|
cpath = './/docbook:*[@%s]' % attribute
|
|
for child in parent.xpath(cpath, namespaces=ns):
|
|
c_tag = child.tag
|
|
c_line = child.sourceline
|
|
c_att_list = child.attrib[attribute].split(';')
|
|
for att in c_att_list:
|
|
if att not in p_att_list:
|
|
len_ns = len("{http://docbook.org/ns/docbook}")
|
|
raise ValueError(
|
|
"%s %s profiling (%s) conflicts with %s "
|
|
"profiling of %s on line %d." %
|
|
(p_tag[len_ns:], attribute, p_att_list,
|
|
attribute, c_tag[len_ns:], c_line))
|
|
|
|
|
|
def verify_profiling(doc):
|
|
""""Check profiling information."""
|
|
verify_attribute_profiling(doc, "os", KNOWN_OS_VALUES)
|
|
verify_attribute_profiling(doc, "audience", KNOWN_AUDIENCE_VALUES)
|
|
|
|
|
|
def verify_nice_usage_of_whitespaces(docfile):
|
|
"""Check that no unnecessary whitespaces are used."""
|
|
checks = [
|
|
re.compile(".*\s+\n$"),
|
|
]
|
|
|
|
elements = [
|
|
'listitem',
|
|
'para',
|
|
'td',
|
|
'th',
|
|
'command',
|
|
'literal',
|
|
'title',
|
|
'caption',
|
|
'filename',
|
|
'userinput',
|
|
'programlisting'
|
|
]
|
|
|
|
for element in elements:
|
|
checks.append(re.compile(".*<%s>\s+[\w\-().:!?{}\[\]]+.*\n"
|
|
% element)),
|
|
checks.append(re.compile(".*[\w\-().:!?{}\[\]]+\s+<\/%s>.*\n"
|
|
% element))
|
|
|
|
lc = 0
|
|
affected_lines = []
|
|
tab_lines = []
|
|
for line in open(docfile, 'r'):
|
|
lc = lc + 1
|
|
if '\t' in line:
|
|
tab_lines.append(str(lc))
|
|
|
|
for check in checks:
|
|
if check.match(line) and lc not in affected_lines:
|
|
affected_lines.append(str(lc))
|
|
|
|
if len(affected_lines) > 0 and len(tab_lines) > 0:
|
|
msg = "trailing or unnecessary whitespaces found in lines: %s" % (
|
|
", ".join(affected_lines))
|
|
msg = msg + "; tabs found in lines: %s" % ", ".join(tab_lines)
|
|
raise ValueError(msg)
|
|
elif len(affected_lines) > 0:
|
|
raise ValueError("trailing or unnecessary whitespaces found in "
|
|
"lines: %s" % (", ".join(affected_lines)))
|
|
elif len(tab_lines) > 0:
|
|
raise ValueError("tabs found in lines: %s" % ", ".join(tab_lines))
|
|
|
|
|
|
def error_message(error_log):
|
|
"""Return a string that contains the error message.
|
|
|
|
We use this to filter out false positives related to IDREF attributes
|
|
"""
|
|
errs = [str(x) for x in error_log if x.type_name != 'DTD_UNKNOWN_ID']
|
|
|
|
# Reverse output so that earliest failures are reported first
|
|
errs.reverse()
|
|
return "\n".join(errs)
|
|
|
|
|
|
def www_touched(check_only_www):
|
|
"""Check whether files in www directory are touched.
|
|
|
|
If check_only_www is True: Check that only files in www are touched.
|
|
Otherwise check that files in www are touched.
|
|
"""
|
|
|
|
try:
|
|
git_args = ["git", "diff", "--name-only", "HEAD~1", "HEAD"]
|
|
modified_files = check_output(git_args).strip().split()
|
|
except (subprocess.CalledProcessError, OSError) as e:
|
|
print("git failed: %s" % e)
|
|
sys.exit(1)
|
|
|
|
www_changed = False
|
|
other_changed = False
|
|
for f in modified_files:
|
|
if f.startswith("www/"):
|
|
www_changed = True
|
|
else:
|
|
other_changed = True
|
|
|
|
if check_only_www:
|
|
return www_changed and not other_changed
|
|
return www_changed
|
|
|
|
|
|
def ha_guide_touched():
|
|
"""Check whether files in high-availability-guide directory are touched."""
|
|
|
|
try:
|
|
git_args = ["git", "diff", "--name-only", "HEAD~1", "HEAD"]
|
|
modified_files = check_output(git_args).strip().split()
|
|
except (subprocess.CalledProcessError, OSError) as e:
|
|
print("git failed: %s" % e)
|
|
sys.exit(1)
|
|
|
|
ha_changed = False
|
|
for f in modified_files:
|
|
if f.startswith("doc/high-availability-guide/"):
|
|
ha_changed = True
|
|
|
|
return ha_changed
|
|
|
|
|
|
def check_modified_affects_all(rootdir, verbose):
|
|
"""Check whether special files were modified.
|
|
|
|
There are some special files where we should rebuild all books
|
|
if either of these is touched.
|
|
"""
|
|
|
|
os.chdir(rootdir)
|
|
|
|
try:
|
|
git_args = ["git", "diff", "--name-only", "HEAD~1", "HEAD"]
|
|
modified_files = check_output(git_args).strip().split()
|
|
except (subprocess.CalledProcessError, OSError) as e:
|
|
print("git failed: %s" % e)
|
|
sys.exit(1)
|
|
|
|
special_files = [
|
|
"tools/test.py",
|
|
"doc/pom.xml"
|
|
]
|
|
for f in modified_files:
|
|
if f in special_files:
|
|
if verbose:
|
|
print("File %s modified, this affects all books." % f)
|
|
return True
|
|
|
|
return False
|
|
|
|
|
|
def get_modified_files(rootdir, filtering=None):
|
|
"""Get modified files below doc directory."""
|
|
|
|
# There are several tree traversals in this program that do a
|
|
# chdir, we need to run this git command always from the rootdir,
|
|
# so assure that.
|
|
os.chdir(rootdir)
|
|
|
|
try:
|
|
git_args = ["git", "diff", "--name-only", "--relative", "HEAD~1",
|
|
"HEAD"]
|
|
if filtering is not None:
|
|
git_args.append(filtering)
|
|
modified_files = check_output(git_args).strip().split()
|
|
except (subprocess.CalledProcessError, OSError) as e:
|
|
print("git failed: %s" % e)
|
|
sys.exit(1)
|
|
return modified_files
|
|
|
|
|
|
def check_deleted_files(rootdir, file_exceptions, verbose):
|
|
"""Check whether files got deleted and verify that no other file
|
|
references them.
|
|
"""
|
|
|
|
print("Checking that no removed files are referenced...")
|
|
deleted_files = get_modified_files(rootdir, "--diff-filter=D")
|
|
if not deleted_files:
|
|
print("No files were removed.\n")
|
|
return
|
|
|
|
if verbose:
|
|
print(" Removed files:")
|
|
for f in deleted_files:
|
|
print (" %s" % f)
|
|
|
|
deleted_files = map(lambda x: os.path.abspath(x), deleted_files)
|
|
no_checked_files = 0
|
|
|
|
# Figure out whether files were included anywhere
|
|
missing_reference = False
|
|
|
|
for root, dirs, files in os.walk(rootdir):
|
|
# Don't descend into 'target' subdirectories
|
|
try:
|
|
ind = dirs.index('target')
|
|
del dirs[ind]
|
|
except ValueError:
|
|
pass
|
|
|
|
# Filter out any dot directories
|
|
dirs[:] = [d for d in dirs if not d.startswith('.')]
|
|
|
|
os.chdir(root)
|
|
|
|
for f in files:
|
|
if (f.endswith('.xml') and
|
|
f != 'pom.xml' and
|
|
f not in file_exceptions):
|
|
path = os.path.abspath(os.path.join(root, f))
|
|
try:
|
|
doc = etree.parse(path)
|
|
except etree.XMLSyntaxError as e:
|
|
print(" Warning: file %s is invalid XML: %s" % (path, e))
|
|
continue
|
|
|
|
no_checked_files = no_checked_files + 1
|
|
|
|
# Check for inclusion of files as part of imagedata
|
|
for node in doc.findall(
|
|
'//{http://docbook.org/ns/docbook}imagedata'):
|
|
href = node.get('fileref')
|
|
if (f not in file_exceptions and
|
|
os.path.abspath(href) in deleted_files):
|
|
print(" File %s has imagedata href for deleted "
|
|
"file %s" % (f, href))
|
|
missing_reference = True
|
|
|
|
break
|
|
|
|
# Check for inclusion of files as part of xi:include
|
|
ns = {"xi": "http://www.w3.org/2001/XInclude"}
|
|
for node in doc.xpath('//xi:include', namespaces=ns):
|
|
href = node.get('href')
|
|
if (os.path.abspath(href) in deleted_files):
|
|
print(" File %s has an xi:include on deleted file %s"
|
|
% (f, href))
|
|
missing_reference = True
|
|
if missing_reference:
|
|
print("Failed removed file check, %d files were removed, "
|
|
"%d files checked.\n"
|
|
% (len(deleted_files), no_checked_files))
|
|
sys.exit(1)
|
|
|
|
print("Passed removed file check, %d files were removed, "
|
|
"%d files checked.\n"
|
|
% (len(deleted_files), no_checked_files))
|
|
|
|
|
|
def validate_one_file(schema, rootdir, path, verbose,
|
|
check_syntax, check_niceness, validate_schema):
|
|
"""Validate a single file."""
|
|
# We pass schema in as a way of caching it, generating it is expensive
|
|
|
|
any_failures = False
|
|
if verbose:
|
|
print(" Validating %s" % os.path.relpath(path, rootdir))
|
|
try:
|
|
if check_syntax:
|
|
doc = etree.parse(path)
|
|
if validate_schema:
|
|
if validation_failed(schema, doc):
|
|
any_failures = True
|
|
print(error_message(schema.error_log))
|
|
if is_wadl(path):
|
|
verify_resources_tags_have_xmid(doc)
|
|
verify_section_tags_have_xmid(doc)
|
|
verify_profiling(doc)
|
|
if check_niceness:
|
|
verify_nice_usage_of_whitespaces(path)
|
|
except etree.XMLSyntaxError as e:
|
|
any_failures = True
|
|
print(" %s: %s" % (os.path.relpath(path, rootdir), e))
|
|
except ValueError as e:
|
|
any_failures = True
|
|
print(" %s: %s" % (os.path.relpath(path, rootdir), e))
|
|
|
|
return any_failures
|
|
|
|
|
|
def is_xml(filename):
|
|
"""Returns true if file ends with .xml and is not a pom.xml file."""
|
|
|
|
return filename.endswith('.xml') and not filename.endswith('/pom.xml')
|
|
|
|
|
|
def is_xml_like(filename):
|
|
"""Returns true if file is in some XML format we handle
|
|
|
|
Skips pom.xml files as well since those are not handled.
|
|
"""
|
|
|
|
return (filename.endswith(('.xml', '.xsd', '.xsl', '.wadl',
|
|
'.xjb')) and
|
|
not filename.endswith('pom.xml'))
|
|
|
|
|
|
def is_wadl(filename):
|
|
"""Returns true if file ends with .wadl."""
|
|
|
|
return filename.endswith('.wadl')
|
|
|
|
|
|
def validate_individual_files(files_to_check, rootdir, exceptions, verbose,
|
|
check_syntax=False, check_niceness=False,
|
|
ignore_errors=False, is_api_site=False):
|
|
"""Validate list of files."""
|
|
|
|
schema = get_schema(is_api_site)
|
|
if is_api_site:
|
|
wadl_schema = get_wadl_schema()
|
|
|
|
any_failures = False
|
|
no_validated = 0
|
|
no_failed = 0
|
|
|
|
if check_syntax and check_niceness:
|
|
print("Checking syntax and niceness of XML files...")
|
|
elif check_syntax:
|
|
print("Checking syntax of XML files...")
|
|
elif check_niceness:
|
|
print("Checking niceness of XML files...")
|
|
|
|
for f in files_to_check:
|
|
base_f = os.path.basename(f)
|
|
if (base_f == "pom.xml" or
|
|
base_f in exceptions):
|
|
continue
|
|
validate_schema = True
|
|
if is_api_site:
|
|
# Files ending with ".xml" in subdirectories of
|
|
# wadls and samples files are not docbook files.
|
|
if (f.endswith('.xml') and
|
|
("wadls" in f or "samples" in f)):
|
|
validate_schema = False
|
|
# Right now we can only validate docbook .xml
|
|
# and .wadl files with a schema
|
|
elif not f.endswith(('.wadl', '.xml')):
|
|
validate_schema = False
|
|
|
|
if (is_api_site and is_wadl(f)):
|
|
any_failures = validate_one_file(wadl_schema, rootdir, f,
|
|
verbose,
|
|
check_syntax,
|
|
check_niceness,
|
|
validate_schema)
|
|
else:
|
|
any_failures = validate_one_file(schema, rootdir, f,
|
|
verbose,
|
|
check_syntax,
|
|
check_niceness,
|
|
validate_schema)
|
|
if any_failures:
|
|
no_failed = no_failed + 1
|
|
no_validated = no_validated + 1
|
|
|
|
if no_failed > 0:
|
|
print("Check failed, validated %d XML files with %d failures.\n"
|
|
% (no_validated, no_failed))
|
|
if not ignore_errors:
|
|
sys.exit(1)
|
|
else:
|
|
print("Check passed, validated %d XML files.\n" % no_validated)
|
|
|
|
|
|
def validate_modified_files(rootdir, exceptions, verbose,
|
|
check_syntax=False, check_niceness=False,
|
|
ignore_errors=False, is_api_site=False):
|
|
"""Validate list of modified files."""
|
|
|
|
# Do not select deleted files, just Added, Copied, Modified, Renamed,
|
|
# or Type changed
|
|
modified_files = get_modified_files(rootdir, "--diff-filter=ACMRT")
|
|
|
|
modified_files = filter(is_xml_like, modified_files)
|
|
|
|
validate_individual_files(modified_files, rootdir, exceptions,
|
|
verbose,
|
|
check_syntax, check_niceness,
|
|
ignore_errors, is_api_site)
|
|
|
|
|
|
def validate_all_files(rootdir, exceptions, verbose,
|
|
check_syntax, check_niceness=False,
|
|
ignore_errors=False, is_api_site=False):
|
|
"""Validate all xml files."""
|
|
|
|
files_to_check = []
|
|
|
|
for root, dirs, files in os.walk(rootdir):
|
|
# Don't descend into 'target' subdirectories
|
|
try:
|
|
ind = dirs.index('target')
|
|
del dirs[ind]
|
|
except ValueError:
|
|
pass
|
|
|
|
# Filter out any dot directories
|
|
dirs[:] = [d for d in dirs if not d.startswith('.')]
|
|
|
|
for f in files:
|
|
# Ignore maven files, which are called pom.xml
|
|
if (is_xml_like(f) and
|
|
f not in exceptions):
|
|
path = os.path.abspath(os.path.join(root, f))
|
|
files_to_check.append(path)
|
|
|
|
validate_individual_files(files_to_check, rootdir, exceptions,
|
|
verbose,
|
|
check_syntax, check_niceness,
|
|
ignore_errors, is_api_site)
|
|
|
|
|
|
def logging_build_book(result):
|
|
"""Callback for book building."""
|
|
RESULTS_OF_BUILDS.append(result)
|
|
|
|
|
|
def get_gitroot():
|
|
"""Return path to top-level of git repository."""
|
|
|
|
try:
|
|
git_args = ["git", "rev-parse", "--show-toplevel"]
|
|
gitroot = check_output(git_args).rstrip()
|
|
except (subprocess.CalledProcessError, OSError) as e:
|
|
print("git failed: %s" % e)
|
|
sys.exit(1)
|
|
|
|
return gitroot
|
|
|
|
|
|
def get_publish_path():
|
|
"""Return path to use of publishing books."""
|
|
|
|
return os.path.join(get_gitroot(), 'publish-docs')
|
|
|
|
|
|
def publish_www():
|
|
"""Copy www files."""
|
|
|
|
publish_path = get_publish_path()
|
|
www_path = os.path.join(publish_path, 'www')
|
|
shutil.rmtree(www_path, ignore_errors=True)
|
|
|
|
source = os.path.join(get_gitroot(), 'www')
|
|
shutil.copytree(source, www_path)
|
|
|
|
|
|
def publish_book(publish_path, book):
|
|
"""Copy generated files to publish_path."""
|
|
|
|
# Assumption: The path for the book is the same as the name of directory
|
|
# the book is in. We need to special case any exceptions.
|
|
|
|
if cfg.CONF.language:
|
|
book_path = os.path.join(publish_path, cfg.CONF.language, book)
|
|
else:
|
|
book_path = os.path.join(publish_path, book)
|
|
|
|
# Note that shutil.copytree does not allow an existing target directory,
|
|
# thus delete it.
|
|
shutil.rmtree(book_path, ignore_errors=True)
|
|
|
|
if os.path.isdir(os.path.join('target/docbkx/webhelp', book)):
|
|
source = os.path.join('target/docbkx/webhelp', book)
|
|
elif os.path.isdir(os.path.join('target/docbkx/webhelp/local', book)):
|
|
source = os.path.join('target/docbkx/webhelp/local', book)
|
|
elif os.path.isdir(os.path.join('target/docbkx/webhelp/',
|
|
cfg.CONF.release_path, book)):
|
|
source = os.path.join('target/docbkx/webhelp/',
|
|
cfg.CONF.release_path, book)
|
|
elif (book in BOOK_MAPPINGS):
|
|
source = BOOK_MAPPINGS[book]
|
|
|
|
shutil.copytree(source, book_path,
|
|
ignore=shutil.ignore_patterns('*.xml'))
|
|
|
|
|
|
def ensure_exists(program):
|
|
"""Check that program exists, abort if not."""
|
|
retcode = subprocess.call("type " + program, shell=True,
|
|
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
if retcode != 0:
|
|
print("Program '%s' does not exist, please install!" % program)
|
|
sys.exit(1)
|
|
|
|
|
|
def build_book(book, publish_path, log_path):
|
|
"""Build book(s) in directory book."""
|
|
|
|
# Note that we cannot build in parallel several books in the same
|
|
# directory like the Install Guide. Thus we build sequentially per
|
|
# directory.
|
|
os.chdir(book)
|
|
result = True
|
|
returncode = 0
|
|
base_book = os.path.basename(book)
|
|
base_book_orig = base_book
|
|
comments = "-Dcomments.enabled=%s" % cfg.CONF.comments_enabled
|
|
release = "-Drelease.path.name=%s" % cfg.CONF.release_path
|
|
out_file = gzip.open(os.path.join(log_path, "build-" + base_book +
|
|
".log.gz"), 'w')
|
|
try:
|
|
# Clean first and then build so that the output of all guides
|
|
# is available
|
|
output = subprocess.check_output(
|
|
["mvn", "clean"],
|
|
stderr=subprocess.STDOUT
|
|
)
|
|
if base_book == "install-guide":
|
|
# Build Debian
|
|
base_book = "install-guide (for debian)"
|
|
output = subprocess.check_output(
|
|
["mvn", "generate-sources", "-B",
|
|
comments, release,
|
|
"-Doperating.system=apt-debian", "-Dprofile.os=debian"],
|
|
stderr=subprocess.STDOUT
|
|
)
|
|
# Build Fedora
|
|
base_book = "install-guide (for Fedora)"
|
|
output = subprocess.check_output(
|
|
["mvn", "generate-sources", "-B",
|
|
comments, release,
|
|
"-Doperating.system=yum",
|
|
"-Dprofile.os=centos;fedora;rhel"],
|
|
stderr=subprocess.STDOUT
|
|
)
|
|
# Build openSUSE
|
|
base_book = "install-guide (for openSUSE)"
|
|
output = subprocess.check_output(
|
|
["mvn", "generate-sources", "-B",
|
|
comments, release,
|
|
"-Doperating.system=zypper", "-Dprofile.os=opensuse;sles"],
|
|
stderr=subprocess.STDOUT
|
|
)
|
|
# Build Ubuntu
|
|
base_book = "install-guide (for Ubuntu)"
|
|
output = subprocess.check_output(
|
|
["mvn", "generate-sources", "-B",
|
|
comments, release,
|
|
"-Doperating.system=apt", "-Dprofile.os=ubuntu"],
|
|
stderr=subprocess.STDOUT
|
|
)
|
|
# Success
|
|
base_book = "install-guide (for Debian, Fedora, openSUSE, Ubuntu)"
|
|
elif base_book == "high-availability-guide":
|
|
output = subprocess.check_output(
|
|
["build-ha-guide.sh", ],
|
|
stderr=subprocess.STDOUT
|
|
)
|
|
output = subprocess.check_output(
|
|
["mvn", "generate-sources", comments, release, "-B"],
|
|
stderr=subprocess.STDOUT
|
|
)
|
|
# Repository: identity-api
|
|
# Let's not check for "v3" but for the full name instead
|
|
elif book.endswith("openstack-identity-api/v3"):
|
|
output = subprocess.check_output(
|
|
["markdown-docbook.sh", "identity-api-v3"],
|
|
stderr=subprocess.STDOUT
|
|
)
|
|
out_file.write(output)
|
|
# File gets generated at wrong directory, we need to move it
|
|
# around
|
|
shutil.move("src/markdown/identity-api-v3.xml", ".")
|
|
output = subprocess.check_output(
|
|
["mvn", "generate-sources", comments, release, "-B"],
|
|
stderr=subprocess.STDOUT
|
|
)
|
|
# Repository: image-api
|
|
elif book.endswith('openstack-image-service-api/src/markdown'):
|
|
output = subprocess.check_output(
|
|
["markdown-docbook.sh", "image-api-v2.0"],
|
|
stderr=subprocess.STDOUT
|
|
)
|
|
out_file.write(output)
|
|
output = subprocess.check_output(
|
|
["mvn", "generate-sources", comments, release, "-B"],
|
|
stderr=subprocess.STDOUT
|
|
)
|
|
else:
|
|
output = subprocess.check_output(
|
|
["mvn", "generate-sources", comments, release, "-B"],
|
|
stderr=subprocess.STDOUT
|
|
)
|
|
except subprocess.CalledProcessError as e:
|
|
out_file.write(output)
|
|
output = e.output
|
|
returncode = e.returncode
|
|
result = False
|
|
|
|
out_file.write(output)
|
|
out_file.close()
|
|
publish_book(publish_path, base_book_orig)
|
|
return (base_book, result, output, returncode)
|
|
|
|
|
|
def is_book_master(filename):
|
|
"""Returns True if filename is one of the special filenames used for the
|
|
book master files.
|
|
|
|
We do not parse pom.xml for the includes directive to determine
|
|
the top-level files and thus have to use a heuristic.
|
|
"""
|
|
|
|
return ((filename.startswith(('bk-', 'bk_', 'st-'))
|
|
and filename.endswith('.xml')) or
|
|
filename == 'openstack-glossary.xml')
|
|
|
|
|
|
def find_affected_books(rootdir, book_exceptions, file_exceptions,
|
|
verbose, force, ignore_dirs):
|
|
"""Check which books are affected by modified files.
|
|
|
|
Returns a set with books.
|
|
"""
|
|
book_root = rootdir
|
|
|
|
books = []
|
|
affected_books = set()
|
|
|
|
build_all_books = (force or check_modified_affects_all(rootdir, verbose) or
|
|
cfg.CONF.only_book)
|
|
|
|
# Dictionary that contains a set of files.
|
|
# The key is a filename, the set contains files that include this file.
|
|
included_by = {}
|
|
|
|
# Dictionary with books and their bk*.xml files
|
|
book_bk = {}
|
|
|
|
# 1. Iterate over whole tree and analyze include files.
|
|
# This updates included_by, book_bk and books.
|
|
for root, dirs, files in os.walk(rootdir):
|
|
# Don't descend into 'target' subdirectories
|
|
try:
|
|
ind = dirs.index('target')
|
|
del dirs[ind]
|
|
except ValueError:
|
|
pass
|
|
|
|
# Filter out any dot directories
|
|
dirs[:] = [d for d in dirs if not d.startswith('.')]
|
|
|
|
# Filter out directories to be ignored
|
|
if ignore_dirs:
|
|
dirs[:] = [d for d in dirs if not d in ignore_dirs]
|
|
|
|
if os.path.basename(root) in book_exceptions:
|
|
break
|
|
# Do not process files in doc itself or top-level directory
|
|
elif root.endswith('doc') or root == rootdir:
|
|
continue
|
|
elif "pom.xml" in files:
|
|
if (not cfg.CONF.only_book or
|
|
(cfg.CONF.only_book and
|
|
os.path.basename(root) in cfg.CONF.only_book)):
|
|
books.append(root)
|
|
book_root = root
|
|
|
|
# No need to check single books if we build all, we just
|
|
# collect list of books
|
|
if build_all_books:
|
|
continue
|
|
|
|
# ha-guide uses asciidoc which we do not track.
|
|
# Just check whether any file is touched in that directory
|
|
if root.endswith('doc/high-availability-guide'):
|
|
if ha_guide_touched():
|
|
affected_books.add(book_root)
|
|
|
|
for f in files:
|
|
f_base = os.path.basename(f)
|
|
f_abs = os.path.abspath(os.path.join(root, f))
|
|
if is_book_master(f_base):
|
|
book_bk[f_abs] = book_root
|
|
if (f.endswith('.xml') and
|
|
f != "pom.xml" and
|
|
f != "ha-guide-docinfo.xml" and
|
|
f not in file_exceptions):
|
|
try:
|
|
doc = etree.parse(f_abs)
|
|
except etree.XMLSyntaxError as e:
|
|
print(" Warning: file %s is invalid XML: %s" % (f_abs, e))
|
|
continue
|
|
for node in doc.findall(
|
|
'//{http://docbook.org/ns/docbook}imagedata'):
|
|
href = node.get('fileref')
|
|
href_abs = os.path.abspath(os.path.join(root, href))
|
|
if href_abs in included_by:
|
|
included_by[href_abs].add(f_abs)
|
|
else:
|
|
included_by[href_abs] = set([f_abs])
|
|
|
|
ns = {"xi": "http://www.w3.org/2001/XInclude"}
|
|
for node in doc.xpath('//xi:include', namespaces=ns):
|
|
href = node.get('href')
|
|
href_abs = os.path.abspath(os.path.join(root, href))
|
|
if href_abs in included_by:
|
|
included_by[href_abs].add(f_abs)
|
|
else:
|
|
included_by[href_abs] = set([f_abs])
|
|
|
|
if not build_all_books:
|
|
# Generate list of modified_files
|
|
# Do not select deleted files, just Added, Copied, Modified, Renamed,
|
|
# or Type changed
|
|
modified_files = get_modified_files(rootdir, "--diff-filter=ACMRT")
|
|
modified_files = map(lambda x: os.path.abspath(x), modified_files)
|
|
|
|
# 2. Find all modified files and where they are included
|
|
|
|
# List of files that we have to iterate over, these are affected
|
|
# by some modification
|
|
new_files = modified_files
|
|
|
|
# All files that are affected (either directly or indirectly)
|
|
affected_files = set(modified_files)
|
|
|
|
# 3. Iterate over files that have includes on modified files
|
|
# and build a closure - the set of all files (affected_files)
|
|
# that have a path to a modified file via includes.
|
|
while len(new_files) > 0:
|
|
new_files_to_check = new_files
|
|
new_files = []
|
|
for f in new_files_to_check:
|
|
# Skip bk*.xml files
|
|
if is_book_master(os.path.basename(f)):
|
|
book_modified = book_bk[f]
|
|
if book_modified not in affected_books:
|
|
affected_books.add(book_modified)
|
|
continue
|
|
if f not in included_by:
|
|
continue
|
|
for g in included_by[f]:
|
|
if g not in affected_files:
|
|
new_files.append(g)
|
|
affected_files.add(g)
|
|
|
|
if cfg.CONF.only_book:
|
|
print("Building specified books.")
|
|
elif build_all_books:
|
|
print("Building all books.")
|
|
elif affected_books:
|
|
books = affected_books
|
|
else:
|
|
print("No books are affected by modified files. Building all books.")
|
|
|
|
return books
|
|
|
|
|
|
def build_affected_books(rootdir, book_exceptions, file_exceptions,
|
|
verbose, force=False, ignore_errors=False,
|
|
ignore_dirs=[]):
|
|
"""Build all the books which are affected by modified files.
|
|
|
|
Looks for all directories with "pom.xml" and checks if a
|
|
XML file in the directory includes a modified file. If at least
|
|
one XML file includes a modified file the method calls
|
|
"mvn clean generate-sources" in that directory.
|
|
|
|
This will throw an exception if a book fails to build
|
|
"""
|
|
|
|
books = find_affected_books(rootdir, book_exceptions,
|
|
file_exceptions, verbose,
|
|
force, ignore_dirs)
|
|
|
|
# Remove cache content which can cause build failures
|
|
shutil.rmtree(os.path.expanduser("~/.fop"),
|
|
ignore_errors=True)
|
|
|
|
maxjobs = multiprocessing.cpu_count()
|
|
# Jenkins fails sometimes with errors if too many jobs run, artificially
|
|
# limit to 4 for now.
|
|
# See https://bugs.launchpad.net/openstack-manuals/+bug/1221721
|
|
if maxjobs > 4:
|
|
maxjobs = 4
|
|
pool = multiprocessing.Pool(maxjobs)
|
|
print("Queuing the following books for building:")
|
|
publish_path = get_publish_path()
|
|
log_path = get_gitroot()
|
|
for book in sorted(books):
|
|
print(" %s" % os.path.basename(book))
|
|
if cfg.CONF.debug:
|
|
build_book(book, publish_path, log_path)
|
|
else:
|
|
pool.apply_async(build_book, (book, publish_path, log_path),
|
|
callback=logging_build_book)
|
|
pool.close()
|
|
print("Building all queued %d books now..." % len(books))
|
|
pool.join()
|
|
|
|
any_failures = False
|
|
for book, result, output, returncode in RESULTS_OF_BUILDS:
|
|
if result:
|
|
print(">>> Build of book %s succeeded." % book)
|
|
else:
|
|
any_failures = True
|
|
|
|
if any_failures:
|
|
for book, result, output, returncode in RESULTS_OF_BUILDS:
|
|
if not result:
|
|
print(">>> Build of book %s failed (returncode = %d)."
|
|
% (book, returncode))
|
|
print("\n%s" % output)
|
|
|
|
print("Building of books finished with failures.\n")
|
|
if not ignore_errors:
|
|
sys.exit(1)
|
|
else:
|
|
print("Building of books finished successfully.\n")
|
|
|
|
|
|
def read_properties():
|
|
"""Read gerrit-doc.properties."""
|
|
|
|
gerrit_file = os.path.join(get_gitroot(), 'gerrit-doc.properties')
|
|
|
|
if os.path.isfile(gerrit_file):
|
|
|
|
for line in open(gerrit_file, 'r'):
|
|
content = line.strip().split('=')
|
|
if len(content) > 1:
|
|
if content[0] == "DOC_RELEASE_PATH":
|
|
cfg.CONF.release_path = content[1]
|
|
elif content[0] == "DOC_COMMENTS_ENABLED":
|
|
cfg.CONF.comments_enabled = content[1]
|
|
|
|
|
|
def add_exceptions(file_exception, verbose):
|
|
"""Add list of exceptions from file_exceptions."""
|
|
|
|
for entry in file_exception:
|
|
if verbose:
|
|
print(" Adding file to ignore list: %s" % entry)
|
|
FILE_EXCEPTIONS.append(entry)
|
|
|
|
|
|
cli_OPTS = [
|
|
cfg.BoolOpt("api-site", default=False,
|
|
help="Enable special handling for api-site repository."),
|
|
cfg.BoolOpt('check-all', default=False,
|
|
help="Run all checks."),
|
|
cfg.BoolOpt('check-build', default=False,
|
|
help="Check building of books using modified files."),
|
|
cfg.BoolOpt("check-deletions", default=False,
|
|
help="Check that deleted files are not used."),
|
|
cfg.BoolOpt("check-niceness", default=False,
|
|
help="Check the niceness of files, for example whitespace."),
|
|
cfg.BoolOpt("check-syntax", default=False,
|
|
help="Check the syntax of modified files."),
|
|
cfg.BoolOpt('debug', default=False,
|
|
help="Enable debug code."),
|
|
cfg.BoolOpt('force', default=False,
|
|
help="Force the validation of all files "
|
|
"and build all books."),
|
|
cfg.BoolOpt("ignore-errors", default=False,
|
|
help="Do not exit on failures."),
|
|
cfg.BoolOpt('verbose', default=False, short='v',
|
|
help="Verbose execution."),
|
|
cfg.StrOpt('exceptions-file',
|
|
help="Ignored, for compatibility only."),
|
|
cfg.MultiStrOpt("file-exception",
|
|
help="File that will be skipped during validation."),
|
|
cfg.MultiStrOpt("ignore-dir",
|
|
help="Directory to ignore for building of manuals. The "
|
|
"parameter can be passed multiple times to add "
|
|
"several directories."),
|
|
cfg.StrOpt('language', default=None, short='l',
|
|
help="Build translated manual for language in path "
|
|
"generate/$LANGUAGE ."),
|
|
cfg.MultiStrOpt('only-book', default=None,
|
|
help="Build each specified manual."),
|
|
]
|
|
|
|
OPTS = [
|
|
# NOTE(jaegerandi): books and target-dirs could be a DictOpt
|
|
# but I could not get this working properly.
|
|
cfg.MultiStrOpt("book", default=None,
|
|
help="Name of book that needs special mapping."),
|
|
cfg.MultiStrOpt("target-dir", default=None,
|
|
help="Target directory for a book. The option "
|
|
"must be in the same order as the book option."),
|
|
cfg.StrOpt("repo-name", default=None,
|
|
help="Name of repository."),
|
|
cfg.StrOpt("release-path", default="trunk",
|
|
help="Value to pass to maven for release.path.name."),
|
|
cfg.StrOpt("comments-enabled", default="0",
|
|
help="Value to pass to maven for comments.enabled."),
|
|
]
|
|
|
|
|
|
def handle_options():
|
|
"""Setup configuration variables from config file and options."""
|
|
|
|
CONF = cfg.CONF
|
|
CONF.register_cli_opts(cli_OPTS)
|
|
CONF.register_opts(OPTS)
|
|
|
|
default_config_files = [os.path.join(get_gitroot(), 'doc-test.conf')]
|
|
CONF(sys.argv[1:], project='documentation', prog='openstack-doc-test',
|
|
version=os_doc_tools.__version__,
|
|
default_config_files=default_config_files)
|
|
|
|
if CONF.repo_name:
|
|
print ("Testing repository '%s'\n" % CONF.repo_name)
|
|
|
|
if CONF.verbose:
|
|
print("Verbose execution")
|
|
|
|
if CONF.debug:
|
|
print("Enabling debug code")
|
|
|
|
if CONF.language:
|
|
print("Building for language '%s'" % CONF.language)
|
|
|
|
if CONF.file_exception:
|
|
add_exceptions(CONF.file_exception, CONF.verbose)
|
|
|
|
if (not CONF.check_build and not CONF.check_deletions and
|
|
not CONF.check_niceness and not CONF.check_syntax):
|
|
CONF.check_all = True
|
|
|
|
if CONF.check_all:
|
|
CONF.check_deletions = True
|
|
CONF.check_syntax = True
|
|
CONF.check_build = True
|
|
CONF.check_niceness = True
|
|
|
|
if CONF.check_build and CONF.book and CONF.target_dir:
|
|
if len(CONF.book) != len(CONF.target_dir):
|
|
print("ERROR: books and target-dirs need to have a 1:1 "
|
|
"relationship.")
|
|
sys.exit(1)
|
|
for i in range(len(CONF.book)):
|
|
BOOK_MAPPINGS[CONF.book[i]] = CONF.target_dir[i]
|
|
if CONF.verbose:
|
|
print(" Target dir for %s is %s" %
|
|
(CONF.book[i], BOOK_MAPPINGS[CONF.book[i]]))
|
|
|
|
|
|
def main():
|
|
|
|
CONF = cfg.CONF
|
|
print ("\nOpenStack Doc Checks (using openstack-doc-tools version %s)\n"
|
|
% os_doc_tools.__version__)
|
|
|
|
handle_options()
|
|
|
|
doc_path = get_gitroot()
|
|
if CONF.language:
|
|
doc_path = os.path.join(doc_path, 'generated', CONF.language)
|
|
if CONF.verbose:
|
|
print("Using %s as root" % doc_path)
|
|
elif not CONF.api_site:
|
|
doc_path = os.path.join(doc_path, 'doc')
|
|
|
|
if CONF.check_build and www_touched(False):
|
|
publish_www()
|
|
|
|
if not CONF.force and www_touched(True):
|
|
print("Only files in www directory changed, nothing to do.\n")
|
|
return
|
|
|
|
if CONF.check_syntax or CONF.check_niceness:
|
|
if CONF.force:
|
|
validate_all_files(doc_path, FILE_EXCEPTIONS,
|
|
CONF.verbose,
|
|
CONF.check_syntax,
|
|
CONF.check_niceness,
|
|
CONF.ignore_errors,
|
|
CONF.api_site)
|
|
else:
|
|
validate_modified_files(doc_path, FILE_EXCEPTIONS,
|
|
CONF.verbose,
|
|
CONF.check_syntax,
|
|
CONF.check_niceness,
|
|
CONF.ignore_errors,
|
|
CONF.api_site)
|
|
|
|
if CONF.check_deletions:
|
|
check_deleted_files(doc_path, FILE_EXCEPTIONS, CONF.verbose)
|
|
|
|
if CONF.check_build:
|
|
# Some programs are called in subprocesses, make sure that they
|
|
# really exist.
|
|
ensure_exists("mvn")
|
|
read_properties()
|
|
build_affected_books(doc_path, BOOK_EXCEPTIONS,
|
|
FILE_EXCEPTIONS,
|
|
CONF.verbose, CONF.force,
|
|
CONF.ignore_errors,
|
|
CONF.ignore_dir)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(main())
|