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
|
use super::*;
use std::cmp::Ordering;
#[derive(PartialEq, Eq)]
pub struct DirectoryChild {
pub byte_path: Vec<u8>,
pub entry_type: EntryType,
}
impl PartialOrd for DirectoryChild {
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
Some(self.cmp(other))
}
}
impl Ord for DirectoryChild {
fn cmp(&self, other: &Self) -> Ordering {
match self.entry_type.cmp(&other.entry_type) {
Ordering::Equal =>
compare_ascii_arrays(&self.byte_path,&other.byte_path),
other => other,
}
}
}
// Compare two ASCII arrays in case-agnostic alphabetic order.
fn compare_ascii_arrays(left: &[u8], right: &[u8]) -> Ordering {
let l = std::cmp::min(left.len(), right.len());
let lhs = &left[..l];
let rhs = &right[..l];
for i in 0..l {
let a = remap_ascii(lhs[i]);
let b = remap_ascii(rhs[i]);
match a.cmp(&b) {
Ordering::Equal => (),
non_eq => return non_eq,
}
}
left.len().cmp(&right.len())
}
// Remap ASCII values so that they sort in case-agnostic alphabetic order:
// !"#$%&'()*+,-./0123456789:;<=>?
// @`AaBbCcDdEeFfGgHhIiJjKkLlMmNnOo
// PpQqRrSsTtUuVvWwXxYyZz[{\|]}^~_
fn remap_ascii(c: u8) -> u8 {
if 0x40 <= c && c <= 0x5F {
(c - 0x40) * 2 + 0x40
} else if 0x60 <= c && c <= 0x7F {
(c - 0x60) * 2 + 0x41
} else {
c
}
}
|