设计tracer

This commit is contained in:
2025-11-10 02:44:50 +08:00
parent e502cb7840
commit 9c99af4781
5 changed files with 16 additions and 16 deletions

View File

@@ -1,7 +1,7 @@
import type { TracerCommand } from "../types/command"; import type { TracerCommand } from "../types/command";
export class Commander { export class Commander {
private commands: TracerCommand[]; private commands: TracerCommand<unknown>[];
private constructor() { private constructor() {
this.commands = []; this.commands = [];
@@ -16,7 +16,7 @@ export class Commander {
return this.instance; return this.instance;
} }
public command(command: TracerCommand) { public command<T = never>(command: TracerCommand<T>) {
this.commands.push(command); this.commands.push(command);
} }

View File

@@ -41,9 +41,9 @@ export class ArrayTracer<T> {
}); });
} }
public expand(size: number) {} public extend(size: number) {}
public reduce(size: number) {} public shrink(size: number) {}
public pick(index: number) {} public pick(index: number) {}

View File

@@ -1,52 +1,52 @@
export type ArrayTracerDefineCommand = { export type ArrayTracerDefineCommand = {
tracer: null;
action: "define"; action: "define";
tracer: null;
params: { type: "ArrayTracer"; id: string; desc?: string }; params: { type: "ArrayTracer"; id: string; desc?: string };
}; };
export type ArrayTracerPresetCommand<T = unknown> = { export type ArrayTracerPresetCommand<T = unknown> = {
tracer: string;
action: "preset"; action: "preset";
tracer: string;
params: T[]; params: T[];
}; };
export type ArrayTracerExtendCommand = { export type ArrayTracerExtendCommand = {
tracer: string;
action: "extend"; action: "extend";
tracer: string;
params: { size: number }; params: { size: number };
}; };
export type ArrayTracerShrinkCommand = { export type ArrayTracerShrinkCommand = {
tracer: string;
action: "shrink"; action: "shrink";
tracer: string;
params: { size: number }; params: { size: number };
}; };
export type ArrayTracerPickCommand = { export type ArrayTracerPickCommand = {
tracer: string;
action: "pick"; action: "pick";
tracer: string;
params: { index: number }; params: { index: number };
}; };
export type ArrayTracerDropCommand = { export type ArrayTracerDropCommand = {
tracer: string;
action: "drop"; action: "drop";
tracer: string;
params: { index: number }; params: { index: number };
}; };
export type ArrayTracerPatchCommand<T = unknown> = { export type ArrayTracerPatchCommand<T = unknown> = {
tracer: string;
action: "patch"; action: "patch";
tracer: string;
params: { index: number; value: T }; params: { index: number; value: T };
}; };
export type ArrayTracerResetCommand = { export type ArrayTracerResetCommand = {
tracer: string;
action: "reset"; action: "reset";
tracer: string;
params: null; params: null;
}; };
export type ArrayTracerCommand<T = unknown> = export type ArrayTracerCommand<T = never> =
| ArrayTracerDefineCommand | ArrayTracerDefineCommand
| ArrayTracerPresetCommand<T> | ArrayTracerPresetCommand<T>
| ArrayTracerExtendCommand | ArrayTracerExtendCommand

View File

@@ -2,4 +2,4 @@ import type { ArrayTracerCommand } from "./array-tracer-command";
export * from "./array-tracer-command"; export * from "./array-tracer-command";
export type TracerCommand = ArrayTracerCommand export type TracerCommand<T = never> = ArrayTracerCommand<T>;