-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathcljParser.ts
176 lines (145 loc) · 5.84 KB
/
cljParser.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
import { TextDocument, Range, Position, CompletionList } from "vscode";
interface ExpressionInfo {
functionName: string;
parameterPosition: number;
}
interface RelativeExpressionInfo {
startPosition: number;
parameterPosition: number;
}
const CLJ_TEXT_DELIMITER = `"`;
const CLJ_TEXT_ESCAPE = `\\`;
const CLJ_COMMENT_DELIMITER = `;`;
const R_CLJ_WHITE_SPACE = /\s|,/;
const R_CLJ_OPERATOR_DELIMITERS = /\s|,|\(|{|\[/;
/** { close_char open_char } */
const CLJ_EXPRESSION_DELIMITERS: Map<string, string> = new Map<string, string>([
[`}`, `{`],
[`)`, `(`],
[`]`, `[`],
[CLJ_TEXT_DELIMITER, CLJ_TEXT_DELIMITER],
]);
const getExpressionInfo = (text: string): ExpressionInfo => {
text = removeCljComments(text);
const relativeExpressionInfo = getRelativeExpressionInfo(text);
if (!relativeExpressionInfo)
return;
let functionName = text.substring(relativeExpressionInfo.startPosition + 1); // expression openning ignored
functionName = functionName.substring(functionName.search(/[^,\s]/)); // trim left
functionName = functionName.substring(0, functionName.search(R_CLJ_OPERATOR_DELIMITERS)); // trim right according to operator delimiter
if (!functionName.length)
return;
return {
functionName,
parameterPosition: relativeExpressionInfo.parameterPosition,
};
};
const removeCljComments = (text: string): string => {
const lines = text.match(/[^\r\n]+/g); // split string by line
if (lines.length > 1) {
return lines.map(line => removeCljComments(line)).join(`\n`); // remove comments from each line and concat them again after
}
const line = lines[0];
let uncommentedIndex = line.length;
let insideString = false;
for (let i = 0; i < line.length; i++) {
if (line[i] === CLJ_TEXT_DELIMITER) {
insideString = !insideString || line[i - 1] === CLJ_TEXT_ESCAPE;
continue;
}
if (line[i] === CLJ_COMMENT_DELIMITER && !insideString) { // ignore comment delimiter inside a string
uncommentedIndex = i;
break;
}
}
return line.substring(0, uncommentedIndex);
};
const getRelativeExpressionInfo = (text: string, openChar: string = `(`): RelativeExpressionInfo => {
const relativeExpressionInfo: RelativeExpressionInfo = {
startPosition: text.length - 1,
parameterPosition: -1,
};
let newParameterFound = false;
while (relativeExpressionInfo.startPosition >= 0) {
const char = text[relativeExpressionInfo.startPosition];
// check if found the beginning of the expression (string escape taken care of)
if (char === openChar && (openChar !== CLJ_TEXT_DELIMITER || (text[relativeExpressionInfo.startPosition - 1] !== CLJ_TEXT_ESCAPE))) {
if (newParameterFound) // ignore one parameter found if it's actually the function we're looking for
relativeExpressionInfo.parameterPosition--;
return relativeExpressionInfo;
}
// ignore everything if searching inside a string
if (openChar === CLJ_TEXT_DELIMITER) {
relativeExpressionInfo.startPosition--;
continue;
}
// invalid code if a beginning of an expression is found without being searched for
if (char !== CLJ_TEXT_DELIMITER && containsValue(CLJ_EXPRESSION_DELIMITERS, char))
return;
// keep searching if it's white space
if (R_CLJ_WHITE_SPACE.test(char)) {
if (!newParameterFound) {
relativeExpressionInfo.parameterPosition++;
newParameterFound = true;
}
relativeExpressionInfo.startPosition--;
continue;
}
// check for new expressions
const expressionDelimiter = CLJ_EXPRESSION_DELIMITERS.get(char);
if (!!expressionDelimiter) {
const innerExpressionInfo = getRelativeExpressionInfo(text.substring(0, relativeExpressionInfo.startPosition), expressionDelimiter);
if (!innerExpressionInfo)
return;
relativeExpressionInfo.startPosition = innerExpressionInfo.startPosition - 1;
relativeExpressionInfo.parameterPosition++;
newParameterFound = true;
continue;
}
newParameterFound = false;
relativeExpressionInfo.startPosition--;
}
return; // reached the beginning of the text without finding the start of the expression
};
const containsValue = (map: Map<any, any>, checkValue: any): boolean => {
for (let value of map.values()) {
if (value === checkValue)
return true;
}
return false;
};
const getNamespace = (text: string): string => {
const m = text.match(/^[\s\t]*\((?:[\s\t\n]*(?:in-){0,1}ns)[\s\t\n]+'?([\w\-.]+)[\s\S]*\)[\s\S]*/);
return m ? m[1] : 'user';
};
//assume the position is before the block directly
const getDirectlyBeforeBlockRange = (editor: TextDocument, line: number, column: number): Range => {
const lastLineNumber = editor.lineCount - 1;
const lastLine = editor.lineAt(lastLineNumber);
const range = new Range(line, column, lastLineNumber, lastLine.range.end.character);
const text = editor.getText(range);
let count = 0;
let endPosition = new Position(line, column);
let c = column;
for(let l = line; l < range.end.line;) {
const currentLine = editor.lineAt(l);
for(;c < currentLine.range.end.character;c++) {
if(text[c] === '(')
count++;
if(text[c] === ')')
count--;
}
if(count === 0) {
return new Range(line - 1, column, l - 1, c);
}
l++;
c = 0;
}
return new Range(line, column, line, column);
}
export const cljParser = {
R_CLJ_WHITE_SPACE,
getExpressionInfo,
getNamespace,
getDirectlyBeforeBlockRange
};