Merge pull request #179 from overleaf/bg-fix-synctex-error

fix synctex error
This commit is contained in:
Brian Gough 2020-06-16 08:57:54 +01:00 committed by GitHub
commit f6fddf2944
4 changed files with 157 additions and 76 deletions

View file

@ -228,7 +228,7 @@ app.get('/smoke_test_force', (req, res) => smokeTest.sendNewResult(res))
app.use(function(error, req, res, next) { app.use(function(error, req, res, next) {
if (error instanceof Errors.NotFoundError) { if (error instanceof Errors.NotFoundError) {
logger.warn({ err: error, url: req.url }, 'not found error') logger.log({ err: error, url: req.url }, 'not found error')
return res.sendStatus(404) return res.sendStatus(404)
} else if (error.code === 'EPIPE') { } else if (error.code === 'EPIPE') {
// inspect container returns EPIPE when shutting down // inspect container returns EPIPE when shutting down

View file

@ -430,15 +430,7 @@ module.exports = CompileManager = {
const compileDir = getCompileDir(project_id, user_id) const compileDir = getCompileDir(project_id, user_id)
const synctex_path = `${base_dir}/output.pdf` const synctex_path = `${base_dir}/output.pdf`
const command = ['code', synctex_path, file_path, line, column] const command = ['code', synctex_path, file_path, line, column]
return fse.ensureDir(compileDir, function(error) { CompileManager._runSynctex(project_id, user_id, command, function(
if (error != null) {
logger.err(
{ error, project_id, user_id, file_name },
'error ensuring dir for sync from code'
)
return callback(error)
}
return CompileManager._runSynctex(project_id, user_id, command, function(
error, error,
stdout stdout
) { ) {
@ -449,11 +441,7 @@ module.exports = CompileManager = {
{ project_id, user_id, file_name, line, column, command, stdout }, { project_id, user_id, file_name, line, column, command, stdout },
'synctex code output' 'synctex code output'
) )
return callback( return callback(null, CompileManager._parseSynctexFromCodeOutput(stdout))
null,
CompileManager._parseSynctexFromCodeOutput(stdout)
)
})
}) })
}, },
@ -466,15 +454,7 @@ module.exports = CompileManager = {
const base_dir = Settings.path.synctexBaseDir(compileName) const base_dir = Settings.path.synctexBaseDir(compileName)
const synctex_path = `${base_dir}/output.pdf` const synctex_path = `${base_dir}/output.pdf`
const command = ['pdf', synctex_path, page, h, v] const command = ['pdf', synctex_path, page, h, v]
return fse.ensureDir(compileDir, function(error) { CompileManager._runSynctex(project_id, user_id, command, function(
if (error != null) {
logger.err(
{ error, project_id, user_id, file_name },
'error ensuring dir for sync to code'
)
return callback(error)
}
return CompileManager._runSynctex(project_id, user_id, command, function(
error, error,
stdout stdout
) { ) {
@ -490,29 +470,23 @@ module.exports = CompileManager = {
CompileManager._parseSynctexFromPdfOutput(stdout, base_dir) CompileManager._parseSynctexFromPdfOutput(stdout, base_dir)
) )
}) })
})
}, },
_checkFileExists(path, callback) { _checkFileExists(dir, filename, callback) {
if (callback == null) { if (callback == null) {
callback = function(error) {} callback = function(error) {}
} }
const synctexDir = Path.dirname(path) const file = Path.join(dir, filename)
const synctexFile = Path.join(synctexDir, 'output.synctex.gz') return fs.stat(dir, function(error, stats) {
return fs.stat(synctexDir, function(error, stats) {
if ((error != null ? error.code : undefined) === 'ENOENT') { if ((error != null ? error.code : undefined) === 'ENOENT') {
return callback( return callback(new Errors.NotFoundError('no output directory'))
new Errors.NotFoundError('called synctex with no output directory')
)
} }
if (error != null) { if (error != null) {
return callback(error) return callback(error)
} }
return fs.stat(synctexFile, function(error, stats) { return fs.stat(file, function(error, stats) {
if ((error != null ? error.code : undefined) === 'ENOENT') { if ((error != null ? error.code : undefined) === 'ENOENT') {
return callback( return callback(new Errors.NotFoundError('no output file'))
new Errors.NotFoundError('called synctex with no output file')
)
} }
if (error != null) { if (error != null) {
return callback(error) return callback(error)
@ -536,6 +510,10 @@ module.exports = CompileManager = {
const directory = getCompileDir(project_id, user_id) const directory = getCompileDir(project_id, user_id)
const timeout = 60 * 1000 // increased to allow for large projects const timeout = 60 * 1000 // increased to allow for large projects
const compileName = getCompileName(project_id, user_id) const compileName = getCompileName(project_id, user_id)
CompileManager._checkFileExists(directory, 'output.synctex.gz', error => {
if (error) {
return callback(error)
}
return CommandRunner.run( return CommandRunner.run(
compileName, compileName,
command, command,
@ -554,6 +532,7 @@ module.exports = CompileManager = {
return callback(null, output.stdout) return callback(null, output.stdout)
} }
) )
})
}, },
_parseSynctexFromCodeOutput(output) { _parseSynctexFromCodeOutput(output) {

View file

@ -69,7 +69,7 @@ Hello world
}) })
}) })
return describe('from pdf to code', function() { describe('from pdf to code', function() {
return it('should return the correct location', function(done) { return it('should return the correct location', function(done) {
return Client.syncFromPdf( return Client.syncFromPdf(
this.project_id, this.project_id,
@ -88,4 +88,104 @@ Hello world
) )
}) })
}) })
describe('when the project directory is not available', function() {
before(function() {
this.other_project_id = Client.randomId()
})
describe('from code to pdf', function() {
it('should return a 404 response', function(done) {
return Client.syncFromCode(
this.other_project_id,
'main.tex',
3,
5,
(error, body) => {
if (error != null) {
throw error
}
expect(body).to.equal('Not Found')
return done()
}
)
})
})
describe('from pdf to code', function() {
it('should return a 404 response', function(done) {
return Client.syncFromPdf(
this.other_project_id,
1,
100,
200,
(error, body) => {
if (error != null) {
throw error
}
expect(body).to.equal('Not Found')
return done()
}
)
})
})
})
describe('when the synctex file is not available', function() {
before(function(done) {
this.broken_project_id = Client.randomId()
const content = 'this is not valid tex' // not a valid tex file
this.request = {
resources: [
{
path: 'main.tex',
content
}
]
}
Client.compile(
this.broken_project_id,
this.request,
(error, res, body) => {
this.error = error
this.res = res
this.body = body
return done()
}
)
})
describe('from code to pdf', function() {
it('should return a 404 response', function(done) {
return Client.syncFromCode(
this.broken_project_id,
'main.tex',
3,
5,
(error, body) => {
if (error != null) {
throw error
}
expect(body).to.equal('Not Found')
return done()
}
)
})
})
describe('from pdf to code', function() {
it('should return a 404 response', function(done) {
return Client.syncFromPdf(
this.broken_project_id,
1,
100,
200,
(error, body) => {
if (error != null) {
throw error
}
expect(body).to.equal('Not Found')
return done()
}
)
})
})
})
}) })

View file

@ -81,13 +81,14 @@ module.exports = Client = {
file, file,
line, line,
column column
} },
json: true
}, },
(error, response, body) => { (error, response, body) => {
if (error != null) { if (error != null) {
return callback(error) return callback(error)
} }
return callback(null, JSON.parse(body)) return callback(null, body)
} }
) )
}, },
@ -103,13 +104,14 @@ module.exports = Client = {
page, page,
h, h,
v v
} },
json: true
}, },
(error, response, body) => { (error, response, body) => {
if (error != null) { if (error != null) {
return callback(error) return callback(error)
} }
return callback(null, JSON.parse(body)) return callback(null, body)
} }
) )
}, },