-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmake_latex_diff.py
executable file
·94 lines (78 loc) · 3.47 KB
/
make_latex_diff.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
#!/usr/bin/env python
"""
Script to obtain and build latex difference for a file under git version
control with output to pdf.
Phillip J. Wolfram
04/27/2016
"""
import os.path
import shlex
import subprocess as sp
def rmtrash(afile):
if os.path.isfile(afile):
from send2trash import send2trash
# pip -v install git+ssh://[email protected]/hsoft/send2trash
send2trash(afile)
def highlight_output(txt):
print '================================================================================'
print txt
print '================================================================================'
def redirect_cmd_to_file(cmd, outfile):
highlight_output('Running command: \n' + cmd + ' > ' + outfile)
assert not os.path.isfile(outfile), 'File ' + outfile + ' already exists!'
with open(outfile, 'w') as ofile:
sp.call(shlex.split(cmd), stdout=ofile)
def run_cmd(cmd):
highlight_output('Running command: \n' + cmd)
try:
proc = sp.check_output(shlex.split(cmd), stderr=sp.STDOUT)
except sp.CalledProcessError:
# There was an error - command exited with non-zero code
print proc
def build_latex_pdf(afile):
buildorder = ['pdflatex', 'bibtex', 'pdflatex', 'pdflatex']
filefilter = [('', ''), ('.tex', '.aux'), ('', ''), ('', '')]
for astep, afilter in zip(buildorder, filefilter):
cmd = astep + ' ' + afile.replace(afilter[0], afilter[1])
run_cmd(cmd)
def make_diff_pdf(githash, afile, basefile, difffile, build=True):
# get previous file based on hash
cmd = 'git show ' + githash + ':' + afile
redirect_cmd_to_file(cmd, basefile)
# get latex diff'd file
cmd = 'latexdiff --append-context2cmd="abstract" --math-markup=0 ' + basefile + ' ' + afile
#cmd = 'latexdiff --append-context2cmd="abstract" ' + basefile + ' ' + afile
redirect_cmd_to_file(cmd, difffile)
# make pdf from file
if build:
build_latex_pdf(difffile)
highlight_output('Built pdf for latex difference: ' + difffile.replace('tex', 'pdf'))
if __name__ == "__main__":
import argparse
parser = argparse.ArgumentParser(description=__doc__,
formatter_class=argparse.RawTextHelpFormatter)
parser.add_argument("-l", "--githash", dest="githash",
help="git hash from log for difference")
parser.add_argument("-f", "--file", dest="afile",
help="latex file that should be differenced")
parser.add_argument("-b", "--basefile", dest="basefile", default='base.tex',
help="Filename for hashed file retrieved from repo")
parser.add_argument("-o", "--outfile", dest="outfile", default='diff.tex',
help="Name of file to save result from 'latexdiff'")
parser.add_argument("-c", "--clean", dest='clean', action='store_true',
help="Overwrite existing basefile and outfiles," \
+ "defaults of base.texi and diff.tex")
parser.add_argument("-s", "--skip", dest='build', action='store_false',
help="Skip building latex file")
parser.set_defaults(clean=False)
parser.set_defaults(build=True)
args = parser.parse_args()
if args.githash is None:
parser.error('Must specify githash')
if args.afile is None:
parser.error('Must file for comparison')
if args.clean:
rmtrash(args.basefile)
rmtrash(args.outfile)
make_diff_pdf(args.githash, args.afile, args.basefile, args.outfile, args.build)
# vim: foldmethod=marker ai ts=4 sts=4 et sw=4 ft=python