-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefinitions.js
More file actions
362 lines (267 loc) · 8.62 KB
/
definitions.js
File metadata and controls
362 lines (267 loc) · 8.62 KB
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
//Missing: lookaround groups, backreferences (/\1/)
//Error when using lazy repeat quantifiers /a{3}?/
//Need to wrap body of optionally quantifier to work properly
//Not consistent
/**
* @typedef {Object<string, any>} ObjectLiteral
*/
const RegexComponent = class RegexComponent {
constructor() { }
};
RegexComponent.Constant = class extends RegexComponent {
static len = 1;
};
RegexComponent.Block = class extends RegexComponent {
constructor(args = {}) {
super(args);
this.len = 0;
const {
body = []
} = args;
this.body = body;
}
get bodyLength() {
return this.body.reduce((sum, e) => sum + (e instanceof RegexComponent.Block ? e.len + e.bodyLength : (e.length || e.len || Infinity)), 0);
}
wrap(string) {
return this.body.length === 1 && this.bodyLength === 1 ? string : `(?:${string})`;
}
toArray() {
return this.body.map(component => {
if(typeof component === "string") return escapeRegexString(component);
if(component instanceof RegExp) return component.toString().replace(/^\/([\s\S]*?)\/[gmixsuXUAJD]*$/m, "$1");
return component.toString();
});
}
};
RegexComponent.Quantifier = class extends RegexComponent.Block {
constructor(args = {}) {
super(args);
this.len = 2;
const {
isLazy = false
} = args;
this.isLazy = isLazy;
}
};
/* Constants */
const $whitespace = class extends RegexComponent.Constant {
static toString() {
return "\\s";
}
};
const $digit = class extends RegexComponent.Constant {
static toString() {
return "\\d";
}
};
const $word = class extends RegexComponent.Constant {
static toString() {
return "\\w";
}
};
RegexComponent.Regex = class extends RegexComponent.Block {
constructor(args = {}) {
super(args);
this.flags = [];
}
/* Flags */
//This is custom made, the original does not support the "g" flag
returnAllMatches() {
this.flags.push("g");
return this;
}
anchorsMatchLineEndings() {
this.flags.push("m");
return this;
}
ignoresCase() {
this.flags.push("i");
return this;
}
dotMatchesNewlines() {
this.flags.push("s");
return this;
}
toString(includeFlags = false) {
const body = this.toArray().join("");
return includeFlags ? `/${body}/${this.flags.join("")}` : body;
}
build() {
return new RegExp(this.toString(), this.flags.join(""));
}
};
RegexComponent.One = class extends RegexComponent.Block {
constructor(args = {}) {
super(args);
}
toString() {
return this.toArray().join("");
}
};
RegexComponent.Capture = class extends RegexComponent.Block {
constructor(args = {}) {
super(args);
this.len = 1;
const {
name
} = args;
this.name = name;
}
toString() {
const body = this.toArray().join("");
return `(${this.name ? `?<${this.name}>` : ""}${body})`;
}
};
RegexComponent.ChoiceOf = class extends RegexComponent.Block {
constructor(args = {}) {
super(args);
}
toString() {
return this.toArray().join("|");
}
};
RegexComponent.OneOrMore = class extends RegexComponent.Quantifier {
constructor(args = {}) {
super(args);
}
toString() {
const body = this.toArray().join("");
return `${this.wrap(body)}+${this.isLazy ? "?" : ""}`;
}
};
RegexComponent.ZeroOrMore = class extends RegexComponent.Quantifier {
constructor(args = {}) {
super(args);
}
toString() {
const body = this.toArray().join("");
return `${this.wrap(body)}*${this.isLazy ? "?" : ""}`;
}
};
RegexComponent.Optionally = class extends RegexComponent.Quantifier {
constructor(args = {}) {
super(args);
}
toString() {
const body = this.toArray();
// if(this.body.length > 1) {
// console.warn("Optionally quantifier should only contain one component");
// } else if(this.body[0] instanceof RegexComponent.Quantifier) {
// console.warn("Optionally quantifier should not contain a quantifier as first child");
// } else if(this.body.length == 1 && body[0].length > 1) {
// console.warn("Optionally quantifier should not contain a single component that is longer than one character");
// }
return `${this.wrap(body.join(""))}?${this.isLazy ? "?" : ""}`;
}
};
RegexComponent.Repeat = class extends RegexComponent.Quantifier {
constructor(args = {}) {
super(args);
const {
from = 0,
to,
count
} = args;
this.from = from;
this.to = to;
this.count = count;
}
toString() {
const body = this.toArray().join("");
return `${this.wrap(body)}{${this.count || `${this.from},${this.to || ""}`}}${this.isLazy ? "?" : ""}`;
}
};
/* Builder functions */
function Regex() {
const {tree} = parseArgs(arguments);
return new RegexComponent.Regex({body: tree});
}
function Capture() {
const {tree, options} = parseArgs(arguments);
return new RegexComponent.Capture({body: tree, name: options.as});
}
function ChoiceOf() {
const {tree} = parseArgs(arguments);
return new RegexComponent.ChoiceOf({body: tree});
}
function OneOrMore() {
const {tree} = parseArgs(arguments);
return new RegexComponent.OneOrMore({body: tree});
}
function Repeat() {
const {tree, options} = parseArgs(arguments);
if(options.count && (options.from || options.to)) throw new Error("Repeat cannot have both count and from/to");
if(options.count < 0 || options.from < 0 || options.to < 0) throw new Error("Repeat count/from/to cannot be negative");
if(options.from && options.to && options.from > options.to) throw new Error("Repeat from cannot be greater than to");
if(options.count && options.count % 1 !== 0 || options.from && options.from % 1 !== 0 || options.to && options.to % 1 !== 0) throw new Error("Repeat count/from/to must be an integer");
if(!options.from && options.to) options.from = 0;
return new RegexComponent.Repeat({body: tree, isLazy: options.$reluctant, from: options.from, to: options.to, count: options.count});
}
function One() {
const {tree} = parseArgs(arguments);
return new RegexComponent.One({body: tree});
}
function Optionally() {
const {tree, options} = parseArgs(arguments);
return new RegexComponent.Optionally({body: tree, isLazy: options.$reluctant});
}
function ZeroOrMore() {
const {tree, options} = parseArgs(arguments);
return new RegexComponent.ZeroOrMore({body: tree, isLazy: options.$reluctant});
}
/* Helper functions */
/**
* Parses the function arguments
* @param {(ObjectLiteral | RegexComponent | string)[]} args
* @return {{options: ObjectLiteral, tree: RegexComponent[]}}}}
*/
function parseArgs(args) {
const parsed = {
options: {},
tree: null
};
// (options{})
if(Object.isObject(args[0])) parsed.options = args[0];
// (tree[])
if(Array.isArray(args[0])) parsed.tree = args[0];
// (options{}, tree[])
if(Array.isArray(args[1])) parsed.tree = args[1];
// (...tree)
if(!Object.isObject(args[0]) && !Array.isArray(args[0])) parsed.tree = [...args];
// (options{}, ...tree)
if(!parsed.tree && args[1] && !Object.isObject(args[1]) && !Array.isArray(args[1])) parsed.tree = [...args].slice(1);
return parsed;
}
/**
* Escapes a string for use in a regular expression
* @param {string} string input string
* @return {string} escaped string
*/
function escapeRegexString(string) {
return string.replace(/[-\/\\^$*+?.()|[\]{}]/g, "\\$&");
}
Object.defineProperty(Object, "isObject", {
value: function(obj) {
return obj && Object.getPrototypeOf(obj) === Object.prototype;
}
});
Object.defineProperty(Object, "subclassOf", {
value: function(obj, con) {
return obj && (obj.prototype instanceof con || obj === con);
}
});
module.exports = {
Regex,
Capture,
ChoiceOf,
OneOrMore,
Repeat,
One,
Optionally,
ZeroOrMore,
$whitespace,
$digit,
$word,
RegexComponent
};