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
use crate::fuzzy::{is_prefix, FuzzKey};
use crate::SEP;
use std::borrow::Cow;
use std::cmp::Ordering;
pub(super) trait MultiFuzzObj: FuzzKey {
fn beats(&self, other: &Self) -> bool;
}
struct MultiFuzzTuple<T: MultiFuzzObj> {
obj: T,
is_ans: bool,
visited: bool,
}
impl<T: MultiFuzzObj> MultiFuzzTuple<T> {
fn new(obj: T) -> Self {
MultiFuzzTuple {
obj,
is_ans: false,
visited: false,
}
}
fn new_ans(obj: T) -> Self {
MultiFuzzTuple {
obj,
is_ans: true,
visited: false,
}
}
fn fuzz_key(&self) -> Cow<'_, str> {
self.obj.fuzz_key()
}
fn cmp(&self, other: &Self) -> Ordering {
other.fuzz_key().len().cmp(&self.fuzz_key().len())
}
}
fn find_dag_sink<T: MultiFuzzObj>(
offset: usize,
candidates: &mut [MultiFuzzTuple<T>],
best_sink: &mut Option<usize>,
) {
candidates[offset].visited = true;
let cur_key = candidates[offset].fuzz_key();
let cur_key = unsafe { &*(cur_key.as_ref() as *const str) };
let mut prefix_found = false;
for i in offset + 1..candidates.len() {
if candidates[i].visited {
continue;
}
let other_key = candidates[i].fuzz_key();
if other_key.len() != cur_key.len() && is_prefix(&other_key, cur_key, SEP) {
prefix_found = true;
find_dag_sink(i, candidates, best_sink);
}
}
if !prefix_found {
if let Some(best_sink) = best_sink {
if candidates[offset].obj.beats(&candidates[*best_sink].obj) {
*best_sink = offset;
}
} else {
*best_sink = Some(offset)
}
}
}
fn find_max_and_ans_pos<T: MultiFuzzObj>(candidates: &[MultiFuzzTuple<T>]) -> (usize, usize) {
let mut max_pos = 0;
let mut ans_pos = 0;
for i in 1..candidates.len() {
if candidates[i].is_ans {
ans_pos = i;
}
if candidates[i].obj.beats(&candidates[max_pos].obj) {
max_pos = i;
}
}
(max_pos, ans_pos)
}
pub(super) fn the_multifuzz_algo<T: MultiFuzzObj>(ans: T, others: Vec<T>) -> T {
let mut candidates: Vec<_> = others.into_iter().map(|t| MultiFuzzTuple::new(t)).collect();
candidates.push(MultiFuzzTuple::new_ans(ans));
candidates.sort_by(MultiFuzzTuple::cmp);
let (max_pos, ans_pos) = find_max_and_ans_pos(&candidates);
let mut ret_pos = None;
find_dag_sink(max_pos, &mut candidates, &mut ret_pos);
let mut ret_pos = ret_pos.unwrap();
if is_prefix(
&candidates[ret_pos].fuzz_key(),
&candidates[ans_pos].fuzz_key(),
SEP,
) {
ret_pos = ans_pos;
}
candidates.into_iter().skip(ret_pos).next().unwrap().obj
}
#[cfg(test)]
mod test {
use super::*;
#[derive(PartialEq, Eq, Clone, Copy, Debug)]
struct MyObj {
s: &'static str,
order: usize,
}
impl MyObj {
fn new(s: &'static str) -> Self {
MyObj { s, order: 0 }
}
}
impl FuzzKey for MyObj {
fn fuzz_key(&self) -> Cow<'_, str> {
std::borrow::Cow::Borrowed(self.s)
}
}
impl MultiFuzzObj for MyObj {
fn beats(&self, other: &Self) -> bool {
other.order > self.order
}
}
fn reorder<const S: usize>(mut arr: [&mut MyObj; S]) {
for (i, obj) in arr.iter_mut().enumerate() {
obj.order = i;
}
}
#[test]
fn test_the_multifuzz_algo() {
let mut ans = MyObj::new("dir");
let mut other_p = MyObj::new("dir/a");
let mut other = MyObj::new("dother");
macro_rules! run_the_algo {
() => {
the_multifuzz_algo(ans, vec![other, other_p])
};
}
reorder([&mut other_p, &mut other, &mut ans]);
assert_eq!(ans, run_the_algo!());
reorder([&mut other, &mut other_p, &mut ans]);
assert_eq!(other, run_the_algo!());
reorder([&mut ans, &mut other, &mut other_p]);
assert_eq!(ans, run_the_algo!());
assert_eq!(ans, the_multifuzz_algo(ans, vec![]));
assert_eq!(ans, the_multifuzz_algo(ans, vec![other_p]));
assert_eq!(ans, the_multifuzz_algo(ans, vec![other]));
reorder([&mut other, &mut other_p, &mut ans]);
assert_eq!(ans, the_multifuzz_algo(ans, vec![other_p]));
assert_eq!(other, the_multifuzz_algo(ans, vec![other]));
}
#[test]
fn test_the_multi_sink_multifuzz_algo() {
let mut root = MyObj::new("a/b/c/d");
let mut b1_1 = MyObj::new("a/b/c");
let mut b1_2 = MyObj::new("b/c");
let mut b2_1 = MyObj::new("a/c/d");
macro_rules! run_the_algo {
() => {
the_multifuzz_algo(b1_2, vec![root, b1_1, b2_1])
};
}
reorder([&mut root, &mut b1_1, &mut b2_1, &mut b1_2]);
assert_eq!(b2_1, run_the_algo!());
reorder([&mut root, &mut b1_1, &mut b1_2, &mut b2_1]);
assert_eq!(b1_2, run_the_algo!());
reorder([&mut b1_1, &mut root, &mut b1_2, &mut b2_1]);
assert_eq!(b1_2, run_the_algo!());
reorder([&mut b1_1, &mut root, &mut b2_1, &mut b1_2]);
assert_eq!(b1_2, run_the_algo!());
}
#[test]
fn test_multifuzz_determined_ans() {
let mut abcd = MyObj::new("a/b/c/d");
let mut bacd = MyObj::new("b/a/c/d");
let mut cabd = MyObj::new("c/a/b/d");
let mut dacb = MyObj::new("d/a/c/b");
let mut acbd = MyObj::new("a/c/b/d");
let mut abc = MyObj::new("a/b/c");
let mut cab = MyObj::new("c/a/b");
reorder([&mut abcd, &mut bacd, &mut cabd, &mut dacb, &mut acbd]);
assert_eq!(abcd, the_multifuzz_algo(abcd, vec![bacd, cabd, dacb, acbd]));
assert_eq!(bacd, the_multifuzz_algo(bacd, vec![abcd, cabd, dacb, acbd]));
assert_eq!(dacb, the_multifuzz_algo(dacb, vec![abcd, bacd, cabd, acbd]));
reorder([&mut abc, &mut cab]);
assert_eq!(
abc,
the_multifuzz_algo(abc, vec![cab, abcd, bacd, cabd, dacb])
);
assert_eq!(
cab,
the_multifuzz_algo(cab, vec![abc, abcd, bacd, cabd, dacb])
);
}
}