use doc8 in virtualenv
[opnfvdocs.git] / scripts / docs-build.sh
1 #!/bin/bash
2 # SPDX-license-identifier: Apache-2.0
3 ##############################################################################
4 # Copyright (c) 2016 NEC and others.
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
10
11 DOCS_DIR=${DOCS_DIR:-docs}
12 INDEX_RST=${INDEX_RST:-index.rst}
13 BUILD_DIR=${BUILD_DIR:-docs_build}
14 OUTPUT_DIR=${OUTPUT_DIR:-docs_output}
15 SRC_DIR=${SRC_DIR:-$BUILD_DIR/_src}
16 VENV_DIR=${VENV_DIR:-$BUILD_DIR/_venv}
17 OPNFVDOCS_DIR=${OPNFVDOCS_DIR:-$BUILD_DIR/_opnfvdocs}
18 GERRIT_COMMENT=${GERRIT_COMMENT:-}
19
20 get_title_script="
21 import os
22 from docutils import core, nodes
23
24 try:
25     with open('index.rst', 'r') as file:
26         data = file.read()
27     doctree = core.publish_doctree(data,
28         settings_overrides={'report_level': 5,
29                             'halt_level': 5})
30     if isinstance(doctree[0], nodes.title):
31         title = doctree[0]
32     else:
33         for c in doctree.children:
34             if isinstance(c, nodes.section):
35                 title = c[0]
36                 break
37     print title.astext()
38 except:
39     print 'None'"
40 revision="$(git rev-parse --short HEAD)"
41 rev_full="$(git rev-parse HEAD)"
42 version="$(git describe --abbrev=0 2> /dev/null || echo draft) ($revision)"
43 project="$(basename $(git rev-parse --show-toplevel))"
44 html_notes="    Revision: $rev_full\n    Build date: $(date -u +'%Y-%m-%d')"
45 opnfv_logo="$OPNFVDOCS_DIR/etc/opnfv-logo.png"
46 copyright="$(date +%Y), OPNFV"
47
48 function check_rst_doc() {
49     _src="$1"
50
51     # Note: This check may fail in many jobs for building project docs, since
52     #       the old sample has lines more than 120. We ignore failures on this
53     #       check right now, but these have to be fixed before OPNFV B release.
54     _out=$(doc8 --max-line-length 240 --ignore D000 "$_src") || {
55         _msg='Warning: rst validation (doc8) has failed, please fix the following error(s).'
56         _errs=$(echo "$_out" | sed -n -e "/^$_src/s/^/    /p")
57         echo
58         echo -e "$_msg\n$_errs"
59         echo
60         if [ -n "$GERRIT_COMMENT" ]; then
61             echo -e "$_msg\n$_errs" >> "$GERRIT_COMMENT"
62         fi
63     }
64 }
65
66 function add_html_notes() {
67     _src="$1"
68
69     find "$_src" -name '*.rst' | while read file
70     do
71         if grep -q -e ' _sha1_' "$file" ; then
72             # TODO: remove this, once old templates were removed from all repos.
73             echo
74             echo "Warn: '_sha1_' was found in [$file], use the latest document template."
75             echo "      See http://artifacts.opnfv.org/opnfvdocs/docs/how-to-use-docs ."
76             echo
77             sed -i "s/ _sha1_/ $git_sha1/g" "$file"
78         fi
79         sed -i -e "\$a\\\n..\n$html_notes" "$file"
80     done
81 }
82
83 function prepare_src_files() {
84     mkdir -p "$(dirname $SRC_DIR)"
85
86     if [ -e "$SRC_DIR" ]; then
87         rm -rf "$SRC_DIR"
88     fi
89     cp -r "$DOCS_DIR" "$SRC_DIR"
90     add_html_notes "$SRC_DIR"
91 }
92
93 function add_config() {
94     _conf="$1"
95     _param="$2"
96     _val="$3"
97
98     if ! grep -q -e "^$_param = " "$_conf" ; then
99         echo "Adding '$_param' into $_conf ..."
100         echo "$_param = $_val" >> "$_conf"
101     fi
102 }
103
104 # Note: User can customize config for specific document by creating 'conf.py'
105 #       in the taeget document dir (e.g. docs/abc/conf.py). This config file does
106 #       not need to cover all config parameter, as all missing parameter will be
107 #       automatically filled by this function.
108 function prepare_config() {
109     _src="$1"
110     _name="$2"
111     _conf="$_src/conf.py"
112
113     # default params
114     # Note: If you want to add a new sphinx extention here, you may need python
115     #       package for it (e.g. python package 'sphinxcontrib-httpdomain' is
116     #       required by 'sphinxcontrib.httpdomain'). If you need such python
117     #       package, add the name of the python package into the requirement
118     #       list 'docs/etc/requirements.txt' .
119     add_config "$_conf" 'extensions' \
120     "['sphinxcontrib.httpdomain', 'sphinx.ext.autodoc', 'sphinx.ext.viewcode', 'sphinx.ext.napoleon']"
121     add_config "$_conf" 'needs_sphinx' "'1.3'"
122     add_config "$_conf" 'numfig' "True"
123     add_config "$_conf" 'master_doc' "'index'"
124     add_config "$_conf" 'pygments_style' "'sphinx'"
125     add_config "$_conf" 'html_use_index' "False"
126     add_config "$_conf" 'html_logo' "'opnfv-logo.png'"
127     add_config "$_conf" 'latex_domain_indices' "False"
128     add_config "$_conf" 'latex_logo' "'opnfv-logo.png'"
129
130     # genarated params
131     title=$(cd $_src; python -c "$get_title_script")
132     latex_conf="[('index', '$_name.tex', \"$title\", 'OPNFV', 'manual'),]"
133     add_config "$_conf" 'latex_documents' "$latex_conf"
134     add_config "$_conf" 'release' "u'$version'"
135     add_config "$_conf" 'version' "u'$version'"
136     add_config "$_conf" 'project' "u'$project'"
137     add_config "$_conf" 'copyright' "u'$copyright'"
138     add_config "$_conf" 'rst_epilog' "u'$html_notes'"
139
140     echo "sphinx config to be used:"
141     echo
142     sed -e "s/^/    /" "$_conf"
143     echo
144 }
145
146 function is_top_dir() {
147     [[ "$1" == "$DOCS_DIR" ]]
148 }
149
150 function generate_name_for_top_dir() {
151     for suffix in '' '.top' '.all' '.master' '_' '__' '___'
152     do
153         _name="$(basename $DOCS_DIR)$suffix"
154         [[ -e "$DOCS_DIR/$_name" ]] && continue
155         echo "$_name"
156         return
157     done
158
159     echo "Error: cannot find name for top directory [$DOCS_DIR]"
160     exit 1
161 }
162
163 function generate_name() {
164     _dir=$1
165
166     if is_top_dir "$_dir" ; then
167         _name=$(generate_name_for_top_dir $DOCS_DIR)
168     else
169         _name="${_dir#$DOCS_DIR/}"
170     fi
171     # Replace '/' by '_'
172     echo "${_name////_}"
173 }
174
175
176 if [[ ! -d "$OPNFVDOCS_DIR" ]] ; then
177     echo "Error: $OPNFVDOCS_DIR dir not found."
178     echo "See http://artifacts.opnfv.org/opnfvdocs/docs/how-to-use-docs ."
179     exit 1
180 fi
181
182 if ! which virtualenv > /dev/null ; then
183     echo "Error: 'virtualenv' not found. Exec 'sudo pip install virtualenv' first."
184     exit 1
185 fi
186
187 virtualenv "$VENV_DIR"
188 source "$VENV_DIR/bin/activate"
189 pip install -r "$OPNFVDOCS_DIR/etc/requirements.txt"
190
191 check_rst_doc $DOCS_DIR
192
193 prepare_src_files
194
195 if [ -e "$DOCS_DIR/pre-hook.sh" ]; then
196     source "$DOCS_DIR/pre-hook.sh"
197 fi
198
199 find $DOCS_DIR -name $INDEX_RST -printf '%h\n' | while read dir
200 do
201     name=$(generate_name $dir)
202     if is_top_dir "$dir" ; then
203         src="$SRC_DIR"
204     else
205         src="$SRC_DIR/${dir#$DOCS_DIR/}"
206     fi
207     build="$BUILD_DIR/$name"
208     output="$OUTPUT_DIR/$name"
209
210     echo
211     echo "#################${dir//?/#}"
212     echo "Building DOCS in $dir"
213     echo "#################${dir//?/#}"
214     echo
215
216     prepare_config "$src" "$name"
217     cp -f $opnfv_logo "$src/opnfv-logo.png"
218
219     mkdir -p "$output"
220
221     sphinx-build -b html -t html -E "$src" "$output"
222
223     {
224         sphinx-build -b singlehtml -t singlehtml -E "$src" "${output}-single"
225     } || {
226         msg="Error: Single HTML creation for $dir has failed."
227         echo
228         echo "$msg"
229         echo
230         if [ -n "$GERRIT_COMMENT" ]; then
231             echo "$msg" >> "$GERRIT_COMMENT"
232         fi
233     }
234
235     # Note: PDF creation may fail in project doc builds.
236     #       We allow this build job to be marked as succeeded with
237     #       failure in PDF creation, but leave message to fix it.
238     #       Any failure has to be fixed before OPNFV B release.
239     {
240         sphinx-build -b latex -t pdf -E "$src" "$build" && \
241             make -C "$build" LATEXOPTS='--interaction=nonstopmode' all-pdf
242     } && {
243         mv "$build/$name.pdf" "$output"
244     } || {
245         msg="Error: PDF creation for $dir has failed, please fix source rst file(s)."
246         echo
247         echo "$msg"
248         echo
249         if [ -n "$GERRIT_COMMENT" ]; then
250             echo "$msg" >> "$GERRIT_COMMENT"
251         fi
252     }
253
254     # TODO: failures in ODT creation should be handled error and
255     #       cause 'exit 1' before OPNFV B release.
256     tex=$(find $build -name '*.tex' | head -1)
257     odt="${tex%.tex}.odt"
258     if [[ -e $tex ]] && which pandoc > /dev/null ; then
259         (
260             cd $(dirname $tex)
261             pandoc $(basename $tex) -o $(basename $odt)
262         ) && {
263             mv $odt $output/
264         }|| {
265             msg="Error: ODT creation for $dir has failed."
266             echo
267             echo "$msg"
268             echo
269         }
270     else
271         echo "Warn: tex file and/or 'pandoc' are not found, skip ODT creation."
272     fi
273
274     if is_top_dir "$dir" ; then
275         # NOTE: Having top level document (docs/index.rst) is not recommended.
276         #       It may cause conflicts with other docs (mostly with HTML
277         #       folders for contents in top level docs and other document
278         #       folders). But, let's try merge of those contents into the top
279         #       docs directory.
280         (
281             cd $output
282             find . -type d -print | xargs -I d mkdir -p ../d
283             find . -type f -print | xargs -I f mv -b f ../f
284         )
285         rm -rf "$output"
286     fi
287
288 done
289
290 deactivate