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
//! This code is released under the MIT license
//! # Rust Compiler
//!
//! Permission is hereby granted, free of charge, to any
//! person obtaining a copy of this software and associated
//! documentation files (the "Software"), to deal in the
//! Software without restriction, including without
//! limitation the rights to use, copy, modify, merge,
//! publish, distribute, sublicense, and/or sell copies of
//! the Software, and to permit persons to whom the Software
//! is furnished to do so, subject to the following
//! conditions:
//!
//! The above copyright notice and this permission notice
//! shall be included in all copies or substantial portions
//! of the Software.
//!
//! THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
//! ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
//! TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
//! PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
//! SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
//! CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
//! OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
//! IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
//! DEALINGS IN THE SOFTWARE.

//! Levenshtein distances.
//!
//! The [Levenshtein distance] is a metric for measuring the difference between two strings.
//!
//! [Levenshtein distance]: https://en.wikipedia.org/wiki/Levenshtein_distance

use std::cmp;

/// Finds the Levenshtein distance between two strings.
pub fn lev_distance(a: &str, b: &str) -> usize {
    // cases which don't require further computation
    if a.is_empty() {
        return b.chars().count();
    } else if b.is_empty() {
        return a.chars().count();
    }

    let mut dcol: Vec<_> = (0..=b.len()).collect();
    let mut t_last = 0;

    for (i, sc) in a.chars().enumerate() {
        let mut current = i;
        dcol[0] = current + 1;

        for (j, tc) in b.chars().enumerate() {
            let next = dcol[j + 1];
            if sc == tc {
                dcol[j + 1] = current;
            } else {
                dcol[j + 1] = cmp::min(current, next);
                dcol[j + 1] = cmp::min(dcol[j + 1], dcol[j]) + 1;
            }
            current = next;
            t_last = j;
        }
    }
    dcol[t_last + 1]
}

/// Finds the best match for a given word in the given iterator.
///
/// As a loose rule to avoid the obviously incorrect suggestions, it takes
/// an optional limit for the maximum allowable edit distance, which defaults
/// to one-third of the given word.
///
/// Besides Levenshtein, we use case insensitive comparison to improve accuracy
/// on an edge case with a lower(upper)case letters mismatch.
pub fn find_best_match_for_name<T>(
    iter_names: impl Iterator<Item = T> + Clone,
    lookup: &str,
    dist: Option<usize>,
) -> Option<String>
where
    T: AsRef<str>,
{
    let max_dist = dist.unwrap_or_else(|| cmp::max(lookup.len(), 3) / 3);

    // Priority of matches:
    // 1. Exact case insensitive match
    // 2. Levenshtein distance match
    // 3. Sorted word match

    // 1. Exact case insensitive match
    for candidate in iter_names.clone() {
        if candidate.as_ref().to_uppercase() == lookup.to_uppercase() {
            return Some(candidate.as_ref().to_string());
        }
    }

    // 2. Levenshtein distance match
    let levenshtein_match = iter_names
        .clone()
        .filter_map(|name| {
            let dist = lev_distance(lookup, name.as_ref());
            if dist <= max_dist {
                Some((name, dist))
            } else {
                None
            }
        })
        // Here we are collecting the next structure:
        // (levenshtein_match, levenshtein_distance)
        .fold(None, |result, (candidate, dist)| match result {
            None => Some((candidate, dist)),
            Some((c, d)) => Some(if dist < d { (candidate, dist) } else { (c, d) }),
        });

    // 3. Sorted word match
    if levenshtein_match.is_some() {
        levenshtein_match.map(|(candidate, _)| candidate.as_ref().to_string())
    } else {
        find_match_by_sorted_words(iter_names, lookup)
    }
}

fn find_match_by_sorted_words<T>(
    iter_names: impl Iterator<Item = T>,
    lookup: &str,
) -> Option<String>
where
    T: AsRef<str>,
{
    iter_names.fold(None, |result, candidate| {
        if sort_by_words(candidate.as_ref()) == sort_by_words(lookup) {
            Some(candidate.as_ref().to_string())
        } else {
            result
        }
    })
}

