-
Notifications
You must be signed in to change notification settings - Fork 101
/
Copy pathindex.ts
152 lines (140 loc) · 6.59 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
import { CandidatesCollection } from 'antlr4-c3';
import { CharStream, CommonTokenStream, Token } from 'antlr4ng';
import { PostgreSqlLexer } from '../../lib/postgresql/PostgreSqlLexer';
import { PostgreSqlParser, ProgramContext } from '../../lib/postgresql/PostgreSqlParser';
import { EntityContextType, Suggestions, SyntaxSuggestion } from '../common/types';
import { BasicSQL } from '../common/basicSQL';
import { StmtContextType } from '../common/entityCollector';
import { PostgreSqlEntityCollector } from './postgreEntityCollector';
import { PostgreSqlSplitListener } from './postgreSplitListener';
import { ErrorListener } from '../common/parseErrorListener';
import { PostgreSqlErrorListener } from './postgreErrorListener';
export { PostgreSqlEntityCollector, PostgreSqlSplitListener };
export class PostgreSQL extends BasicSQL<PostgreSqlLexer, ProgramContext, PostgreSqlParser> {
protected createLexerFromCharStream(charStreams: CharStream) {
return new PostgreSqlLexer(charStreams);
}
protected createParserFromTokenStream(tokenStream: CommonTokenStream) {
return new PostgreSqlParser(tokenStream);
}
protected preferredRules: Set<number> = new Set([
PostgreSqlParser.RULE_table_name_create, // table name
PostgreSqlParser.RULE_table_name, // table name that will be created
PostgreSqlParser.RULE_function_name, // function name
PostgreSqlParser.RULE_function_name_create, // function name that will be created
PostgreSqlParser.RULE_schema_name_create, // schema name that will be created
PostgreSqlParser.RULE_schema_name, // schema name
PostgreSqlParser.RULE_view_name_create, // view name that will be created
PostgreSqlParser.RULE_view_name, // view name
PostgreSqlParser.RULE_database_name_create, // database name that will be created
PostgreSqlParser.RULE_database_name, // database name
PostgreSqlParser.RULE_procedure_name_create, // procedure name that will be created
PostgreSqlParser.RULE_procedure_name, // procedure name
PostgreSqlParser.RULE_column_name_create, // column name that will be created
PostgreSqlParser.RULE_column_name, // column name
]);
protected get splitListener() {
return new PostgreSqlSplitListener();
}
protected createErrorListener(_errorListener: ErrorListener) {
return new PostgreSqlErrorListener(_errorListener, this.preferredRules, this.locale);
}
protected createEntityCollector(input: string, caretTokenIndex?: number) {
return new PostgreSqlEntityCollector(input, caretTokenIndex);
}
protected processCandidates(
candidates: CandidatesCollection,
allTokens: Token[],
caretTokenIndex: number
): Suggestions<Token> {
const originalSyntaxSuggestions: SyntaxSuggestion<Token>[] = [];
const keywords: string[] = [];
for (let candidate of candidates.rules) {
const [ruleType, candidateRule] = candidate;
const startTokenIndex = candidateRule.startTokenIndex;
const tokenRanges = allTokens.slice(startTokenIndex, caretTokenIndex + 1);
let syntaxContextType: EntityContextType | StmtContextType | undefined = void 0;
switch (ruleType) {
case PostgreSqlParser.RULE_table_name_create: {
syntaxContextType = EntityContextType.TABLE_CREATE;
break;
}
case PostgreSqlParser.RULE_table_name: {
syntaxContextType = EntityContextType.TABLE;
break;
}
case PostgreSqlParser.RULE_function_name_create: {
syntaxContextType = EntityContextType.FUNCTION_CREATE;
break;
}
case PostgreSqlParser.RULE_function_name: {
syntaxContextType = EntityContextType.FUNCTION;
break;
}
case PostgreSqlParser.RULE_schema_name_create: {
syntaxContextType = EntityContextType.DATABASE_CREATE;
break;
}
case PostgreSqlParser.RULE_schema_name: {
syntaxContextType = EntityContextType.DATABASE;
break;
}
case PostgreSqlParser.RULE_view_name_create: {
syntaxContextType = EntityContextType.VIEW_CREATE;
break;
}
case PostgreSqlParser.RULE_view_name: {
syntaxContextType = EntityContextType.VIEW;
break;
}
case PostgreSqlParser.RULE_database_name_create: {
syntaxContextType = EntityContextType.DATABASE_CREATE;
break;
}
case PostgreSqlParser.RULE_database_name: {
syntaxContextType = EntityContextType.DATABASE;
break;
}
case PostgreSqlParser.RULE_procedure_name_create: {
syntaxContextType = EntityContextType.PROCEDURE_CREATE;
break;
}
case PostgreSqlParser.RULE_procedure_name: {
syntaxContextType = EntityContextType.PROCEDURE;
break;
}
case PostgreSqlParser.RULE_column_name_create: {
syntaxContextType = EntityContextType.COLUMN_CREATE;
break;
}
case PostgreSqlParser.RULE_column_name: {
syntaxContextType = EntityContextType.COLUMN;
break;
}
default:
break;
}
if (syntaxContextType) {
originalSyntaxSuggestions.push({
syntaxContextType,
wordRanges: tokenRanges,
});
}
}
for (let candidate of candidates.tokens) {
const symbolicName = this._parser.vocabulary.getSymbolicName(candidate[0]);
const displayName = this._parser.vocabulary.getDisplayName(candidate[0]);
if (displayName && symbolicName && symbolicName.startsWith('KW_')) {
const keyword =
displayName.startsWith("'") && displayName.endsWith("'")
? displayName.slice(1, -1)
: displayName;
keywords.push(keyword);
}
}
return {
syntax: originalSyntaxSuggestions,
keywords,
};
}
}