[35bf493] | 1 | """ |
---|
| 2 | Functions for building sphinx docs. |
---|
| 3 | |
---|
| 4 | For more information on the invocation of sphinx see: |
---|
| 5 | http://sphinx-doc.org/invocation.html |
---|
| 6 | """ |
---|
| 7 | import subprocess |
---|
| 8 | import os |
---|
| 9 | import sys |
---|
| 10 | import fnmatch |
---|
| 11 | import shutil |
---|
| 12 | |
---|
| 13 | from distutils.dir_util import copy_tree |
---|
| 14 | from distutils.util import get_platform |
---|
| 15 | |
---|
| 16 | platform = '.%s-%s'%(get_platform(),sys.version[:3]) |
---|
| 17 | |
---|
| 18 | CURRENT_SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__)) |
---|
| 19 | |
---|
| 20 | SASVIEW_SRC = os.path.join(CURRENT_SCRIPT_DIR, "..", "..", "src") |
---|
| 21 | SASVIEW_BUILD = os.path.abspath(os.path.join(CURRENT_SCRIPT_DIR, "..", "..", "build", "lib"+platform)) |
---|
| 22 | SASVIEW_DOCS = os.path.join(SASVIEW_BUILD, "doc") |
---|
| 23 | |
---|
| 24 | SPHINX_BUILD = os.path.join(CURRENT_SCRIPT_DIR, "build") |
---|
| 25 | SPHINX_SOURCE = os.path.join(CURRENT_SCRIPT_DIR, "source") |
---|
| 26 | SPHINX_SOURCE_API = os.path.join(SPHINX_SOURCE, "dev", "api") |
---|
| 27 | |
---|
| 28 | def _remove_dir(dir_path): |
---|
| 29 | """Removes the given directory.""" |
---|
| 30 | if os.path.isdir(dir_path): |
---|
| 31 | print "Removing \"%s\"... " % dir_path |
---|
| 32 | shutil.rmtree(dir_path) |
---|
| 33 | |
---|
| 34 | def clean(): |
---|
| 35 | """ |
---|
| 36 | Clean the sphinx build directory. |
---|
| 37 | """ |
---|
| 38 | print "=== Cleaning Sphinx Build ===" |
---|
| 39 | _remove_dir(SASVIEW_DOCS) |
---|
| 40 | _remove_dir(SPHINX_BUILD) |
---|
| 41 | |
---|
| 42 | def retrieve_user_docs(): |
---|
| 43 | """ |
---|
| 44 | Copies across the contents of any media/ directories in src/, and puts them |
---|
| 45 | in an appropriately named directory of docs/sphinx-docs/source/. For |
---|
| 46 | example: |
---|
| 47 | |
---|
| 48 | sas/../[MODULE]/media/dir/A.rst |
---|
| 49 | sas/../[MODULE]/media/B.rst |
---|
| 50 | |
---|
| 51 | gets copied to a new location: |
---|
| 52 | |
---|
| 53 | docs/sphinx-docs/source/user/[MODULE]/dir/A.rst |
---|
| 54 | docs/sphinx-docs/source/user/[MODULE]/B.rst |
---|
| 55 | |
---|
| 56 | so that Sphinx may pick it up when generating the documentation. |
---|
| 57 | """ |
---|
| 58 | print "=== Retrieve User Docs ===" |
---|
| 59 | |
---|
| 60 | # Copy documentation files from their "source" to their "destination". |
---|
| 61 | for root, dirnames, _ in os.walk(SASVIEW_SRC): |
---|
| 62 | for dirname in fnmatch.filter(dirnames, 'media'): |
---|
| 63 | |
---|
| 64 | docs = os.path.abspath(os.path.join(root, dirname)) |
---|
| 65 | print "Found docs folder at \"%s\"." % docs |
---|
| 66 | |
---|
[f620870] | 67 | dest_dir_part = os.path.dirname(os.path.relpath(docs, SASVIEW_SRC)) |
---|
| 68 | if os.sep in dest_dir_part: |
---|
| 69 | dest_dir_part = dest_dir_part[dest_dir_part.index(os.sep) + 1:] |
---|
| 70 | dest_dir = os.path.join(SPHINX_SOURCE, "user", dest_dir_part) |
---|
[35bf493] | 71 | |
---|
| 72 | copy_tree(docs, dest_dir) |
---|
| 73 | |
---|
| 74 | def apidoc(): |
---|
| 75 | """ |
---|
| 76 | Runs sphinx-apidoc to generate .rst files from the docstrings in .py files |
---|
| 77 | in the SasView build directory. |
---|
| 78 | """ |
---|
| 79 | print "=== Generate API Rest Files ===" |
---|
| 80 | |
---|
| 81 | # Clean directory before generating a new version. |
---|
| 82 | _remove_dir(SPHINX_SOURCE_API) |
---|
| 83 | |
---|
| 84 | subprocess.call(["sphinx-apidoc", |
---|
| 85 | "-o", SPHINX_SOURCE_API, # Output dir. |
---|
| 86 | "-d", "8", # Max depth of TOC. |
---|
| 87 | SASVIEW_BUILD]) |
---|
| 88 | |
---|
| 89 | def build(): |
---|
| 90 | """ |
---|
| 91 | Runs sphinx-build. Reads in all .rst files and spits out the final html. |
---|
| 92 | """ |
---|
| 93 | print "=== Build HTML Docs from Rest Files ===" |
---|
| 94 | subprocess.call(["sphinx-build", |
---|
| 95 | "-b", "html", # Builder name. TODO: accept as arg to setup.py. |
---|
| 96 | "-d", os.path.join(SPHINX_BUILD, "doctrees"), |
---|
| 97 | SPHINX_SOURCE, |
---|
| 98 | os.path.join(SPHINX_BUILD, "html")]) |
---|
| 99 | |
---|
| 100 | print "=== Copy HTML Docs to Build Directory ===" |
---|
| 101 | html = os.path.join(SPHINX_BUILD, "html") |
---|
| 102 | copy_tree(html, SASVIEW_DOCS) |
---|
| 103 | |
---|
| 104 | if __name__ == "__main__": |
---|
| 105 | clean() |
---|
| 106 | retrieve_user_docs() |
---|
| 107 | apidoc() |
---|
| 108 | build() |
---|
| 109 | |
---|
| 110 | print "=== Done ===" |
---|