fn sort_by_words(name: &str) -> String {
    let mut split_words: Vec<&str> = name.split('_').collect();
    // We are sorting primitive &strs and can use unstable sort here.
    split_words.sort_unstable();
    split_words.join("_")
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_lev_distance() {
        use std::char::{from_u32, MAX};
        // Test bytelength agnosticity
        for c in (0..MAX as u32).filter_map(from_u32).map(|i| i.to_string()) {
            assert_eq!(lev_distance(&c[..], &c[..]), 0);
        }

        let a = "\nMäry häd ä little lämb\n\nLittle lämb\n";
        let b = "\nMary häd ä little lämb\n\nLittle lämb\n";
        let c = "Mary häd ä little lämb\n\nLittle lämb\n";
        assert_eq!(lev_distance(a, b), 1);
        assert_eq!(lev_distance(b, a), 1);
        assert_eq!(lev_distance(a, c), 2);
        assert_eq!(lev_distance(c, a), 2);
        assert_eq!(lev_distance(b, c), 1);
        assert_eq!(lev_distance(c, b), 1);
    }

    #[test]
    fn test_find_best_match_for_name() {
        let input = vec!["aaab", "aaabc"];
        assert_eq!(
            find_best_match_for_name(input.iter(), "aaaa", None),
            Some("aaab".to_string())
        );

        assert_eq!(
            find_best_match_for_name(input.iter(), "1111111111", None),
            None
        );

        let input = vec!["AAAA"];
        assert_eq!(
            find_best_match_for_name(input.iter(), "aaaa", None),
            Some("AAAA".to_string())
        );

        let input = vec!["AAAA"];
        assert_eq!(
            find_best_match_for_name(input.iter(), "aaaa", Some(4)),
            Some("AAAA".to_string())
        );

        let input = vec!["a_longer_variable_name"];
        assert_eq!(
            find_best_match_for_name(input.iter(), "a_variable_longer_name", None),
            Some("a_longer_variable_name".to_string())
        );
    }

    #[test]
    fn test_find_best_match_for_name_from_strings() {
        let input = vec!["aaab".to_string(), "aaabc".to_string()];
        assert_eq!(
            find_best_match_for_name(input.iter(), "aaaa", None),
            Some("aaab".to_string())
        );

        assert_eq!(
            find_best_match_for_name(input.iter(), "1111111111", None),
            None
        );

        let input = vec!["AAAA".to_string()];
        assert_eq!(
            find_best_match_for_name(input.iter(), "aaaa", None),
            Some("AAAA".to_string())
        );

        let input = vec!["AAAA".to_string()];
        assert_eq!(
            find_best_match_for_name(input.iter(), "aaaa", Some(4)),
            Some("AAAA".to_string())
        );

        let input = vec!["a_longer_variable_name".to_string()];
        assert_eq!(
            find_best_match_for_name(input.iter(), "a_variable_longer_name", None),
            Some("a_longer_variable_name".to_string())
        );
    }

    #[test]
    fn test_find_best_match_for_name_from_hashset() {
        use std::collections::HashSet;

        let input: HashSet<&str> = vec!["aaab", "aaabc"].into_iter().collect();
        assert_eq!(
            find_best_match_for_name(input.iter(), "aaaa", None),
            Some("aaab".to_string())
        );

        assert_eq!(
            find_best_match_for_name(input.iter(), "1111111111", None),
            None
        );

        let input: HashSet<&str> = vec!["AAAA"].into_iter().collect();
        assert_eq!(
            find_best_match_for_name(input.iter(), "aaaa", None),
            Some("AAAA".to_string())
        );

        let input: HashSet<&str> = vec!["AAAA"].into_iter().collect();
        assert_eq!(
            find_best_match_for_name(input.iter(), "aaaa", Some(4)),
            Some("AAAA".to_string())
        );

        let input: HashSet<&str> = vec!["a_longer_variable_name"].into_iter().collect();
        assert_eq!(
            find_best_match_for_name(input.iter(), "a_variable_longer_name", None),
            Some("a_longer_variable_name".to_string())
        );
    }
}