]> git.lizzy.rs Git - rust.git/blob - src/string.rs
Cargo fmt
[rust.git] / src / string.rs
1 // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // Format string literals.
12
13 use regex::Regex;
14 use unicode_segmentation::UnicodeSegmentation;
15
16 use config::Config;
17 use shape::Shape;
18 use utils::wrap_str;
19
20 const MIN_STRING: usize = 10;
21
22 pub struct StringFormat<'a> {
23     pub opener: &'a str,
24     pub closer: &'a str,
25     pub line_start: &'a str,
26     pub line_end: &'a str,
27     pub shape: Shape,
28     pub trim_end: bool,
29     pub config: &'a Config,
30 }
31
32 impl<'a> StringFormat<'a> {
33     pub fn new(shape: Shape, config: &'a Config) -> StringFormat<'a> {
34         StringFormat {
35             opener: "\"",
36             closer: "\"",
37             line_start: " ",
38             line_end: "\\",
39             shape: shape,
40             trim_end: false,
41             config: config,
42         }
43     }
44 }
45
46 // FIXME: simplify this!
47 pub fn rewrite_string<'a>(orig: &str, fmt: &StringFormat<'a>) -> Option<String> {
48     // Strip line breaks.
49     let re = Regex::new(r"([^\\](\\\\)*)\\[\n\r][[:space:]]*").unwrap();
50     let stripped_str = re.replace_all(orig, "$1");
51
52     let graphemes = UnicodeSegmentation::graphemes(&*stripped_str, false).collect::<Vec<&str>>();
53     let shape = fmt.shape.visual_indent(0);
54     let indent = shape.indent.to_string(fmt.config);
55     let punctuation = ":,;.";
56
57     // `cur_start` is the position in `orig` of the start of the current line.
58     let mut cur_start = 0;
59     let mut result = String::with_capacity(
60         stripped_str
61             .len()
62             .checked_next_power_of_two()
63             .unwrap_or(usize::max_value()),
64     );
65     result.push_str(fmt.opener);
66
67     let ender_length = fmt.line_end.len();
68     // If we cannot put at least a single character per line, the rewrite won't
69     // succeed.
70     let max_chars = shape
71         .width
72         .checked_sub(fmt.opener.len() + ender_length + 1)? + 1;
73
74     // Snip a line at a time from `orig` until it is used up. Push the snippet
75     // onto result.
76     'outer: loop {
77         // `cur_end` will be where we break the line, as an offset into `orig`.
78         // Initialised to the maximum it could be (which may be beyond `orig`).
79         let mut cur_end = cur_start + max_chars;
80
81         // We can fit the rest of the string on this line, so we're done.
82         if cur_end >= graphemes.len() {
83             let line = &graphemes[cur_start..].join("");
84             result.push_str(line);
85             break 'outer;
86         }
87
88         // Push cur_end left until we reach whitespace (or the line is too small).
89         while !graphemes[cur_end - 1].trim().is_empty() {
90             cur_end -= 1;
91             if cur_end < cur_start + MIN_STRING {
92                 // We couldn't find whitespace before the string got too small.
93                 // So start again at the max length and look for punctuation.
94                 cur_end = cur_start + max_chars;
95                 while !punctuation.contains(graphemes[cur_end - 1]) {
96                     cur_end -= 1;
97
98                     // If we can't break at whitespace or punctuation, grow the string instead.
99                     if cur_end < cur_start + MIN_STRING {
100                         cur_end = cur_start + max_chars;
101                         while !(punctuation.contains(graphemes[cur_end - 1])
102                             || graphemes[cur_end - 1].trim().is_empty())
103                         {
104                             if cur_end >= graphemes.len() {
105                                 let line = &graphemes[cur_start..].join("");
106                                 result.push_str(line);
107                                 break 'outer;
108                             }
109                             cur_end += 1;
110                         }
111                         break;
112                     }
113                 }
114                 break;
115             }
116         }
117         // Make sure there is no whitespace to the right of the break.
118         while cur_end < stripped_str.len() && graphemes[cur_end].trim().is_empty() {
119             cur_end += 1;
120         }
121
122         // Make the current line and add it on to result.
123         let raw_line = graphemes[cur_start..cur_end].join("");
124         let line = if fmt.trim_end {
125             raw_line.trim()
126         } else {
127             raw_line.as_str()
128         };
129
130         result.push_str(line);
131         result.push_str(fmt.line_end);
132         result.push('\n');
133         result.push_str(&indent);
134         result.push_str(fmt.line_start);
135
136         // The next line starts where the current line ends.
137         cur_start = cur_end;
138     }
139
140     result.push_str(fmt.closer);
141     wrap_str(result, fmt.config.max_width(), fmt.shape)
142 }
143
144 #[cfg(test)]
145 mod test {
146     use super::{rewrite_string, StringFormat};
147     use shape::{Indent, Shape};
148
149     #[test]
150     fn issue343() {
151         let config = Default::default();
152         let fmt = StringFormat::new(Shape::legacy(2, Indent::empty()), &config);
153         rewrite_string("eq_", &fmt);
154     }
155 }