2021-05-31 04:20:25 -04:00
|
|
|
const { PDFDocument } = require('pdfjs-dist/lib/core/document')
|
|
|
|
const { LocalPdfManager } = require('pdfjs-dist/lib/core/pdf_manager')
|
|
|
|
const { MissingDataException } = require('pdfjs-dist/lib/core/core_utils')
|
|
|
|
const { FSStream } = require('./FSStream')
|
|
|
|
|
|
|
|
class FSPdfManager extends LocalPdfManager {
|
2021-06-23 09:14:28 -04:00
|
|
|
constructor(docId, { fh, size, checkDeadline }) {
|
2021-05-31 04:20:25 -04:00
|
|
|
const nonEmptyDummyBuffer = Buffer.alloc(1, 0)
|
|
|
|
super(docId, nonEmptyDummyBuffer)
|
2021-06-23 09:14:28 -04:00
|
|
|
this.stream = new FSStream(fh, 0, size, null, null, checkDeadline)
|
2021-05-31 04:20:25 -04:00
|
|
|
this.pdfDocument = new PDFDocument(this, this.stream)
|
|
|
|
}
|
|
|
|
|
|
|
|
async ensure(obj, prop, args) {
|
|
|
|
try {
|
|
|
|
const value = obj[prop]
|
|
|
|
if (typeof value === 'function') {
|
|
|
|
return value.apply(obj, args)
|
|
|
|
}
|
|
|
|
return value
|
|
|
|
} catch (ex) {
|
|
|
|
if (!(ex instanceof MissingDataException)) {
|
|
|
|
throw ex
|
|
|
|
}
|
|
|
|
await this.requestRange(ex.begin, ex.end)
|
|
|
|
return this.ensure(obj, prop, args)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
requestRange(begin, end) {
|
|
|
|
return this.stream.requestRange(begin, end)
|
|
|
|
}
|
|
|
|
|
|
|
|
requestLoadedStream() {}
|
|
|
|
|
|
|
|
onLoadedStream() {}
|
|
|
|
|
|
|
|
terminate(reason) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
2021-07-13 07:04:48 -04:00
|
|
|
FSPdfManager,
|
2021-05-31 04:20:25 -04:00
|
|
|
}
|