mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Allow sphinx to use multiple cpus w -j support (#18900)
'CPUS=6 make webdocs' for example
This commit is contained in:
parent
0b8011436d
commit
2979488b08
2 changed files with 37 additions and 22 deletions
|
@ -1,11 +1,12 @@
|
||||||
SITELIB = $(shell python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")
|
SITELIB = $(shell python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")
|
||||||
FORMATTER=../hacking/module_formatter.py
|
FORMATTER=../hacking/module_formatter.py
|
||||||
DUMPER=../hacking/dump_playbook_attributes.py
|
DUMPER=../hacking/dump_playbook_attributes.py
|
||||||
|
CPUS ?= 1
|
||||||
|
|
||||||
all: clean docs
|
all: clean docs
|
||||||
|
|
||||||
docs: clean directives modules staticmin
|
docs: clean directives modules staticmin
|
||||||
./build-site.py
|
./build-site.py -j $(CPUS)
|
||||||
-(cp *.ico htmlout/)
|
-(cp *.ico htmlout/)
|
||||||
-(cp *.jpg htmlout/)
|
-(cp *.jpg htmlout/)
|
||||||
-(cp *.png htmlout/)
|
-(cp *.png htmlout/)
|
||||||
|
@ -15,10 +16,10 @@ variables:
|
||||||
dot variables.dot -Tpng -o htmlout/variables.png
|
dot variables.dot -Tpng -o htmlout/variables.png
|
||||||
|
|
||||||
viewdocs: clean staticmin
|
viewdocs: clean staticmin
|
||||||
./build-site.py view
|
./build-site.py -j $(CPUS) view
|
||||||
|
|
||||||
htmldocs: staticmin
|
htmldocs: staticmin
|
||||||
./build-site.py rst
|
./build-site.py -j $(CPUS) rst
|
||||||
|
|
||||||
webdocs: htmldocs
|
webdocs: htmldocs
|
||||||
|
|
||||||
|
|
|
@ -19,6 +19,7 @@ from __future__ import print_function
|
||||||
|
|
||||||
__docformat__ = 'restructuredtext'
|
__docformat__ = 'restructuredtext'
|
||||||
|
|
||||||
|
import optparse
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
import traceback
|
import traceback
|
||||||
|
@ -29,7 +30,6 @@ except ImportError:
|
||||||
print("Dependency missing: Python Sphinx")
|
print("Dependency missing: Python Sphinx")
|
||||||
print("#################################")
|
print("#################################")
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
import os
|
|
||||||
|
|
||||||
|
|
||||||
class SphinxBuilder(object):
|
class SphinxBuilder(object):
|
||||||
|
@ -37,7 +37,7 @@ class SphinxBuilder(object):
|
||||||
Creates HTML documentation using Sphinx.
|
Creates HTML documentation using Sphinx.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self, verbosity=None, parallel=None):
|
||||||
"""
|
"""
|
||||||
Run the DocCommand.
|
Run the DocCommand.
|
||||||
"""
|
"""
|
||||||
|
@ -58,15 +58,18 @@ class SphinxBuilder(object):
|
||||||
freshenv = True
|
freshenv = True
|
||||||
|
|
||||||
# Create the builder
|
# Create the builder
|
||||||
|
# __init__(self, srcdir, confdir, outdir, doctreedir, buildername, confoverrides=None, status=<open file '<stdout>', mode 'w'>, warning=<open file '<stderr>', mode 'w'>, freshenv=False, warningiserror=False, tags=None, verbosity=0, parallel=0)
|
||||||
app = Sphinx(srcdir,
|
app = Sphinx(srcdir,
|
||||||
confdir,
|
confdir,
|
||||||
outdir,
|
outdir,
|
||||||
doctreedir,
|
doctreedir,
|
||||||
buildername,
|
buildername,
|
||||||
{},
|
confoverrides={},
|
||||||
sys.stdout,
|
status=sys.stdout,
|
||||||
sys.stderr,
|
warning=sys.stderr,
|
||||||
freshenv)
|
freshenv=freshenv,
|
||||||
|
verbosity=verbosity,
|
||||||
|
parallel=parallel)
|
||||||
|
|
||||||
app.builder.build_all()
|
app.builder.build_all()
|
||||||
|
|
||||||
|
@ -78,20 +81,31 @@ class SphinxBuilder(object):
|
||||||
def build_docs(self):
|
def build_docs(self):
|
||||||
self.app.builder.build_all()
|
self.app.builder.build_all()
|
||||||
|
|
||||||
|
def build_rst_docs(verbosity=None, parallel=None):
|
||||||
|
verbosity = verbosity or 1
|
||||||
|
parallel = parallel or 1
|
||||||
|
SphinxBuilder(verbosity=verbosity,
|
||||||
|
parallel=parallel)
|
||||||
|
|
||||||
def build_rst_docs():
|
USAGE = """This script builds the html documentation from rst/asciidoc sources.\n")
|
||||||
docgen = SphinxBuilder()
|
Run 'make docs' to build everything.\n
|
||||||
|
Run 'make viewdocs' to build and then preview in a web browser."""
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
if '-h' in sys.argv or '--help' in sys.argv:
|
|
||||||
print("This script builds the html documentation from rst/asciidoc sources.\n")
|
|
||||||
print(" Run 'make docs' to build everything.")
|
|
||||||
print(" Run 'make viewdocs' to build and then preview in a web browser.")
|
|
||||||
sys.exit(0)
|
|
||||||
|
|
||||||
build_rst_docs()
|
parser = optparse.OptionParser(USAGE)
|
||||||
|
parser.add_option('-v','--verbose', dest='verbosity', default=0, action="count",
|
||||||
|
help="verbose mode (-vvv for more, -vvvv to enable connection debugging)")
|
||||||
|
parser.add_option('-j', '--parallel', dest='parallel', default="1", action='store',
|
||||||
|
help="Number of threads to start")
|
||||||
|
parser.add_option('--view', dest='view',
|
||||||
|
help="Open a browser after building docs")
|
||||||
|
|
||||||
if "view" in sys.argv:
|
options, args = parser.parse_args(sys.argv[:])
|
||||||
|
|
||||||
|
build_rst_docs(verbosity=options.verbosity, parallel=int(options.parallel))
|
||||||
|
|
||||||
|
if hasattr(options, 'view'):
|
||||||
import webbrowser
|
import webbrowser
|
||||||
if not webbrowser.open('htmlout/index.html'):
|
if not webbrowser.open('htmlout/index.html'):
|
||||||
print("Could not open on your webbrowser.", file=sys.stderr)
|
print("Could not open on your webbrowser.", file=sys.stderr)
|
||||||
|
|
Loading…
Reference in a new issue