Added methods for reading strings at specific offsets to Cursor.

This commit is contained in:
jtuu 2019-10-11 12:48:49 +03:00
parent 21299646e4
commit 4499009e5a
2 changed files with 59 additions and 0 deletions

View File

@ -238,6 +238,47 @@ export abstract class AbstractCursor implements Cursor {
return String.fromCodePoint(...code_points); return String.fromCodePoint(...code_points);
} }
string_ascii_at(
offset: number,
max_byte_length: number,
null_terminated: boolean,
): string {
const code_points: number[] = [];
for (let i = 0; i < max_byte_length; i++) {
const code_point = this.u8_at(offset + i);
if (null_terminated && code_point === 0) {
break;
}
code_points.push(code_point);
}
return String.fromCodePoint(...code_points);
}
string_utf16_at(
offset: number,
max_byte_length: number,
null_terminated: boolean,
): string {
const code_points: number[] = [];
const len = Math.floor(max_byte_length / 2);
for (let i = 0; i < len; i++) {
const code_point = this.u16_at(offset + i * 2);
if (null_terminated && code_point === 0) {
break;
}
code_points.push(code_point);
}
return String.fromCodePoint(...code_points);
}
array_buffer(size: number = this.size - this.position): ArrayBuffer { array_buffer(size: number = this.size - this.position): ArrayBuffer {
this.check_size("size", size, size); this.check_size("size", size, size);
const r = this.backing_buffer.slice( const r = this.backing_buffer.slice(

View File

@ -169,6 +169,24 @@ export interface Cursor {
drop_remaining: boolean, drop_remaining: boolean,
): string; ): string;
/**
* Reads an ASCII-encoded string at the given absolute offset. Doesn't increment position.
*/
string_ascii_at(
offset: number,
max_byte_length: number,
null_terminated: boolean,
): string;
/**
* Reads an UTF-16-encoded string at the given absolute offset. Doesn't increment position.
*/
string_utf16_at(
offset: number,
max_byte_length: number,
null_terminated: boolean,
): string;
array_buffer(size?: number): ArrayBuffer; array_buffer(size?: number): ArrayBuffer;
copy_to_uint8_array(array: Uint8Array, size?: number): this; copy_to_uint8_array(array: Uint8Array, size?: number): this;