support pre-hook in docs-build.sh
[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 check_rst_doc $DOCS_DIR
177
178 if [[ ! -d "$OPNFVDOCS_DIR" ]] ; then
179     echo "Error: $OPNFVDOCS_DIR dir not found."
180     echo "See http://artifacts.opnfv.org/opnfvdocs/docs/how-to-use-docs ."
181     exit 1
182 fi
183
184 prepare_src_files
185
186 if ! which virtualenv > /dev/null ; then
187     echo "Error: 'virtualenv' not found. Exec 'sudo pip install virtualenv' first."
188     exit 1
189 fi
190
191 virtualenv "$VENV_DIR"
192 source "$VENV_DIR/bin/activate"
193
194 if [ -e "$DOCS_DIR/pre-hook.sh" ]; then
195     source "$DOCS_DIR/pre-hook.sh"
196 fi
197
198 pip install -r "$OPNFVDOCS_DIR/etc/requirements.txt"
199
200 find $DOCS_DIR -name $INDEX_RST -printf '%h\n' | while read dir
201 do
202     name=$(generate_name $dir)
203     if is_top_dir "$dir" ; then
204         src="$SRC_DIR"
205     else
206         src="$SRC_DIR/${dir#$DOCS_DIR/}"
207     fi
208     build="$BUILD_DIR/$name"
209     output="$OUTPUT_DIR/$name"
210
211     echo
212     echo "#################${dir//?/#}"
213     echo "Building DOCS in $dir"
214     echo "#################${dir//?/#}"
215     echo
216
217     prepare_config "$src" "$name"
218     cp -f $opnfv_logo "$src/opnfv-logo.png"
219
220     mkdir -p "$output"
221
222     sphinx-build -b html -t html -E "$src" "$output"
223
224     # Note: PDF creation may fail in project doc builds.
225     #       We allow this build job to be marked as succeeded with
226     #       failure in PDF creation, but leave message to fix it.
227     #       Any failure has to be fixed before OPNFV B release.
228     {
229         sphinx-build -b latex -t pdf -E "$src" "$build" && \
230             make -C "$build" LATEXOPTS='--interaction=nonstopmode' all-pdf
231     } && {
232         mv "$build/$name.pdf" "$output"
233     } || {
234         msg="Error: PDF creation for $dir has failed, please fix source rst file(s)."
235         echo
236         echo "$msg"
237         echo
238         if [ -n "$GERRIT_COMMENT" ]; then
239             echo "$msg" >> "$GERRIT_COMMENT"
240         fi
241     }
242
243     # TODO: failures in ODT creation should be handled error and
244     #       cause 'exit 1' before OPNFV B release.
245     tex=$(find $build -name '*.tex' | head -1)
246     odt="${tex%.tex}.odt"
247     if [[ -e $tex ]] && which pandoc > /dev/null ; then
248         (
249             cd $(dirname $tex)
250             pandoc $(basename $tex) -o $(basename $odt)
251         ) && {
252             mv $odt $output/
253         }|| {
254             msg="Error: ODT creation for $dir has failed."
255             echo
256             echo "$msg"
257             echo
258         }
259     else
260         echo "Warn: tex file and/or 'pandoc' are not found, skip ODT creation."
261     fi
262
263     if is_top_dir "$dir" ; then
264         # NOTE: Having top level document (docs/index.rst) is not recommended.
265         #       It may cause conflicts with other docs (mostly with HTML
266         #       folders for contents in top level docs and other document
267         #       folders). But, let's try merge of those contents into the top
268         #       docs directory.
269         (
270             cd $output
271             find . -type d -print | xargs -I d mkdir -p ../d
272             find . -type f -print | xargs -I f mv -b f ../f
273         )
274         rm -rf "$output"
275     fi
276
277 done
278
279 deactivate