mirror of
https://github.com/denoland/std.git
synced 2024-11-21 20:50:22 +00:00
17d7fffccc
* feat(internal): `internal@1.0.0` * work * revert * fix * fix
228 lines
5.9 KiB
TypeScript
228 lines
5.9 KiB
TypeScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
// This module is browser compatible.
|
|
|
|
import type { DiffResult, DiffType } from "./types.ts";
|
|
|
|
interface FarthestPoint {
|
|
y: number;
|
|
id: number;
|
|
}
|
|
|
|
const REMOVED = 1;
|
|
const COMMON = 2;
|
|
const ADDED = 3;
|
|
|
|
/**
|
|
* Creates an array of common elements between two arrays.
|
|
*
|
|
* @template T The type of elements in the arrays.
|
|
*
|
|
* @param A The first array.
|
|
* @param B The second array.
|
|
*
|
|
* @returns An array containing the common elements between the two arrays.
|
|
*/
|
|
function createCommon<T>(A: T[], B: T[]): T[] {
|
|
const common: T[] = [];
|
|
if (A.length === 0 || B.length === 0) return [];
|
|
for (let i = 0; i < Math.min(A.length, B.length); i += 1) {
|
|
const a = A[i];
|
|
const b = B[i];
|
|
if (a !== undefined && a === b) {
|
|
common.push(a);
|
|
} else {
|
|
return common;
|
|
}
|
|
}
|
|
return common;
|
|
}
|
|
|
|
function assertFp(value: unknown): asserts value is FarthestPoint {
|
|
if (value === undefined) {
|
|
throw new Error("Unexpected missing FarthestPoint");
|
|
}
|
|
}
|
|
|
|
function backTrace<T>(
|
|
A: T[],
|
|
B: T[],
|
|
current: FarthestPoint,
|
|
swapped: boolean,
|
|
routes: Uint32Array,
|
|
diffTypesPtrOffset: number,
|
|
): Array<{
|
|
type: DiffType;
|
|
value: T;
|
|
}> {
|
|
const M = A.length;
|
|
const N = B.length;
|
|
const result: { type: DiffType; value: T }[] = [];
|
|
let a = M - 1;
|
|
let b = N - 1;
|
|
let j = routes[current.id];
|
|
let type = routes[current.id + diffTypesPtrOffset];
|
|
while (true) {
|
|
if (!j && !type) break;
|
|
const prev = j!;
|
|
if (type === REMOVED) {
|
|
result.unshift({
|
|
type: swapped ? "removed" : "added",
|
|
value: B[b]!,
|
|
});
|
|
b -= 1;
|
|
} else if (type === ADDED) {
|
|
result.unshift({
|
|
type: swapped ? "added" : "removed",
|
|
value: A[a]!,
|
|
});
|
|
a -= 1;
|
|
} else {
|
|
result.unshift({ type: "common", value: A[a]! });
|
|
a -= 1;
|
|
b -= 1;
|
|
}
|
|
j = routes[prev];
|
|
type = routes[prev + diffTypesPtrOffset];
|
|
}
|
|
return result;
|
|
}
|
|
|
|
function createFp(
|
|
k: number,
|
|
M: number,
|
|
routes: Uint32Array,
|
|
diffTypesPtrOffset: number,
|
|
ptr: number,
|
|
slide?: FarthestPoint,
|
|
down?: FarthestPoint,
|
|
): FarthestPoint {
|
|
if (slide && slide.y === -1 && down && down.y === -1) {
|
|
return { y: 0, id: 0 };
|
|
}
|
|
const isAdding = (down?.y === -1) ||
|
|
k === M ||
|
|
(slide?.y || 0) > (down?.y || 0) + 1;
|
|
if (slide && isAdding) {
|
|
const prev = slide.id;
|
|
ptr++;
|
|
routes[ptr] = prev;
|
|
routes[ptr + diffTypesPtrOffset] = ADDED;
|
|
return { y: slide.y, id: ptr };
|
|
}
|
|
if (down && !isAdding) {
|
|
const prev = down.id;
|
|
ptr++;
|
|
routes[ptr] = prev;
|
|
routes[ptr + diffTypesPtrOffset] = REMOVED;
|
|
return { y: down.y + 1, id: ptr };
|
|
}
|
|
throw new Error("Unexpected missing FarthestPoint");
|
|
}
|
|
|
|
/**
|
|
* Renders the differences between the actual and expected values.
|
|
*
|
|
* @template T The type of elements in the arrays.
|
|
*
|
|
* @param A Actual value
|
|
* @param B Expected value
|
|
*
|
|
* @returns An array of differences between the actual and expected values.
|
|
*
|
|
* @example Usage
|
|
* ```ts
|
|
* import { diff } from "@std/internal/diff";
|
|
* import { assertEquals } from "@std/assert/assert-equals";
|
|
*
|
|
* const a = [1, 2, 3];
|
|
* const b = [1, 2, 4];
|
|
*
|
|
* assertEquals(diff(a, b), [
|
|
* { type: "common", value: 1 },
|
|
* { type: "common", value: 2 },
|
|
* { type: "removed", value: 3 },
|
|
* { type: "added", value: 4 },
|
|
* ]);
|
|
* ```
|
|
*/
|
|
export function diff<T>(A: T[], B: T[]): DiffResult<T>[] {
|
|
const prefixCommon = createCommon(A, B);
|
|
const suffixCommon = createCommon(
|
|
A.slice(prefixCommon.length),
|
|
B.slice(prefixCommon.length),
|
|
);
|
|
A = A.slice(prefixCommon.length, -suffixCommon.length || undefined);
|
|
B = B.slice(prefixCommon.length, -suffixCommon.length || undefined);
|
|
const swapped = B.length > A.length;
|
|
[A, B] = swapped ? [B, A] : [A, B];
|
|
const M = A.length;
|
|
const N = B.length;
|
|
if (!M && !N && !suffixCommon.length && !prefixCommon.length) return [];
|
|
if (!N) {
|
|
return [
|
|
...prefixCommon.map((value) => ({ type: "common", value })),
|
|
...A.map((value) => ({ type: swapped ? "added" : "removed", value })),
|
|
...suffixCommon.map((value) => ({ type: "common", value })),
|
|
] as DiffResult<T>[];
|
|
}
|
|
const offset = N;
|
|
const delta = M - N;
|
|
const length = M + N + 1;
|
|
const fp: FarthestPoint[] = Array.from({ length }, () => ({ y: -1, id: -1 }));
|
|
|
|
/**
|
|
* Note: this buffer is used to save memory and improve performance. The first
|
|
* half is used to save route and the last half is used to save diff type.
|
|
*/
|
|
const routes = new Uint32Array((M * N + length + 1) * 2);
|
|
const diffTypesPtrOffset = routes.length / 2;
|
|
let ptr = 0;
|
|
|
|
function snake<T>(
|
|
k: number,
|
|
A: T[],
|
|
B: T[],
|
|
slide?: FarthestPoint,
|
|
down?: FarthestPoint,
|
|
): FarthestPoint {
|
|
const M = A.length;
|
|
const N = B.length;
|
|
if (k < -N || M < k) return { y: -1, id: -1 };
|
|
const fp = createFp(k, M, routes, diffTypesPtrOffset, ptr, slide, down);
|
|
ptr = fp.id;
|
|
while (fp.y + k < M && fp.y < N && A[fp.y + k] === B[fp.y]) {
|
|
const prev = fp.id;
|
|
ptr++;
|
|
fp.id = ptr;
|
|
fp.y += 1;
|
|
routes[ptr] = prev;
|
|
routes[ptr + diffTypesPtrOffset] = COMMON;
|
|
}
|
|
return fp;
|
|
}
|
|
|
|
let currentFp = fp[delta + offset];
|
|
assertFp(currentFp);
|
|
let p = -1;
|
|
while (currentFp.y < N) {
|
|
p = p + 1;
|
|
for (let k = -p; k < delta; ++k) {
|
|
const index = k + offset;
|
|
fp[index] = snake(k, A, B, fp[index - 1], fp[index + 1]);
|
|
}
|
|
for (let k = delta + p; k > delta; --k) {
|
|
const index = k + offset;
|
|
fp[index] = snake(k, A, B, fp[index - 1], fp[index + 1]);
|
|
}
|
|
const index = delta + offset;
|
|
fp[delta + offset] = snake(delta, A, B, fp[index - 1], fp[index + 1]);
|
|
currentFp = fp[delta + offset];
|
|
assertFp(currentFp);
|
|
}
|
|
return [
|
|
...prefixCommon.map((value) => ({ type: "common", value })),
|
|
...backTrace(A, B, currentFp, swapped, routes, diffTypesPtrOffset),
|
|
...suffixCommon.map((value) => ({ type: "common", value })),
|
|
] as DiffResult<T>[];
|
|
}
|