Merge pull request #13223 from Snuffleupagus/worker-xfa-structTree-tweaks
Remove the unused "GetIsPureXfa" message handler; and avoid unnecessary parsing when no structTree is available (PR 13069 follow-up, PR 13221 follow-up)
This commit is contained in:
commit
3d2d8002b0
@ -454,7 +454,13 @@ class Page {
|
||||
const structTreeRoot = await this.pdfManager.ensureCatalog(
|
||||
"structTreeRoot"
|
||||
);
|
||||
return this.pdfManager.ensure(this, "_parseStructTree", [structTreeRoot]);
|
||||
if (!structTreeRoot) {
|
||||
return null;
|
||||
}
|
||||
const structTree = await this.pdfManager.ensure(this, "_parseStructTree", [
|
||||
structTreeRoot,
|
||||
]);
|
||||
return structTree.serializable;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -328,10 +328,6 @@ class StructTreePage {
|
||||
}
|
||||
nodeToSerializable(child, root);
|
||||
}
|
||||
|
||||
if (root.children.length === 0) {
|
||||
return null;
|
||||
}
|
||||
return root;
|
||||
}
|
||||
}
|
||||
|
@ -487,7 +487,7 @@ class WorkerMessageHandler {
|
||||
|
||||
handler.on("GetPageJSActions", function ({ pageIndex }) {
|
||||
return pdfManager.getPage(pageIndex).then(function (page) {
|
||||
return page.jsActions;
|
||||
return pdfManager.ensure(page, "jsActions");
|
||||
});
|
||||
});
|
||||
|
||||
@ -497,10 +497,6 @@ class WorkerMessageHandler {
|
||||
});
|
||||
});
|
||||
|
||||
handler.on("GetIsPureXfa", function wphSetupGetIsPureXfa(data) {
|
||||
return pdfManager.ensureDoc("isPureXfa");
|
||||
});
|
||||
|
||||
handler.on("GetOutline", function wphSetupGetOutline(data) {
|
||||
return pdfManager.ensureCatalog("documentOutline");
|
||||
});
|
||||
@ -747,15 +743,9 @@ class WorkerMessageHandler {
|
||||
});
|
||||
|
||||
handler.on("GetStructTree", function wphGetStructTree(data) {
|
||||
const pageIndex = data.pageIndex;
|
||||
return pdfManager
|
||||
.getPage(pageIndex)
|
||||
.then(function (page) {
|
||||
return pdfManager.ensure(page, "getStructTree");
|
||||
})
|
||||
.then(function (structTree) {
|
||||
return structTree.serializable;
|
||||
});
|
||||
return pdfManager.getPage(data.pageIndex).then(function (page) {
|
||||
return pdfManager.ensure(page, "getStructTree");
|
||||
});
|
||||
});
|
||||
|
||||
handler.on("FontFallback", function (data) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user