| import { SetArray, put, remove } from './set-array'; |
| import { |
| encode, |
| |
| |
| } from '@jridgewell/sourcemap-codec'; |
| import { TraceMap, decodedMappings } from '@jridgewell/trace-mapping'; |
|
|
| import { |
| COLUMN, |
| SOURCES_INDEX, |
| SOURCE_LINE, |
| SOURCE_COLUMN, |
| NAMES_INDEX, |
| } from './sourcemap-segment'; |
|
|
| import type { SourceMapInput } from '@jridgewell/trace-mapping'; |
| |
| import type { SourceMapSegment } from './sourcemap-segment'; |
| import type { |
| DecodedSourceMap, |
| EncodedSourceMap, |
| Pos, |
| Mapping, |
| |
| |
| |
| |
| } from './types'; |
|
|
| export type { DecodedSourceMap, EncodedSourceMap, Mapping }; |
|
|
| export type Options = { |
| file?: string | null; |
| sourceRoot?: string | null; |
| }; |
|
|
| const NO_NAME = -1; |
|
|
| |
| |
| |
| export class GenMapping { |
| declare private _names: SetArray<string>; |
| declare private _sources: SetArray<string>; |
| declare private _sourcesContent: (string | null)[]; |
| declare private _mappings: SourceMapSegment[][]; |
| |
| |
| declare private _ignoreList: SetArray<number>; |
| declare file: string | null | undefined; |
| declare sourceRoot: string | null | undefined; |
|
|
| constructor({ file, sourceRoot }: Options = {}) { |
| this._names = new SetArray(); |
| this._sources = new SetArray(); |
| this._sourcesContent = []; |
| this._mappings = []; |
| |
| |
| this.file = file; |
| this.sourceRoot = sourceRoot; |
| this._ignoreList = new SetArray(); |
| } |
| } |
|
|
| interface PublicMap { |
| _names: GenMapping['_names']; |
| _sources: GenMapping['_sources']; |
| _sourcesContent: GenMapping['_sourcesContent']; |
| _mappings: GenMapping['_mappings']; |
| |
| |
| _ignoreList: GenMapping['_ignoreList']; |
| } |
|
|
| |
| |
| |
| |
| function cast(map: unknown): PublicMap { |
| return map as any; |
| } |
|
|
| |
| |
| |
| |
| export function addSegment( |
| map: GenMapping, |
| genLine: number, |
| genColumn: number, |
| source?: null, |
| sourceLine?: null, |
| sourceColumn?: null, |
| name?: null, |
| content?: null, |
| ): void; |
| export function addSegment( |
| map: GenMapping, |
| genLine: number, |
| genColumn: number, |
| source: string, |
| sourceLine: number, |
| sourceColumn: number, |
| name?: null, |
| content?: string | null, |
| ): void; |
| export function addSegment( |
| map: GenMapping, |
| genLine: number, |
| genColumn: number, |
| source: string, |
| sourceLine: number, |
| sourceColumn: number, |
| name: string, |
| content?: string | null, |
| ): void; |
| export function addSegment( |
| map: GenMapping, |
| genLine: number, |
| genColumn: number, |
| source?: string | null, |
| sourceLine?: number | null, |
| sourceColumn?: number | null, |
| name?: string | null, |
| content?: string | null, |
| ): void { |
| return addSegmentInternal( |
| false, |
| map, |
| genLine, |
| genColumn, |
| source, |
| sourceLine, |
| sourceColumn, |
| name, |
| content, |
| ); |
| } |
|
|
| |
| |
| |
| |
| export function addMapping( |
| map: GenMapping, |
| mapping: { |
| generated: Pos; |
| source?: null; |
| original?: null; |
| name?: null; |
| content?: null; |
| }, |
| ): void; |
| export function addMapping( |
| map: GenMapping, |
| mapping: { |
| generated: Pos; |
| source: string; |
| original: Pos; |
| name?: null; |
| content?: string | null; |
| }, |
| ): void; |
| export function addMapping( |
| map: GenMapping, |
| mapping: { |
| generated: Pos; |
| source: string; |
| original: Pos; |
| name: string; |
| content?: string | null; |
| }, |
| ): void; |
| export function addMapping( |
| map: GenMapping, |
| mapping: { |
| generated: Pos; |
| source?: string | null; |
| original?: Pos | null; |
| name?: string | null; |
| content?: string | null; |
| }, |
| ): void { |
| return addMappingInternal(false, map, mapping as Parameters<typeof addMappingInternal>[2]); |
| } |
|
|
| |
| |
| |
| |
| |
| export const maybeAddSegment: typeof addSegment = ( |
| map, |
| genLine, |
| genColumn, |
| source, |
| sourceLine, |
| sourceColumn, |
| name, |
| content, |
| ) => { |
| return addSegmentInternal( |
| true, |
| map, |
| genLine, |
| genColumn, |
| source, |
| sourceLine, |
| sourceColumn, |
| name, |
| content, |
| ); |
| }; |
|
|
| |
| |
| |
| |
| |
| export const maybeAddMapping: typeof addMapping = (map, mapping) => { |
| return addMappingInternal(true, map, mapping as Parameters<typeof addMappingInternal>[2]); |
| }; |
|
|
| |
| |
| |
| export function setSourceContent(map: GenMapping, source: string, content: string | null): void { |
| const { |
| _sources: sources, |
| _sourcesContent: sourcesContent, |
| |
| } = cast(map); |
| const index = put(sources, source); |
| sourcesContent[index] = content; |
| |
| } |
|
|
| export function setIgnore(map: GenMapping, source: string, ignore = true) { |
| const { |
| _sources: sources, |
| _sourcesContent: sourcesContent, |
| _ignoreList: ignoreList, |
| |
| } = cast(map); |
| const index = put(sources, source); |
| if (index === sourcesContent.length) sourcesContent[index] = null; |
| |
| if (ignore) put(ignoreList, index); |
| else remove(ignoreList, index); |
| } |
|
|
| |
| |
| |
| |
| export function toDecodedMap(map: GenMapping): DecodedSourceMap { |
| const { |
| _mappings: mappings, |
| _sources: sources, |
| _sourcesContent: sourcesContent, |
| _names: names, |
| _ignoreList: ignoreList, |
| |
| |
| } = cast(map); |
| removeEmptyFinalLines(mappings); |
|
|
| return { |
| version: 3, |
| file: map.file || undefined, |
| names: names.array, |
| sourceRoot: map.sourceRoot || undefined, |
| sources: sources.array, |
| sourcesContent, |
| mappings, |
| |
| |
| ignoreList: ignoreList.array, |
| }; |
| } |
|
|
| |
| |
| |
| |
| export function toEncodedMap(map: GenMapping): EncodedSourceMap { |
| const decoded = toDecodedMap(map); |
| return Object.assign({}, decoded, { |
| |
| |
| mappings: encode(decoded.mappings as SourceMapSegment[][]), |
| }); |
| } |
|
|
| |
| |
| |
| export function fromMap(input: SourceMapInput): GenMapping { |
| const map = new TraceMap(input); |
| const gen = new GenMapping({ file: map.file, sourceRoot: map.sourceRoot }); |
|
|
| putAll(cast(gen)._names, map.names); |
| putAll(cast(gen)._sources, map.sources as string[]); |
| cast(gen)._sourcesContent = map.sourcesContent || map.sources.map(() => null); |
| cast(gen)._mappings = decodedMappings(map) as GenMapping['_mappings']; |
| |
| if (map.ignoreList) putAll(cast(gen)._ignoreList, map.ignoreList); |
|
|
| return gen; |
| } |
|
|
| |
| |
| |
| |
| export function allMappings(map: GenMapping): Mapping[] { |
| const out: Mapping[] = []; |
| const { _mappings: mappings, _sources: sources, _names: names } = cast(map); |
|
|
| for (let i = 0; i < mappings.length; i++) { |
| const line = mappings[i]; |
| for (let j = 0; j < line.length; j++) { |
| const seg = line[j]; |
|
|
| const generated = { line: i + 1, column: seg[COLUMN] }; |
| let source: string | undefined = undefined; |
| let original: Pos | undefined = undefined; |
| let name: string | undefined = undefined; |
|
|
| if (seg.length !== 1) { |
| source = sources.array[seg[SOURCES_INDEX]]; |
| original = { line: seg[SOURCE_LINE] + 1, column: seg[SOURCE_COLUMN] }; |
|
|
| if (seg.length === 5) name = names.array[seg[NAMES_INDEX]]; |
| } |
|
|
| out.push({ generated, source, original, name } as Mapping); |
| } |
| } |
|
|
| return out; |
| } |
|
|
| |
| function addSegmentInternal<S extends string | null | undefined>( |
| skipable: boolean, |
| map: GenMapping, |
| genLine: number, |
| genColumn: number, |
| source: S, |
| sourceLine: S extends string ? number : null | undefined, |
| sourceColumn: S extends string ? number : null | undefined, |
| name: S extends string ? string | null | undefined : null | undefined, |
| content: S extends string ? string | null | undefined : null | undefined, |
| ): void { |
| const { |
| _mappings: mappings, |
| _sources: sources, |
| _sourcesContent: sourcesContent, |
| _names: names, |
| |
| } = cast(map); |
| const line = getIndex(mappings, genLine); |
| const index = getColumnIndex(line, genColumn); |
|
|
| if (!source) { |
| if (skipable && skipSourceless(line, index)) return; |
| return insert(line, index, [genColumn]); |
| } |
|
|
| |
| |
| assert<number>(sourceLine); |
| assert<number>(sourceColumn); |
|
|
| const sourcesIndex = put(sources, source); |
| const namesIndex = name ? put(names, name) : NO_NAME; |
| if (sourcesIndex === sourcesContent.length) sourcesContent[sourcesIndex] = content ?? null; |
| |
|
|
| if (skipable && skipSource(line, index, sourcesIndex, sourceLine, sourceColumn, namesIndex)) { |
| return; |
| } |
|
|
| return insert( |
| line, |
| index, |
| name |
| ? [genColumn, sourcesIndex, sourceLine, sourceColumn, namesIndex] |
| : [genColumn, sourcesIndex, sourceLine, sourceColumn], |
| ); |
| } |
|
|
| function assert<T>(_val: unknown): asserts _val is T { |
| |
| } |
|
|
| function getIndex<T>(arr: T[][], index: number): T[] { |
| for (let i = arr.length; i <= index; i++) { |
| arr[i] = []; |
| } |
| return arr[index]; |
| } |
|
|
| function getColumnIndex(line: SourceMapSegment[], genColumn: number): number { |
| let index = line.length; |
| for (let i = index - 1; i >= 0; index = i--) { |
| const current = line[i]; |
| if (genColumn >= current[COLUMN]) break; |
| } |
| return index; |
| } |
|
|
| function insert<T>(array: T[], index: number, value: T) { |
| for (let i = array.length; i > index; i--) { |
| array[i] = array[i - 1]; |
| } |
| array[index] = value; |
| } |
|
|
| function removeEmptyFinalLines(mappings: SourceMapSegment[][]) { |
| const { length } = mappings; |
| let len = length; |
| for (let i = len - 1; i >= 0; len = i, i--) { |
| if (mappings[i].length > 0) break; |
| } |
| if (len < length) mappings.length = len; |
| } |
|
|
| function putAll<T extends string | number>(setarr: SetArray<T>, array: T[]) { |
| for (let i = 0; i < array.length; i++) put(setarr, array[i]); |
| } |
|
|
| function skipSourceless(line: SourceMapSegment[], index: number): boolean { |
| |
| |
| if (index === 0) return true; |
|
|
| const prev = line[index - 1]; |
| |
| |
| |
| return prev.length === 1; |
| } |
|
|
| function skipSource( |
| line: SourceMapSegment[], |
| index: number, |
| sourcesIndex: number, |
| sourceLine: number, |
| sourceColumn: number, |
| namesIndex: number, |
| ): boolean { |
| |
| if (index === 0) return false; |
|
|
| const prev = line[index - 1]; |
|
|
| |
| if (prev.length === 1) return false; |
|
|
| |
| |
| return ( |
| sourcesIndex === prev[SOURCES_INDEX] && |
| sourceLine === prev[SOURCE_LINE] && |
| sourceColumn === prev[SOURCE_COLUMN] && |
| namesIndex === (prev.length === 5 ? prev[NAMES_INDEX] : NO_NAME) |
| ); |
| } |
|
|
| function addMappingInternal<S extends string | null | undefined>( |
| skipable: boolean, |
| map: GenMapping, |
| mapping: { |
| generated: Pos; |
| source: S; |
| original: S extends string ? Pos : null | undefined; |
| name: S extends string ? string | null | undefined : null | undefined; |
| content: S extends string ? string | null | undefined : null | undefined; |
| }, |
| ) { |
| const { generated, source, original, name, content } = mapping; |
| if (!source) { |
| return addSegmentInternal( |
| skipable, |
| map, |
| generated.line - 1, |
| generated.column, |
| null, |
| null, |
| null, |
| null, |
| null, |
| ); |
| } |
| assert<Pos>(original); |
| return addSegmentInternal( |
| skipable, |
| map, |
| generated.line - 1, |
| generated.column, |
| source as string, |
| original.line - 1, |
| original.column, |
| name, |
| content, |
| ); |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|