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
#[cold]
fn star_dsl_intersect(mut it1: &[u8], mut it2: &[u8]) -> bool {
fn next(s: &[u8]) -> (u8, &[u8]) {
(s[0], &s[1..])
}
while !it1.is_empty() && !it2.is_empty() {
let (current1, advanced1) = next(it1);
let (current2, advanced2) = next(it2);
match (current1, current2) {
(b'$', b'$') => {
if advanced1.len() == 1 || advanced2.len() == 1 {
return true;
}
if star_dsl_intersect(&advanced1[1..], it2) {
return true;
} else {
return star_dsl_intersect(it1, &advanced2[1..]);
};
}
(b'$', _) => {
if advanced1.len() == 1 {
return true;
}
if star_dsl_intersect(&advanced1[1..], it2) {
return true;
}
it2 = advanced2;
}
(_, b'$') => {
if advanced2.len() == 1 {
return true;
}
if star_dsl_intersect(it1, &advanced2[1..]) {
return true;
}
it1 = advanced1;
}
(sub1, sub2) if sub1 == sub2 => {
it1 = advanced1;
it2 = advanced2;
}
(_, _) => return false,
}
}
it1.is_empty() && it2.is_empty() || it1 == b"$*" || it2 == b"$*"
}
fn chunk_it_intersect<const STAR_DSL: bool>(it1: &[u8], it2: &[u8]) -> bool {
it1 == b"*" || it2 == b"*" || (STAR_DSL && star_dsl_intersect(it1, it2))
}
#[inline(always)]
fn chunk_intersect<const STAR_DSL: bool>(c1: &[u8], c2: &[u8]) -> bool {
if c1 == c2 {
return true;
}
chunk_it_intersect::<STAR_DSL>(c1, c2)
}
#[inline(always)]
fn next(s: &[u8]) -> (&[u8], &[u8]) {
match s.iter().position(|c| *c == b'/') {
Some(i) => (&s[..i], &s[(i + 1)..]),
None => (s, b""),
}
}
fn it_intersect<const STAR_DSL: bool>(mut it1: &[u8], mut it2: &[u8]) -> bool {
while !it1.is_empty() && !it2.is_empty() {
let (current1, advanced1) = next(it1);
let (current2, advanced2) = next(it2);
match (current1, current2) {
(b"**", _) => {
return advanced1.is_empty()
|| it_intersect::<STAR_DSL>(advanced1, it2)
|| it_intersect::<STAR_DSL>(it1, advanced2);
}
(_, b"**") => {
return advanced2.is_empty()
|| it_intersect::<STAR_DSL>(it1, advanced2)
|| it_intersect::<STAR_DSL>(advanced1, it2);
}
(sub1, sub2) if chunk_intersect::<STAR_DSL>(sub1, sub2) => {
it1 = advanced1;
it2 = advanced2;
}
(_, _) => return false,
}
}
(it1.is_empty() || it1 == b"**") && (it2.is_empty() || it2 == b"**")
}
#[inline(always)]
pub fn intersect<const STAR_DSL: bool>(s1: &[u8], s2: &[u8]) -> bool {
it_intersect::<STAR_DSL>(s1, s2)
}
use super::restiction::NoSubWilds;
use super::Intersector;
pub struct ClassicIntersector;
impl Intersector<NoSubWilds<&[u8]>, NoSubWilds<&[u8]>> for ClassicIntersector {
fn intersect(&self, left: NoSubWilds<&[u8]>, right: NoSubWilds<&[u8]>) -> bool {
intersect::<false>(left.0, right.0)
}
}
impl Intersector<&[u8], &[u8]> for ClassicIntersector {
fn intersect(&self, left: &[u8], right: &[u8]) -> bool {
intersect::<true>(left, right)
}
}