-
Notifications
You must be signed in to change notification settings - Fork 10.3k
/
index.js
407 lines (360 loc) · 10.7 KB
/
index.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
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
// @flow
const semver = require(`semver`)
const { isCI } = require(`gatsby-core-utils`)
const signalExit = require(`signal-exit`)
const reporterActions = require(`./redux/actions`)
const { LogLevels, ActivityStatuses, ActivityTypes } = require(`./constants`)
let inkExists = false
try {
inkExists = require.resolve(`ink`)
// eslint-disable-next-line no-empty
} catch (err) {}
if (!process.env.GATSBY_LOGGER) {
if (
inkExists &&
semver.satisfies(process.version, `>=8`) &&
!isCI &&
typeof jest === `undefined`
) {
process.env.GATSBY_LOGGER = `ink`
} else {
process.env.GATSBY_LOGGER = `yurnalist`
}
}
// if child process - use ipc logger
if (process.send) {
// process.env.FORCE_COLOR = `0`
require(`./loggers/ipc`)
}
if (process.env.GATSBY_LOGGER.includes(`json`)) {
require(`./loggers/json`)
} else if (process.env.GATSBY_LOGGER.includes(`yurnalist`)) {
require(`./loggers/yurnalist`)
} else {
require(`./loggers/ink`)
}
const util = require(`util`)
const { stripIndent } = require(`common-tags`)
const chalk = require(`chalk`)
const { trackError } = require(`gatsby-telemetry`)
const tracer = require(`opentracing`).globalTracer()
const { getErrorFormatter } = require(`./errors`)
const { getStore } = require(`./redux`)
const constructError = require(`../structured-errors/construct-error`)
const errorFormatter = getErrorFormatter()
import type { ActivityTracker, ActivityArgs, Reporter } from "./types"
const addMessage = level => text => reporterActions.createLog({ level, text })
let isVerbose = false
const interuptActivities = () => {
const { activities } = getStore().getState().logs
Object.keys(activities).forEach(activityId => {
const activity = activities[activityId]
if (
activity.status === ActivityStatuses.InProgress ||
activity.status === ActivityStatuses.NotStarted
) {
reporter.completeActivity(activityId, ActivityStatuses.Interrupted)
}
})
}
const prematureEnd = () => {
// hack so at least one activity is surely failed, so
// we are guaranteed to generate FAILED status
// if none of activity did explicitly fail
reporterActions.createPendingActivity({
id: `panic`,
status: ActivityStatuses.Failed,
})
interuptActivities()
}
signalExit((code, signal) => {
if (code !== 0 && signal !== `SIGINT` && signal !== `SIGTERM`) prematureEnd()
else interuptActivities()
})
/**
* Reporter module.
* @module reporter
*/
const reporter: Reporter = {
/**
* Strip initial indentation template function.
*/
stripIndent,
format: chalk,
/**
* Toggle verbosity.
* @param {boolean} [isVerbose=true]
*/
setVerbose: (_isVerbose = true) => {
isVerbose = _isVerbose
},
/**
* Turn off colors in error output.
* @param {boolean} [isNoColor=false]
*/
setNoColor(isNoColor = false) {
if (isNoColor) {
errorFormatter.withoutColors()
}
// disables colors in popular terminal output coloring packages
// - chalk: see https://www.npmjs.com/package/chalk#chalksupportscolor
// - ansi-colors: see https://github.com/doowb/ansi-colors/blob/8024126c7115a0efb25a9a0e87bc5e29fd66831f/index.js#L5-L7
if (isNoColor) {
process.env.FORCE_COLOR = `0`
// chalk determines color level at import time. Before we reach this point,
// chalk was already imported, so we need to retroactively adjust level
chalk.level = 0
}
},
/**
* Log arguments and exit process with status 1.
* @param {*} args
*/
panic(...args) {
const error = reporter.error(...args)
trackError(`GENERAL_PANIC`, { error })
prematureEnd()
process.exit(1)
},
panicOnBuild(...args) {
const error = reporter.error(...args)
trackError(`BUILD_PANIC`, { error })
if (process.env.gatsby_executing_command === `build`) {
prematureEnd()
process.exit(1)
}
return error
},
error(errorMeta, error) {
let details = {}
// Many paths to retain backcompat :scream:
if (arguments.length === 2) {
if (Array.isArray(error)) {
return error.map(errorItem => this.error(errorMeta, errorItem))
}
details.error = error
details.context = {
sourceMessage: errorMeta + ` ` + error.message,
}
} else if (arguments.length === 1 && errorMeta instanceof Error) {
details.error = errorMeta
details.context = {
sourceMessage: errorMeta.message,
}
} else if (arguments.length === 1 && Array.isArray(errorMeta)) {
// when we get an array of messages, call this function once for each error
return errorMeta.map(errorItem => this.error(errorItem))
} else if (arguments.length === 1 && typeof errorMeta === `object`) {
details = Object.assign({}, errorMeta)
} else if (arguments.length === 1 && typeof errorMeta === `string`) {
details.context = {
sourceMessage: errorMeta,
}
}
const structuredError = constructError({ details })
if (structuredError) {
reporterActions.createLog(structuredError)
}
// TODO: remove this once Error component can render this info
// log formatted stacktrace
if (structuredError.error) {
this.log(errorFormatter.render(structuredError.error))
}
return structuredError
},
/**
* Set prefix on uptime.
* @param {string} prefix - A string to prefix uptime with.
*/
uptime(prefix) {
this.verbose(`${prefix}: ${(process.uptime() * 1000).toFixed(3)}ms`)
},
verbose: text => {
if (isVerbose) {
reporterActions.createLog({
level: LogLevels.Debug,
text,
})
}
},
success: addMessage(LogLevels.Success),
info: addMessage(LogLevels.Info),
warn: addMessage(LogLevels.Warning),
log: addMessage(LogLevels.Log),
pendingActivity: reporterActions.createPendingActivity,
completeActivity: (id: string, status: string = ActivityStatuses.Success) => {
reporterActions.endActivity({ id, status })
},
/**
* Time an activity.
* @param {string} name - Name of activity.
* @param {ActivityArgs} activityArgs - optional object with tracer parentSpan
* @returns {ActivityTracker} The activity tracker.
*/
activityTimer(
text: string,
activityArgs: ActivityArgs = {}
): ActivityTracker {
let { parentSpan, id } = activityArgs
const spanArgs = parentSpan ? { childOf: parentSpan } : {}
if (!id) {
id = text
}
const span = tracer.startSpan(text, spanArgs)
return {
start: () => {
reporterActions.startActivity({
id,
text,
type: ActivityTypes.Spinner,
})
},
setStatus: statusText => {
reporterActions.setActivityStatusText({
id,
statusText,
})
},
panicOnBuild(...args) {
span.finish()
reporterActions.setActivityErrored({
id,
})
return reporter.panicOnBuild(...args)
},
panic(...args) {
span.finish()
reporterActions.endActivity({
id,
status: ActivityStatuses.Failed,
})
return reporter.panic(...args)
},
end() {
span.finish()
reporterActions.endActivity({
id,
status: ActivityStatuses.Success,
})
},
span,
}
},
/**
* Create an Activity that is not visible to the user
*
* During the lifecycle of the Gatsby process, sometimes we need to do some
* async work and wait for it to complete. A typical example of this is a job.
* This work should set the status of the process to `in progress` while running and
* `complete` (or `failure`) when complete. Activities do just this! However, they
* are visible to the user. So this function can be used to create a _hidden_ activity
* that while not displayed in the CLI, still triggers a change in process status.
*
* @param {string} name - Name of activity.
* @param {ActivityArgs} activityArgs - optional object with tracer parentSpan
* @returns {ActivityTracker} The activity tracker.
*/
phantomActivity(
text: string,
activityArgs: ActivityArgs = {}
): ActivityTracker {
let { parentSpan, id } = activityArgs
const spanArgs = parentSpan ? { childOf: parentSpan } : {}
if (!id) {
id = text
}
const span = tracer.startSpan(text, spanArgs)
return {
start: () => {
reporterActions.startActivity({
id,
text,
type: ActivityTypes.Hidden,
})
},
end() {
span.finish()
reporterActions.endActivity({
id,
status: ActivityStatuses.Success,
})
},
span,
}
},
/**
* Create a progress bar for an activity
* @param {string} name - Name of activity.
* @param {number} total - Total items to be processed.
* @param {number} start - Start count to show.
* @param {ActivityArgs} activityArgs - optional object with tracer parentSpan
* @returns {ActivityTracker} The activity tracker.
*/
createProgress(
text: string,
total = 0,
start = 0,
activityArgs: ActivityArgs = {}
): ActivityTracker {
let { parentSpan, id } = activityArgs
const spanArgs = parentSpan ? { childOf: parentSpan } : {}
if (!id) {
id = text
}
const span = tracer.startSpan(text, spanArgs)
return {
start: () => {
reporterActions.startActivity({
id,
text,
type: ActivityTypes.Progress,
current: start,
total,
})
},
setStatus: statusText => {
reporterActions.setActivityStatusText({
id,
statusText,
})
},
tick: (increment = 1) => {
reporterActions.activityTick({ id, increment })
},
panicOnBuild(...args) {
span.finish()
reporterActions.setActivityErrored({
id,
})
return reporter.panicOnBuild(...args)
},
panic(...args) {
span.finish()
reporterActions.endActivity({
id,
status: ActivityStatuses.Failed,
})
return reporter.panic(...args)
},
done: () => {
span.finish()
reporterActions.endActivity({
id,
status: ActivityStatuses.Success,
})
},
set total(value) {
reporterActions.setActivityTotal({ id, total: value })
},
span,
}
},
// This method was called in older versions of gatsby, so we need to keep it to avoid
// "reporter._setStage is not a function" error when gatsby@<2.16 is used with gatsby-cli@>=2.8
_setStage() {},
}
console.log = (...args) => reporter.log(util.format(...args))
console.warn = (...args) => reporter.warn(util.format(...args))
console.info = (...args) => reporter.info(util.format(...args))
console.error = (...args) => reporter.error(util.format(...args))
module.exports = reporter