forked from jhipster/prettier-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelpers.ts
More file actions
456 lines (426 loc) · 12.1 KB
/
helpers.ts
File metadata and controls
456 lines (426 loc) · 12.1 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
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
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
import type {
AnnotationCstNode,
ClassPermitsCstNode,
ClassTypeCtx,
CstElement,
CstNode,
ExpressionCstNode,
InterfacePermitsCstNode,
IToken,
StatementCstNode
} from "java-parser";
import type { AstPath, Doc, ParserOptions } from "prettier";
import { builders } from "prettier/doc";
import type { JavaComment } from "../comments.js";
import parser from "../parser.js";
const { group, hardline, ifBreak, indent, join, line, softline } = builders;
export function onlyDefinedKey<
T extends Record<string, any>,
K extends Key<T> & string
>(obj: T, options?: K[]) {
const keys = definedKeys(obj, options);
if (keys.length === 1) {
return keys[0];
}
throw new Error(
keys.length > 1
? `More than one defined key found: ${keys}`
: "No defined keys found"
);
}
export function definedKeys<
T extends Record<string, any>,
K extends Key<T> & string
>(obj: T, options?: K[]) {
return (options ?? (Object.keys(obj) as K[])).filter(
key => obj[key] !== undefined
);
}
const indexByModifier = [
"public",
"protected",
"private",
"abstract",
"default",
"static",
"final",
"transient",
"volatile",
"synchronized",
"native",
"sealed",
"non-sealed",
"strictfp"
].reduce((map, name, index) => map.set(name, index), new Map<string, number>());
export function printWithModifiers<
T extends CstNode,
P extends IterProperties<T["children"]>
>(
path: AstPath<T>,
print: JavaPrintFn,
modifierChild: P,
contents: Doc,
noTypeAnnotations = false
) {
const declarationAnnotations: Doc[] = [];
const otherModifiers: string[] = [];
const typeAnnotations: Doc[] = [];
each(
path,
modifierPath => {
const { children } = modifierPath.node as ModifierNode;
const modifier = print(modifierPath);
if (children.annotation) {
(otherModifiers.length ? typeAnnotations : declarationAnnotations).push(
modifier
);
} else {
otherModifiers.push(modifier as string);
declarationAnnotations.push(...typeAnnotations);
typeAnnotations.length = 0;
}
},
modifierChild
);
if (noTypeAnnotations) {
declarationAnnotations.push(...typeAnnotations);
typeAnnotations.length = 0;
}
otherModifiers.sort(
(a, b) => indexByModifier.get(a)! - indexByModifier.get(b)!
);
return join(hardline, [
...declarationAnnotations,
join(" ", [...otherModifiers, ...typeAnnotations, contents])
]);
}
export function hasDeclarationAnnotations(modifiers: ModifierNode[]) {
let hasAnnotation = false;
let hasNonAnnotation = false;
for (const modifier of modifiers) {
if (modifier.children.annotation) {
hasAnnotation = true;
} else if (hasAnnotation) {
return true;
} else {
hasNonAnnotation = true;
}
}
return hasAnnotation && !hasNonAnnotation;
}
export function call<
T extends CstNode,
U,
P extends IterProperties<T["children"]>
>(
path: AstPath<T>,
callback: MapCallback<IndexValue<IndexValue<T, "children">, P>, U>,
child: P
) {
return path.map(callback, "children", child)[0];
}
export function each<
T extends CstNode,
P extends IterProperties<T["children"]>
>(
path: AstPath<T>,
callback: MapCallback<IndexValue<IndexValue<T, "children">, P>, void>,
child: P
) {
if (path.node.children[child]) {
path.each(callback, "children", child);
}
}
export function map<
T extends CstNode,
U,
P extends IterProperties<T["children"]>
>(
path: AstPath<T>,
callback: MapCallback<IndexValue<IndexValue<T, "children">, P>, U>,
child: P
) {
return path.node.children[child] ? path.map(callback, "children", child) : [];
}
export function flatMap<
T extends CstNode,
U,
P extends IterProperties<T["children"]>
>(
path: AstPath<T>,
callback: MapCallback<IndexValue<IndexValue<T, "children">, P>, U>,
children: P[]
) {
return children
.flatMap(child =>
map(path, callback, child).map((doc, index) => {
const node = path.node.children[child][index];
return {
doc,
startOffset: parser.locStart(node)
};
})
)
.sort((a, b) => a.startOffset - b.startOffset)
.map(({ doc }) => doc);
}
export function printSingle(
path: AstPath<JavaNonTerminal>,
print: JavaPrintFn,
_?: JavaParserOptions,
args?: unknown
) {
return call(
path,
childPath => print(childPath, args),
onlyDefinedKey(path.node.children)
);
}
export function lineStartWithComments(node: JavaNonTerminal) {
const { comments, location } = node;
return comments
? Math.min(location.startLine, comments[0].startLine)
: location.startLine;
}
export function lineEndWithComments(node: JavaNonTerminal) {
const { comments, location } = node;
return comments
? Math.max(location.endLine, comments.at(-1)!.endLine)
: location.endLine;
}
export function printDanglingComments(path: AstPath<JavaNonTerminal>) {
if (!path.node.comments) {
return [];
}
const comments: Doc[] = [];
path.each(commentPath => {
const comment = commentPath.node;
if (comment.leading || comment.trailing) {
return;
}
comment.printed = true;
comments.push(printComment(comment));
}, "comments");
return join(hardline, comments);
}
export function printComment(node: JavaTerminal) {
const { image } = node;
const lines = image.split("\n").map(line => line.trim());
return lines.length > 1 &&
lines[0].startsWith("/*") &&
lines.slice(1).every(line => line.startsWith("*")) &&
lines.at(-1)!.endsWith("*/")
? join(
hardline,
lines.map((line, index) => (index === 0 ? line : ` ${line}`))
)
: image;
}
export function hasLeadingComments(node: JavaNode) {
return node.comments?.some(({ leading }) => leading) ?? false;
}
export function indentInParentheses(
contents: Doc,
opts?: { shouldBreak?: boolean }
) {
return !Array.isArray(contents) || contents.length
? group(["(", indent([softline, contents]), softline, ")"], opts)
: "()";
}
export function printArrayInitializer<
T extends JavaNonTerminal,
P extends IterProperties<T["children"]>
>(path: AstPath<T>, print: JavaPrintFn, options: JavaParserOptions, child: P) {
if (!(child && child in path.node.children)) {
const danglingComments = printDanglingComments(path);
return danglingComments.length
? ["{", indent([hardline, ...danglingComments]), hardline, "}"]
: "{}";
}
const list = [call(path, print, child)];
if (options.trailingComma !== "none") {
list.push(ifBreak(","));
}
return list.length ? group(["{", indent([line, ...list]), line, "}"]) : "{}";
}
export function printBlock(path: AstPath<JavaNonTerminal>, contents: Doc[]) {
if (contents.length) {
return group([
"{",
indent([hardline, ...join(hardline, contents)]),
hardline,
"}"
]);
}
const danglingComments = printDanglingComments(path);
if (danglingComments.length) {
return ["{", indent([hardline, ...danglingComments]), hardline, "}"];
}
const parent = path.grandparent;
const grandparent = path.getNode(4);
const greatGrandparent = path.getNode(6);
return (grandparent?.name === "catches" &&
grandparent.children.catchClause.length === 1 &&
(greatGrandparent?.name === "tryStatement" ||
greatGrandparent?.name === "tryWithResourcesStatement") &&
!greatGrandparent.children.finally) ||
(greatGrandparent &&
[
"basicForStatement",
"doStatement",
"enhancedForStatement",
"whileStatement"
].includes(greatGrandparent.name)) ||
[
"annotationInterfaceBody",
"classBody",
"constructorBody",
"enumBody",
"interfaceBody",
"moduleDeclaration",
"recordBody"
].includes(path.node.name) ||
(parent &&
[
"instanceInitializer",
"lambdaBody",
"methodBody",
"staticInitializer",
"synchronizedStatement"
].includes(parent.name))
? "{}"
: ["{", hardline, "}"];
}
export function printName(
path: AstPath<JavaNonTerminal & { children: { Identifier: IToken[] } }>,
print: JavaPrintFn
) {
return join(".", map(path, print, "Identifier"));
}
export function printList<
T extends JavaNonTerminal,
P extends IterProperties<T["children"]>
>(path: AstPath<T>, print: JavaPrintFn, child: P) {
return join([",", line], map(path, print, child));
}
export function printClassPermits(
path: AstPath<ClassPermitsCstNode | InterfacePermitsCstNode>,
print: JavaPrintFn
) {
return group(["permits", indent([line, printList(path, print, "typeName")])]);
}
export function printClassType(
path: AstPath<JavaNonTerminal & { children: ClassTypeCtx }>,
print: JavaPrintFn
) {
const { children } = path.node;
return definedKeys(children, ["annotation", "Identifier", "typeArguments"])
.flatMap(child =>
children[child]!.map((node, index) => ({
child,
index,
startOffset: parser.locStart(node)
}))
)
.sort((a, b) => a.startOffset - b.startOffset)
.flatMap(({ child, index: childIndex }, index, array) => {
const node = children[child]![childIndex];
const next = array.at(index + 1);
const nextNode = next && children[next.child]![next.index];
const docs = [path.call(print, "children", child, childIndex)];
if (nextNode) {
if (isNonTerminal(node)) {
docs.push(node.name === "annotation" ? " " : ".");
} else if (isTerminal(nextNode) || nextNode.name === "annotation") {
docs.push(".");
}
}
return docs;
});
}
export function isBinaryExpression(expression: ExpressionCstNode) {
const conditionalExpression =
expression.children.conditionalExpression?.[0].children;
if (!conditionalExpression) {
return false;
}
const isTernary = conditionalExpression.QuestionMark !== undefined;
if (isTernary) {
return false;
}
const hasNonAssignmentOperators = Object.values(
conditionalExpression.binaryExpression[0].children
).some(
child =>
isTerminal(child[0]) &&
!child[0].tokenType.CATEGORIES?.some(
category => category.name === "AssignmentOperator"
)
);
return hasNonAssignmentOperators;
}
export function findBaseIndent(lines: string[]) {
return lines.length
? Math.min(
...lines.map(line => line.search(/\S/)).filter(indent => indent >= 0)
)
: 0;
}
export function isEmptyStatement(statement: StatementCstNode) {
return (
statement.children.statementWithoutTrailingSubstatement?.[0].children
.emptyStatement !== undefined
);
}
export function isNonTerminal(node: CstElement): node is JavaNonTerminal {
return !isTerminal(node);
}
export function isTerminal(node: CstElement): node is IToken {
return "tokenType" in node;
}
export type JavaNode = CstElement & { comments?: JavaComment[] };
export type JavaNonTerminal = Exclude<JavaNode, IToken>;
export type JavaTerminal = Exclude<JavaNode, CstNode>;
export type JavaNodePrinters = {
[T in JavaNonTerminal["name"]]: JavaNodePrinter<T>;
};
export type JavaNodePrinter<T> = (
path: AstPath<Extract<JavaNonTerminal, { name: T }>>,
print: JavaPrintFn,
options: JavaParserOptions,
args?: unknown
) => Doc;
export type JavaPrintFn = (path: AstPath<JavaNode>, args?: unknown) => Doc;
export type JavaParserOptions = ParserOptions<JavaNode> & {
entrypoint?: string;
};
export type IterProperties<T> = T extends any[]
? IndexProperties<T>
: ArrayProperties<T>;
type Key<T> = T extends T ? keyof T : never;
type ModifierNode = JavaNonTerminal & {
children: { annotation?: AnnotationCstNode[] };
};
type IsTuple<T> = T extends []
? true
: T extends [infer First, ...infer Remain]
? IsTuple<Remain>
: false;
type IndexProperties<T extends { length: number }> =
IsTuple<T> extends true ? Exclude<Partial<T>["length"], T["length"]> : number;
type ArrayProperties<T> = {
[K in keyof T]: NonNullable<T[K]> extends readonly any[] ? K : never;
}[keyof T];
type ArrayElement<T> = T extends Array<infer E> ? E : never;
type MapCallback<T, U> = (
path: AstPath<ArrayElement<T>>,
index: number,
value: any
) => U;
type IndexValue<T, P> = T extends any[]
? P extends number
? T[P]
: never
: P extends keyof T
? T[P]
: never;