-
Notifications
You must be signed in to change notification settings - Fork 0
/
reader.ts
250 lines (184 loc) · 7.44 KB
/
reader.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
import fs from 'fs';
import path from "path";
import { DecompressBrotli, DecompressGzip } from './asynclibz';
import { CompressionType } from './types';
type FileArrayEntry = {
fileName: string;
linkedFileName: string;
offset: bigint;
length: bigint;
compressionType: number;
uncompressedLength: bigint;
customData: string;
}
class ReadableFile {
private parentReader: MFSReader;
private thisFile: FileArrayEntry;
fileName: string
customData: string
externalFile: boolean = false;
constructor(reader: MFSReader, thisFile: FileArrayEntry) {
this.parentReader = reader;
this.thisFile = thisFile;
this.fileName = this.thisFile.fileName;
this.customData = this.thisFile.customData;
if (this.thisFile.linkedFileName != undefined) {
this.externalFile = true;
}
}
async read(): Promise<Uint8Array> {
if (this.externalFile) {
return await this.readEFile();
} else {
return await this.readLFile();
}
}
private async decompress(data: Uint8Array): Promise<Uint8Array> {
let uncompressedData = data.buffer
switch (this.thisFile.compressionType) {
case CompressionType.Brotli:
uncompressedData = await DecompressBrotli(data);
break;
case CompressionType.Gzip:
uncompressedData = await DecompressGzip(data);
break;
}
return new Uint8Array(uncompressedData);
}
private async readLFile(): Promise<Uint8Array> {
const view = new DataView(this.parentReader.file.buffer);
let pointer = Number(this.thisFile.offset);
let buffer = new Uint8Array(Number(this.thisFile.length));
for (let i = 0; i < this.thisFile.length; i++) {
buffer[i] = view.getUint8(pointer);
pointer++;
}
return await this.decompress(buffer);
}
private async readEFile(): Promise<Uint8Array> {
const dir = path.join(this.parentReader.workingDirectory, this.thisFile.linkedFileName)
const externalFile = fs.readFileSync(dir);
const buf = Uint8Array.from(externalFile);
const view = new DataView(buf.buffer);
let pointer = this.thisFile.offset;
let buffer = new Uint8Array(Number(this.thisFile.length));
for (let i = 0; i < this.thisFile.length; i++) {
buffer[i] = view.getUint8(Number(pointer));
pointer++;
}
return await this.decompress(buffer);
}
}
export class MFSReader {
file: Uint8Array;
private fileStrings: string[] = [];
public workingDirectory: string = path.resolve(process.cwd());
public files: ReadableFile[] = [];
private customDataCompressionType: CompressionType = CompressionType.None;
static from(file: string) {
let encoder = new TextEncoder();
let reader: MFSReader = new MFSReader(new Uint8Array(fs.readFileSync(file).buffer));
reader.workingDirectory = path.dirname(file);
return reader;
}
private async decompress(data: Uint8Array): Promise<Uint8Array> {
let uncompressedData = data.buffer
switch (this.customDataCompressionType) {
case CompressionType.Brotli:
uncompressedData = await DecompressBrotli(data);
break;
case CompressionType.Gzip:
uncompressedData = await DecompressGzip(data);
break;
}
return new Uint8Array(uncompressedData);
}
constructor(file: Uint8Array) {
this.file = file;
}
public async readFile() {
let view = new DataView(this.file.buffer);
let pointer = 0;
// read the header
let magic = view.getUint32(pointer, true);
pointer += 4;
// the file magic is wrong!
if (magic != 777209421) {
throw new Error('Invalid MFS file');
}
let version = view.getUint8(pointer);
pointer += 1;
let fileDictionaryLength = view.getBigUint64(pointer, true);
pointer += 8;
let stringArrayCount = view.getBigUint64(pointer, true);
pointer += 8;
let stringArrayLength = view.getBigUint64(pointer, true);
pointer += 8;
let customDataStringArrayIndex = view.getUint32(pointer, true);
pointer += 4;
this.customDataCompressionType = view.getUint8(pointer);
pointer += 1;
// read the string array
let stringsStart = Number(34n + (45n * fileDictionaryLength));
let stringEnd = stringsStart + Number(stringArrayLength);
let compressedStrings = new Uint8Array(this.file.slice(stringsStart, stringEnd));
let data = await this.decompress(compressedStrings);
let stringsView = new DataView(data.buffer);
this.readStringArray(stringsView, fileDictionaryLength, stringArrayCount);
await this.readFileArray(view, fileDictionaryLength);
}
private readStringArray(view: DataView, fileDictionaryLength: bigint, stringArrayLength: bigint) {
let pointer = 0;
for (let i = 0; i < stringArrayLength; i++) {
let length = view.getUint32(pointer, true);
pointer += 4;
let string = '';
for (let j = 0; j < length; j++) {
string += String.fromCharCode(view.getUint8(pointer));
pointer++;
}
this.fileStrings.push(string);
}
}
private async readFileArray(view: DataView, fileDictionaryLength: bigint) {
// we move the pointer to the end of the header and start of the file dictionary
let pointer = 34
for (let i = 0; i < fileDictionaryLength; i++) {
let nameStringArrayIndex = view.getUint32(pointer, true);
pointer += 4;
let filenameStringArrayIndex = view.getUint32(pointer, true);
pointer += 4;
let offset = view.getBigUint64(pointer, true);
pointer += 8;
let length = view.getBigUint64(pointer, true);
pointer += 8;
let compressionType = view.getUint8(pointer);
pointer += 1;
let uncompressedLength = view.getBigUint64(pointer, true);
pointer += 8;
let customDataOffset = view.getBigUint64(pointer, true);
pointer += 8;
let customDataLength = view.getUint32(pointer, true);
pointer += 4;
const thisFile = {
fileName: this.fileStrings[nameStringArrayIndex],
linkedFileName: this.fileStrings[filenameStringArrayIndex - 1],
offset: offset,
length: length,
compressionType: compressionType,
uncompressedLength: uncompressedLength,
customData: '' // we will read this later
} as FileArrayEntry
// its later, and time to read that custom data!
let tmpPointer = customDataOffset
let customDataBuffer = new Uint8Array(Number(customDataLength));
for (let j = 0n; j < customDataLength; j++) {
customDataBuffer[Number(j)] = view.getUint8(Number(tmpPointer));
tmpPointer++;
}
thisFile.customData = new TextDecoder().decode(await this.decompress(customDataBuffer));
const readableFile = new ReadableFile(this, thisFile);
this.files.push(readableFile);
}
}
}