mtcute/packages/tl-runtime/src/reader.ts

266 lines
6.6 KiB
TypeScript
Raw Normal View History

import Long from 'long'
import { gzipInflate } from './platform/gzip'
const TWO_PWR_32_DBL = (1 << 16) * (1 << 16)
/**
* Mapping of TL object IDs to reader functions.
*
* Note that these types should never be present in the map
* and are parsed manually inside `.object()`:
* - `0x1cb5c415` aka `vector`
* - `0x3072cfa1` aka `gzip_packed`
* - `0xbc799737` aka `boolFalse`
* - `0x997275b5` aka `boolTrue`
* - `0x3fedd339` aka `true`
* - `0x56730bcc` aka `null`
*/
// avoid unnecessary type complexity
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export type TlReaderMap = Record<number, (r: any) => unknown> & {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
_results?: Record<string, (r: any) => unknown>
}
2022-08-29 16:22:57 +03:00
/**
* Reader for TL objects.
*/
export class TlBinaryReader {
2022-08-29 16:22:57 +03:00
/**
* Underlying buffer.
*/
2021-04-08 12:19:38 +03:00
data: Buffer
2022-08-29 16:22:57 +03:00
/**
* Position in the buffer.
*/
2021-04-08 12:19:38 +03:00
pos = 0
2022-08-29 16:22:57 +03:00
/**
* @param objectsMap Readers map
* @param data Buffer to read from
* @param start Position to start reading from
*/
constructor(
readonly objectsMap: TlReaderMap | undefined,
data: Buffer,
start = 0,
) {
2021-04-08 12:19:38 +03:00
this.data = data
this.pos = start
}
2022-08-29 16:22:57 +03:00
/**
* Create a new reader without objects map for manual usage
*
* @param data Buffer to read from
* @param start Position to start reading from
*/
static manual(data: Buffer, start = 0): TlBinaryReader {
return new TlBinaryReader(undefined, data, start)
2021-04-08 12:19:38 +03:00
}
2022-08-29 16:22:57 +03:00
/**
* Deserialize a single object
*
* @param objectsMap Readers map
* @param data Buffer to read from
* @param start Position to start reading from
*/
static deserializeObject<T>(
objectsMap: TlReaderMap,
data: Buffer,
start = 0,
): T {
return new TlBinaryReader(objectsMap, data, start).object() as T
}
int(): number {
2021-04-08 12:19:38 +03:00
const res = this.data.readInt32LE(this.pos)
this.pos += 4
2021-04-08 12:19:38 +03:00
return res
}
uint(): number {
2021-04-08 12:19:38 +03:00
const res = this.data.readUInt32LE(this.pos)
this.pos += 4
2021-04-08 12:19:38 +03:00
return res
}
2022-08-29 16:22:57 +03:00
/**
* Get the next {@link uint} without advancing the reader cursor
*/
peekUint(): number {
// e.g. for checking ctor number
return this.data.readUInt32LE(this.pos)
}
int53(): number {
// inlined toNumber from Long
const res =
(this.data.readInt32LE(this.pos) >>> 0) +
TWO_PWR_32_DBL * this.data.readInt32LE(this.pos + 4)
2021-04-08 12:19:38 +03:00
this.pos += 8
return res
2021-04-08 12:19:38 +03:00
}
long(unsigned = false): Long {
const lo = this.data.readInt32LE(this.pos)
const hi = this.data.readInt32LE(this.pos + 4)
2021-04-08 12:19:38 +03:00
this.pos += 8
return new Long(lo, hi, unsigned)
2021-04-08 12:19:38 +03:00
}
float(): number {
const res = this.data.readFloatLE(this.pos)
this.pos += 4
2021-04-08 12:19:38 +03:00
return res
}
double(): number {
const res = this.data.readDoubleLE(this.pos)
this.pos += 8
2021-04-08 12:19:38 +03:00
return res
}
boolean(): boolean {
const val = this.uint()
2021-04-08 12:19:38 +03:00
if (val === 0xbc799737) return false
if (val === 0x997275b5) return true
throw new Error(
`Expected either boolTrue or boolFalse, got 0x${val.toString(16)}`,
2021-04-08 12:19:38 +03:00
)
}
2022-08-29 16:22:57 +03:00
/**
* Read raw bytes of the given length
* @param bytes Length of the buffer to read
*/
2021-04-08 12:19:38 +03:00
raw(bytes = -1): Buffer {
if (bytes === -1) bytes = this.data.length - this.pos
return this.data.slice(this.pos, (this.pos += bytes))
}
int128(): Buffer {
return this.data.slice(this.pos, (this.pos += 16))
}
int256(): Buffer {
return this.data.slice(this.pos, (this.pos += 32))
}
bytes(): Buffer {
const firstByte = this.data[this.pos++]
let length
let padding
2021-04-08 12:19:38 +03:00
if (firstByte === 254) {
length =
this.data[this.pos++] |
(this.data[this.pos++] << 8) |
(this.data[this.pos++] << 16)
padding = length % 4
} else {
length = firstByte
padding = (length + 1) % 4
}
const data = this.raw(length)
if (padding > 0) this.pos += 4 - padding
2021-04-08 12:19:38 +03:00
return data
}
string(): string {
return this.bytes().toString('utf-8')
}
object(): unknown {
const id = this.uint()
2021-04-08 12:19:38 +03:00
if (id === 0x1cb5c415 /* vector */) {
return this.vector(this.object, true)
}
2021-04-08 12:19:38 +03:00
if (id === 0x3072cfa1 /* gzip_packed */) return this.gzip()
if (id === 0xbc799737 /* boolFalse */) return false
if (id === 0x997275b5 /* boolTrue */) return true
// unsure if it is actually used in the wire, seems like it's only used for boolean flags
if (id === 0x3fedd339 /* true */) return true
// never used in the actual schema, but whatever
if (id === 0x56730bcc /* null */) return null
// hot path, avoid additional runtime checks
const reader = this.objectsMap![id]
2021-04-08 12:19:38 +03:00
if (!reader) {
// unknown type. bruh moment.
// mtproto sucks and there's no way we can just skip it
this.seek(-4)
const pos = this.pos
const error = new TypeError(
`Unknown object id: 0x${id.toString(
16,
)}. Content: ${this.raw().toString('hex')}`,
2021-04-08 12:19:38 +03:00
)
this.pos = pos
throw error
}
return reader(this)
2021-04-08 12:19:38 +03:00
}
gzip(): unknown {
return new TlBinaryReader(
this.objectsMap,
gzipInflate(this.bytes()),
2021-04-08 12:19:38 +03:00
).object()
}
vector(reader = this.object, bare = false): unknown[] {
2021-04-08 12:19:38 +03:00
if (!bare) {
if (this.uint() !== 0x1cb5c415) {
2021-04-08 12:19:38 +03:00
throw new Error(
'Invalid object code, expected 0x1cb5c415 (vector)',
2021-04-08 12:19:38 +03:00
)
}
2021-04-08 12:19:38 +03:00
}
const length = this.uint()
2021-04-08 12:19:38 +03:00
const ret = []
for (let i = 0; i < length; i++) ret.push(reader.call(this))
2021-04-08 12:19:38 +03:00
return ret
}
2022-08-29 16:22:57 +03:00
/**
* Advance the reader cursor by the given amount of bytes
*
* @param delta Amount of bytes to advance (can be negative)
*/
2021-04-08 12:19:38 +03:00
seek(delta: number): void {
this.seekTo(this.pos + delta)
}
2022-08-29 16:22:57 +03:00
/**
* Seek to the given position
*
* @param pos Position to seek to
*/
2021-04-08 12:19:38 +03:00
seekTo(pos: number): void {
if (pos >= this.data.length || pos < 0) {
throw new RangeError('New position is out of range')
}
2021-04-08 12:19:38 +03:00
this.pos = pos
}
}