-
Notifications
You must be signed in to change notification settings - Fork 11.9k
Expand file tree
/
Copy patharchitect.ts
More file actions
278 lines (227 loc) · 7.74 KB
/
architect.ts
File metadata and controls
278 lines (227 loc) · 7.74 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
#!/usr/bin/env node
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
import { JsonValue, json, logging, schema, strings, tags, workspaces } from '@angular-devkit/core';
import { NodeJsSyncHost, createConsoleLogger } from '@angular-devkit/core/node';
import { existsSync } from 'node:fs';
import * as path from 'node:path';
import { parseArgs, styleText } from 'node:util';
import { Architect } from '../index';
import { WorkspaceNodeModulesArchitectHost } from '../node/index';
function findUp(names: string | string[], from: string) {
const filenames = Array.isArray(names) ? names : [names];
let currentDir = path.resolve(from);
while (true) {
for (const name of filenames) {
const p = path.join(currentDir, name);
if (existsSync(p)) {
return p;
}
}
const parentDir = path.dirname(currentDir);
if (parentDir === currentDir) {
break;
}
currentDir = parentDir;
}
return null;
}
/**
* Show usage of the CLI tool, and exit the process.
*/
function usage(logger: logging.Logger, exitCode = 0): never {
logger.info(tags.stripIndent`
architect [project][:target][:configuration] [options, ...]
Run a project target.
If project/target/configuration are not specified, the workspace defaults will be used.
Options:
--help Show available options for project target.
Shows this message instead when ran without the run argument.
Any additional option is passed the target, overriding existing options.
`);
return process.exit(exitCode);
}
async function _executeTarget(
parentLogger: logging.Logger,
workspace: workspaces.WorkspaceDefinition,
root: string,
targetStr: string,
options: json.JsonObject,
registry: schema.SchemaRegistry,
) {
const architectHost = new WorkspaceNodeModulesArchitectHost(workspace, root);
const architect = new Architect(architectHost, registry);
// Split a target into its parts.
const [project, target, configuration] = targetStr.split(':');
const targetSpec = { project, target, configuration };
const logger = new logging.Logger('jobs');
const logs: logging.LogEntry[] = [];
logger.subscribe((entry) => logs.push({ ...entry, message: `${entry.name}: ` + entry.message }));
const run = await architect.scheduleTarget(targetSpec, options, { logger });
// Wait for full completion of the builder.
try {
const result = await run.lastOutput;
if (result.success) {
parentLogger.info(styleText(['green'], 'SUCCESS'));
} else {
parentLogger.info(styleText(['red'], 'FAILURE'));
}
parentLogger.info('Result: ' + JSON.stringify({ ...result, info: undefined }, null, 4));
parentLogger.info('\nLogs:');
logs.forEach((l) => parentLogger.next(l));
logs.splice(0);
await run.stop();
return result.success ? 0 : 1;
} catch (err) {
parentLogger.info(styleText(['red'], 'ERROR'));
parentLogger.info('\nLogs:');
logs.forEach((l) => parentLogger.next(l));
parentLogger.fatal('Exception:');
parentLogger.fatal((err instanceof Error && err.stack) || `${err}`);
return 2;
}
}
const CLI_OPTION_DEFINITIONS = {
'help': { type: 'boolean' },
'verbose': { type: 'boolean' },
} as const;
interface Options {
positionals: string[];
builderOptions: json.JsonObject;
cliOptions: Partial<Record<keyof typeof CLI_OPTION_DEFINITIONS, boolean>>;
}
/** Parse the command line. */
function parseOptions(args: string[]): Options {
const { values, tokens } = parseArgs({
args,
strict: false,
tokens: true,
allowPositionals: true,
allowNegative: true,
options: CLI_OPTION_DEFINITIONS,
});
const builderOptions: json.JsonObject = {};
const positionals: string[] = [];
for (let i = 0; i < tokens.length; i++) {
const token = tokens[i];
if (token.kind === 'positional') {
positionals.push(token.value);
continue;
}
if (token.kind !== 'option') {
continue;
}
const name = token.name;
let value: JsonValue = token.value ?? true;
// `parseArgs` already handled known boolean args and their --no- forms.
// Only process options not in CLI_OPTION_DEFINITIONS here.
if (name in CLI_OPTION_DEFINITIONS) {
continue;
}
if (/[A-Z]/.test(name)) {
throw new Error(
`Unknown argument ${name}. Did you mean ${strings.decamelize(name).replaceAll('_', '-')}?`,
);
}
// Handle --no-flag for unknown options, treating it as false
if (name.startsWith('no-')) {
const realName = name.slice(3);
builderOptions[strings.camelize(realName)] = false;
continue;
}
// Handle value for unknown options
if (token.inlineValue === undefined) {
// Look ahead
const nextToken = tokens[i + 1];
if (nextToken?.kind === 'positional') {
value = nextToken.value;
i++; // Consume next token
} else {
value = true; // Treat as boolean if no value follows
}
}
if (typeof value === 'string') {
if (!isNaN(Number(value))) {
// Type inference for numbers
value = Number(value);
} else if (value === 'true') {
// Type inference for booleans
value = true;
} else if (value === 'false') {
value = false;
}
}
const camelName = strings.camelize(name);
if (Object.prototype.hasOwnProperty.call(builderOptions, camelName)) {
const existing = builderOptions[camelName];
if (Array.isArray(existing)) {
existing.push(value);
} else {
builderOptions[camelName] = [existing, value] as JsonValue;
}
} else {
builderOptions[camelName] = value;
}
}
return {
positionals,
builderOptions,
cliOptions: values as Options['cliOptions'],
};
}
async function main(args: string[]): Promise<number> {
/** Parse the command line. */
const { positionals, cliOptions, builderOptions } = parseOptions(args);
/** Create the DevKit Logger used through the CLI. */
const logger = createConsoleLogger(!!cliOptions['verbose'], process.stdout, process.stderr, {
info: (s) => s,
debug: (s) => s,
warn: (s) => styleText(['yellow', 'bold'], s),
error: (s) => styleText(['red', 'bold'], s),
fatal: (s) => styleText(['red', 'bold'], s),
});
// Check the target.
const targetStr = positionals[0];
if (!targetStr || cliOptions.help) {
// Show architect usage if there's no target.
usage(logger);
}
// Load workspace configuration file.
const currentPath = process.cwd();
const configFileNames = ['angular.json', '.angular.json', 'workspace.json', '.workspace.json'];
const configFilePath = findUp(configFileNames, currentPath);
if (!configFilePath) {
logger.fatal(
`Workspace configuration file (${configFileNames.join(', ')}) cannot be found in ` +
`'${currentPath}' or in parent directories.`,
);
return 3;
}
const root = path.dirname(configFilePath);
const registry = new schema.CoreSchemaRegistry();
registry.addPostTransform(schema.transforms.addUndefinedDefaults);
// Show usage of deprecated options
registry.useXDeprecatedProvider((msg) => logger.warn(msg));
const { workspace } = await workspaces.readWorkspace(
configFilePath,
workspaces.createWorkspaceHost(new NodeJsSyncHost()),
);
// Clear the console.
process.stdout.write('\u001Bc');
return await _executeTarget(logger, workspace, root, targetStr, builderOptions, registry);
}
main(process.argv.slice(2)).then(
(code) => {
process.exit(code);
},
(err) => {
// eslint-disable-next-line no-console
console.error('Error: ' + err.stack || err.message || err);
process.exit(-1);
},
);