mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
3c01402bbd
PDF Detach v2 GitOrigin-RevId: 3deb76474185f9176cde23ab32ef51b90df6e8e9
67 lines
1.9 KiB
JavaScript
67 lines
1.9 KiB
JavaScript
import LatexLogParser from '../log-parser/latex-log-parser'
|
|
import ruleset from './HumanReadableLogsRules'
|
|
|
|
export default {
|
|
parse(rawLog, options) {
|
|
let parsedLogEntries
|
|
if (typeof rawLog === 'string') {
|
|
const latexLogParser = new LatexLogParser(rawLog, options)
|
|
parsedLogEntries = latexLogParser.parse()
|
|
} else {
|
|
parsedLogEntries = rawLog
|
|
}
|
|
|
|
const _getRule = function (logMessage) {
|
|
for (const rule of ruleset) {
|
|
if (rule.regexToMatch.test(logMessage)) {
|
|
return rule
|
|
}
|
|
}
|
|
}
|
|
|
|
const seenErrorTypes = {} // keep track of types of errors seen
|
|
|
|
for (const entry of parsedLogEntries.all) {
|
|
const ruleDetails = _getRule(entry.message)
|
|
|
|
if (ruleDetails != null) {
|
|
let type
|
|
if (ruleDetails.ruleId != null) {
|
|
entry.ruleId = ruleDetails.ruleId
|
|
}
|
|
if (ruleDetails.newMessage != null) {
|
|
entry.message = entry.message.replace(
|
|
ruleDetails.regexToMatch,
|
|
ruleDetails.newMessage
|
|
)
|
|
}
|
|
// suppress any entries that are known to cascade from previous error types
|
|
if (ruleDetails.cascadesFrom != null) {
|
|
for (type of ruleDetails.cascadesFrom) {
|
|
if (seenErrorTypes[type]) {
|
|
entry.suppressed = true
|
|
}
|
|
}
|
|
}
|
|
// record the types of errors seen
|
|
if (ruleDetails.types != null) {
|
|
for (type of ruleDetails.types) {
|
|
seenErrorTypes[type] = true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// filter out the suppressed errors (from the array entries in parsedLogEntries)
|
|
for (const key in parsedLogEntries) {
|
|
const errors = parsedLogEntries[key]
|
|
if (typeof errors === 'object' && errors.length > 0) {
|
|
parsedLogEntries[key] = Array.from(errors).filter(
|
|
err => !err.suppressed
|
|
)
|
|
}
|
|
}
|
|
|
|
return parsedLogEntries
|
|
},
|
|
}
|