]> git.lizzy.rs Git - rust.git/blob - src/lists.rs
handle windows newlines
[rust.git] / src / lists.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 use utils::make_indent;
12
13 #[derive(Eq, PartialEq, Debug, Copy, Clone)]
14 pub enum ListTactic {
15     // One item per row.
16     Vertical,
17     // All items on one row.
18     Horizontal,
19     // Try Horizontal layout, if that fails then vertical
20     HorizontalVertical,
21     // Pack as many items as possible per row over (possibly) many rows.
22     Mixed,
23 }
24
25 #[derive(Eq, PartialEq, Debug, Copy, Clone)]
26 pub enum SeparatorTactic {
27     Always,
28     Never,
29     Vertical,
30 }
31
32 // TODO having some helpful ctors for ListFormatting would be nice.
33 pub struct ListFormatting<'a> {
34     pub tactic: ListTactic,
35     pub separator: &'a str,
36     pub trailing_separator: SeparatorTactic,
37     pub indent: usize,
38     // Available width if we layout horizontally.
39     pub h_width: usize,
40     // Available width if we layout vertically
41     pub v_width: usize,
42 }
43
44 // Format a list of strings into a string.
45 // Precondition: all strings in items are trimmed.
46 pub fn write_list<'b>(items: &[(String, String)], formatting: &ListFormatting<'b>) -> String {
47     if items.len() == 0 {
48         return String::new();
49     }
50
51     let mut tactic = formatting.tactic;
52
53     // Conservatively overestimates because of the changing separator tactic.
54     let sep_count = if formatting.trailing_separator != SeparatorTactic::Never {
55         items.len()
56     } else {
57         items.len() - 1
58     };
59     let sep_len = formatting.separator.len();
60     let total_sep_len = (sep_len + 1) * sep_count;
61
62     let total_width = calculate_width(items);
63
64     // Check if we need to fallback from horizontal listing, if possible.
65     if tactic == ListTactic::HorizontalVertical {
66         debug!("write_list: total_width: {}, total_sep_len: {}, h_width: {}",
67                total_width, total_sep_len, formatting.h_width);
68         if total_width + total_sep_len > formatting.h_width {
69             tactic = ListTactic::Vertical;
70         } else {
71             tactic = ListTactic::Horizontal;
72         }
73     }
74
75     // Now that we know how we will layout, we can decide for sure if there
76     // will be a trailing separator.
77     let trailing_separator = needs_trailing_separator(formatting.trailing_separator, tactic);
78
79     // Create a buffer for the result.
80     // TODO could use a StringBuffer or rope for this
81     let alloc_width = if tactic == ListTactic::Horizontal {
82         total_width + total_sep_len
83     } else {
84         total_width + items.len() * (formatting.indent + 1)
85     };
86     let mut result = String::with_capacity(alloc_width);
87
88     let mut line_len = 0;
89     let indent_str = &make_indent(formatting.indent);
90     for (i, &(ref item, ref comment)) in items.iter().enumerate() {
91         let first = i == 0;
92         let separate = i != items.len() - 1 || trailing_separator;
93
94         match tactic {
95             ListTactic::Horizontal if !first => {
96                 result.push(' ');
97             }
98             ListTactic::Vertical if !first => {
99                 result.push('\n');
100                 result.push_str(indent_str);
101             }
102             ListTactic::Mixed => {
103                 let mut item_width = item.len();
104                 if separate {
105                     item_width += sep_len;
106                 }
107
108                 if line_len > 0 && line_len + item_width > formatting.v_width {
109                     result.push('\n');
110                     result.push_str(indent_str);
111                     line_len = 0;
112                 }
113
114                 if line_len > 0 {
115                     result.push(' ');
116                     line_len += 1;
117                 }
118
119                 line_len += item_width;
120             }
121             _ => {}
122         }
123
124         result.push_str(item);
125
126         if tactic != ListTactic::Vertical && comment.len() > 0 {
127             if !comment.starts_with('\n') {
128                 result.push(' ');
129             }
130             result.push_str(comment);
131         }
132
133         if separate {
134             result.push_str(formatting.separator);
135         }
136
137         if tactic == ListTactic::Vertical && comment.len() > 0 {
138             if !comment.starts_with('\n') {
139                 result.push(' ');
140             }
141             result.push_str(comment);
142         }
143     }
144
145     result
146 }
147
148 fn needs_trailing_separator(separator_tactic: SeparatorTactic, list_tactic: ListTactic) -> bool {
149     match separator_tactic {
150         SeparatorTactic::Always => true,
151         SeparatorTactic::Vertical => list_tactic == ListTactic::Vertical,
152         SeparatorTactic::Never => false,
153     }
154 }
155
156 fn calculate_width(items:&[(String, String)]) -> usize {
157     let missed_width = items.iter().map(|&(_, ref s)| {
158         let text_len = s.trim().len();
159         if text_len > 0 {
160             // We'll put a space before any comment.
161             text_len + 1
162         } else {
163             text_len
164         }
165     }).fold(0, |a, l| a + l);
166     let item_width = items.iter().map(|&(ref s, _)| s.len()).fold(0, |a, l| a + l);
167     missed_width + item_width
168 }