2014-02-12 12:27:43 -05:00
|
|
|
Path = require "path"
|
|
|
|
Settings = require "settings-sharelatex"
|
|
|
|
logger = require "logger-sharelatex"
|
|
|
|
Metrics = require "./Metrics"
|
|
|
|
CommandRunner = require(Settings.clsi?.commandRunner or "./CommandRunner")
|
|
|
|
|
2016-07-14 09:47:36 -04:00
|
|
|
ProcessTable = {} # table of currently running jobs (pids or docker container names)
|
|
|
|
|
2014-02-12 12:27:43 -05:00
|
|
|
module.exports = LatexRunner =
|
|
|
|
runLatex: (project_id, options, callback = (error) ->) ->
|
2016-07-26 07:30:29 -04:00
|
|
|
{directory, mainFile, compiler, timeout, image, environment} = options
|
2014-02-12 12:27:43 -05:00
|
|
|
compiler ||= "pdflatex"
|
|
|
|
timeout ||= 60000 # milliseconds
|
|
|
|
|
2016-07-26 07:30:29 -04:00
|
|
|
logger.log directory: directory, compiler: compiler, timeout: timeout, mainFile: mainFile, environment: environment, "starting compile"
|
2014-02-12 12:27:43 -05:00
|
|
|
|
2014-04-04 09:56:20 -04:00
|
|
|
# We want to run latexmk on the tex file which we will automatically
|
|
|
|
# generate from the Rtex/Rmd/md file.
|
|
|
|
mainFile = mainFile.replace(/\.(Rtex|md|Rmd)$/, ".tex")
|
2014-02-12 12:27:43 -05:00
|
|
|
|
|
|
|
if compiler == "pdflatex"
|
|
|
|
command = LatexRunner._pdflatexCommand mainFile
|
|
|
|
else if compiler == "latex"
|
|
|
|
command = LatexRunner._latexCommand mainFile
|
|
|
|
else if compiler == "xelatex"
|
|
|
|
command = LatexRunner._xelatexCommand mainFile
|
|
|
|
else if compiler == "lualatex"
|
|
|
|
command = LatexRunner._lualatexCommand mainFile
|
|
|
|
else
|
|
|
|
return callback new Error("unknown compiler: #{compiler}")
|
2016-03-29 11:45:06 -04:00
|
|
|
|
|
|
|
if Settings.clsi?.strace
|
2016-03-30 05:59:01 -04:00
|
|
|
command = ["strace", "-o", "strace", "-ff"].concat(command)
|
2014-02-12 12:27:43 -05:00
|
|
|
|
2016-07-14 09:47:36 -04:00
|
|
|
id = "#{project_id}" # record running project under this id
|
|
|
|
|
2016-07-26 07:30:29 -04:00
|
|
|
ProcessTable[id] = CommandRunner.run project_id, command, directory, image, timeout, environment, (error, output) ->
|
2016-07-14 09:47:36 -04:00
|
|
|
delete ProcessTable[id]
|
2016-03-15 10:04:37 -04:00
|
|
|
return callback(error) if error?
|
|
|
|
runs = output?.stderr?.match(/^Run number \d+ of .*latex/mg)?.length or 0
|
|
|
|
failed = if output?.stdout?.match(/^Latexmk: Errors/m)? then 1 else 0
|
|
|
|
# counters from latexmk output
|
|
|
|
stats = {}
|
|
|
|
stats["latexmk-errors"] = failed
|
|
|
|
stats["latex-runs"] = runs
|
|
|
|
stats["latex-runs-with-errors"] = if failed then runs else 0
|
|
|
|
stats["latex-runs-#{runs}"] = 1
|
|
|
|
stats["latex-runs-with-errors-#{runs}"] = if failed then 1 else 0
|
2016-05-09 11:00:24 -04:00
|
|
|
# timing information from /usr/bin/time
|
|
|
|
timings = {}
|
2016-05-10 04:12:13 -04:00
|
|
|
stderr = output?.stderr
|
|
|
|
timings["cpu-percent"] = stderr?.match(/Percent of CPU this job got: (\d+)/m)?[1] or 0
|
|
|
|
timings["cpu-time"] = stderr?.match(/User time.*: (\d+.\d+)/m)?[1] or 0
|
|
|
|
timings["sys-time"] = stderr?.match(/System time.*: (\d+.\d+)/m)?[1] or 0
|
2016-05-09 11:00:24 -04:00
|
|
|
callback error, output, stats, timings
|
2014-02-12 12:27:43 -05:00
|
|
|
|
2016-07-14 09:47:36 -04:00
|
|
|
killLatex: (project_id, callback = (error) ->) ->
|
|
|
|
id = "#{project_id}"
|
|
|
|
logger.log {id:id}, "killing running compile"
|
|
|
|
if not ProcessTable[id]?
|
|
|
|
return callback new Error("no such project to kill")
|
|
|
|
else
|
|
|
|
CommandRunner.kill ProcessTable[id], callback
|
|
|
|
|
2016-06-17 09:38:08 -04:00
|
|
|
_latexmkBaseCommand: (Settings?.clsi?.latexmkCommandPrefix || []).concat(
|
|
|
|
["latexmk", "-cd", "-f", "-jobname=output", "-auxdir=$COMPILE_DIR", "-outdir=$COMPILE_DIR"]
|
|
|
|
)
|
2014-02-12 12:27:43 -05:00
|
|
|
|
|
|
|
_pdflatexCommand: (mainFile) ->
|
|
|
|
LatexRunner._latexmkBaseCommand.concat [
|
2014-04-08 10:18:56 -04:00
|
|
|
"-pdf", "-e", "$pdflatex='pdflatex -synctex=1 -interaction=batchmode %O %S'",
|
2014-02-12 12:27:43 -05:00
|
|
|
Path.join("$COMPILE_DIR", mainFile)
|
|
|
|
]
|
|
|
|
|
|
|
|
_latexCommand: (mainFile) ->
|
|
|
|
LatexRunner._latexmkBaseCommand.concat [
|
2014-04-08 10:18:56 -04:00
|
|
|
"-pdfdvi", "-e", "$latex='latex -synctex=1 -interaction=batchmode %O %S'",
|
2014-02-12 12:27:43 -05:00
|
|
|
Path.join("$COMPILE_DIR", mainFile)
|
|
|
|
]
|
|
|
|
|
|
|
|
_xelatexCommand: (mainFile) ->
|
|
|
|
LatexRunner._latexmkBaseCommand.concat [
|
2014-04-08 10:18:56 -04:00
|
|
|
"-xelatex", "-e", "$pdflatex='xelatex -synctex=1 -interaction=batchmode %O %S'",
|
2014-02-12 12:27:43 -05:00
|
|
|
Path.join("$COMPILE_DIR", mainFile)
|
|
|
|
]
|
|
|
|
|
|
|
|
_lualatexCommand: (mainFile) ->
|
|
|
|
LatexRunner._latexmkBaseCommand.concat [
|
2014-04-08 10:18:56 -04:00
|
|
|
"-pdf", "-e", "$pdflatex='lualatex -synctex=1 -interaction=batchmode %O %S'",
|
2014-02-12 12:27:43 -05:00
|
|
|
Path.join("$COMPILE_DIR", mainFile)
|
|
|
|
]
|
|
|
|
|