forked from mulesoft-labs/ts-structure-parser
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.ts
177 lines (146 loc) · 3.52 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
export import helpers = require("./src/helpers");
import tsStructureParser = require("./src/tsStructureParser");
export interface Module {
classes: ClassModel[];
functions: FunctionDeclaration[];
imports: { [name: string]: Module};
_imports: ImportNode[];
aliases: AliasNode[];
enumDeclarations: EnumDeclaration[];
name: string;
}
export interface FunctionDeclaration {
name: string;
isAsync: boolean;
isArrow: boolean;
isExport: boolean;
// returnType?: ReturnTypeDeclaration;
params?: {
name: string,
type: string,
mandatory: boolean;
}[];
}
export interface ReturnTypeDeclaration {
isPromise?: boolean;
isArray?: boolean;
isUnion?: boolean;
isLiteral?: boolean;
value?: any;
type: string | ReturnTypeDeclaration[] | undefined;
}
export interface AliasNode {
name: string;
type: TypeModel;
}
export interface ImportNode {
clauses: string[];
absPathNode: string[];
absPathString: string;
isNodeModule: boolean;
}
export class EnumMemberDeclaration {
name: string;
value?: number | string;
}
export class EnumDeclaration {
name: string;
members: EnumMemberDeclaration[];
}
export enum TypeKind {
BASIC,
ARRAY,
UNION
}
export interface TypeModel {
typeKind: TypeKind;
}
export interface BasicType extends TypeModel {
//typeName:string
nameSpace: string;
basicName: string;
typeName: string;
typeArguments: TypeModel[];
modulePath: string;
}
export interface ArrayType extends TypeModel {
base: TypeModel;
}
export type Arg = string|number|boolean;
export interface UnionType extends TypeModel {
options: TypeModel[];
}
export interface Annotation {
name: string;
arguments: (Arg|Arg[])[];
}
export interface Decorator {
name: string;
arguments: (Arg|Arg[])[];
}
export interface FieldModel {
name: string;
type: TypeModel;
decorators: Decorator[];
annotations: Annotation[];
valueConstraint: Constraint;
optional: boolean;
}
export interface MethodModel {
start: number;
end: number;
name: string;
text: string;
returnType: TypeModel;
arguments: ParameterModel[];
}
export interface ParameterModel {
start: number;
end: number;
name: string;
text: string;
type: TypeModel;
}
export interface Constraint {
isCallConstraint: boolean;
value?: any;
}
export interface CallConstraint extends Constraint {
value: Annotation;
}
export interface ValueConstraint extends Constraint {
value: string|number|boolean;
}
export interface ClassModel {
name: string;
decorators: Decorator[];
annotations: Annotation[];
moduleName: string;
extends: TypeModel[];
implements: TypeModel[];
fields: FieldModel[];
methods: MethodModel[];
typeParameters: string[];
typeParameterConstraint: string[];
isInterface: boolean;
annotationOverridings: {[key: string]: Annotation[]};
}
export function classDecl(name: string, isInteface: boolean): ClassModel {
return {
name: name,
methods: [],
typeParameters: [],
typeParameterConstraint: [],
implements: [],
fields: [],
isInterface: isInteface,
decorators: [],
annotations: [],
extends: [],
moduleName: null,
annotationOverridings: {}
};
}
export function parseStruct(content: string, modules: {[path: string]: Module}, mpth: string): Module {
return tsStructureParser.parseStruct(content, modules, mpth);
}