-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathno-contradiction-with-assertion.ts
419 lines (375 loc) · 13.8 KB
/
no-contradiction-with-assertion.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
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
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
import type {
Assertion,
Element,
Alternative,
Quantifier,
} from "@eslint-community/regexpp/ast"
import type { RegExpVisitor } from "@eslint-community/regexpp/visitor"
import type {
FirstLookChar,
MatchingDirection,
ReadonlyFlags,
} from "regexp-ast-analysis"
import {
isPotentiallyEmpty,
getMatchingDirectionFromAssertionKind,
getFirstCharAfter,
getFirstConsumedChar,
getFirstConsumedCharAfter,
isZeroLength,
FirstConsumedChars,
} from "regexp-ast-analysis"
import type { RegExpContext } from "../utils"
import { createRule, defineRegexpVisitor } from "../utils"
import { mention } from "../utils/mention"
import { quantToString } from "../utils/regexp-ast"
/**
* Returns whether the given assertions is guaranteed to always trivially
* reject or accept.
*
* @param assertion
*/
function isTrivialAssertion(
assertion: Assertion,
dir: MatchingDirection,
flags: ReadonlyFlags,
): boolean {
if (assertion.kind !== "word") {
if (getMatchingDirectionFromAssertionKind(assertion.kind) !== dir) {
// This assertion doesn't assert anything in that direction, so
// it's the same as trivially accepting
return true
}
}
if (assertion.kind === "lookahead" || assertion.kind === "lookbehind") {
if (isPotentiallyEmpty(assertion.alternatives, flags)) {
// The assertion is guaranteed to trivially accept/reject.
return true
}
}
const look = FirstConsumedChars.toLook(
getFirstConsumedChar(assertion, dir, flags),
)
if (look.char.isEmpty || look.char.isAll) {
// trivially rejecting or accepting (based on the first char)
return true
}
const after = getFirstCharAfter(assertion, dir, flags)
if (!after.edge) {
if (look.exact && look.char.isSupersetOf(after.char)) {
// trivially accepting
return true
}
if (look.char.isDisjointWith(after.char)) {
// trivially rejecting
return true
}
}
return false
}
/**
* Returns the next elements always reachable from the given element without
* consuming characters
*/
function* getNextElements(
start: Element,
dir: MatchingDirection,
flags: ReadonlyFlags,
): Iterable<Element> {
let element = start
for (;;) {
const parent = element.parent
if (
parent.type === "CharacterClass" ||
parent.type === "CharacterClassRange" ||
parent.type === "ClassIntersection" ||
parent.type === "ClassSubtraction" ||
parent.type === "StringAlternative"
) {
return
}
if (parent.type === "Quantifier") {
if (parent.max === 1) {
element = parent
continue
} else {
return
}
}
const elements = parent.elements
const index = elements.indexOf(element)
const inc = dir === "ltr" ? 1 : -1
for (let i = index + inc; i >= 0 && i < elements.length; i += inc) {
const e = elements[i]
yield e
if (!isZeroLength(e, flags)) {
return
}
}
// we have to check the grand parent
const grandParent = parent.parent
if (
(grandParent.type === "Group" ||
grandParent.type === "CapturingGroup" ||
(grandParent.type === "Assertion" &&
getMatchingDirectionFromAssertionKind(grandParent.kind) !==
dir)) &&
grandParent.alternatives.length === 1
) {
element = grandParent
continue
}
return
}
}
/**
* Goes through the given element and all of its children until a the condition
* returns true or a character is (potentially) consumed.
*/
function tryFindContradictionIn(
element: Element,
dir: MatchingDirection,
condition: (e: Element | Alternative) => boolean,
flags: ReadonlyFlags,
): boolean {
if (condition(element)) {
return true
}
if (element.type === "CapturingGroup" || element.type === "Group") {
// Go into the alternatives of groups
let some = false
element.alternatives.forEach((a) => {
if (tryFindContradictionInAlternative(a, dir, condition, flags)) {
some = true
}
})
return some
}
if (element.type === "Quantifier" && element.max === 1) {
// Go into the element of quantifiers if their maximum is 1
return tryFindContradictionIn(element.element, dir, condition, flags)
}
if (
element.type === "Assertion" &&
(element.kind === "lookahead" || element.kind === "lookbehind") &&
getMatchingDirectionFromAssertionKind(element.kind) === dir
) {
// Go into the alternatives of lookarounds if they point in the same
// direction. E.g. ltr and (?=a).
// Since we don't consume characters, we want to keep going even if we
// find a contradiction inside the lookaround.
element.alternatives.forEach((a) =>
tryFindContradictionInAlternative(a, dir, condition, flags),
)
}
return false
}
/**
* Goes through all elements of the given alternative until the condition
* returns true or a character is (potentially) consumed.
*/
function tryFindContradictionInAlternative(
alternative: Alternative,
dir: MatchingDirection,
condition: (e: Element | Alternative) => boolean,
flags: ReadonlyFlags,
): boolean {
if (condition(alternative)) {
return true
}
const { elements } = alternative
const first = dir === "ltr" ? 0 : elements.length
const inc = dir === "ltr" ? 1 : -1
for (let i = first; i >= 0 && i < elements.length; i += inc) {
const e = elements[i]
if (tryFindContradictionIn(e, dir, condition, flags)) {
return true
}
if (!isZeroLength(e, flags)) {
break
}
}
return false
}
/**
* Returns whether the 2 look chars are disjoint (== mutually exclusive).
*/
function disjoint(a: FirstLookChar, b: FirstLookChar): boolean {
if (a.edge && b.edge) {
// both accept the edge
return false
}
return a.char.isDisjointWith(b.char)
}
export default createRule("no-contradiction-with-assertion", {
meta: {
docs: {
description: "disallow elements that contradict assertions",
category: "Possible Errors",
recommended: true,
},
schema: [],
messages: {
alternative:
"The alternative {{ alt }} can never be entered because it contradicts with the assertion {{ assertion }}. Either change the alternative or assertion to resolve the contradiction.",
cannotEnterQuantifier:
"The quantifier {{ quant }} can never be entered because its element contradicts with the assertion {{ assertion }}. Change or remove the quantifier or change the assertion to resolve the contradiction.",
alwaysEnterQuantifier:
"The quantifier {{ quant }} is always entered despite having a minimum of 0. This is because the assertion {{ assertion }} contradicts with the element(s) after the quantifier. Either set the minimum to 1 ({{ newQuant }}) or change the assertion.",
// suggestions
removeQuantifier: "Remove the quantifier.",
changeQuantifier: "Change the quantifier to {{ newQuant }}.",
},
hasSuggestions: true,
type: "problem",
},
create(context) {
function createVisitor(
regexpContext: RegExpContext,
): RegExpVisitor.Handlers {
const {
node,
flags,
getRegexpLocation,
fixReplaceQuant,
fixReplaceNode,
} = regexpContext
/** Analyses the given assertion. */
function analyseAssertion(
assertion: Assertion,
dir: MatchingDirection,
) {
if (isTrivialAssertion(assertion, dir, flags)) {
return
}
const assertionLook = FirstConsumedChars.toLook(
getFirstConsumedChar(assertion, dir, flags),
)
for (const element of getNextElements(assertion, dir, flags)) {
if (
tryFindContradictionIn(element, dir, contradicts, flags)
) {
break
}
}
/** Whether the alternative contradicts the current assertion. */
function contradictsAlternative(
alternative: Alternative,
): boolean {
let consumed = getFirstConsumedChar(alternative, dir, flags)
if (consumed.empty) {
// This means that we also have to look at the
// characters after the alternative.
consumed = FirstConsumedChars.concat(
[
consumed,
getFirstConsumedCharAfter(
alternative,
dir,
flags,
),
],
flags,
)
}
const look = FirstConsumedChars.toLook(consumed)
if (disjoint(assertionLook, look)) {
context.report({
node,
loc: getRegexpLocation(alternative),
messageId: "alternative",
data: {
assertion: mention(assertion),
alt: mention(alternative),
},
})
return true
}
return false
}
/** Whether the alternative contradicts the current assertion. */
function contradictsQuantifier(quant: Quantifier): boolean {
if (quant.max === 0) {
return false
}
if (quant.min !== 0) {
// all the below condition assume min=0
return false
}
const consumed = getFirstConsumedChar(
quant.element,
dir,
flags,
)
const look = FirstConsumedChars.toLook(consumed)
if (disjoint(assertionLook, look)) {
// This means that we cannot enter the quantifier
// e.g. /(?!a)a*b/
context.report({
node,
loc: getRegexpLocation(quant),
messageId: "cannotEnterQuantifier",
data: {
assertion: mention(assertion),
quant: mention(quant),
},
suggest: [
{
messageId: "removeQuantifier",
fix: fixReplaceNode(quant, ""),
},
],
})
return true
}
const after = getFirstCharAfter(quant, dir, flags)
if (disjoint(assertionLook, after)) {
// This means that we always have to enter the quantifier
// e.g. /(?!a)b*a/
const newQuant = quantToString({ ...quant, min: 1 })
context.report({
node,
loc: getRegexpLocation(quant),
messageId: "alwaysEnterQuantifier",
data: {
assertion: mention(assertion),
quant: mention(quant),
newQuant,
},
suggest: [
{
messageId: "changeQuantifier",
data: { newQuant },
fix: fixReplaceQuant(quant, {
min: 1,
max: quant.max,
}),
},
],
})
return true
}
return false
}
/** Whether the element contradicts the current assertion. */
function contradicts(element: Element | Alternative): boolean {
if (element.type === "Alternative") {
return contradictsAlternative(element)
} else if (element.type === "Quantifier") {
return contradictsQuantifier(element)
}
return false
}
}
return {
onAssertionEnter(assertion) {
analyseAssertion(assertion, "ltr")
analyseAssertion(assertion, "rtl")
},
}
}
return defineRegexpVisitor(context, {
createVisitor,
})
},
})