Fix translator architecture hangs on bad JSON in translatorCache

(cherry picked from commit cc9efde843)
This commit is contained in:
Dan Stillman 2018-01-16 11:04:41 -05:00
parent 250a19ec03
commit 50862501f6
2 changed files with 38 additions and 12 deletions

View File

@ -744,16 +744,29 @@ Zotero.Schema = new function(){
index[id].extract = true;
}
let sql = "SELECT metadataJSON FROM translatorCache";
let dbCache = yield Zotero.DB.columnQueryAsync(sql);
let sql = "SELECT fileName, metadataJSON FROM translatorCache";
let rows = yield Zotero.DB.queryAsync(sql);
// If there's anything in the cache, see what we actually need to extract
if (dbCache) {
for (let i = 0; i < dbCache.length; i++) {
let metadata = JSON.parse(dbCache[i]);
let id = metadata.translatorID;
if (index[id] && index[id].lastUpdated <= metadata.lastUpdated) {
index[id].extract = false;
}
for (let i = 0; i < rows.length; i++) {
let json = rows[i].metadataJSON;
let metadata;
try {
metadata = JSON.parse(json);
}
catch (e) {
Zotero.logError(e);
Zotero.debug(json, 1);
// // If JSON is invalid, clear from cache
yield Zotero.DB.queryAsync(
"DELETE FROM translatorCache WHERE fileName=?",
rows[i].fileName
);
continue;
}
let id = metadata.translatorID;
if (index[id] && index[id].lastUpdated <= metadata.lastUpdated) {
index[id].extract = false;
}
}

View File

@ -116,9 +116,22 @@ Zotero.Translators = new function() {
// Get JSON from cache if possible
if (memCacheJSON || dbCacheEntry) {
var translator = Zotero.Translators.load(
memCacheJSON || dbCacheEntry.metadataJSON, path
);
try {
var translator = Zotero.Translators.load(
memCacheJSON || dbCacheEntry.metadataJSON, path
);
}
catch (e) {
Zotero.logError(e);
Zotero.debug(memCacheJSON || dbCacheEntry.metadataJSON, 1);
// If JSON is invalid, clear from cache
yield Zotero.DB.queryAsync(
"DELETE FROM translatorCache WHERE fileName=?",
fileName
);
continue;
}
}
// Otherwise, load from file
else {