64d2148d11
- Correctly handle missing null terminators in text fields - Avoid reading text encoding for frames that do not define it - Decode URL link frames according to ID3v2 specification - Improve robustness of POPM and GEOB frame parsing
180 lines
5.3 KiB
TypeScript
180 lines
5.3 KiB
TypeScript
import { StringType } from 'token-types';
|
||
import type { IRatio } from '../type.js';
|
||
import { FieldDecodingError } from '../ParseError.js';
|
||
import { getUintBE } from 'uint8array-extras';
|
||
|
||
export type StringEncoding =
|
||
'ascii' // Use 'utf-8' or latin1 instead
|
||
| 'utf8' // alias: 'utf-8'
|
||
| 'utf-16le' // alias: 'ucs2', 'ucs-2'
|
||
| 'ucs2' // 'utf-16le'
|
||
| 'base64url'
|
||
| 'latin1' // Same as ISO-8859-1 (alias: 'binary')
|
||
| 'hex';
|
||
|
||
export function getBit(buf: Uint8Array, off: number, bit: number): boolean {
|
||
return (buf[off] & (1 << bit)) !== 0;
|
||
}
|
||
|
||
/**
|
||
* Find delimiting zero in uint8Array
|
||
* @param uint8Array Uint8Array to find the zero delimiter in
|
||
* @param encoding The string encoding used
|
||
* @return position in uint8Array where zero found, or uint8Array.length if not found
|
||
*/
|
||
export function findZero(uint8Array: Uint8Array, encoding?: StringEncoding): number {
|
||
const len = uint8Array.length;
|
||
|
||
if (encoding === 'utf-16le') {
|
||
// Look for 0x00 0x00 on 2-byte boundary
|
||
for (let i = 0; i + 1 < len; i += 2) {
|
||
if (uint8Array[i] === 0 && uint8Array[i + 1] === 0) return i;
|
||
}
|
||
return len;
|
||
}
|
||
|
||
// latin1 / utf8 / utf16be (caller typically handles utf16be separately or via decode)
|
||
for (let i = 0; i < len; i++) {
|
||
if (uint8Array[i] === 0) return i;
|
||
}
|
||
return len;
|
||
}
|
||
|
||
export function trimRightNull(x: string): string {
|
||
const pos0 = x.indexOf('\0');
|
||
return pos0 === -1 ? x : x.substring(0, pos0);
|
||
}
|
||
|
||
function swapBytes<T extends Uint8Array>(uint8Array: T): T {
|
||
const l = uint8Array.length;
|
||
if ((l & 1) !== 0) throw new FieldDecodingError('Buffer length must be even');
|
||
for (let i = 0; i < l; i += 2) {
|
||
const a = uint8Array[i];
|
||
uint8Array[i] = uint8Array[i + 1];
|
||
uint8Array[i + 1] = a;
|
||
}
|
||
return uint8Array;
|
||
}
|
||
|
||
/**
|
||
* Decode string
|
||
*/
|
||
export function decodeString(uint8Array: Uint8Array, encoding: StringEncoding): string {
|
||
// annoying workaround for a double BOM issue
|
||
// https://github.com/leetreveil/musicmetadata/issues/84
|
||
if (uint8Array[0] === 0xFF && uint8Array[1] === 0xFE) { // little endian
|
||
return decodeString(uint8Array.subarray(2), encoding);
|
||
}
|
||
if (encoding === 'utf-16le' && uint8Array[0] === 0xFE && uint8Array[1] === 0xFF) {
|
||
// BOM, indicating big endian decoding
|
||
if ((uint8Array.length & 1) !== 0)
|
||
throw new FieldDecodingError('Expected even number of octets for 16-bit unicode string');
|
||
return decodeString(swapBytes(uint8Array), encoding);
|
||
}
|
||
return new StringType(uint8Array.length, encoding).get(uint8Array, 0);
|
||
}
|
||
|
||
export function stripNulls(str: string): string {
|
||
str = str.replace(/^\x00+/g, '');
|
||
str = str.replace(/\x00+$/g, '');
|
||
return str;
|
||
}
|
||
|
||
/**
|
||
* Read bit-aligned number start from buffer
|
||
* Total offset in bits = byteOffset * 8 + bitOffset
|
||
* @param source Byte buffer
|
||
* @param byteOffset Starting offset in bytes
|
||
* @param bitOffset Starting offset in bits: 0 = lsb
|
||
* @param len Length of number in bits
|
||
* @return Decoded bit aligned number
|
||
*/
|
||
export function getBitAllignedNumber(source: Uint8Array, byteOffset: number, bitOffset: number, len: number): number {
|
||
const byteOff = byteOffset + ~~(bitOffset / 8);
|
||
const bitOff = bitOffset % 8;
|
||
let value = source[byteOff];
|
||
value &= 0xff >> bitOff;
|
||
const bitsRead = 8 - bitOff;
|
||
const bitsLeft = len - bitsRead;
|
||
if (bitsLeft < 0) {
|
||
value >>= (8 - bitOff - len);
|
||
} else if (bitsLeft > 0) {
|
||
value <<= bitsLeft;
|
||
value |= getBitAllignedNumber(source, byteOffset, bitOffset + bitsRead, bitsLeft);
|
||
}
|
||
return value;
|
||
}
|
||
|
||
/**
|
||
* Read bit-aligned number start from buffer
|
||
* Total offset in bits = byteOffset * 8 + bitOffset
|
||
* @param source Byte Uint8Array
|
||
* @param byteOffset Starting offset in bytes
|
||
* @param bitOffset Starting offset in bits: 0 = most significant bit, 7 is the least significant bit
|
||
* @return True if bit is set
|
||
*/
|
||
export function isBitSet(source: Uint8Array, byteOffset: number, bitOffset: number): boolean {
|
||
return getBitAllignedNumber(source, byteOffset, bitOffset, 1) === 1;
|
||
}
|
||
|
||
export function a2hex(str: string) {
|
||
const arr = [];
|
||
for (let i = 0, l = str.length; i < l; i++) {
|
||
const hex = Number(str.charCodeAt(i)).toString(16);
|
||
arr.push(hex.length === 1 ? `0${hex}` : hex);
|
||
}
|
||
return arr.join(' ');
|
||
}
|
||
|
||
/**
|
||
* Convert power ratio to DB
|
||
* ratio: [0..1]
|
||
*/
|
||
export function ratioToDb(ratio: number): number {
|
||
return 10 * Math.log10(ratio);
|
||
}
|
||
|
||
/**
|
||
* Convert dB to ratio
|
||
* db Decibels
|
||
*/
|
||
export function dbToRatio(dB: number): number {
|
||
return 10 ** (dB / 10);
|
||
}
|
||
|
||
/**
|
||
* Convert replay gain to ratio and Decibel
|
||
* @param value string holding a ratio like '0.034' or '-7.54 dB'
|
||
*/
|
||
export function toRatio(value: string): IRatio | undefined {
|
||
const ps = value.split(' ').map(p => p.trim().toLowerCase());
|
||
if (ps.length >= 1) {
|
||
const v = Number.parseFloat(ps[0]);
|
||
return ps.length === 2 && ps[1] === 'db' ? {
|
||
dB: v,
|
||
ratio: dbToRatio(v)
|
||
} : {
|
||
dB: ratioToDb(v),
|
||
ratio: v
|
||
};
|
||
}
|
||
}
|
||
|
||
/**
|
||
* Decode a big-endian unsigned integer from a Uint8Array.
|
||
* Supports dynamic length (1–8 bytes).
|
||
*/
|
||
export function decodeUintBE(uint8Array: Uint8Array): number {
|
||
if (uint8Array.length === 0) {
|
||
throw new Error("decodeUintBE: empty Uint8Array");
|
||
}
|
||
|
||
const view = new DataView(
|
||
uint8Array.buffer,
|
||
uint8Array.byteOffset,
|
||
uint8Array.byteLength
|
||
);
|
||
|
||
return getUintBE(view);
|
||
}
|