exifr
Version:
📷 The fastest and most versatile JavaScript EXIF reading library.
56 lines (46 loc) • 1.48 kB
JavaScript
import {fileReaders} from '../plugins.mjs'
import {ChunkedReader} from './ChunkedReader.mjs'
import * as platform from '../util/platform.mjs'
import dynamicImport from '../util/import.mjs'
let fsPromise = dynamicImport('fs', fs => fs.promises)
export class FsReader extends ChunkedReader {
async readWhole() {
this.chunked = false
this.fs = await fsPromise
let buffer = await this.fs.readFile(this.input)
this._swapBuffer(buffer)
}
async readChunked() {
this.chunked = true
this.fs = await fsPromise
await this.open()
await this.readChunk(0, this.options.firstChunkSize)
}
async open() {
if (this.fh === undefined) {
this.fh = await this.fs.open(this.input, 'r')
this.size = (await this.fh.stat(this.input)).size
}
}
async _readChunk(offset, length) {
// reopen if needed
if (this.fh === undefined) await this.open()
// stay within file-size boundaries
if (offset + length > this.size)
length = this.size - offset
// read the chunk into newly created/extended chunk of the dynamic buffer.
var chunk = this.subarray(offset, length, true)
await this.fh.read(chunk.dataView, 0, length, offset)
return chunk
}
// TODO: auto close file handle when reading and parsing is over
// (app can read more chunks after parsing the first)
async close() {
if (this.fh) {
let fh = this.fh
this.fh = undefined
await fh.close()
}
}
}
fileReaders.set('fs', FsReader)