forked from python/docsbuild-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild_docs.py
235 lines (212 loc) · 8.72 KB
/
build_docs.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
#!/usr/bin/env python3
# Runs a build of the Python docs for various branches.
#
# Usage:
#
# build_docs.py [-h] [-d] [-q] [-b 3.6] [-r BUILD_ROOT] [-w WWW_ROOT]
# [--devguide-checkout DEVGUIDE_CHECKOUT]
# [--devguide-target DEVGUIDE_TARGET]
#
# Without any arguments builds docs for all branches configured in the
# global BRANCHES value, ignoring the -d flag as it's given in the
# BRANCHES configuration.
#
# -q selects "quick build", which means to build only HTML.
#
# -d allow the docs to be built even if the branch is in
# development mode (i.e. version contains a, b or c).
#
# This script was originally created and by Georg Brandl in March 2010. Modified
# by Benjamin Peterson to do CDN cache invalidation.
import getopt
import logging
import os
import subprocess
import sys
BRANCHES = [
# version, isdev
(3.5, False),
(3.6, True),
(3.7, True),
(2.7, False)
]
def _file_unchanged(old, new):
with open(old, "rb") as fp1, open(new, "rb") as fp2:
st1 = os.fstat(fp1.fileno())
st2 = os.fstat(fp2.fileno())
if st1.st_size != st2.st_size:
return False
if st1.st_mtime >= st2.st_mtime:
return True
while True:
one = fp1.read(4096)
two = fp2.read(4096)
if one != two:
return False
if one == b"":
break
return True
def shell_out(cmd):
logging.debug("Running command %r", cmd)
try:
subprocess.check_output(cmd, shell=True, stdin=subprocess.PIPE, stderr=subprocess.STDOUT)
except subprocess.CalledProcessError as e:
logging.error("command failed with output %r", e.output.decode("utf-8"))
raise
def changed_files(directory, other):
logging.info("Computing changed files")
changed = []
if directory[-1] != '/':
directory += '/'
for dirpath, dirnames, filenames in os.walk(directory):
dir_rel = dirpath[len(directory):]
for fn in filenames:
local_path = os.path.join(dirpath, fn)
rel_path = os.path.join(dir_rel, fn)
target_path = os.path.join(other, rel_path)
if (os.path.exists(target_path) and
not _file_unchanged(target_path, local_path)):
changed.append(rel_path)
return changed
def build_one(version, isdev, quick, sphinxbuild, build_root, www_root,
skip_cache_invalidation=False, group='docs', git=False,
log_directory='/var/log/docsbuild/'):
checkout = build_root + "/python" + str(version).replace('.', '')
target = www_root + "/" + str(version)
logging.info("Doc autobuild started in %s", checkout)
os.chdir(checkout)
logging.info("Updating checkout")
if git:
shell_out("git reset --hard HEAD")
shell_out("git pull --ff-only")
else:
shell_out("hg pull -u")
maketarget = "autobuild-" + ("dev" if isdev else "stable") + ("-html" if quick else "")
logging.info("Running make %s", maketarget)
logname = os.path.basename(checkout) + ".log"
shell_out("cd Doc; make SPHINXBUILD=%s %s >> %s 2>&1" %
(sphinxbuild, maketarget, os.path.join(log_directory, logname)))
changed = changed_files(os.path.join(checkout, "Doc/build/html"), target)
logging.info("Copying HTML files to %s", target)
shell_out("chown -R :{} Doc/build/html/".format(group))
shell_out("chmod -R o+r Doc/build/html/")
shell_out("find Doc/build/html/ -type d -exec chmod o+x {} ';'")
shell_out("cp -a Doc/build/html/* %s" % target)
if not quick:
logging.debug("Copying dist files")
shell_out("chown -R :{} Doc/dist/".format(group))
shell_out("chmod -R o+r Doc/dist/")
shell_out("mkdir -m o+rx -p %s/archives" % target)
shell_out("chown :{} {}/archives".format(group, target))
shell_out("cp -a Doc/dist/* %s/archives" % target)
changed.append("archives/")
for fn in os.listdir(os.path.join(target, "archives")):
changed.append("archives/" + fn)
logging.info("%s files changed", len(changed))
if changed and not skip_cache_invalidation:
target_ino = os.stat(target).st_ino
targets_dir = os.path.dirname(target)
prefixes = []
for fn in os.listdir(targets_dir):
if os.stat(os.path.join(targets_dir, fn)).st_ino == target_ino:
prefixes.append(fn)
to_purge = prefixes[:]
for prefix in prefixes:
to_purge.extend(prefix + "/" + p for p in changed)
logging.info("Running CDN purge")
shell_out("curl -X PURGE \"https://docs.python.org/{%s}\"" % ",".join(to_purge))
logging.info("Finished %s", checkout)
def build_devguide(devguide_checkout, devguide_target, sphinxbuild,
skip_cache_invalidation=False):
build_directory = os.path.join(devguide_checkout, "build/html")
logging.info("Building devguide")
shell_out("git -C %s pull" % (devguide_checkout,))
shell_out("%s %s %s" % (sphinxbuild, devguide_checkout, build_directory))
changed = changed_files(build_directory, devguide_target)
shell_out("mkdir -p {}".format(devguide_target))
shell_out("find %s -type d -exec chmod o+x {} ';'" % (build_directory,))
shell_out("cp -a {}/* {}".format(build_directory, devguide_target))
shell_out("chmod -R o+r %s" % (devguide_target,))
if changed and not skip_cache_invalidation:
prefix = os.path.basename(devguide_target)
to_purge = [prefix]
to_purge.extend(prefix + "/" + p for p in changed)
logging.info("Running CDN purge")
shell_out("curl -X PURGE \"https://docs.python.org/{%s}\"" % ",".join(to_purge))
def parse_args():
from argparse import ArgumentParser
parser = ArgumentParser(
description="Runs a build of the Python docs for various branches.")
parser.add_argument(
"-d", "--devel",
action="store_true",
help="Use make autobuild-dev instead of autobuild-stable")
parser.add_argument(
"-q", "--quick",
action="store_true",
help="Make HTML files only (Makefile rules suffixed with -html).")
parser.add_argument(
"-b", "--branch",
metavar=3.6,
type=float,
help="Version to build (defaults to all maintained branches).")
parser.add_argument(
"-r", "--build-root",
help="Path to a directory containing a checkout per branch.",
default="/srv/docsbuild")
parser.add_argument(
"-w", "--www-root",
help="Path where generated files will be copied.",
default="/srv/docs.python.org")
parser.add_argument(
"--devguide-checkout",
help="Path to a devguide checkout.",
default="/srv/docsbuild/devguide")
parser.add_argument(
"--devguide-target",
help="Path where the generated devguide should be copied.",
default="/srv/docs.python.org/devguide")
parser.add_argument(
"--skip-cache-invalidation",
help="Skip fastly cache invalidation.",
action="store_true")
parser.add_argument(
"--group",
help="Group files on targets and www-root file should get.",
default="docs")
parser.add_argument(
"--git",
help="Use git instead of mercurial.",
action="store_true")
parser.add_argument(
"--log-directory",
help="Directory used to store logs.",
default="/var/log/docsbuild/")
return parser.parse_args()
if __name__ == '__main__':
args = parse_args()
if sys.stderr.isatty():
logging.basicConfig(format="%(levelname)s:%(message)s",
stream=sys.stderr)
else:
logging.basicConfig(format="%(levelname)s:%(asctime)s:%(message)s",
filename=os.path.join(args.log_directory,
"docsbuild.log"))
logging.root.setLevel(logging.DEBUG)
sphinxbuild = os.path.join(args.build_root, "environment/bin/sphinx-build")
try:
if args.branch:
build_one(args.branch, args.devel, args.quick, sphinxbuild,
args.build_root, args.www_root,
args.skip_cache_invalidation,
args.group, args.git, args.log_directory)
else:
for version, devel in BRANCHES:
build_one(version, devel, args.quick, sphinxbuild,
args.build_root, args.www_root,
args.skip_cache_invalidation, args.group, args.git,
args.log_directory)
build_devguide(args.devguide_checkout, args.devguide_target,
sphinxbuild, args.skip_cache_invalidation)
except Exception:
logging.exception("docs build raised exception")