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
|
import asyncio
import asyncio.subprocess as subprocess
import contextlib
import hashlib
import os
import shlex
import shutil
from aiofile import async_open
@contextlib.contextmanager
def temp_dir(path: str):
os.mkdir(path)
try:
yield path
finally:
shutil.rmtree(path)
class TexGenerationError(Exception):
pass
class TexGenerator:
def __init__(self, storage_path: str, temp_path: str, task_timeout):
self._storage_path = os.path.abspath(storage_path)
self._temp_path = os.path.abspath(temp_path)
self._task_timeout = task_timeout
for p in (self._temp_path, self._storage_path):
try:
os.mkdir(p)
except FileExistsError:
pass
async def xelatex(self, tex_source: str) -> str:
tex_hash = hashlib.sha256(tex_source.encode('utf-8')).hexdigest()
cache_file_path = os.path.join(self._storage_path, f'{tex_hash}.pdf')
if os.path.exists(cache_file_path):
return cache_file_path
with temp_dir(os.path.join(self._temp_path, os.urandom(24).hex())) as workdir:
job_name = 'texput'
tex_file_path = os.path.join(workdir, f'{job_name}.tex')
async with async_open(tex_file_path, 'w', encoding='utf-8') as f:
await f.write(tex_source)
proc = await subprocess.create_subprocess_exec(
*[
'xelatex',
'-interaction=nonstopmode',
'-halt-on-error',
tex_file_path,
],
cwd=workdir,
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
)
try:
await asyncio.wait_for(proc.wait(), timeout=10)
except TimeoutError:
raise TexGenerationError('xelatex timed out')
if proc.returncode != 0:
raise TexGenerationError(f'xelatex process exited with non-zero code {proc.returncode}')
os.system(' '.join([
'mv',
shlex.quote(os.path.join(workdir, f'{job_name}.pdf')),
shlex.quote(cache_file_path),
]))
return cache_file_path
|