blob: c2c8e985c65321e6d0692fc94cc1bb901a8bd4fe [file] [log] [blame]
David Chen3f697512016-05-09 08:46:21 +00001#!/bin/bash
2# Copyright 2016 The Bazel Authors. All rights reserved.
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16set -eu
17
18readonly OUTPUT=${PWD}/$1
19shift
20readonly JEKYLL_BASE=${PWD}/$1
21shift
22readonly SKYLARK_RULE_DOCS=${PWD}/$1
23shift
24readonly BE_ZIP=${PWD}/$1
25shift
26readonly SL_ZIP=${PWD}/$1
Ulf Adams9e24ebd2016-06-23 09:24:57 +000027shift
28readonly CLR_HTML=${PWD}/$1
David Chen3f697512016-05-09 08:46:21 +000029
30# Create temporary directory that is removed when this script exits.
Damien Martin-Guillerez7ac7a152016-05-25 13:30:38 +000031readonly TMP=$(mktemp -d "${TMPDIR:-/tmp}/tmp.XXXXXXXX")
David Chen3f697512016-05-09 08:46:21 +000032readonly OUT_DIR="$TMP/out"
33trap "rm -rf ${TMP}" EXIT
34
35function setup {
36 mkdir -p "$OUT_DIR"
37 cd "$OUT_DIR"
38 tar -xf "${JEKYLL_BASE}"
39}
40
41# Unpack the Build Encyclopedia into docs/be
42function unpack_build_encyclopedia {
David Chen15c09dd2016-08-29 08:56:37 +000043 local be_dir="$OUT_DIR/versions/master/docs/be"
David Chen3f697512016-05-09 08:46:21 +000044 mkdir -p "$be_dir"
45 unzip -qq "$BE_ZIP" -d "$be_dir"
46 mv "$be_dir/be-nav.html" "$OUT_DIR/_includes"
David Chen15c09dd2016-08-29 08:56:37 +000047
48 # Create redirects to each page in the Build Encyclopedia.
49 mkdir -p "$OUT_DIR/docs/be"
50 for f in $(find "$OUT_DIR/versions/master/docs/be" -name "*.html"); do
51 local filename=$(basename "$f")
Klaus Aehlig8e138f92016-08-29 12:56:13 +000052 cat > "$OUT_DIR/docs/be/${filename}" <<EOF
David Chen15c09dd2016-08-29 08:56:37 +000053---
54layout: redirect
55redirect: docs/be/${filename}
56---
57EOF
58 done
David Chen3f697512016-05-09 08:46:21 +000059}
60
61# Unpack the Skylark Library into docs/skylark/lib
62function unpack_skylark_library {
David Chen15c09dd2016-08-29 08:56:37 +000063 local sl_dir="$OUT_DIR/versions/master/docs/skylark/lib"
David Chen3f697512016-05-09 08:46:21 +000064 mkdir -p "$sl_dir"
65 unzip -qq "$SL_ZIP" -d "$sl_dir"
66 mv "$sl_dir/skylark-nav.html" "$OUT_DIR/_includes"
David Chen15c09dd2016-08-29 08:56:37 +000067
68 # Create redirects to each page in the Skylark Library
69 mkdir -p "$OUT_DIR/docs/skylark/lib"
70 for f in $(find "$OUT_DIR/versions/master/docs/skylark/lib" -name "*.html"); do
71 local filename=$(basename "$f")
Klaus Aehlig8e138f92016-08-29 12:56:13 +000072 cat > "$OUT_DIR/docs/skylark/lib/${filename}" <<EOF
David Chen15c09dd2016-08-29 08:56:37 +000073---
74layout: redirect
75redirect: docs/skylark/lib/${filename}
76---
77EOF
78 done
David Chen3f697512016-05-09 08:46:21 +000079}
80
81function copy_skylark_rule_doc {
82 local rule_family=$1
83 local rule_family_name=$2
David Chen15c09dd2016-08-29 08:56:37 +000084 local be_dir="$OUT_DIR/versions/master/docs/be"
David Chen3f697512016-05-09 08:46:21 +000085
86 ( cat <<EOF
87---
88layout: documentation
89title: ${rule_family_name} Rules
90---
91EOF
92 cat "$TMP/skylark/$rule_family/README.md"; ) > "$be_dir/${rule_family}.md"
93}
94
95function unpack_skylark_rule_docs {
96 local tmp_dir=$TMP/skylark
97 mkdir -p $tmp_dir
98 cd "$tmp_dir"
99 tar -xf "${SKYLARK_RULE_DOCS}"
100 copy_skylark_rule_doc docker "Docker"
101 copy_skylark_rule_doc pkg "Packaging"
102}
103
104function process_doc {
105 local f=$1
106 local tempf=$(mktemp -t bazel-doc-XXXXXX)
107
108 chmod +w $f
109 cat "$f" | sed 's,\.md,.html,g;s,Blaze,Bazel,g;s,blaze,bazel,g' > "$tempf"
110 cat "$tempf" > "$f"
111}
112
113function process_docs {
David Chena4ddb852016-08-31 15:35:33 +0000114 for f in $(find "$OUT_DIR/versions/master/docs" -name "*.html"); do
David Chen3f697512016-05-09 08:46:21 +0000115 process_doc $f
116 done
David Chena4ddb852016-08-31 15:35:33 +0000117 for f in $(find "$OUT_DIR/versions/master/docs" -name "*.md"); do
118 process_doc $f
119 done
120 for f in $(find "$OUT_DIR/designs" -name "*.md"); do
David Chen3f697512016-05-09 08:46:21 +0000121 process_doc $f
122 done
123}
124
125function package_output {
126 cd "$OUT_DIR"
127 tar -hcf $OUTPUT $(find . -type f | sort)
128}
129
130function main {
131 setup
132 unpack_build_encyclopedia
133 unpack_skylark_library
134 unpack_skylark_rule_docs
David Chena4ddb852016-08-31 15:35:33 +0000135 cp ${CLR_HTML} ${OUT_DIR}/versions/master/docs
David Chen3f697512016-05-09 08:46:21 +0000136 process_docs
137 package_output
138}
139main