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
use std::borrow::Cow;

const EXPAND_STR: &str = if cfg!(windows) { r"..\" } else { "../" };

fn handle_dots_push(string: &mut String, count: u8) {
    if count < 1 {
        return;
    }

    if count == 1 {
        string.push('.');
        return;
    }

    for _ in 0..(count - 1) {
        string.push_str(EXPAND_STR);
    }

    string.pop(); // remove last '/'
}

pub fn expand_ndots(path: &str) -> Cow<'_, str> {
    // helpers
    #[cfg(windows)]
    fn is_separator(c: char) -> bool {
        // AFAIK, Windows can have both \ and / as path components separators
        (c == '/') || (c == '\\')
    }

    #[cfg(not(windows))]
    fn is_separator(c: char) -> bool {
        c == '/'
    }

    // find if we need to expand any >2 dot paths and early exit if not
    let mut dots_count = 0u8;
    let ndots_present = {
        for chr in path.chars() {
            if chr == '.' {
                dots_count += 1;
            } else {
                if is_separator(chr) && (dots_count > 2) {
                    // this path component had >2 dots
                    break;
                }

                dots_count = 0;
            }
        }

        dots_count > 2
    };

    if !ndots_present {
        return path.into();
    }

    let mut dots_count = 0u8;
    let mut expanded = String::new();
    for chr in path.chars() {
        if chr == '.' {
            dots_count += 1;
        } else {
            if is_separator(chr) {
                // check for dots expansion only at path component boundaries
                handle_dots_push(&mut expanded, dots_count);
                dots_count = 0;
            } else {
                // got non-dot within path component => do not expand any dots
                while dots_count > 0 {
                    expanded.push('.');
                    dots_count -= 1;
                }
            }
            expanded.push(chr);
        }
    }

    handle_dots_push(&mut expanded, dots_count);

    expanded.into()
}

pub fn expand_path<'a>(path: &'a str) -> Cow<'a, str> {
    let tilde_expansion: Cow<'a, str> = shellexpand::tilde(path);
    let ndots_expansion: Cow<'a, str> = match tilde_expansion {
        Cow::Borrowed(b) => expand_ndots(b),
        Cow::Owned(o) => expand_ndots(&o).to_string().into(),
    };

    ndots_expansion
}

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

    // common tests
    #[test]
    fn string_without_ndots() {
        assert_eq!("../hola", &expand_ndots("../hola").to_string());
    }

    #[test]
    fn string_with_three_ndots_and_chars() {
        assert_eq!("a...b", &expand_ndots("a...b").to_string());
    }

    #[test]
    fn string_with_two_ndots_and_chars() {
        assert_eq!("a..b", &expand_ndots("a..b").to_string());
    }

    #[test]
    fn string_with_one_dot_and_chars() {
        assert_eq!("a.b", &expand_ndots("a.b").to_string());
    }

    // Windows tests
    #[cfg(windows)]
    #[test]
    fn string_with_three_ndots() {
        assert_eq!(r"..\..", &expand_ndots("...").to_string());
    }

    #[cfg(windows)]
    #[test]
    fn string_with_mixed_ndots_and_chars() {
        assert_eq!(
            r"a...b/./c..d/../e.f/..\..\..//.",
            &expand_ndots("a...b/./c..d/../e.f/....//.").to_string()
        );
    }

    #[cfg(windows)]
    #[test]
    fn string_with_three_ndots_and_final_slash() {
        assert_eq!(r"..\../", &expand_ndots(".../").to_string());
    }

    #[cfg(windows)]
    #[test]
    fn string_with_three_ndots_and_garbage() {
        assert_eq!(
            r"ls ..\../ garbage.*[",
            &expand_ndots("ls .../ garbage.*[").to_string(),
        );
    }

    // non-Windows tests
    #[cfg(not(windows))]
    #[test]
    fn string_with_three_ndots() {
        assert_eq!(r"../..", &expand_ndots("...").to_string());
    }

    #[cfg(not(windows))]
    #[test]
    fn string_with_mixed_ndots_and_chars() {
        assert_eq!(
            "a...b/./c..d/../e.f/../../..//.",
            &expand_ndots("a...b/./c..d/../e.f/....//.").to_string()
        );
    }

    #[cfg(not(windows))]
    #[test]
    fn string_with_three_ndots_and_final_slash() {
        assert_eq!("../../", &expand_ndots(".../").to_string());
    }

    #[cfg(not(windows))]
    #[test]
    fn string_with_three_ndots_and_garbage() {
        assert_eq!(
            "ls ../../ garbage.*[",
            &expand_ndots("ls .../ garbage.*[").to_string(),
        );
    }
}