forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRushCommandLineParser.ts
More file actions
337 lines (285 loc) · 13.3 KB
/
RushCommandLineParser.ts
File metadata and controls
337 lines (285 loc) · 13.3 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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
// See LICENSE in the project root for license information.
import * as colors from 'colors';
import * as os from 'os';
import * as path from 'path';
import { CommandLineParser, CommandLineFlagParameter, CommandLineAction } from '@rushstack/ts-command-line';
import { InternalError } from '@rushstack/node-core-library';
import { RushConfiguration } from '../api/RushConfiguration';
import { RushConstants } from '../logic/RushConstants';
import { CommandLineConfiguration } from '../api/CommandLineConfiguration';
import { CommandJson } from '../api/CommandLineJson';
import { Utilities } from '../utilities/Utilities';
import { BaseScriptAction } from '../cli/scriptActions/BaseScriptAction';
import { AddAction } from './actions/AddAction';
import { ChangeAction } from './actions/ChangeAction';
import { CheckAction } from './actions/CheckAction';
import { UpdateAction } from './actions/UpdateAction';
import { InstallAction } from './actions/InstallAction';
import { InitAction } from './actions/InitAction';
import { LinkAction } from './actions/LinkAction';
import { ListAction } from './actions/ListAction';
import { PublishAction } from './actions/PublishAction';
import { PurgeAction } from './actions/PurgeAction';
import { UnlinkAction } from './actions/UnlinkAction';
import { ScanAction } from './actions/ScanAction';
import { VersionAction } from './actions/VersionAction';
import { BulkScriptAction } from './scriptActions/BulkScriptAction';
import { GlobalScriptAction } from './scriptActions/GlobalScriptAction';
import { Telemetry } from '../logic/Telemetry';
import { AlreadyReportedError } from '../utilities/AlreadyReportedError';
import { RushGlobalFolder } from '../api/RushGlobalFolder';
import { NodeJsCompatibility } from '../logic/NodeJsCompatibility';
/**
* Options for `RushCommandLineParser`.
*/
export interface IRushCommandLineParserOptions {
cwd: string; // Defaults to `cwd`
alreadyReportedNodeTooNewError: boolean;
}
export class RushCommandLineParser extends CommandLineParser {
public telemetry: Telemetry | undefined;
public rushGlobalFolder: RushGlobalFolder;
public rushConfiguration: RushConfiguration;
private _debugParameter: CommandLineFlagParameter;
private _rushOptions: IRushCommandLineParserOptions;
public constructor(options?: Partial<IRushCommandLineParserOptions>) {
super({
toolFilename: 'rush',
toolDescription: 'Rush makes life easier for JavaScript developers who develop, build, and publish'
+ ' many packages from a central Git repo. It is designed to handle very large repositories'
+ ' supporting many projects and people. Rush provides policies, protections, and customizations'
+ ' that help coordinate teams and safely onboard new contributors. Rush also generates change logs'
+ ' and automates package publishing. It can manage decoupled subsets of projects with different'
+ ' release and versioning strategies. A full API is included to facilitate integration with other'
+ ' automation tools. If you are looking for a proven turnkey solution for monorepo management,'
+ ' Rush is for you.'
});
this._rushOptions = this._normalizeOptions(options || {});
try {
const rushJsonFilename: string | undefined = RushConfiguration.tryFindRushJsonLocation({
startingFolder: this._rushOptions.cwd,
showVerbose: true
});
if (rushJsonFilename) {
this.rushConfiguration = RushConfiguration.loadFromConfigurationFile(rushJsonFilename);
}
} catch (error) {
this._reportErrorAndSetExitCode(error);
}
NodeJsCompatibility.warnAboutCompatibilityIssues({
isRushLib: true,
alreadyReportedNodeTooNewError: this._rushOptions.alreadyReportedNodeTooNewError,
rushConfiguration: this.rushConfiguration
});
this._populateActions();
}
public get isDebug(): boolean {
return this._debugParameter.value;
}
public flushTelemetry(): void {
if (this.telemetry) {
this.telemetry.flush();
}
}
protected onDefineParameters(): void {
this._debugParameter = this.defineFlagParameter({
parameterLongName: '--debug',
parameterShortName: '-d',
description: 'Show the full call stack if an error occurs while executing the tool'
});
}
protected onExecute(): Promise<void> {
// Defensively set the exit code to 1 so if Rush crashes for whatever reason, we'll have a nonzero exit code.
// For example, Node.js currently has the inexcusable design of terminating with zero exit code when
// there is an uncaught promise exception. This will supposedly be fixed in Node.js 9.
// Ideally we should do this for all the Rush actions, but "rush build" is the most critical one
// -- if it falsely appears to succeed, we could merge bad PRs, publish empty packages, etc.
process.exitCode = 1;
if (this._debugParameter.value) {
InternalError.breakInDebugger = true;
}
return this._wrapOnExecute().catch((error: Error) => {
this._reportErrorAndSetExitCode(error);
}).then(() => {
// If we make it here, everything went fine, so reset the exit code back to 0
process.exitCode = 0;
});
}
private _normalizeOptions(options: Partial<IRushCommandLineParserOptions>): IRushCommandLineParserOptions {
return {
cwd: options.cwd || process.cwd(),
alreadyReportedNodeTooNewError: options.alreadyReportedNodeTooNewError || false
};
}
private _wrapOnExecute(): Promise<void> {
try {
if (this.rushConfiguration) {
this.telemetry = new Telemetry(this.rushConfiguration);
}
return super.onExecute().then(() => {
if (this.telemetry) {
this.flushTelemetry();
}
});
} catch (error) {
return Promise.reject(error);
}
}
private _populateActions(): void {
try {
this.rushGlobalFolder = new RushGlobalFolder();
this.addAction(new AddAction(this));
this.addAction(new ChangeAction(this));
this.addAction(new CheckAction(this));
this.addAction(new InstallAction(this));
this.addAction(new InitAction(this));
this.addAction(new LinkAction(this));
this.addAction(new ListAction(this));
this.addAction(new PublishAction(this));
this.addAction(new PurgeAction(this));
this.addAction(new ScanAction(this));
this.addAction(new UpdateAction(this));
this.addAction(new UnlinkAction(this));
this.addAction(new VersionAction(this));
this._populateScriptActions();
} catch (error) {
this._reportErrorAndSetExitCode(error);
}
}
private _populateScriptActions(): void {
let commandLineConfiguration: CommandLineConfiguration | undefined = undefined;
// If there is not a rush.json file, we still want "build" and "rebuild" to appear in the
// command-line help
if (this.rushConfiguration) {
const commandLineConfigFile: string = path.join(
this.rushConfiguration.commonRushConfigFolder,
RushConstants.commandLineFilename
);
commandLineConfiguration = CommandLineConfiguration.loadFromFileOrDefault(commandLineConfigFile);
}
// Build actions from the command line configuration supercede default build actions.
this._addCommandLineConfigActions(commandLineConfiguration);
this._addDefaultBuildActions(commandLineConfiguration);
this._validateCommandLineConfigParameterAssociations(commandLineConfiguration);
}
private _addDefaultBuildActions(commandLineConfiguration?: CommandLineConfiguration): void {
if (!this.tryGetAction(RushConstants.buildCommandName)) {
this._addCommandLineConfigAction(commandLineConfiguration, CommandLineConfiguration.defaultBuildCommandJson);
}
if (!this.tryGetAction(RushConstants.rebuildCommandName)) {
this._addCommandLineConfigAction(commandLineConfiguration, CommandLineConfiguration.defaultRebuildCommandJson);
}
}
private _addCommandLineConfigActions(commandLineConfiguration?: CommandLineConfiguration): void {
if (!commandLineConfiguration) {
return;
}
// Register each custom command
for (const command of commandLineConfiguration.commands) {
this._addCommandLineConfigAction(commandLineConfiguration, command);
}
}
private _addCommandLineConfigAction(
commandLineConfiguration: CommandLineConfiguration | undefined,
command: CommandJson
): void {
if (this.tryGetAction(command.name)) {
throw new Error(`${RushConstants.commandLineFilename} defines a command "${command.name}"`
+ ` using a name that already exists`);
}
this._validateCommandLineConfigCommand(command);
switch (command.commandKind) {
case RushConstants.bulkCommandKind:
this.addAction(new BulkScriptAction({
actionName: command.name,
// The rush rebuild and rush build command invoke the same NPM script because they share the same
// package-deps-hash state.
commandToRun: command.name === RushConstants.rebuildCommandName ? 'build' : undefined,
summary: command.summary,
documentation: command.description || command.summary,
safeForSimultaneousRushProcesses: command.safeForSimultaneousRushProcesses,
parser: this,
commandLineConfiguration: commandLineConfiguration,
enableParallelism: command.enableParallelism,
ignoreMissingScript: command.ignoreMissingScript || false,
ignoreDependencyOrder: command.ignoreDependencyOrder || false,
incremental: command.incremental || false,
allowWarningsInSuccessfulBuild: !!command.allowWarningsInSuccessfulBuild
}));
break;
case RushConstants.globalCommandKind:
this.addAction(new GlobalScriptAction({
actionName: command.name,
summary: command.summary,
documentation: command.description || command.summary,
safeForSimultaneousRushProcesses: command.safeForSimultaneousRushProcesses,
parser: this,
commandLineConfiguration: commandLineConfiguration,
shellCommand: command.shellCommand
}));
break;
default:
throw new Error(`${RushConstants.commandLineFilename} defines a command "${command!.name}"`
+ ` using an unsupported command kind "${command!.commandKind}"`);
}
}
private _validateCommandLineConfigParameterAssociations(commandLineConfiguration?: CommandLineConfiguration): void {
if (!commandLineConfiguration) {
return;
}
// Check for any invalid associations
for (const parameter of commandLineConfiguration.parameters) {
for (const associatedCommand of parameter.associatedCommands) {
const action: CommandLineAction | undefined = this.tryGetAction(associatedCommand);
if (!action) {
throw new Error(`${RushConstants.commandLineFilename} defines a parameter "${parameter.longName}"`
+ ` that is associated with a nonexistent command "${associatedCommand}"`);
}
if (!(action instanceof BaseScriptAction)) {
throw new Error(`${RushConstants.commandLineFilename} defines a parameter "${parameter.longName}"`
+ ` that is associated with a command "${associatedCommand}", but that command does not`
+ ` support custom parameters`);
}
}
}
}
private _validateCommandLineConfigCommand(command: CommandJson): void {
// There are some restrictions on the 'build' and 'rebuild' commands.
if (command.name !== RushConstants.buildCommandName && command.name !== RushConstants.rebuildCommandName) {
return;
}
if (command.commandKind === RushConstants.globalCommandKind) {
throw new Error(`${RushConstants.commandLineFilename} defines a command "${command.name}" using ` +
`the command kind "${RushConstants.globalCommandKind}". This command can only be designated as a command ` +
`kind "${RushConstants.bulkCommandKind}".`);
}
if (command.safeForSimultaneousRushProcesses) {
throw new Error(`${RushConstants.commandLineFilename} defines a command "${command.name}" using ` +
`"safeForSimultaneousRushProcesses=true". This configuration is not supported for "${command.name}".`);
}
}
private _reportErrorAndSetExitCode(error: Error): void {
if (!(error instanceof AlreadyReportedError)) {
const prefix: string = 'ERROR: ';
console.error(os.EOL + colors.red(Utilities.wrapWords(prefix + error.message)));
}
if (this._debugParameter.value) {
// If catchSyncErrors() called this, then show a call stack similar to what Node.js
// would show for an uncaught error
console.error(os.EOL + error.stack);
}
this.flushTelemetry();
// Ideally we want to eliminate all calls to process.exit() from our code, and replace them
// with normal control flow that properly cleans up its data structures.
// For this particular call, we have a problem that the RushCommandLineParser constructor
// performs nontrivial work that can throw an exception. Either the Rush class would need
// to handle reporting for those exceptions, or else _populateActions() should be moved
// to a RushCommandLineParser lifecycle stage that can handle it.
if (!process.exitCode || process.exitCode > 0) {
process.exit(process.exitCode);
} else {
process.exit(1);
}
}
}