-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlogging.ts
More file actions
314 lines (268 loc) · 8.6 KB
/
logging.ts
File metadata and controls
314 lines (268 loc) · 8.6 KB
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
/* eslint-disable no-underscore-dangle */
import winston from 'winston';
import chalkTemplate from 'chalk-template';
import shell from 'shelljs';
import stripAnsi from 'strip-ansi';
import ProgressBarTransport from './progressbar-transport.js';
import { ErrorLogEntry, Timing } from '../types/index.js';
const { ls } = shell;
const consoleTransports: Record<
string,
winston.transports.ConsoleTransportInstance
> = {};
const fileTransports: Record<string, winston.transports.FileTransportInstance> =
{};
const progressBarTransports: Record<string, ProgressBarTransport> = {};
// TODO parse out `-step` in step-loggings
// TODO check that errors actually land in generated log files, too
const { format: winstonFormat } = winston;
const {
combine: winstonCombine,
timestamp: winstonTimestamp,
label: winstonLabel,
printf: winstonPrintf,
colorize: winstonColorize
} = winstonFormat;
const cliStringConsole = chalkTemplate`{bold.keyword('orange') kickstartDS}`;
const labelStringConsole = (label: string) =>
chalkTemplate`{keyword('fuchsia') ${label}}`;
const commandStringConsole = (command: string, subcommand = '') => {
if (!command) return '';
if (subcommand)
return chalkTemplate`{bold.keyword('grey') ${command}}{keyword('grey') ${
subcommand ? `: ${subcommand}` : ''
}}`;
return chalkTemplate`{bold.keyword('grey') ${command}}{keyword('grey') ${
subcommand ? `-${subcommand}` : ''
}}`;
};
const errorStringConsole = (error: ErrorLogEntry) => error.message;
const errorsStringConsole = (errorsArray: ErrorLogEntry[]) => {
if (errorsArray && errorsArray.length) {
return chalkTemplate` {keyword('grey') ${errorsArray.reduce(
(errors, error) => errors + errorStringConsole(error),
''
)}}`;
}
return '';
};
const cliStringFile = 'kickstartDS';
const commandStringFile = (command: string, subcommand = '') => {
if (!command) return '';
if (subcommand) return `${command}${subcommand ? `: ${subcommand}` : ''}`;
return chalkTemplate`${command}${subcommand ? `-${subcommand}` : ''}`;
};
const errorStringFile = (error: ErrorLogEntry) => error.message;
const errorsStringFile = (errorsArray: ErrorLogEntry[]) => {
if (errorsArray && errorsArray.length) {
return chalkTemplate` ${errorsArray.reduce(
(errors, error) => errors + errorStringFile(error),
''
)}`;
}
return '';
};
const kickstartdsFormatConsoleTemplateFn = ({
level,
message,
label,
command,
subcommand,
errors,
utility,
step,
numSteps
}: winston.Logform.TransformableInfo): string => {
if (utility) return `[${level}] ${message}${errorsStringConsole(errors)}`;
if (!command)
return `[${cliStringConsole}: ${labelStringConsole(
label
)}] ${level}: ${message}${errorsStringConsole(errors)}`;
if (subcommand)
return `${
step && numSteps
? chalkTemplate`[{bold.keyword('grey') ${step}}/{bold.keyword('grey') ${numSteps}}] `
: ''
}[${commandStringConsole(
command,
subcommand
)}] ${level}: ${message}${errorsStringConsole(errors)}`;
return `[${cliStringConsole}: ${labelStringConsole(
label
)}/${commandStringConsole(
command,
subcommand
)}] ${message}${errorsStringConsole(errors)}`;
};
const kickstartdsFormatConsole = winstonPrintf(
kickstartdsFormatConsoleTemplateFn
);
const rmFormatFile = winstonPrintf(
({ level, message, label, timestamp, command, subcommand, errors }) =>
stripAnsi(
`${timestamp} [${cliStringFile}: ${label}/${commandStringFile(
command,
subcommand
)}] ${level}: ${message}${errorsStringFile(errors)}`
)
);
let logIndex = 0;
const createConsoleTransport = (label: string, level: string) =>
new winston.transports.Console({
level,
format: winstonCombine(
winstonColorize(),
winstonLabel({ label }),
winstonTimestamp(),
kickstartdsFormatConsole
)
});
const createFileTransport = (label: string, level: string, fileName: string) =>
new winston.transports.File({
level,
filename: fileName,
format: winstonCombine(
winstonLabel({ label }),
winstonTimestamp(),
rmFormatFile
)
});
const createProgressBarTransport = (
label: string,
level: string,
timings: Timing[]
) =>
new ProgressBarTransport({
level,
format: winstonCombine(
winstonColorize(),
winstonLabel({ label }),
winstonTimestamp(),
kickstartdsFormatConsole
),
formatConsole: kickstartdsFormatConsoleTemplateFn,
timings
});
const savedConsoleTransports: Record<
string,
winston.transports.ConsoleTransportInstance
> = {};
// TODO do away with that `any` coming up...
export const addProgressBarTransport = (
label: string,
timings: Timing[]
): ProgressBarTransport | false => {
const summedTimings = timings.reduce(
(acc, subtiming) => acc + subtiming._value,
0
);
if (
timings.length > 0 &&
summedTimings > 2500 &&
winston.loggers.has(label)
) {
const logger = winston.loggers.get(label);
const consoleTransport = consoleTransports[label];
savedConsoleTransports[label] = consoleTransport;
logger.remove(consoleTransport);
const progressBarTransport = createProgressBarTransport(
label,
consoleTransport.level || 'warn',
timings
);
logger.add(progressBarTransport);
progressBarTransports[label] = progressBarTransport;
process.stdout.write('\x1B[?25l');
return progressBarTransport;
}
return false;
};
export const removeProgressBarTransport = (label: string): boolean => {
if (winston.loggers.has(label)) {
const logger = winston.loggers.get(label);
const consoleTransport = savedConsoleTransports[label];
const progressBarTransport = progressBarTransports[label];
logger.remove(progressBarTransport);
logger.add(consoleTransport);
delete savedConsoleTransports[label];
delete progressBarTransports[label];
progressBarTransport.stopIntervals();
process.stdout.write('\x1B[?25h');
}
return true;
};
export const getLogger = (
label: string,
level = 'info',
consoleTransport = true,
fileTransport = false,
command = ''
): winston.Logger => {
if (!winston.loggers.has(label)) {
const loggerOptions: winston.LoggerOptions = {
transports: [],
format: winston.format.label({ label })
};
if (consoleTransport) {
const transport = createConsoleTransport(label, level);
if (Array.isArray(loggerOptions.transports)) {
loggerOptions.transports.push(transport);
}
consoleTransports[label] = transport;
}
if (fileTransport) {
const silentStatus = shell.config.silent;
shell.config.silent = true;
const lsResult = ls('-A', `.${label}-${command}rc.log`);
if (lsResult.code === 0 && lsResult.length) logIndex = 1;
const logCount = ls('-A', `.${label}-${command}rc.*.log`);
shell.config.silent = silentStatus;
if (logCount.code === 0 && logCount.length)
logIndex = logCount.length + 1;
const fileName = `.${label}${command ? `-${command}rc` : 'rc'}${
logIndex ? `.${logIndex - 1}` : ''
}.log`;
const transport = createFileTransport(label, level, fileName);
if (Array.isArray(loggerOptions.transports)) {
loggerOptions.transports.push(transport);
}
fileTransports[label] = transport;
}
winston.loggers.add(label, loggerOptions);
} else {
const logger = winston.loggers.get(label);
if (consoleTransport) {
if (!consoleTransports[label]) {
const transport = createConsoleTransport(label, level);
logger.add(transport);
consoleTransports[label] = transport;
}
} else if (consoleTransports[label]) {
logger.remove(consoleTransports[label]);
delete consoleTransports[label];
}
if (fileTransport) {
if (!fileTransports[label]) {
const lsResult = ls('-A', `.${label}-${command}rc.log`);
if (lsResult.code === 0 && lsResult.length) logIndex = 1;
const logCount = ls('-A', `.${label}-${command}rc.*.log`);
if (logCount.code === 0 && logCount.length)
logIndex = logCount.length + 1;
const fileName = `.${label}${command ? `-${command}rc` : 'rc'}${
logIndex ? `.${logIndex - 1}` : ''
}.log`;
const transport = createFileTransport(label, level, fileName);
logger.add(transport);
fileTransports[label] = transport;
}
} else if (fileTransports[label]) {
logger.remove(fileTransports[label]);
delete fileTransports[label];
}
}
return winston.loggers.get(label);
};
export const logErrorAndExit = (error: any) => {
console.error(error);
process.exit(1);
};