-
Notifications
You must be signed in to change notification settings - Fork 526
/
build_ebook.py
executable file
·241 lines (185 loc) · 6.96 KB
/
build_ebook.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
236
237
238
239
240
241
"""Generate EPUB and PDF ebooks from sources."""
from datetime import datetime
import json
import logging
from pathlib import Path
import re
from tempfile import TemporaryDirectory
import subprocess
from dataclasses import dataclass
from subprocess import CalledProcessError
from re import Match
import shutil
logging.basicConfig(
format="%(asctime)s %(levelname)-8s %(message)s",
level=logging.INFO,
datefmt="%Y-%m-%d %H:%M:%S",
)
def convert_images(images_dir: Path, converted_image_dir: Path) -> None:
"""Convert all SVG images to PNGs."""
if not converted_image_dir.exists():
converted_image_dir.mkdir()
for source_file in images_dir.glob("*"):
if source_file.suffix == ".svg":
dest_file = converted_image_dir / source_file.with_suffix(".png").name
try:
subprocess.check_output(
[
"inkscape",
f"--export-filename={dest_file.as_posix()}",
source_file.as_posix(),
],
stderr=subprocess.STDOUT,
)
except FileNotFoundError:
raise RuntimeError(
f"failed to convert {source_file.name} to {dest_file.name}: "
"inkscape not installed"
)
except CalledProcessError as e:
raise RuntimeError(
f"failed to convert {source_file.name} to {dest_file.name}: "
f"inkscape failed: {e.output.decode()}"
)
else:
shutil.copy(source_file, converted_image_dir / source_file.name)
return converted_image_dir
@dataclass
class MarkdownChapter:
title: str
depth: int
contents: str
def find_markdown_chapters(markdown_dir: Path) -> list[Path]:
"""Find all Markdown files and interpret them as chapters."""
markdown_entries = list(markdown_dir.rglob("*"))
markdown_entries.sort()
markdown_chapters = []
for markdown_path in markdown_entries:
# Skip privacy policy (regardless of language)
if markdown_path.name.startswith("95_"):
continue
title = markdown_path.stem.partition("_")[-1].replace("_", " ")
depth = len(markdown_path.relative_to(markdown_dir).parts) - 1
markdown_chapters.append(
MarkdownChapter(
title=title,
depth=depth,
contents=markdown_path.read_text() if markdown_path.is_file() else "",
)
)
return markdown_chapters
def generate_markdown_preface() -> str:
current_date = datetime.now().strftime("%B %Y")
return "\n".join(
[
"% Vulkan Tutorial",
"% Alexander Overvoorde",
f"% {current_date}",
]
)
def generate_markdown_chapter(
chapter: MarkdownChapter, converted_image_dir: Path
) -> str:
contents = f"# {chapter.title}\n\n{chapter.contents}"
# Adjust titles based on depth of chapter itself
if chapter.depth > 0:
def adjust_title_depth(match: Match) -> str:
return ("#" * chapter.depth) + match.group(0)
contents = re.sub(r"#+ ", adjust_title_depth, contents)
# Fix image links
contents = contents.replace("/images/", f"{converted_image_dir.as_posix()}/")
contents = contents.replace(".svg", ".png")
# Fix remaining relative links
contents = contents.replace("(/code", "(https://vulkan-tutorial.com/code")
contents = contents.replace("(/resources", "(https://vulkan-tutorial.com/resources")
# Fix chapter references
def fix_chapter_reference(match: Match) -> str:
target = match.group(1).lower().replace("_", "-").split("/")[-1]
return f"](#{target})"
contents = re.sub(r"\]\(!([^)]+)\)", fix_chapter_reference, contents)
return contents
def compile_full_markdown(
markdown_dir: Path, markdown_file: Path, converted_image_dir: Path
) -> Path:
"""Combine Markdown source files into one large file."""
markdown_fragments = [generate_markdown_preface()]
for chapter in find_markdown_chapters(markdown_dir):
markdown_fragments.append(
generate_markdown_chapter(chapter, converted_image_dir)
)
markdown_file.write_text("\n\n".join(markdown_fragments))
return markdown_file
def build_pdf(markdown_file: Path, pdf_file: Path) -> Path:
"""Build combined Markdown file into a PDF."""
try:
subprocess.check_output(["xelatex", "--version"])
except FileNotFoundError:
raise RuntimeError(f"failed to build {pdf_file}: xelatex not installed")
try:
subprocess.check_output(
[
"pandoc",
markdown_file.as_posix(),
"-V",
"documentclass=report",
"-t",
"latex",
"-s",
"--toc",
"--listings",
"-H",
"ebook/listings-setup.tex",
"-o",
pdf_file.as_posix(),
"--pdf-engine=xelatex",
]
)
except CalledProcessError as e:
raise RuntimeError(
f"failed to build {pdf_file}: pandoc failed: {e.output.decode()}"
)
return pdf_file
def build_epub(markdown_file: Path, epub_file: Path) -> Path:
try:
subprocess.check_output(
[
"pandoc",
markdown_file.as_posix(),
"--toc",
"-o",
epub_file.as_posix(),
"--epub-cover-image=ebook/cover.png",
]
)
except CalledProcessError as e:
raise RuntimeError(
f"failed to build {epub_file}: pandoc failed: {e.output.decode()}"
)
return epub_file
def main() -> None:
"""Build ebooks."""
with TemporaryDirectory() as raw_out_dir:
out_dir = Path(raw_out_dir)
logging.info("converting svg images to png...")
converted_image_dir = convert_images(
Path("images"), out_dir / "converted_images"
)
languages = json.loads(Path("config.json").read_text())["languages"].keys()
logging.info(f"building ebooks for languages {'/'.join(languages)}")
for lang in languages:
logging.info(f"{lang}: generating markdown...")
markdown_file = compile_full_markdown(
Path(lang), out_dir / f"{lang}.md", converted_image_dir
)
logging.info(f"{lang}: building pdf...")
pdf_file = build_pdf(markdown_file, out_dir / f"{lang}.pdf")
logging.info(f"{lang}: building epub...")
epub_file = build_epub(markdown_file, out_dir / f"{lang}.epub")
shutil.copy(pdf_file, f"ebook/vulkan_tutorial_{lang}.pdf")
shutil.copy(epub_file, f"ebook/vulkan_tutorial_{lang}.epub")
logging.info("done")
if __name__ == "__main__":
try:
main()
except RuntimeError as e:
logging.error(str(e))