summaryrefslogtreecommitdiffstats
path: root/vendor/clap/src/output/textwrap/wrap_algorithms.rs
blob: 019cc04ffec2560bd48e95b75117954e2e8eec26 (plain)
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
use super::core::display_width;

#[derive(Debug)]
pub(crate) struct LineWrapper {
    line_width: usize,
    hard_width: usize,
}

impl LineWrapper {
    pub(crate) fn new(hard_width: usize) -> Self {
        Self {
            line_width: 0,
            hard_width,
        }
    }

    pub(crate) fn reset(&mut self) {
        self.line_width = 0;
    }

    pub(crate) fn wrap<'w>(&mut self, mut words: Vec<&'w str>) -> Vec<&'w str> {
        let mut i = 0;
        while i < words.len() {
            let word = &words[i];
            let trimmed = word.trim_end();
            let word_width = display_width(trimmed);
            let trimmed_delta = word.len() - trimmed.len();
            if i != 0 && self.hard_width < self.line_width + word_width {
                if 0 < i {
                    let last = i - 1;
                    let trimmed = words[last].trim_end();
                    words[last] = trimmed;
                }
                words.insert(i, "\n");
                i += 1;
                self.reset();
            }
            self.line_width += word_width + trimmed_delta;

            i += 1;
        }
        words
    }
}