-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkpoint.ts
217 lines (191 loc) · 5.82 KB
/
checkpoint.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
import { randomUUID } from 'crypto';
import type { StackEntry } from './stackEntry';
export class Checkpoint<
const TStatus extends Status,
TContent extends Content<TStatus> = Content<TStatus>,
TStack extends Stack<TStatus> = Stack<TStatus>,
TStoredPayload extends StoredPayload<TStatus> = StoredPayload<TStatus>,
TDescription extends Description<TStatus> = Description<TStatus>,
> {
readonly stack: TStack;
readonly payload: TStoredPayload;
readonly uuid = randomUUID();
readonly time = Date.now();
constructor(
readonly status: TStatus,
readonly description: TDescription,
content: TContent,
) {
this.payload = (
content instanceof Error
? new ErrorWrapper({
name: content.name,
message: content.message,
plainTextStack: content.stack,
})
: content
) as TStoredPayload;
this.stack = (
[
'executionStart',
'log',
'error',
'errorWithUnknownStructure',
'wasResolvedWithError',
'wasResolvedWithErrorWithUnknownStructure',
].includes(status)
? Checkpoint.captureStackTrace()
: null
) as TStack;
}
private static captureStackTrace(): ReadonlyArray<StackEntry> {
const _ = Error.prepareStackTrace;
Error.prepareStackTrace = (
err: Error,
stackTraces: NodeJS.CallSite[],
): StackEntry[] => Checkpoint.prepareStackTrace(err, stackTraces);
const { stack } = new Error() as unknown as {
readonly stack: StackEntry[];
};
Error.prepareStackTrace = _;
return stack;
}
private static prepareStackTrace(
err: Error,
callSites: NodeJS.CallSite[],
): StackEntry[] {
return callSites
.map((e) => {
const fileName = e.getFileName();
const lineNumber = e.getLineNumber();
const columnNumber = e.getColumnNumber();
return {
typeName: e?.getTypeName?.(),
functionName: e?.getFunctionName?.(),
methodName: e?.getMethodName?.(),
fullPath: this.parsePathFrom(fileName, lineNumber, columnNumber),
fileName: fileName || null,
lineNumber,
columnNumber,
// @ts-expect-error @types/node is lagging
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-unsafe-call
isAsync: e?.isAsync?.(),
} satisfies StackEntry;
})
.filter((stackEntry) => {
const { typeName, functionName, methodName, fileName } = stackEntry;
return (
!(
typeName === null &&
functionName === 'Checkpoint' &&
methodName === null
) &&
!(
typeName === 'Function' &&
functionName === 'captureStackTrace' &&
methodName === 'captureStackTrace'
) &&
!(
typeName === 'Module' &&
functionName === 'Module._compile' &&
methodName === '_compile' &&
fileName === 'node:internal/modules/cjs/loader'
) &&
!(
typeName === 'Object' &&
functionName === 'Module._extensions..js' &&
methodName === '.js' &&
fileName === 'node:internal/modules/cjs/loader'
) &&
!(
typeName === 'Module' &&
functionName === 'Module.load' &&
methodName === 'load' &&
fileName === 'node:internal/modules/cjs/loader'
) &&
!(typeName === 'TraceNode') &&
!(typeName === 'RootTraceNode') &&
!(typeName === 'PromiseAllTraceNode') &&
!(typeName === 'PromiseAllMappedTraceNode') &&
!(
typeName === null &&
functionName === 'trace' &&
methodName === null
)
);
});
}
private static parsePathFrom(
fileName: string | null | undefined,
lineNumber: number | null,
columnNumber: number | null,
): string | null {
if (!fileName) return null;
let path = `./${fileName
.replace(/^(\/)?(app)?(\/)?(src)?(\/)/, '')
.replace(/.(js|ts|jsx|tsx)$/, '')}`;
if (lineNumber === null) return path;
path += `:${lineNumber}`;
if (columnNumber === null) return path;
path += `:${columnNumber}`;
return path;
}
}
export class ArgsWrapper<T extends any[]> {
constructor(public args: T) {}
}
export class ResultWrapper<T> {
constructor(public result: T) {}
}
export class ErrorWrapper<T> {
constructor(public error: T) {}
}
type StoredPayload<
TStatus extends Status,
TContent extends Content<TStatus> = Content<TStatus>,
> = TStatus extends 'error' | 'wasResolvedWithError'
? ErrorWrapper<{
name: 'string';
message: 'string';
plainTextStack: 'string' | undefined;
}>
: TContent;
type Stack<TStatus extends Status> = TStatus extends
| 'executionStart'
| 'log'
| 'error'
| 'errorWithUnknownStructure'
| 'wasResolvedWithError'
| 'wasResolvedWithErrorWithUnknownStructure'
? ReadonlyArray<StackEntry>
: null;
type Description<TStatus extends Status> = TStatus extends
| 'log'
| 'errorWithUnknownStructure'
| 'wasResolvedWithErrorWithUnknownStructure'
? string
: null;
type Content<TStatus extends Status> = TStatus extends 'executionStart'
? ArgsWrapper<any[]>
: TStatus extends 'log'
? Record<string, any>
: TStatus extends 'error' | 'wasResolvedWithError'
? Error
: TStatus extends
| 'errorWithUnknownStructure'
| 'wasResolvedWithErrorWithUnknownStructure'
? ErrorWrapper<unknown>
: TStatus extends 'wasResolvedWithReturn'
? ResultWrapper<any>
: TStatus extends 'executionFinish'
? null
: never;
type Status =
| 'executionStart'
| 'log'
| 'error'
| 'errorWithUnknownStructure'
| 'wasResolvedWithError'
| 'wasResolvedWithErrorWithUnknownStructure'
| 'wasResolvedWithReturn'
| 'executionFinish';