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 242 243 244 245 246 247 248 249 250 251 252
|
#! /usr/bin/env python
# encoding: utf-8
#! /usr/bin/env python
# encoding: utf-8
# Thomas Nagy, 2006 (ita)
"TeX/LaTeX/PDFLaTeX support"
import os, re
import Utils, Params, Action, Object, Runner, Scan
from Params import error, warning, debug, fatal
re_tex = re.compile(r'\\(?P<type>include|import|bringin){(?P<file>[^{}]*)}', re.M)
class tex_scanner(Scan.scanner):
def __init__(self):
Scan.scanner.__init__(self)
def scan(self, task, node):
env = task.env()
nodes = []
names = []
if not node: return (nodes, names)
fi = open(node.abspath(env), 'r')
code = fi.read()
fi.close()
curdirnode = task.curdirnode
abs = curdirnode.abspath()
for match in re_tex.finditer(code):
path = match.group('file')
if path:
for k in ['', '.tex', '.ltx']:
# add another loop for the tex include paths?
debug("trying %s%s" % (path, k), 'tex')
try:
os.stat(abs+os.sep+path+k)
except OSError:
continue
found = path+k
node = curdirnode.find_source(found)
if node:
nodes.append(node)
else:
debug('could not find %s' % path, 'tex')
names.append(path)
debug("found the following : %s and names %s" % (nodes, names), 'tex')
return (nodes, names)
g_tex_scanner = tex_scanner()
g_bibtex_re = re.compile('bibdata', re.M)
def tex_build(task, command='LATEX'):
env = task.env()
if env['PROMPT_LATEX']:
exec_cmd = Runner.exec_command_interact
com = '%s %s' % (env[command], env.get_flat(command+'FLAGS'))
else:
exec_cmd = Runner.exec_command
com = '%s %s %s' % (env[command], env.get_flat(command+'FLAGS'), '-interaction=batchmode')
node = task.m_inputs[0]
reldir = node.bld_dir(env)
srcfile = node.srcpath(env)
lst = []
for c in Utils.split_path(reldir):
if c: lst.append('..')
sr = os.path.join(*(lst + [srcfile]))
sr2 = os.path.join(*(lst + [node.m_parent.srcpath(env)]))
aux_node = node.change_ext('.aux')
idx_node = node.change_ext('.idx')
hash = ''
old_hash = ''
nm = aux_node.m_name
docuname = nm[ : len(nm) - 4 ] # 4 is the size of ".aux"
latex_compile_cmd = 'cd %s && TEXINPUTS=%s:$TEXINPUTS %s %s' % (reldir, sr2, com, sr)
warning('first pass on %s' % command)
ret = exec_cmd(latex_compile_cmd)
if ret: return ret
# look in the .aux file if there is a bibfile to process
try:
file = open(aux_node.abspath(env), 'r')
ct = file.read()
file.close()
except (OSError, IOError):
error('erreur bibtex scan')
else:
fo = g_bibtex_re.findall(ct)
# yes, there is a .aux file to process
if fo:
bibtex_compile_cmd = 'cd %s && BIBINPUTS=%s:$BIBINPUTS %s %s' % (reldir, sr2, env['BIBTEX'], docuname)
warning('calling bibtex')
ret = exec_cmd(bibtex_compile_cmd)
if ret:
error('error when calling bibtex %s' % bibtex_compile_cmd)
return ret
# look on the filesystem if there is a .idx file to process
try:
idx_path = idx_node.abspath(env)
os.stat(idx_path)
except OSError:
error('erreur file.idx scan')
else:
makeindex_compile_cmd = 'cd %s && %s %s' % (reldir, env['MAKEINDEX'], idx_path)
warning('calling makeindex')
ret = exec_cmd(makeindex_compile_cmd)
if ret:
error('error when calling makeindex %s' % makeindex_compile_cmd)
return ret
i = 0
while i < 10:
# prevent against infinite loops - one never knows
i += 1
# watch the contents of file.aux
old_hash = hash
try:
hash = Params.h_file(aux_node.abspath(env))
except KeyError:
error('could not read aux.h -> %s' % aux_node.abspath(env))
pass
# debug
#print "hash is, ", hash, " ", old_hash
# stop if file.aux does not change anymore
if hash and hash == old_hash: break
# run the command
warning('calling %s' % command)
ret = exec_cmd(latex_compile_cmd)
if ret:
error('error when calling %s %s' % (command, latex_compile_cmd))
return ret
# 0 means no error
return 0
latex_vardeps = ['LATEX', 'LATEXFLAGS']
def latex_build(task):
return tex_build(task, 'LATEX')
pdflatex_vardeps = ['PDFLATEX', 'PDFLATEXFLAGS']
def pdflatex_build(task):
return tex_build(task, 'PDFLATEX')
g_texobjs = ['latex','pdflatex']
class tex_taskgen(Object.task_gen):
s_default_ext = ['.tex', '.ltx']
def __init__(self, type='latex'):
Object.task_gen.__init__(self)
global g_texobjs
if not type in g_texobjs:
fatal('type %s not supported for texobj' % type)
self.m_type = type
self.outs = '' # example: "ps pdf"
self.prompt = 1 # prompt for incomplete files (else the batchmode is used)
self.deps = ''
def apply(self):
tree = Params.g_build
outs = self.outs.split()
self.env['PROMPT_LATEX'] = self.prompt
deps_lst = []
if self.deps:
deps = self.to_list(self.deps)
for filename in deps:
n = self.path.find_source(filename)
if not n in deps_lst: deps_lst.append(n)
for filename in self.source.split():
base, ext = os.path.splitext(filename)
if not ext in self.s_default_ext: continue
node = self.path.find_source(filename)
if not node: fatal('cannot find %s' % filename)
if self.m_type == 'latex':
task = self.create_task('latex', self.env)
task.set_inputs(node)
task.set_outputs(node.change_ext('.dvi'))
elif self.m_type == 'pdflatex':
task = self.create_task('pdflatex', self.env)
task.set_inputs(node)
task.set_outputs(node.change_ext('.pdf'))
else:
fatal('no type or invalid type given in tex object (should be latex or pdflatex)')
task.m_scanner = g_tex_scanner
task.m_env = self.env
task.curdirnode = self.path
# add the manual dependencies
if deps_lst:
variant = node.variant(self.env)
try:
lst = tree.m_depends_on[variant][node]
for n in deps_lst:
if not n in lst:
lst.append(n)
except KeyError:
tree.m_depends_on[variant][node] = deps_lst
if self.m_type == 'latex':
if 'ps' in outs:
pstask = self.create_task('dvips', self.env)
pstask.set_inputs(task.m_outputs)
pstask.set_outputs(node.change_ext('.ps'))
if 'pdf' in outs:
pdftask = self.create_task('dvipdf', self.env)
pdftask.set_inputs(task.m_outputs)
pdftask.set_outputs(node.change_ext('.pdf'))
elif self.m_type == 'pdflatex':
if 'ps' in outs:
pstask = self.create_task('pdf2ps', self.env)
pstask.set_inputs(task.m_outputs)
pstask.set_outputs(node.change_ext('.ps'))
def detect(conf):
v = conf.env
for p in 'tex latex pdflatex bibtex dvips dvipdf ps2pdf makeindex'.split():
conf.find_program(p, var=p.upper())
v[p.upper()+'FLAGS'] = ''
v['DVIPSFLAGS'] = '-Ppdf'
Action.simple_action('tex', '${TEX} ${TEXFLAGS} ${SRC}', color='BLUE', prio=60)
Action.simple_action('bibtex', '${BIBTEX} ${BIBTEXFLAGS} ${SRC}', color='BLUE', prio=60)
Action.simple_action('dvips', '${DVIPS} ${DVIPSFLAGS} ${SRC} -o ${TGT}', color='BLUE', prio=60)
Action.simple_action('dvipdf', '${DVIPDF} ${DVIPDFFLAGS} ${SRC} ${TGT}', color='BLUE', prio=60)
Action.simple_action('pdf2ps', '${PDF2PS} ${PDF2PSFLAGS} ${SRC} ${TGT}', color='BLUE', prio=60)
Action.Action('latex', vars=latex_vardeps, func=latex_build, prio=40)
Action.Action('pdflatex', vars=pdflatex_vardeps, func=pdflatex_build, prio=40)
|