-
Notifications
You must be signed in to change notification settings - Fork 45
/
index.js
92 lines (77 loc) · 2.52 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
/**
* The MIT License (MIT)
* Copyright (c) 2017-present Dmitry Soshnikov <[email protected]>
*/
'use strict';
const clone = require('../utils/clone');
const parser = require('../parser');
const transform = require('../transform');
const optimizationTransforms = require('./transforms');
module.exports = {
/**
* Optimizer transforms a regular expression into an optimized version,
* replacing some sub-expressions with their idiomatic patterns.
*
* @param string | RegExp | AST - a regexp to optimize.
*
* @return TransformResult - an optimized regexp.
*
* Example:
*
* /[a-zA-Z_0-9][a-zA-Z_0-9]*\e{1,}/
*
* Optimized to:
*
* /\w+e+/
*/
optimize(regexp, {whitelist = [], blacklist = []} = {}) {
const transformsRaw =
whitelist.length > 0
? whitelist
: Array.from(optimizationTransforms.keys());
const transformToApply = transformsRaw.filter(
transform => !blacklist.includes(transform)
);
let ast = regexp;
if (regexp instanceof RegExp) {
regexp = `${regexp}`;
}
if (typeof regexp === 'string') {
ast = parser.parse(regexp);
}
let result = new transform.TransformResult(ast);
let prevResultString;
do {
// Get a copy of the current state here so
// we can compare it with the state at the
// end of the loop.
prevResultString = result.toString();
ast = clone(result.getAST());
transformToApply.forEach(transformName => {
if (!optimizationTransforms.has(transformName)) {
throw new Error(
`Unknown optimization-transform: ${transformName}. ` +
`Available transforms are: ` +
Array.from(optimizationTransforms.keys()).join(', ')
);
}
const transformer = optimizationTransforms.get(transformName);
// Don't override result just yet since we
// might want to rollback the transform
let newResult = transform.transform(ast, transformer);
if (newResult.toString() !== result.toString()) {
if (newResult.toString().length <= result.toString().length) {
result = newResult;
} else {
// Result has changed but is not shorter:
// restore ast to its previous state.
ast = clone(result.getAST());
}
}
});
// Keep running the optimizer until it stops
// making any change to the regexp.
} while (result.toString() !== prevResultString);
return result;
},
};