This repository was archived by the owner on Aug 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 658
/
Copy path_utils.ts
404 lines (348 loc) · 9.31 KB
/
_utils.ts
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
import {AbsoluteFilePath, createAbsoluteFilePath} from "@internal/path";
import {Reporter} from "@internal/cli-reporter";
import {createMockWorker} from "@internal/test-helpers";
import {formatAST} from "@internal/formatter";
import {valueToNode} from "@internal/js-ast-utils";
import {markup} from "@internal/markup";
import {regex} from "@internal/string-escape";
import {json} from "@internal/codec-config";
import crypto = require("crypto");
import child = require("child_process");
import https = require("https");
export const reporter = Reporter.fromProcess();
export const integrationWorker = createMockWorker();
export const ROOT = createAbsoluteFilePath(__dirname).getParent();
export const INTERNAL = ROOT.append("internal");
export const PUBLIC_PACKAGES = ROOT.append("public-packages");
let forceGenerated = false;
const COMMENT_START = /(?:\/\*|<!--|#)/;
const COMMENT_END = /(?:\*\/|-->|#)/;
export async function modifyGeneratedFile(
{path, scriptName, id = "main"}: {
path: AbsoluteFilePath;
scriptName?: string;
id?: string;
},
callback: () => Promise<{
lines: string[];
prepend?: boolean;
hash?: string;
}>,
): Promise<void> {
const {prepend, lines, hash: customHashContent} = await callback();
// Build expected inner generated
let generated = await formatFile(
path,
lines.map((line) => line.trimRight()).join("\n"),
);
generated = generated.trim();
// Read file
let file = await path.readFileText();
const startRegex = regex`${COMMENT_START} GENERATED:START\(hash:(.*?),id:${id}\) ${createGeneratedCommentInstructions(
scriptName,
)} ${COMMENT_END}(\n|\r\n)`;
const startMatch = file.match(startRegex);
const startIndex = startMatch?.index ?? file.length;
const startInnerIndex = startIndex + (startMatch ? startMatch[0].length : 0);
const endRegex = regex`${COMMENT_START} GENERATED:END\(id:${id}\) ${COMMENT_END}(\n|\r\n)`;
const endMatch = file.match(endRegex);
const endInnerIndex = endMatch?.index ?? file.length;
const endIndex = endInnerIndex + (endMatch ? endMatch[0].length : 0);
const existingGeneratedInner = file.slice(startInnerIndex, endInnerIndex);
let contentStart = file.slice(0, startIndex);
let contentEnd = file.slice(endIndex, file.length);
if (prepend) {
generated += existingGeneratedInner;
}
// Check if the generated file has the same hash
const commentHash = startMatch ? startMatch[1] : "";
const expectedHash = hash(customHashContent || generated);
const generatedHash = hash(existingGeneratedInner);
let isSame = false;
if (expectedHash === commentHash && generatedHash === commentHash) {
isSame = true;
}
if (customHashContent && expectedHash === commentHash) {
isSame = true;
}
if (forceGenerated) {
isSame = false;
}
// The file is up to date if the comment hash and hash of the inner generated matches
if (isSame) {
reporter.warn(
markup`Generated <emphasis>${path}</emphasis><dim>(hash:${expectedHash},id:${id})</dim> is the same.`,
);
return;
}
// Append comments
const commentOpts: CommentOptions = {
delimiter: determineDelimiter(path),
hash: expectedHash,
scriptName,
id,
};
let final = contentStart.trimRight();
if (final !== "") {
final += "\n\n";
}
final += createGeneratedStartComment(commentOpts) + "\n";
final += generated + "\n";
final += createGeneratedEndComment(commentOpts);
final += "\n\n";
final += contentEnd.trimLeft();
final = final.trimRight() + "\n";
await writeFile(path, final);
}
export function setForceGenerated(force: boolean) {
forceGenerated = force;
}
type CommentOptions = {
scriptName: undefined | string;
id: string;
hash: string;
delimiter: CommentDelimiter;
};
type CommentDelimiter = "SLASH" | "ARROW" | "HASH";
function determineDelimiter(path: AbsoluteFilePath): CommentDelimiter {
if (
path.hasExtension("ts") ||
path.hasExtension("js") ||
path.hasExtension("rjson")
) {
return "SLASH";
}
if (
path.hasExtension("sh") ||
path.hasExtension("yml") ||
path.hasExtension("yaml") ||
path.hasExtension("toml")
) {
return "HASH";
}
return "ARROW";
}
function createGeneratedCommentInstructions(
scriptName: undefined | string,
): string {
let instructions = "Everything below is automatically generated. DO NOT MODIFY.";
if (scriptName !== undefined) {
instructions += ` Run \`./rome run scripts/${scriptName}\` to update.`;
}
return instructions;
}
function createGeneratedStartComment(opts: CommentOptions): string {
const {hash, id, delimiter, scriptName} = opts;
return wrapComment(
`GENERATED:START(hash:${hash},id:${id}) ${createGeneratedCommentInstructions(
scriptName,
)}`,
delimiter,
);
}
function createGeneratedEndComment({id, delimiter}: CommentOptions): string {
return wrapComment(`GENERATED:END(id:${id})`, delimiter);
}
function wrapComment(value: string, delimiter: CommentDelimiter): string {
let comment = "";
switch (delimiter) {
case "SLASH": {
comment += "/* ";
break;
}
case "ARROW": {
comment += "<!-- ";
break;
}
case "HASH": {
comment += "# ";
break;
}
}
comment += value;
switch (delimiter) {
case "SLASH": {
comment += " */";
break;
}
case "ARROW": {
comment += " -->";
break;
}
case "HASH": {
comment += " #";
break;
}
}
return comment;
}
function hash(content: string): string {
return crypto.createHash("sha1").update(content).digest("hex");
}
async function formatFile(
path: AbsoluteFilePath,
sourceText: string,
): Promise<string> {
// Not currently supported
if (path.hasExtension("md")) {
return sourceText;
}
return await integrationWorker.performFileOperation(
{
real: path,
uid: ROOT.relative(path).join(),
sourceText,
},
async (ref) => {
const res = await integrationWorker.worker.api.format(ref, {}, {});
if (res === undefined) {
return sourceText;
} else {
return res.formatted;
}
},
);
}
export async function createDirectory(path: AbsoluteFilePath) {
await path.createDirectory();
reporter.success(markup`Wrote directory <emphasis>${path}</emphasis>`);
}
export async function writeFile(path: AbsoluteFilePath, sourceText: string) {
try {
sourceText = await formatFile(path, sourceText);
// Windows: `content` will always have `\r` stripped so add it back
if (process.platform === "win32") {
sourceText = sourceText.replace(/\n/g, "\r\n");
}
// Write
await path.writeFile(sourceText);
reporter.success(markup`Wrote <emphasis>${path}</emphasis>`);
} catch (e) {
reporter.error(e.message);
}
}
export function waitChildProcess(
proc: child.ChildProcess,
): Promise<child.ChildProcess> {
return new Promise((resolve) => {
proc.on(
"close",
(code) => {
if (code === 0) {
resolve(proc);
} else {
reporter.error(
markup`Subprocess exit with code ${String(proc.exitCode)}`,
);
process.exit(proc.exitCode || 0);
}
},
);
});
}
export async function exec(
cmd: string,
args: string[],
opts: child.SpawnOptions = {},
): Promise<void> {
reporter.command(`${cmd} ${args.join(" ")}`);
await waitChildProcess(
child.spawn(
cmd,
args,
{
stdio: "inherit",
...opts,
},
),
);
}
export async function execDev(args: string[]): Promise<void> {
await waitChildProcess(
child.spawn(
process.execPath,
[ROOT.append("scripts/dev-rome.cjs").join(), ...args],
{
stdio: "inherit",
},
),
);
}
export async function updateVersion(newVersion: string): Promise<void> {
const path = ROOT.append("package.json");
const manifest = json.consumeValue(await path.readFileTextMeta());
manifest.set("version", newVersion);
const formatted = json.stringify(manifest.asUnknown()) + "\n";
await path.writeFile(formatted);
reporter.success(
markup`Updated <code>version</code> to <emphasis>${newVersion}</emphasis> in ${path}`,
);
}
async function getSubDirectories(
files: Iterable<AbsoluteFilePath>,
): Promise<string[]> {
const subDirs: string[] = [];
for await (const file of files) {
if ((await file.lstat()).isDirectory()) {
subDirs.push(file.getBasename());
}
}
return subDirs;
}
export async function getLanguages(): Promise<string[]> {
const astPath = INTERNAL.append("ast");
const astDir = await astPath.readDirectory();
return getSubDirectories(astDir);
}
export async function getLanguageCategories(language: string): Promise<string[]> {
const languagePath = INTERNAL.append("ast", language);
const languageDir = await languagePath.readDirectory();
return getSubDirectories(languageDir);
}
export async function languageExists(language: string): Promise<boolean> {
const languages = await getLanguages();
return languages.includes(language);
}
export async function languageCategoryExists(
language: string,
category: string,
): Promise<boolean> {
const categories = await getLanguageCategories(language);
return categories.includes(category);
}
export function valueToCode(value: unknown): string {
return formatAST(valueToNode(value)).code;
}
export function httpsGet(url: string): Promise<unknown> {
return new Promise((resolve, reject) => {
const req = https.get(
url,
(res) => {
let buff = "";
res.setEncoding("utf8");
res.on(
"data",
(chunk) => {
buff += chunk;
},
);
res.on(
"end",
() => {
try {
resolve(JSON.parse(buff));
} catch (err) {
reject(err);
}
},
);
},
);
req.on(
"error",
(err) => {
reject(err);
},
);
});
}