-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog.ts
132 lines (119 loc) · 4.42 KB
/
log.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
import * as fs from 'fs';
import * as util from 'util';
import { OrArray, arrayify, getCallerLoc, clone } from './util';
const truncate = require('truncate-logs');
enum Levels {
Trace = -1,
Info = 0,
Log = 1,
Error = 2,
}
export type LogCategory =
'console' |
'switch' |
'mpu' |
'lpu' |
'cpu' |
'solenoid' |
'machine' |
'gfx' |
'game' |
'assert' |
'sound';
const files = [
'console',
'switch',
'mpu',
'lpu',
'cpu',
'solenoid',
'machine',
'gfx',
'game',
'assert',
'sound',
];
export class Log {
static files: { [name: string]: number} = {} as any;
static timestamp(): string {
const hr = process.hrtime();
const d = new Date(hr[0]*1000);
const ms = (hr[1]).toFixed(0).padStart(9, '0');
return d.getMinutes().toFixed().padStart(2, '0')+':'+d.getSeconds().toFixed().padStart(2, '0')+
'.'/*+d.getMilliseconds().toFixed().padStart(3, '0')*/+ms.slice(0, 3)+'.'+ms.slice(6);
}
static cleanParams(params: any[], maxDepth = 2): any[] {
return params.map(p => {
if (!p) return p;
switch (typeof p) {
case 'object':
if (p.cleanLog)
return p.cleanLog();
else if ((maxDepth || Object.keys(p).length < 5) && Object.keys(p).length < 10) {
const r = clone(p);
for (const key of Object.keys(p)) {
r[key] = this.cleanParams([p[key]], maxDepth - 1)[0];
}
return r;
} else
return `${p.constructor?.name ?? Object.keys(p)}`;
break;
}
return p;
});
}
static logMessage(level: Levels, categories: OrArray<LogCategory>, message: string, ...params: any[]) {
params = Log.cleanParams(params);
// Log.write(Log.files.all, JSON.stringify({level, categories, message, params: util.inspect(params)}));
const ts = Log.timestamp()+' ';
if (categories.includes('switch') || categories.includes('game') || level >= Levels.Log)
console[level >= Levels.Error? 'error' : 'log'](ts+message, ...params);
Log.write(Log.files.all, ts+Log.format(message, params)+'; \t\t'+JSON.stringify(categories)+' ');
Log.trace(categories, message, ...params);
for (const cat of arrayify(categories)) {
Log.write(Log.files[cat], ts+Log.format(message, params));
}
}
static trace(categories: OrArray<LogCategory>, message: string, ...params: any[]) {
if (!Log.files.trace) return;
params = Log.cleanParams(params);
// Log.write(Log.files.trace, JSON.stringify({categories, message, params: util.inspect(params)}));
const ts = Log.timestamp()+' ';
Log.write(Log.files.trace, ts+JSON.stringify(categories)+' '+Log.format(message, params)+'\t\t\t@'+getCallerLoc(true));
}
static info(categories: OrArray<LogCategory>, message: string, ...params: any[]) {
return Log.logMessage(Levels.Info, categories, message, ...params);
}
static log(categories: OrArray<LogCategory>, message: string, ...params: any[]) {
return Log.logMessage(Levels.Log, categories, message, ...params);
}
static error(categories: OrArray<LogCategory>, message: string, ...params: any[]) {
return Log.logMessage(Levels.Error, categories, message, ...params);
}
static format(message: string, params: any): string {
if (params.length === 0)
return message;
return util.format.apply(util, [message, ...params]);
}
static write(fil: number, message: string) {
fs.writeSync(fil, message+'\n');
}
static init(trace = true, append = false) {
for (const f of files) {
Log.files[f] = fs.openSync(f+'.log', append? 'a+' : 'w');
Log.write(Log.files[f], `${new Date()}`);
}
Log.files.all= fs.openSync('all.log', append? 'a+' : 'w');
Log.write(Log.files.all, `${new Date()}`);
if (trace) {
Log.files.trace= fs.openSync('trace.log', append? 'a+' : 'w');
Log.write(Log.files.trace, `${new Date()}`);
}
}
static closeFiles() {
for (const file of Object.keys(Log.files)) {
fs.closeSync(Log.files[file]);
}
Log.files = {};
}
}