mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
84 lines
2.7 KiB
TypeScript
84 lines
2.7 KiB
TypeScript
|
import { ProDOSVolume } from '.';
|
||
|
import type { BitMap } from './bit_map';
|
||
|
import { BLOCK_SIZE, STORAGE_TYPES } from './constants';
|
||
|
import { FileEntry } from './file_entry';
|
||
|
|
||
|
export class SaplingFile {
|
||
|
blocks: Uint8Array[];
|
||
|
bitMap: BitMap;
|
||
|
|
||
|
constructor(private volume: ProDOSVolume, private fileEntry: FileEntry) {
|
||
|
this.blocks = this.volume.blocks();
|
||
|
this.bitMap = this.volume.bitMap();
|
||
|
|
||
|
}
|
||
|
|
||
|
getBlockPointers() {
|
||
|
const saplingBlock = this.blocks[this.fileEntry.keyPointer];
|
||
|
const seedlingPointers = new DataView(saplingBlock);
|
||
|
|
||
|
const pointers = [this.fileEntry.keyPointer];
|
||
|
for (let idx = 0; idx < 256; idx++) {
|
||
|
const seedlingPointer = seedlingPointers.getUint16(idx * 2);
|
||
|
if (seedlingPointer) {
|
||
|
pointers.push(seedlingPointer);
|
||
|
}
|
||
|
}
|
||
|
return pointers;
|
||
|
}
|
||
|
|
||
|
read() {
|
||
|
const saplingBlock = this.blocks[this.fileEntry.keyPointer];
|
||
|
const seedlingPointers = new DataView(saplingBlock);
|
||
|
|
||
|
let remainingLength = this.fileEntry.eof;
|
||
|
const data = new Uint8Array(remainingLength);
|
||
|
let offset = 0;
|
||
|
let idx = 0;
|
||
|
while (remainingLength > 0) {
|
||
|
const seedlingPointer = seedlingPointers.getUint16(idx * 2);
|
||
|
if (seedlingPointer) {
|
||
|
const seedlingBlock = this.blocks[seedlingPointer];
|
||
|
const bytes = seedlingBlock.slice(0, Math.min(BLOCK_SIZE, remainingLength));
|
||
|
|
||
|
data.set(bytes, offset);
|
||
|
}
|
||
|
idx++;
|
||
|
offset += BLOCK_SIZE;
|
||
|
remainingLength -= BLOCK_SIZE;
|
||
|
}
|
||
|
return data;
|
||
|
}
|
||
|
|
||
|
write(data: Uint8Array) {
|
||
|
this.fileEntry.storageType = STORAGE_TYPES.SAPLING;
|
||
|
this.fileEntry.keyPointer = this.bitMap.allocBlock();
|
||
|
this.fileEntry.eof = data.byteLength;
|
||
|
const saplingBlock = this.blocks[this.fileEntry.keyPointer];
|
||
|
const seedlingPointers = new DataView(saplingBlock);
|
||
|
|
||
|
let remainingLength = data.byteLength;
|
||
|
let offset = 0;
|
||
|
let idx = 0;
|
||
|
|
||
|
while (remainingLength > 0) {
|
||
|
const seedlingPointer = this.bitMap.allocBlock();
|
||
|
seedlingPointers.setUint16(idx * 2, seedlingPointer, true);
|
||
|
const seedlingBlock = this.blocks[seedlingPointer];
|
||
|
seedlingBlock.set(data.slice(offset, Math.min(BLOCK_SIZE, remainingLength)));
|
||
|
idx++;
|
||
|
offset += BLOCK_SIZE;
|
||
|
remainingLength -= BLOCK_SIZE;
|
||
|
}
|
||
|
this.fileEntry.write();
|
||
|
}
|
||
|
|
||
|
delete() {
|
||
|
const pointers = this.getBlockPointers();
|
||
|
for (let idx = 0; idx < pointers.length; idx++) {
|
||
|
this.bitMap.freeBlock(pointers[idx]);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|