-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
664 lines (525 loc) · 20.7 KB
/
index.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
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
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
#!/usr/bin/env node
import * as ts from "typescript";
import * as path from "path";
import * as fs from "fs";
require("dotenv").config();
const rootDir = process.argv[2] || (process.env.TSJSONDOC_ROOTDIR ? process.env.TSJSONDOC_ROOTDIR : "./src");
const outputDir = process.argv[3] || "./";
const outputFileName = process.argv[4] || "documentation.json";
const useRawText = process.argv[5] !== 'false';
type ObjectType = "type" | "function" | "variable" | "property" | "method" | "class" | "enum" | "constructor" | "interface";
interface ObjectInfo {
objectType: ObjectType;
jsDoc?: JsDocInfo;
rawText?: string;
}
type ConstructorInfo = ObjectInfo & {
name: string,
params?: { name: string, type: string }[],
}
type EnumMemberInfo = {
name: string,
value?: string | number,
jsDoc?: JsDocInfo,
rawText?: string
}
type EnumInfo = ObjectInfo & {
name: string,
members: EnumMemberInfo[],
}
type JsDocInfo = {
description?: string,
params?: { [key: string]: string },
returns?: string,
examples?: string[],
};
type TypeAliasInfo = ObjectInfo & {
name: string,
type: string,
}
type FunctionInfo = ObjectInfo & {
name: string,
returnType: string,
params: string,
}
type VariableInfo = ObjectInfo & {
name: string,
type: string,
}
type PropertyInfo = ObjectInfo & {
name: string,
type: string,
visibility: "public" | "private" | "protected",
value?: string,
get?: boolean,
set?: boolean,
}
type MethodInfo = ObjectInfo & {
name: string,
returnType: string,
visibility: "public" | "private" | "protected",
params?: { name: string, type: string }[],
}
type InterfaceInfo = ObjectInfo & {
name: string,
methods: MethodInfo[],
properties: PropertyInfo[]
filePath: string,
}
type ClassInfo = ObjectInfo & {
name: string,
filePath: string,
constructor?: ConstructorInfo,
extends?: string[],
implements?: string[],
properties?: {
public?: PropertyInfo[],
private?: PropertyInfo[],
protected?: PropertyInfo[]
},
methods?: {
public?: MethodInfo[],
private?: MethodInfo[],
protected?: MethodInfo[]
},
statics?: {
properties?: {
public?: PropertyInfo[],
private?: PropertyInfo[],
protected?: PropertyInfo[]
},
methods?: {
public?: MethodInfo[],
private?: MethodInfo[],
protected?: MethodInfo[]
}
},
functions?: FunctionInfo[],
variables?: VariableInfo[],
}
function getImplementedInterfaces(node: ts.ClassDeclaration | ts.InterfaceDeclaration, checker: ts.TypeChecker): string[] {
const interfaces: Set<string> = new Set();
if (node.heritageClauses) {
for (const clause of node.heritageClauses) {
if (clause.token === ts.SyntaxKind.ImplementsKeyword) {
for (const type of clause.types) {
const symbol = checker.getSymbolAtLocation(type.expression);
if (symbol) {
//console.log(symbol.name)
interfaces.add(symbol.name);
}
}
}
}
}
return Array.from(interfaces);
}
function getJsDoc(node: ts.Node): JsDocInfo | undefined {
const jsDocTags = ts.getJSDocTags(node);
if (jsDocTags.length === 0) {
return undefined;
}
const jsDoc: JsDocInfo = {};
for (const tag of jsDocTags) {
const tagName = tag.tagName.text;
let tagText = '';
if (typeof tag.comment === 'string') {
tagText = tag.comment;
}
switch (tagName) {
case 'param':
if (!jsDoc.params) {
jsDoc.params = {};
}
if (tag as ts.JSDocParameterTag) {
const paramName = (tag as ts.JSDocParameterTag).name.getText();
jsDoc.params[paramName] = tagText;
}
break;
case 'returns':
jsDoc.returns = tagText;
break;
case 'example':
if (!jsDoc.examples) {
jsDoc.examples = [];
}
jsDoc.examples.push(tagText);
break;
default:
// Traitez toutes les autres balises comme faisant partie de la description
if (!jsDoc.description) {
jsDoc.description = '';
}
jsDoc.description += `@${tagName} ${tagText}\n`;
break;
}
}
return jsDoc;
}
function visit(node: ts.Node, checker: ts.TypeChecker) {
if (!ts.isClassDeclaration(node) && !ts.isInterfaceDeclaration(node)) {
if (ts.isEnumDeclaration(node)) {
const symbol = checker.getSymbolAtLocation(node.name);
if (!symbol) {
return;
}
const enumInfo: EnumInfo = {
objectType: "enum",
name: symbol.getName(),
members: [],
jsDoc: getJsDoc(node),
rawText: useRawText ? node.getText() : undefined,
};
for (const member of node.members) {
const memberSymbol = checker.getSymbolAtLocation(member.name);
if (!memberSymbol) {
continue;
}
let memberValue: string | number | undefined;
if (member.initializer) {
if (ts.isNumericLiteral(member.initializer)) {
memberValue = Number(member.initializer.text);
} else if (ts.isStringLiteral(member.initializer)) {
memberValue = member.initializer.text;
} else {
// Pour les autres types d'expressions, vous pouvez utiliser le type checker pour obtenir leur valeur
const type = checker.getTypeAtLocation(member.initializer);
const symbol = type.getSymbol();
if (symbol) {
memberValue = symbol.getName();
}
}
}
const enumMemberInfo: EnumMemberInfo = {
name: memberSymbol.getName(),
value: memberValue,
jsDoc: getJsDoc(member),
rawText: useRawText ? member.getText() : undefined,
};
enumInfo.members.push(enumMemberInfo);
}
return enumInfo;
}
if (ts.isTypeAliasDeclaration(node)) {
const symbol = checker.getSymbolAtLocation(node.name);
if (!symbol) {
return;
}
const type = checker.getTypeAtLocation(node);
const typeAliasInfo: TypeAliasInfo = {
objectType: "type",
name: symbol.getName(),
type: checker.typeToString(type),
jsDoc: getJsDoc(node),
rawText: useRawText ? node.getText() : undefined,
};
return typeAliasInfo;
}
if (ts.isFunctionDeclaration(node)) {
const symbol = checker.getSymbolAtLocation(node.name!);
if (!symbol) {
return;
}
const signature = checker.getSignatureFromDeclaration(node);
const returnType = checker.typeToString(signature!.getReturnType());
const params = signature!.parameters.map(p => checker.typeToString(checker.getTypeAtLocation(p.valueDeclaration!))).join(', ');
const functionInfo: FunctionInfo = {
objectType: "function",
name: symbol.getName(),
returnType,
params,
jsDoc: getJsDoc(node),
rawText: useRawText ? node.getText() : undefined,
};
return functionInfo;
}
if (ts.isVariableDeclaration(node)) {
const symbol = checker.getSymbolAtLocation(node.name!);
if (!symbol) {
return;
}
const type = checker.getTypeAtLocation(node);
const variableInfo: VariableInfo = {
objectType: "variable",
name: symbol.getName(),
type: checker.typeToString(type),
jsDoc: getJsDoc(node),
rawText: useRawText ? node.getText() : undefined,
};
return variableInfo;
}
return;
}
if (ts.isInterfaceDeclaration(node)) {
const symbol = checker.getSymbolAtLocation(node.name!);
if (!symbol) {
return;
}
const interfaceInfo: InterfaceInfo = {
objectType: "interface",
name: symbol.getName(),
methods: [],
properties: [],
jsDoc: getJsDoc(node),
filePath: "",
rawText: useRawText ? node.getText() : undefined,
};
for (const member of node.members) {
const memberSymbol = checker.getSymbolAtLocation(member.name!);
if (!memberSymbol) {
continue;
}
if (ts.isMethodSignature(member)) {
const signature = checker.getSignatureFromDeclaration(member);
const returnType = checker.typeToString(signature!.getReturnType());
const params = signature!.parameters.map(paramSymbol => {
const paramDeclaration = paramSymbol.valueDeclaration as ts.ParameterDeclaration;
return {
name: paramSymbol.getName(),
type: checker.typeToString(checker.getTypeAtLocation(paramDeclaration))
};
});
const methodInfo: MethodInfo = {
objectType: "method",
name: memberSymbol.getName(),
returnType,
params,
visibility: "public", // Les méthodes d'interface sont toujours publiques
jsDoc: getJsDoc(member),
rawText: useRawText ? member.getText() : undefined,
};
interfaceInfo.methods.push(methodInfo);
} else if (ts.isPropertySignature(member) || ts.isGetAccessorDeclaration(member) || ts.isSetAccessorDeclaration(member)) { // Add this block
const type = checker.getTypeAtLocation(member);
const propertyInfo: PropertyInfo = { // Use PropertyInfo here
objectType: "property",
name: memberSymbol.getName(),
type: checker.typeToString(type),
get: ts.isGetAccessorDeclaration(member),
set: ts.isSetAccessorDeclaration(member),
visibility: "public", // Properties in interfaces are always public
jsDoc: getJsDoc(member),
rawText: useRawText ? member.getText() : undefined,
};
interfaceInfo.properties.push(propertyInfo);
}
}
return interfaceInfo;
}
const symbol = checker.getSymbolAtLocation(node.name!);
if (!symbol) {
return;
}
const details = checker.getTypeAtLocation(node);
const properties: any = {};
const classInfo: ClassInfo = {
objectType: "class",
name: symbol.getName(),
filePath: "",
extends: [],
implements: getImplementedInterfaces(node, checker),
properties: {
public: [],
private: [],
protected: []
},
methods: {
public: [],
private: [],
protected: []
},
statics: {
properties: {
public: [],
private: [],
protected: []
},
methods: {
public: [],
private: [],
protected: []
}
},
constructor: undefined,
jsDoc: getJsDoc(node),
rawText: useRawText ? node.getText() : undefined,
};
let baseType = details.getBaseTypes()[0];
while (baseType) {
const baseSymbol = baseType.getSymbol();
if (baseSymbol) {
classInfo.extends.push(baseSymbol.getName());
}
baseType = baseType.getBaseTypes() && baseType.getBaseTypes().length > 0 ? baseType.getBaseTypes()[0] : undefined;
}
for (const member of node.members) {
if (ts.isConstructorDeclaration(member)) {
const signature = checker.getSignatureFromDeclaration(member as ts.ConstructorDeclaration);
const params = signature!.parameters.map(paramSymbol => {
const paramDeclaration = paramSymbol.valueDeclaration as ts.ParameterDeclaration;
return {
name: paramSymbol.getName(),
type: checker.typeToString(checker.getTypeAtLocation(paramDeclaration))
};
});
const constructorInfo: ConstructorInfo = {
objectType: "constructor",
name: "constructor",
params,
jsDoc: getJsDoc(member),
rawText: useRawText ? (member as ts.ConstructorDeclaration).getText() : undefined,
};
classInfo.constructor = constructorInfo as any;
}
const memberSymbol = checker.getSymbolAtLocation(member.name!);
if (!memberSymbol) {
continue;
}
const visibility = ts.getCombinedModifierFlags(member) & ts.ModifierFlags.Public
? 'public'
: ts.getCombinedModifierFlags(member) & ts.ModifierFlags.Private
? 'private'
: 'protected';
if (ts.isPropertyDeclaration(member) || ts.isGetAccessor(member) || ts.isSetAccessor(member)) {
const type = checker.getTypeAtLocation(member);
const prop: PropertyInfo = properties[memberSymbol.getName()];
let mustPush: boolean = true;
const propertyInfo: PropertyInfo = prop ? prop : {
objectType: "property",
name: memberSymbol.getName(),
type: checker.typeToString(type),
visibility,
jsDoc: getJsDoc(member),
rawText: useRawText ? member.getText() : undefined,
};
if (!prop) properties[memberSymbol.getName()] = propertyInfo;
else mustPush = false;
if (ts.isGetAccessor(member)) propertyInfo.get = true;
if (ts.isSetAccessor(member)) propertyInfo.set = true;
if (symbol.getName() === "Vec2") console.log("prop = ", prop)
if (ts.getCombinedModifierFlags(member) & ts.ModifierFlags.Static) {
if (mustPush) classInfo.statics!.properties![visibility].push(propertyInfo);
} else {
if (mustPush) classInfo.properties![visibility].push(propertyInfo);
}
} else if (ts.isMethodDeclaration(member)) {
const signature = checker.getSignatureFromDeclaration(member);
const returnType = checker.typeToString(signature!.getReturnType());
const params = signature!.getParameters().map(paramSymbol => {
const paramDeclaration = paramSymbol.valueDeclaration as ts.ParameterDeclaration;
return {
name: paramSymbol.getName(),
type: checker.typeToString(checker.getTypeAtLocation(paramDeclaration))
};
});
const methodInfo: MethodInfo = {
objectType: "method",
name: memberSymbol.getName(),
returnType,
params,
visibility,
jsDoc: getJsDoc(member),
rawText: useRawText ? member.getText() : undefined,
};
if (ts.getCombinedModifierFlags(member) & ts.ModifierFlags.Static) {
classInfo.statics!.methods![visibility].push(methodInfo);
} else {
classInfo.methods![visibility].push(methodInfo);
}
}
}
return classInfo;
}
try {
const fileNames = ts.sys.readDirectory(rootDir, ["ts"]);
const options: ts.CompilerOptions = {
target: ts.ScriptTarget.ESNext,
module: ts.ModuleKind.CommonJS
};
const program = ts.createProgram(fileNames, options);
const checker = program.getTypeChecker();
const classInfos: any = {};
for (const fileName of fileNames) {
const sourceFile = program.getSourceFile(fileName);
if (sourceFile) {
ts.forEachChild(sourceFile, (node) => {
if (node) {
const classInfo = visit(node, checker);
if (classInfo) {
let relativePath = path.relative(rootDir, fileName);
relativePath = relativePath.substring(0, relativePath.length - 3);
//console.log(classInfo.objectType);
if (classInfo.objectType === "class") {
(classInfo as ClassInfo).filePath = relativePath.split("\\").join(".");
} else if (classInfo.objectType === "interface") {
(classInfo as InterfaceInfo).filePath = relativePath.split("\\").join(".");
}
if (classInfo.objectType === "class") {
(classInfo as ClassInfo).filePath = relativePath.split("\\").join(".");
}
const segments = relativePath.split(path.sep);
let currentObject = classInfos;
for (let i = 0; i < segments.length; i++) {
const segment = segments[i];
if (i === segments.length - 1) {
if (!currentObject[segment]) {
currentObject[segment] = [];
}
currentObject[segment].push(classInfo);
/*
if (classInfo.name === "Vec3") {
console.log(`Added class info for ${segment} ${classInfo.name} to classInfos`);
console.log("classInfos after adding class info: ", classInfos);
}
*/
} else {
if (!currentObject[segment]) {
currentObject[segment] = {};
}
currentObject = currentObject[segment];
}
}
}
}
});
// Check if jsdoc.json exists in the directory
let relativePath = path.relative(rootDir, fileName);
relativePath = relativePath.substring(0, relativePath.length - 3);
const segments = relativePath.split(path.sep);
let currentObject = classInfos;
for (let i = 0; i < segments.length; i++) {
const segment = segments[i];
if (!currentObject[segment]) {
currentObject[segment] = {};
}
currentObject = currentObject[segment];
}
const jsdocPath = path.join(rootDir, ...segments, 'jsdoc.json');
if (fs.existsSync(jsdocPath)) {
// Read the content of jsdoc.json and parse it as JSON
const jsdocContent = JSON.parse(fs.readFileSync(jsdocPath, 'utf8'));
// Add the JSON content to the directory object
currentObject['jsdoc'] = jsdocContent;
}
}
}
//console.log(classInfos);
function cleanEmptyArrays(obj: any) {
for (const key in obj) {
if ((Array.isArray(obj[key]) && obj[key].length === 0) || (key === 'implements' && Array.isArray(obj[key]) && obj[key].length === 0)) {
delete obj[key];
} else if (typeof obj[key] === 'object' && obj[key] !== null) {
cleanEmptyArrays(obj[key]);
if (Object.keys(obj[key]).length === 0) {
delete obj[key];
}
}
}
}
cleanEmptyArrays(classInfos)
const json = JSON.stringify(classInfos, null, 2);
fs.writeFileSync(path.join(outputDir, outputFileName), json);
} catch (e) {
console.error("Error : ", e);
process.exit(1);
}