Merge "fix doc-build.sh to support referring to other dirs"
[releng.git] / utils / docs-build.sh
1 #!/bin/bash -e
2
3 export PATH=$PATH:/usr/local/bin/
4
5
6 SRC_DIR=${SRC_DIR:-docs}
7 INDEX_RST=${INDEX_RST:-index.rst}
8 BUILD_DIR=${BUILD_DIR:-build}
9 OUTPUT_DIR=${OUTPUT_DIR:-output}
10 RELENG_DIR=${RELENG_DIR:-releng}
11 GERRIT_COMMENT=${GERRIT_COMMENT:-}
12
13 get_title_script="
14 import os
15 from docutils import core, nodes
16
17 try:
18     with open('index.rst', 'r') as file:
19         data = file.read()
20     doctree = core.publish_doctree(data,
21         settings_overrides={'report_level': 5,
22                             'halt_level': 5})
23     if isinstance(doctree[0], nodes.title):
24         title = doctree[0]
25     else:
26         for c in doctree.children:
27             if isinstance(c, nodes.section):
28                 title = c[0]
29                 break
30     print title.astext()
31 except:
32     print 'None'"
33 revision="$(git rev-parse --short HEAD)"
34 rev_full="$(git rev-parse HEAD)"
35 version="$(git describe --abbrev=0 2> /dev/null || echo draft) ($revision)"
36 project="$(basename $(git rev-parse --show-toplevel))"
37 html_notes="\n    Revision: $rev_full\n\n    Build date: |today|"
38 default_conf='releng/docs/etc/conf.py'
39 opnfv_logo='releng/docs/etc/opnfv-logo.png'
40
41 function check_rst_doc() {
42     _src="$1"
43
44     if ! which doc8 > /dev/null ; then
45         echo "Error: 'doc8' not found. Exec 'sudo pip install doc8' first."
46         exit 1
47     fi
48     # Note: This check may fail in many jobs for building project docs, since
49     #       the old sample has lines more than 120. We ignore failures on this
50     #       check right now, but these have to be fixed before OPNFV B release.
51     _out=$(doc8 --max-line-length 120 --ignore D000 "$_src") || {
52         _msg='Error: rst validatino (doc8) has failed, please fix the following error(s).'
53         _errs=$(echo "$_out" | sed -n -e "/^$_src/s/^/    /p")
54         echo
55         echo -e "$_msg\n$_errs"
56         echo
57         [[ -n "$GERRIT_COMMENT" ]] && echo -e "$_msg\n$_errs" >> "$GERRIT_COMMENT"
58     }
59 }
60
61 function add_html_notes() {
62     _src="$1"
63
64     if grep -e ' _sha1_' "$_src"/*.rst ; then
65         # TODO: remove this, once old templates were removed from all repos.
66         echo
67         echo "Warn: '_sha1_' was found, use the latest document template."
68         echo "      See https://wiki.opnfv.org/documentation/tools ."
69         echo
70         sed -i "s/ _sha1_/ $git_sha1/g" "$_src"/*.rst
71     fi
72     sed -i -e "\$a\\\n.. only:: html\n$html_notes" "$_src"/*.rst
73 }
74
75 function prepare_src_files() {
76     mkdir -p "$BUILD_DIR"
77     [[ -e "$BUILD_DIR/src" ]] && rm -rf "$BUILD_DIR/src"
78     cp -r "$SRC_DIR" "$BUILD_DIR/src"
79     add_html_notes "$BUILD_DIR/src"
80 }
81
82 function add_config() {
83     _conf="$1"
84     _param="$2"
85     _val="$3"
86
87     if ! grep -q -e "^$_param = " "$_conf" ; then
88         echo "Adding '$_param' into $_conf ..."
89         echo "$_param = $_val" >> "$_conf"
90     fi
91 }
92
93 function is_top_dir() {
94     [[ "$1" == "$SRC_DIR" ]]
95 }
96
97 function generate_name_for_top_dir() {
98     for suffix in '' '.top' '.all' '.master' '_' '__' '___'
99     do
100         _name="$(basename $SRC_DIR)$suffix"
101         [[ -e "$SRC_DIR/$_name" ]] && continue
102         echo "$_name"
103         return
104     done
105
106     echo "Error: cannot find name for top directory [$SRC_DIR]"
107     exit 1
108 }
109
110 function generate_name() {
111     _dir=$1
112
113     if is_top_dir "$_dir" ; then
114         _name=$(generate_name_for_top_dir $SRC_DIR)
115     else
116         _name="${_dir#$SRC_DIR/}"
117     fi
118     # Replace '/' by '_'
119     echo "${_name////_}"
120 }
121
122
123 check_rst_doc $SRC_DIR
124
125 if [[ ! -d "$RELENG_DIR" ]] ; then
126     echo "Error: $RELENG_DIR dir not found. See https://wiki.opnfv.org/documentation/tools ."
127     exit 1
128 fi
129
130 prepare_src_files
131
132 find $SRC_DIR -name $INDEX_RST -printf '%h\n' | while read dir
133 do
134     name=$(generate_name $dir)
135     src="$BUILD_DIR/src${dir#$SRC_DIR}"
136     build="$BUILD_DIR/$name"
137     output="$OUTPUT_DIR/$name"
138     conf="$src/conf.py"
139
140     echo
141     echo "#################${dir//?/#}"
142     echo "Building DOCS in $dir"
143     echo "#################${dir//?/#}"
144     echo
145
146     [[ ! -f "$conf" ]] && cp "$default_conf" "$conf"
147     title=$(cd $src; python -c "$get_title_script")
148     latex_conf="[('index', '$name.tex', \"$title\", 'OPNFV', 'manual'),]"
149     add_config "$conf" 'latex_documents' "$latex_conf"
150     add_config "$conf" 'release' "u'$version'"
151     add_config "$conf" 'version' "u'$version'"
152     add_config "$conf" 'project' "u'$project'"
153     add_config "$conf" 'copyright' "u'$(date +%Y), OPNFV'"
154     cp -f $opnfv_logo "$src/opnfv-logo.png"
155
156     mkdir -p "$output"
157
158     sphinx-build -b html -t html -E "$src" "$output"
159
160     # Note: PDF creation may fail in project doc builds.
161     #       We allow this build job to be marked as succeeded with
162     #       failure in PDF creation, but leave message to fix it.
163     #       Any failure has to be fixed before OPNFV B release.
164     {
165         sphinx-build -b latex -t pdf -E "$src" "$build" && \
166             make -C "$build" LATEXOPTS='--interaction=nonstopmode' all-pdf
167     } && {
168         mv "$build/$name.pdf" "$output"
169     } || {
170         msg="Error: PDF creation for $dir has failed, please fix source rst file(s)."
171         echo
172         echo "$msg"
173         echo
174         [[ -n "$GERRIT_COMMENT" ]] && echo "$msg" >> "$GERRIT_COMMENT"
175     }
176
177     if is_top_dir "$dir" ; then
178         mv "$output"/* "$OUTPUT_DIR"/
179         rm -rf "$output"
180     fi
181
182 done