-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmod.ts
417 lines (397 loc) · 11 KB
/
mod.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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
import { transferSymbols } from "./utils/transfer_symbols.ts";
/**
* Create a function that restores the given console to its original state.
*/
function createRestoreConsole(original: Console) {
const methods: PropertyDescriptorMap = {
assert: {
value: original?.assert.bind(original),
writable: true,
enumerable: true,
configurable: true,
},
clear: {
value: original?.clear.bind(original),
writable: true,
enumerable: true,
configurable: true,
},
count: {
value: original?.count.bind(original),
writable: true,
enumerable: true,
configurable: true,
},
countReset: {
value: original?.countReset.bind(original),
writable: true,
enumerable: true,
configurable: true,
},
debug: {
value: original?.debug.bind(original),
writable: true,
enumerable: true,
configurable: true,
},
dir: {
value: original?.dir.bind(original),
writable: true,
enumerable: true,
configurable: true,
},
dirxml: {
value: original?.dirxml.bind(original),
writable: true,
enumerable: true,
configurable: true,
},
error: {
value: original?.error.bind(original),
writable: true,
enumerable: true,
configurable: true,
},
group: {
value: original?.group.bind(original),
writable: true,
enumerable: true,
configurable: true,
},
groupCollapsed: {
value: original?.groupCollapsed.bind(original),
writable: true,
enumerable: true,
configurable: true,
},
groupEnd: {
value: original?.groupEnd.bind(original),
writable: true,
enumerable: true,
configurable: true,
},
info: {
value: original?.info.bind(original),
writable: true,
enumerable: true,
configurable: true,
},
log: {
value: original?.log.bind(original),
writable: true,
enumerable: true,
configurable: true,
},
table: {
value: original?.table.bind(original),
writable: true,
enumerable: true,
configurable: true,
},
time: {
value: original?.time.bind(original),
writable: true,
enumerable: true,
configurable: true,
},
timeEnd: {
value: original?.timeEnd.bind(original),
writable: true,
enumerable: true,
configurable: true,
},
timeLog: {
value: original?.timeLog.bind(original),
writable: true,
enumerable: true,
configurable: true,
},
trace: {
value: original?.trace.bind(original),
writable: true,
enumerable: true,
configurable: true,
},
warn: {
value: original?.warn.bind(original),
writable: true,
enumerable: true,
configurable: true,
},
timeStamp: {
value: original?.timeStamp.bind(original),
writable: true,
enumerable: true,
configurable: true,
},
profile: {
value: original?.profile.bind(original),
writable: true,
enumerable: true,
configurable: true,
},
profileEnd: {
value: original?.profileEnd.bind(original),
writable: true,
enumerable: true,
configurable: true,
},
};
return (console: Console) => Object.defineProperties(console, methods);
}
type RecursivePartial<T> = {
[P in keyof T]?: RecursivePartial<T[P]>;
};
/**
* All of the log levels that are supported by the console.
*/
export type LogLevel =
| "trace"
| "debug"
| "info"
| "warn"
| "error";
/**
* A numeric representation of the log levels to be able to compare log levels.
* The lower the number, the more verbose the log level. The higher the number,
* the more severe the log level.
*/
export const LOG_LEVELS: { [level in LogLevel]: number } = {
"trace": 1,
"debug": 2,
"info": 3,
"warn": 4,
"error": 5,
};
/**
* A log object that represents a single log entry.
*/
export interface Log {
/** A millisecond resolution unix timestamp of when the log was made */
timestamp: number;
/** The log level of the log. */
level: LogLevel;
/**
* An array of groups that were active when the log was made. The groups are
* a clone of the array of all the arguments that were passed to the console
* `group` and `groupCollapsed` methods as to never modify any potential
* references.
*
* @example
* ```ts
* console.group("group1", "group2");
* console.group("group3");
* console.log("Hello, world!");
* // Would result in the following groups:
* // [["group1", "group2"], ["group3"]]
* ```
*/
// deno-lint-ignore no-explicit-any
groups: any[][];
/**
* The data that was logged. It is a clone of the array of all the arguments
* that were passed to the console method which made the log as to never
* modify any potential references.
*/
// deno-lint-ignore no-explicit-any
data: any[];
}
/**
* Options for the {@link ConsoleReadableStream}.
*/
export interface ConsoleReadableStreamOptions {
/**
* The console object to capture logs from. The object will be modified to
* capture all logs and will be restored to its original state when the
* stream is closed.
*
* @default globalThis.console
*/
console: Console;
/**
* Internal methods and configuration. Depending on the options, the
* performance, supported features and timestamp accuracy may vary.
*
* @default defaultConsoleReadableStreamOptions
*/
internals: {
/**
* @returns A millisecond resolution unix timestamp of when the log was made
*/
now: () => number;
/**
* Clones the given data so that references are not shared between logs.
*/
clone: <T>(data: T) => T;
};
}
/**
* Default options for the {@link ConsoleReadableStreamOptions}. It uses normal
* resolution timestamps by calling `Date.now()` and a deep cloning by
* using the structured clone algorithm.
*/
export const defaultConsoleReadableStreamOptions: ConsoleReadableStreamOptions =
{
console: globalThis.console,
internals: {
now: Date.now,
clone: <T>(data: T) => transferSymbols(data, structuredClone(data)),
},
};
/**
* This is the fastest option, but it may not be suitable for all use cases.
* Read the caution below before using these default options.
*
* Fast defaults for the {@link ConsoleReadableStreamOptions}. It uses normal
* resolution timestamps by calling `Date.now()` and a shallow cloning by
* transforming the data to `JSON` and back.
*
* Caution: This option only supports JSON-serializable data and data may be
* lost in the process making future transforms which rely on non-json types
* impossible. If you need to support non-json types, you should use the
* {@link defaultConsoleReadableStreamOptions} instead.
*/
export const fastConsoleReadableStreamOptions: ConsoleReadableStreamOptions = {
console: globalThis.console,
internals: {
now: Date.now,
clone: <T>(data: T) =>
transferSymbols(data, JSON.parse(JSON.stringify(data))),
},
};
/**
* This is the most accurate option, but may suffer from a slight performance
* penalty by using high resolution timestamps and a deep cloning by using the
* structured clone algorithm.
*
* Use this option if you need to support non-json types and need high
* resolution timestamps.
*/
export const hrtimeConsoleReadableStreamOptions: ConsoleReadableStreamOptions =
{
console: globalThis.console,
internals: {
now: () => performance.timeOrigin + performance.now(),
clone: <T>(data: T) => transferSymbols(data, structuredClone(data)),
},
};
/**
* A readable stream that captures all console methods and turns them into a
* stream of {@link Log logs}.
*
* Note that it automatically replaces the global {@link console} object with a
* new one that captures all logs. To restore the original {@link console}
* object, call the {@link ConsoleReadableStream.cancel} method.
*/
export class ConsoleReadableStream extends ReadableStream<Log> {
#options: ConsoleReadableStreamOptions;
#restore: (console: Console) => Console;
#close: () => void;
constructor(
options: RecursivePartial<ConsoleReadableStreamOptions> =
defaultConsoleReadableStreamOptions,
) {
options ??= defaultConsoleReadableStreamOptions;
options.console ??= defaultConsoleReadableStreamOptions.console;
options.internals ??= defaultConsoleReadableStreamOptions.internals;
options.internals.now ??= defaultConsoleReadableStreamOptions.internals.now;
options.internals.clone ??=
defaultConsoleReadableStreamOptions.internals.clone;
let controller: ReadableStreamDefaultController<Log>;
// deno-lint-ignore no-explicit-any
const groups: any[] = [];
super({
start(defaultController) {
controller = defaultController;
},
});
this.#options = options as ConsoleReadableStreamOptions;
this.#restore = createRestoreConsole(this.#options.console);
this.#close = () => controller.close();
// deno-lint-ignore no-explicit-any
const wrapper = (level: LogLevel) => (...data: any[]) => {
controller.enqueue({
timestamp: this.#options.internals.now(),
level,
groups: this.#options.internals.clone(groups),
data: this.#options.internals.clone(data),
});
};
Object.defineProperties(options.console, {
trace: {
value: wrapper("trace"),
writable: true,
enumerable: true,
configurable: true,
},
debug: {
value: wrapper("debug"),
writable: true,
enumerable: true,
configurable: true,
},
info: {
value: wrapper("info"),
writable: true,
enumerable: true,
configurable: true,
},
log: {
value: wrapper("info"),
writable: true,
enumerable: true,
configurable: true,
},
warn: {
value: wrapper("warn"),
writable: true,
enumerable: true,
configurable: true,
},
error: {
value: wrapper("error"),
writable: true,
enumerable: true,
configurable: true,
},
group: {
// deno-lint-ignore no-explicit-any
value: (...data: any) => {
groups.push(data);
},
writable: true,
enumerable: true,
configurable: true,
},
groupCollapsed: {
// deno-lint-ignore no-explicit-any
value: (...data: any) => {
groups.push(data);
},
writable: true,
enumerable: true,
configurable: true,
},
groupEnd: {
value: () => {
groups.pop();
},
writable: true,
enumerable: true,
configurable: true,
},
});
}
/**
* Closes the stream and restores the original console object.
*/
close() {
this.#close();
this.#options.console = this.#restore(this.#options.console);
}
// deno-lint-ignore no-explicit-any
cancel(reason?: any): Promise<void> {
this.close();
return super.cancel(reason);
}
}