-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
/
Console.js
143 lines (115 loc) · 2.99 KB
/
Console.js
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
/**
* Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow
*/
/* global stream$Writable */
import type {LogType, LogMessage, LogCounters, LogTimers} from 'types/Console';
import assert from 'assert';
import {format} from 'util';
import {Console} from 'console';
import chalk from 'chalk';
import clearLine from './clear_line';
type Formatter = (type: LogType, message: LogMessage) => string;
export default class CustomConsole extends Console {
_stdout: stream$Writable;
_formatBuffer: Formatter;
_counters: LogCounters;
_timers: LogTimers;
_groupDepth: number;
constructor(
stdout: stream$Writable,
stderr: stream$Writable,
formatBuffer: ?Formatter,
) {
super(stdout, stderr);
this._formatBuffer = formatBuffer || ((type, message) => message);
this._counters = {};
this._timers = {};
this._groupDepth = 0;
}
_logToParentConsole(message: string) {
super.log(message);
}
_log(type: LogType, message: string) {
clearLine(this._stdout);
this._logToParentConsole(
this._formatBuffer(type, ' '.repeat(this._groupDepth) + message),
);
}
assert(...args: Array<any>) {
try {
assert(...args);
} catch (error) {
this._log('assert', error.toString());
}
}
count(label: string = 'default') {
if (!this._counters[label]) {
this._counters[label] = 0;
}
this._log('count', format(`${label}: ${++this._counters[label]}`));
}
countReset(label: string = 'default') {
this._counters[label] = 0;
}
debug(...args: Array<any>) {
this._log('debug', format(...args));
}
dir(...args: Array<any>) {
this._log('dir', format(...args));
}
dirxml(...args: Array<any>) {
this._log('dirxml', format(...args));
}
error(...args: Array<any>) {
this._log('error', format(...args));
}
group(...args: Array<any>) {
this._groupDepth++;
if (args.length > 0) {
this._log('group', chalk.bold(format(...args)));
}
}
groupCollapsed(...args: Array<any>) {
this._groupDepth++;
if (args.length > 0) {
this._log('groupCollapsed', chalk.bold(format(...args)));
}
}
groupEnd() {
if (this._groupDepth > 0) {
this._groupDepth--;
}
}
info(...args: Array<any>) {
this._log('info', format(...args));
}
log(...args: Array<any>) {
this._log('log', format(...args));
}
time(label: string = 'default') {
if (this._timers[label]) {
return;
}
this._timers[label] = new Date();
}
timeEnd(label: string = 'default') {
const startTime = this._timers[label];
if (startTime) {
const endTime = new Date();
const time = endTime - startTime;
this._log('time', format(`${label}: ${time}ms`));
delete this._timers[label];
}
}
warn(...args: Array<any>) {
this._log('warn', format(...args));
}
getBuffer() {
return null;
}
}