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
use float_ord::FloatOrd;
use error::SelectionError;
use properties::{Properties, Stretch, Style, Weight};
pub struct Description {
pub family_name: String,
pub properties: Properties,
}
pub fn find_best_match(candidates: &[Description], query: &Properties)
-> Result<usize, SelectionError> {
let mut matching_set: Vec<usize> = (0..candidates.len()).collect();
if matching_set.is_empty() {
return Err(SelectionError::NotFound)
}
let matching_stretch =
if matching_set.iter().any(|&index| {
candidates[index].properties.stretch == query.stretch
}) {
query.stretch
} else if query.stretch <= Stretch::NORMAL {
match matching_set.iter()
.filter(|&&index| {
candidates[index].properties.stretch < query.stretch
})
.min_by_key(|&&index| {
FloatOrd(query.stretch.0 - candidates[index].properties.stretch.0)
}) {
Some(&matching_index) => candidates[matching_index].properties.stretch,
None => {
let matching_index =
*matching_set.iter()
.min_by_key(|&&index| {
FloatOrd(candidates[index].properties.stretch.0 -
query.stretch.0)
})
.unwrap();
candidates[matching_index].properties.stretch
}
}
} else {
match matching_set.iter()
.filter(|&&index| {
candidates[index].properties.stretch > query.stretch
})
.min_by_key(|&&index| {
FloatOrd(candidates[index].properties.stretch.0 - query.stretch.0)
}) {
Some(&matching_index) => candidates[matching_index].properties.stretch,
None => {
let matching_index =
*matching_set.iter()
.min_by_key(|&&index| {
FloatOrd(query.stretch.0 -
candidates[index].properties.stretch.0)
})
.unwrap();
candidates[matching_index].properties.stretch
}
}
};
matching_set.retain(|&index| candidates[index].properties.stretch == matching_stretch);
let style_preference = match query.style {
Style::Italic => [Style::Italic, Style::Oblique, Style::Normal],
Style::Oblique => [Style::Oblique, Style::Italic, Style::Normal],
Style::Normal => [Style::Normal, Style::Oblique, Style::Italic],
};
let matching_style = *style_preference.iter().filter(|&query_style| {
matching_set.iter().any(|&index| candidates[index].properties.style == *query_style)
}).next().unwrap();
matching_set.retain(|&index| candidates[index].properties.style == matching_style);
let matching_weight =
if query.weight >= Weight(400.0) && query.weight < Weight(450.0) &&
matching_set.iter()
.any(|&index| candidates[index].properties.weight == Weight(500.0)) {
Weight(500.0)
} else if query.weight >= Weight(450.0) && query.weight <= Weight(500.0) &&
matching_set.iter()
.any(|&index| candidates[index].properties.weight == Weight(400.0)) {
Weight(400.0)
} else if query.weight <= Weight(500.0) {
match matching_set.iter()
.filter(|&&index| {
candidates[index].properties.weight <= query.weight
})
.min_by_key(|&&index| {
FloatOrd(query.weight.0 - candidates[index].properties.weight.0)
}) {
Some(&matching_index) => candidates[matching_index].properties.weight,
None => {
let matching_index =
*matching_set.iter()
.min_by_key(|&&index| {
FloatOrd(candidates[index].properties.weight.0 -
query.weight.0)
})
.unwrap();
candidates[matching_index].properties.weight
}
}
} else {
match matching_set.iter()
.filter(|&&index| {
candidates[index].properties.weight >= query.weight
})
.min_by_key(|&&index| {
FloatOrd(candidates[index].properties.weight.0 - query.weight.0)
}) {
Some(&matching_index) => candidates[matching_index].properties.weight,
None => {
let matching_index =
*matching_set.iter()
.min_by_key(|&&index| {
FloatOrd(query.weight.0 -
candidates[index].properties.weight.0)
})
.unwrap();
candidates[matching_index].properties.weight
}
}
};
matching_set.retain(|&index| candidates[index].properties.weight == matching_weight);
matching_set.into_iter().next().ok_or(SelectionError::NotFound)
}