Duffer Derek
"use strict";
const MAGIC_NUMBER = require("../shared/output/RamBundle/magic-number");
const SIZEOF_UINT32 = 4;
const HEADER_SIZE = 3;
class RamBundleParser {
constructor(buffer) {
this._buffer = buffer;
if (this._readPosition(0) !== MAGIC_NUMBER) {
throw new Error("File is not a RAM bundle file");
}
this._numModules = this._readPosition(1);
this._startupCodeLength = this._readPosition(2);
this._startOffset = (HEADER_SIZE + this._numModules * 2) * SIZEOF_UINT32;
}
_readPosition(pos) {
return this._buffer.readUInt32LE(pos * SIZEOF_UINT32);
}
getStartupCode() {
const start = this._startOffset;
const end = start + this._startupCodeLength - 1;
return this._buffer.toString("utf8", start, end);
}
getModule(id) {
const moduleOffset = this._readPosition(HEADER_SIZE + id * 2);
const moduleLength = this._readPosition(HEADER_SIZE + id * 2 + 1);
const start = this._startOffset + moduleOffset;
const end = start + moduleLength - 1;
return this._buffer.toString("utf8", start, end);
}
}
module.exports = RamBundleParser;
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists