-
Notifications
You must be signed in to change notification settings - Fork 0
/
parser.js
executable file
·202 lines (175 loc) · 6.34 KB
/
parser.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
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
const chevrotain = require('chevrotain');
module.exports = (function syslGrammer() {
// Written Docs for this tutorial step can be found here:
// https://github.com/SAP/chevrotain/blob/master/docs/tutorial/step2_parsing.md
// Tutorial Step 2:
// Adding a Parser (grammar only, only reads the input
// without any actions) using the Tokens defined in the previous step.
// modification to the grammar will be displayed in the syntax diagrams panel.
const createToken = (name, pattern) => chevrotain.createToken({name, pattern});
const Lexer = chevrotain.Lexer;
const Parser = chevrotain.Parser;
// Strings
const Namespace = createToken("Namespace", /[a-z][a-z0-9]*(?:\.[a-z][a-z0-9]*)+/);
const Identifier = createToken("Identifier", /[A-Z]\w*/);
const SmallIdentifier = createToken("SmallIdentifier", /[a-z]\w*/);
const TableName = createToken("TableName", /!table/);
// Types
const ForeignKeyType = createToken("ForeignKeyType", /[A-Z]\w*\.\w+/);
const IntType = createToken("IntType", /int/);
const DecimalType = createToken("DecimalType", /decimal/);
const StringType = createToken("StringType", /string/);
const DateType = createToken("DateType", /date/);
// Symbols
const Colon = createToken("Colon", /:/);
const Comma = createToken("Comma", /,/);
const DoubleQuote = createToken("DoubleQuote", /"/);
const Equals = createToken("Equals", /=/);
const LSquare = createToken("LSquare", /\[/);
const RSquare = createToken("RSquare", /\]/);
const QuestionMark = createToken("QuestionMark", /\?/);
const Subset = createToken("Subset", /<:/);
const Tilde = createToken("Tilde", /~/);
const WhiteSpace = createToken("WhiteSpace", /\s+/);
WhiteSpace.GROUP = Lexer.SKIPPED;
// whitespace is normally very common so it is placed first to speed up the lexer
const allTokens = [
WhiteSpace,
TableName,
ForeignKeyType,
IntType,
DecimalType,
StringType,
DateType,
Namespace,
SmallIdentifier,
Identifier,
Subset,
Colon,
Comma,
DoubleQuote,
Equals,
LSquare,
RSquare,
QuestionMark,
Tilde,
];
const ModelLexer = new Lexer(allTokens);
// ----------------- parser -----------------
function ModelParser(input, config) {
if (typeof input === 'string') {
const lexerResult = Parser.lexer.tokenize(input);
if (lexerResult.errors.length) throw Error("Failed to tokenize input content");
input = lexerResult.tokens;
}
// By default if {recoveryEnabled: true} is not passed in the config object
// error recovery / fault tolerance capabilities will be disabled
Parser.call(this, input, allTokens, config);
const $ = this;
this.modelRule = $.RULE('modelRule', function() {
$.CONSUME(Identifier);
$.OPTION(function() {
$.SUBRULE($.modelAttrs);
});
$.CONSUME(Colon);
$.MANY(function() {
$.SUBRULE($.tableStatement);
$.MANY2(function() {
$.SUBRULE($.fieldStatement);
});
})
});
this.attrStatement = $.RULE('attrStatement', function() {
$.CONSUME(SmallIdentifier);
$.CONSUME(Equals);
$.CONSUME(DoubleQuote);
$.CONSUME(Namespace);
$.CONSUME2(DoubleQuote);
});
this.modelAttrs = $.RULE('modelAttrs', function() {
$.CONSUME(LSquare);
$.OPTION(function() {
$.SUBRULE($.attrStatement);
$.MANY(function() {
$.CONSUME(Comma);
$.SUBRULE2($.attrStatement);
});
});
$.CONSUME(RSquare);
});
this.tableStatement = $.RULE('tableStatement', function() {
$.CONSUME(TableName);
$.CONSUME(Identifier);
$.CONSUME(Colon);
});
this.fieldStatement = $.RULE('fieldStatement', function() {
$.CONSUME(SmallIdentifier);
$.CONSUME(Subset);
$.SUBRULE($.typeStatement);
$.OPTION(function() {
$.CONSUME(QuestionMark);
});
$.OPTION2(function() {
$.SUBRULE($.fieldAttrs);
});
});
this.fieldAttrs = $.RULE('fieldAttrs', function() {
$.CONSUME(LSquare);
$.OPTION(function() {
$.SUBRULE($.fieldAttr);
$.MANY(function() {
$.CONSUME(Comma);
$.SUBRULE2($.fieldAttr);
});
});
$.CONSUME(RSquare);
});
this.fieldAttr = $.RULE('fieldAttr', function() {
$.OPTION(function() {
$.CONSUME(Tilde);
});
$.CONSUME(SmallIdentifier);
});
this.typeStatement = $.RULE('typeStatement', function() {
$.OR([
{
ALT: function() {
$.CONSUME(IntType)
}
},
{
ALT: function() {
$.CONSUME(DecimalType)
}
},
{
ALT: function() {
$.CONSUME(StringType)
}
},
{
ALT: function() {
$.CONSUME(DateType)
}
},
{
ALT: function() {
$.CONSUME(ForeignKeyType)
}
},
], "a type");
$.OPTION(function() {
$.CONSUME(QuestionMark);
})
});
// very important to call this after all the rules have been defined.
// otherwise the parser may not work correctly as it will lack information
// derived during the self analysis phase.
Parser.performSelfAnalysis(this);
}
ModelParser.prototype = Object.create(Parser.prototype);
ModelParser.prototype.constructor = ModelParser;
ModelParser.lexer = ModelLexer;
ModelParser.defaultRule = "modelRule";
return ModelParser;
}());