-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.js
138 lines (117 loc) · 2.94 KB
/
index.js
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
"use strict";
const parsePackageName = file => {
const packageNameRegex = /package (.*)\;/;
const [, pkg] = packageNameRegex.exec(file);
return pkg;
};
const removeComments = file => {
const commentRegex = /\/\*[\s\S]*?\*\/|([^\\:]|^)\/\/.*$/gm;
return file.replace(commentRegex, "");
};
const parseClassName = file => {
// TODO: add extends as edge case
const fileWithoutComments = removeComments(file);
const classNameRegex = /public (?:final |static | )*class (.*)\s\{/;
const [, name] = classNameRegex.exec(fileWithoutComments);
return name;
};
const argumentRegex = /(final)? (\w*) (\w*)/;
const transformArgument = rawArguments => {
const argumentParts = rawArguments
.split(/ (?![^<]*>)/)
.map(p => p && p.trim())
.filter(Boolean);
if (!argumentParts.length) {
return null;
}
if (argumentParts[0] === "final") {
const [, type, name] = argumentParts;
return {
final: true,
type,
name
};
}
if (argumentParts.length === 3) {
const [, type, name] = argumentParts;
return {
type,
name
};
}
const [type, name] = argumentParts;
return {
final: false,
type,
name
};
};
// Get the matching closing bracket after this point
const getClosingBracketPosition = (file, startIndex) => {
let currentDepth = 1;
let currentIndex = startIndex;
while (currentDepth > 0) {
const nextOpeningIndex =
file.indexOf("{", currentIndex) !== -1
? file.indexOf("{", currentIndex)
: Infinity;
const nextClosingIndex =
file.indexOf("}", currentIndex) !== -1
? file.indexOf("}", currentIndex)
: Infinity;
// Opening bracket comes next
if (nextOpeningIndex < nextClosingIndex) {
currentDepth += 1;
currentIndex = nextOpeningIndex + 1;
}
// Closing bracket comes next
if (nextClosingIndex < nextOpeningIndex) {
currentDepth -= 1;
currentIndex = nextClosingIndex + 1;
}
}
return currentIndex;
};
const parseMethods = file => {
// TODO: multi line methods
const methodRegex = /(public|private|protected) (static )?((?:\w|\<|\>)*) (\w*)(?:\(((\w|\s|\,|\@|\n|\<|\>)*)\))/g;
const methods = [];
let match;
while ((match = methodRegex.exec(file))) {
const start = file.indexOf("{", match.index);
const end = getClosingBracketPosition(file, start + 1);
const [, visibility, modifier, returnType, name, rawArguments] = match;
methods.push({
start,
end,
content: {
public: visibility === "public",
static: Boolean(modifier),
returnType,
name,
args: rawArguments
.split(/,(?![^<]*>)/)
.map(transformArgument)
.filter(Boolean)
}
});
}
return methods
.filter(
(filteredMethod, index, methods) =>
!methods.some(
comparingMethod =>
comparingMethod.start < filteredMethod.start &&
filteredMethod.start < comparingMethod.end
)
)
.map(({ content }) => content);
};
const parse = file => {
return {
package: parsePackageName(file),
name: parseClassName(file),
methods: parseMethods(file)
};
};
module.exports = parse;