]> git.lizzy.rs Git - rust.git/blob - src/lists.rs
Merge pull request #2557 from topecongiro/vertical-layout-complex-attrs
[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 //! Format list-like expressions and items.
12
13 use std::cmp;
14 use std::iter::Peekable;
15
16 use config::lists::*;
17 use syntax::codemap::BytePos;
18
19 use comment::{find_comment_end, rewrite_comment, FindUncommented};
20 use config::{Config, IndentStyle};
21 use rewrite::RewriteContext;
22 use shape::{Indent, Shape};
23 use utils::{count_newlines, first_line_width, last_line_width, mk_sp, starts_with_newline};
24 use visitor::SnippetProvider;
25
26 pub struct ListFormatting<'a> {
27     pub tactic: DefinitiveListTactic,
28     pub separator: &'a str,
29     pub trailing_separator: SeparatorTactic,
30     pub separator_place: SeparatorPlace,
31     pub shape: Shape,
32     // Non-expressions, e.g. items, will have a new line at the end of the list.
33     // Important for comment styles.
34     pub ends_with_newline: bool,
35     // Remove newlines between list elements for expressions.
36     pub preserve_newline: bool,
37     pub config: &'a Config,
38 }
39
40 impl<'a> ListFormatting<'a> {
41     pub fn needs_trailing_separator(&self) -> bool {
42         match self.trailing_separator {
43             // We always put separator in front.
44             SeparatorTactic::Always => true,
45             SeparatorTactic::Vertical => self.tactic == DefinitiveListTactic::Vertical,
46             SeparatorTactic::Never => {
47                 self.tactic == DefinitiveListTactic::Vertical && self.separator_place.is_front()
48             }
49         }
50     }
51 }
52
53 impl AsRef<ListItem> for ListItem {
54     fn as_ref(&self) -> &ListItem {
55         self
56     }
57 }
58
59 #[derive(PartialEq, Eq, Debug)]
60 pub enum ListItemCommentStyle {
61     // Try to keep the comment on the same line with the item.
62     SameLine,
63     // Put the comment on the previous or the next line of the item.
64     DifferentLine,
65     // No comment available.
66     None,
67 }
68
69 #[derive(Debug)]
70 pub struct ListItem {
71     // None for comments mean that they are not present.
72     pub pre_comment: Option<String>,
73     pub pre_comment_style: ListItemCommentStyle,
74     // Item should include attributes and doc comments. None indicates a failed
75     // rewrite.
76     pub item: Option<String>,
77     pub post_comment: Option<String>,
78     // Whether there is extra whitespace before this item.
79     pub new_lines: bool,
80 }
81
82 impl ListItem {
83     pub fn inner_as_ref(&self) -> &str {
84         self.item.as_ref().map_or("", |s| s)
85     }
86
87     pub fn is_different_group(&self) -> bool {
88         self.inner_as_ref().contains('\n') || self.pre_comment.is_some()
89             || self.post_comment
90                 .as_ref()
91                 .map_or(false, |s| s.contains('\n'))
92     }
93
94     pub fn is_multiline(&self) -> bool {
95         self.inner_as_ref().contains('\n')
96             || self.pre_comment
97                 .as_ref()
98                 .map_or(false, |s| s.contains('\n'))
99             || self.post_comment
100                 .as_ref()
101                 .map_or(false, |s| s.contains('\n'))
102     }
103
104     pub fn has_single_line_comment(&self) -> bool {
105         self.pre_comment
106             .as_ref()
107             .map_or(false, |comment| comment.trim_left().starts_with("//"))
108             || self.post_comment
109                 .as_ref()
110                 .map_or(false, |comment| comment.trim_left().starts_with("//"))
111     }
112
113     pub fn has_comment(&self) -> bool {
114         self.pre_comment.is_some() || self.post_comment.is_some()
115     }
116
117     pub fn from_str<S: Into<String>>(s: S) -> ListItem {
118         ListItem {
119             pre_comment: None,
120             pre_comment_style: ListItemCommentStyle::None,
121             item: Some(s.into()),
122             post_comment: None,
123             new_lines: false,
124         }
125     }
126
127     // true if the item causes something to be written.
128     fn is_substantial(&self) -> bool {
129         fn empty(s: &Option<String>) -> bool {
130             match *s {
131                 Some(ref s) if !s.is_empty() => false,
132                 _ => true,
133             }
134         }
135
136         !(empty(&self.pre_comment) && empty(&self.item) && empty(&self.post_comment))
137     }
138 }
139
140 /// The type of separator for lists.
141 #[derive(Copy, Clone, Eq, PartialEq, Debug)]
142 pub enum Separator {
143     Comma,
144     VerticalBar,
145 }
146
147 impl Separator {
148     pub fn len(&self) -> usize {
149         match *self {
150             // 2 = `, `
151             Separator::Comma => 2,
152             // 3 = ` | `
153             Separator::VerticalBar => 3,
154         }
155     }
156 }
157
158 pub fn definitive_tactic<I, T>(
159     items: I,
160     tactic: ListTactic,
161     sep: Separator,
162     width: usize,
163 ) -> DefinitiveListTactic
164 where
165     I: IntoIterator<Item = T> + Clone,
166     T: AsRef<ListItem>,
167 {
168     let pre_line_comments = items
169         .clone()
170         .into_iter()
171         .any(|item| item.as_ref().has_single_line_comment());
172
173     let limit = match tactic {
174         _ if pre_line_comments => return DefinitiveListTactic::Vertical,
175         ListTactic::Mixed => return DefinitiveListTactic::Mixed,
176         ListTactic::Horizontal => return DefinitiveListTactic::Horizontal,
177         ListTactic::Vertical => return DefinitiveListTactic::Vertical,
178         ListTactic::LimitedHorizontalVertical(limit) => ::std::cmp::min(width, limit),
179         ListTactic::HorizontalVertical => width,
180     };
181
182     let (sep_count, total_width) = calculate_width(items.clone());
183     let total_sep_len = sep.len() * sep_count.checked_sub(1).unwrap_or(0);
184     let real_total = total_width + total_sep_len;
185
186     if real_total <= limit && !pre_line_comments
187         && !items.into_iter().any(|item| item.as_ref().is_multiline())
188     {
189         DefinitiveListTactic::Horizontal
190     } else {
191         DefinitiveListTactic::Vertical
192     }
193 }
194
195 // Format a list of commented items into a string.
196 // TODO: add unit tests
197 pub fn write_list<I, T>(items: I, formatting: &ListFormatting) -> Option<String>
198 where
199     I: IntoIterator<Item = T> + Clone,
200     T: AsRef<ListItem>,
201 {
202     let tactic = formatting.tactic;
203     let sep_len = formatting.separator.len();
204
205     // Now that we know how we will layout, we can decide for sure if there
206     // will be a trailing separator.
207     let mut trailing_separator = formatting.needs_trailing_separator();
208     let mut result = String::with_capacity(128);
209     let cloned_items = items.clone();
210     let mut iter = items.into_iter().enumerate().peekable();
211     let mut item_max_width: Option<usize> = None;
212     let sep_place =
213         SeparatorPlace::from_tactic(formatting.separator_place, tactic, formatting.separator);
214
215     let mut line_len = 0;
216     let indent_str = &formatting.shape.indent.to_string(formatting.config);
217     while let Some((i, item)) = iter.next() {
218         let item = item.as_ref();
219         let inner_item = item.item.as_ref()?;
220         let first = i == 0;
221         let last = iter.peek().is_none();
222         let mut separate = match sep_place {
223             SeparatorPlace::Front => !first,
224             SeparatorPlace::Back => !last || trailing_separator,
225         };
226         let item_sep_len = if separate { sep_len } else { 0 };
227
228         // Item string may be multi-line. Its length (used for block comment alignment)
229         // should be only the length of the last line.
230         let item_last_line = if item.is_multiline() {
231             inner_item.lines().last().unwrap_or("")
232         } else {
233             inner_item.as_ref()
234         };
235         let mut item_last_line_width = item_last_line.len() + item_sep_len;
236         if item_last_line.starts_with(&**indent_str) {
237             item_last_line_width -= indent_str.len();
238         }
239
240         if !item.is_substantial() {
241             continue;
242         }
243
244         match tactic {
245             DefinitiveListTactic::Horizontal if !first => {
246                 result.push(' ');
247             }
248             DefinitiveListTactic::SpecialMacro(num_args_before) => {
249                 if i == 0 {
250                     // Nothing
251                 } else if i < num_args_before {
252                     result.push(' ');
253                 } else if i <= num_args_before + 1 {
254                     result.push('\n');
255                     result.push_str(indent_str);
256                 } else {
257                     result.push(' ');
258                 }
259             }
260             DefinitiveListTactic::Vertical if !first => {
261                 result.push('\n');
262                 result.push_str(indent_str);
263             }
264             DefinitiveListTactic::Mixed => {
265                 let total_width = total_item_width(item) + item_sep_len;
266
267                 // 1 is space between separator and item.
268                 if line_len > 0 && line_len + 1 + total_width > formatting.shape.width {
269                     result.push('\n');
270                     result.push_str(indent_str);
271                     line_len = 0;
272                     if formatting.ends_with_newline {
273                         trailing_separator = true;
274                     }
275                 }
276
277                 if last && formatting.ends_with_newline {
278                     match formatting.trailing_separator {
279                         SeparatorTactic::Always => separate = true,
280                         SeparatorTactic::Vertical if result.contains('\n') => separate = true,
281                         _ => (),
282                     }
283                 }
284
285                 if line_len > 0 {
286                     result.push(' ');
287                     line_len += 1;
288                 }
289
290                 line_len += total_width;
291             }
292             _ => {}
293         }
294
295         // Pre-comments
296         if let Some(ref comment) = item.pre_comment {
297             // Block style in non-vertical mode.
298             let block_mode = tactic != DefinitiveListTactic::Vertical;
299             // Width restriction is only relevant in vertical mode.
300             let comment =
301                 rewrite_comment(comment, block_mode, formatting.shape, formatting.config)?;
302             result.push_str(&comment);
303
304             if !inner_item.is_empty() {
305                 if tactic == DefinitiveListTactic::Vertical {
306                     // We cannot keep pre-comments on the same line if the comment if normalized.
307                     let keep_comment = if formatting.config.normalize_comments()
308                         || item.pre_comment_style == ListItemCommentStyle::DifferentLine
309                     {
310                         false
311                     } else {
312                         // We will try to keep the comment on the same line with the item here.
313                         // 1 = ` `
314                         let total_width = total_item_width(item) + item_sep_len + 1;
315                         total_width <= formatting.shape.width
316                     };
317                     if keep_comment {
318                         result.push(' ');
319                     } else {
320                         result.push('\n');
321                         result.push_str(indent_str);
322                     }
323                 } else {
324                     result.push(' ');
325                 }
326             }
327             item_max_width = None;
328         }
329
330         if separate && sep_place.is_front() && !first {
331             result.push_str(formatting.separator.trim());
332             result.push(' ');
333         }
334         result.push_str(inner_item);
335
336         // Post-comments
337         if tactic != DefinitiveListTactic::Vertical && item.post_comment.is_some() {
338             let comment = item.post_comment.as_ref().unwrap();
339             let formatted_comment = rewrite_comment(
340                 comment,
341                 true,
342                 Shape::legacy(formatting.shape.width, Indent::empty()),
343                 formatting.config,
344             )?;
345
346             result.push(' ');
347             result.push_str(&formatted_comment);
348         }
349
350         if separate && sep_place.is_back() {
351             result.push_str(formatting.separator);
352         }
353
354         if tactic == DefinitiveListTactic::Vertical && item.post_comment.is_some() {
355             let comment = item.post_comment.as_ref().unwrap();
356             let overhead = last_line_width(&result) + first_line_width(comment.trim());
357
358             let rewrite_post_comment = |item_max_width: &mut Option<usize>| {
359                 if item_max_width.is_none() && !last && !inner_item.contains('\n') {
360                     *item_max_width = Some(max_width_of_item_with_post_comment(
361                         &cloned_items,
362                         i,
363                         overhead,
364                         formatting.config.max_width(),
365                     ));
366                 }
367                 let overhead = if starts_with_newline(comment) {
368                     0
369                 } else if let Some(max_width) = *item_max_width {
370                     max_width + 2
371                 } else {
372                     // 1 = space between item and comment.
373                     item_last_line_width + 1
374                 };
375                 let width = formatting.shape.width.checked_sub(overhead).unwrap_or(1);
376                 let offset = formatting.shape.indent + overhead;
377                 let comment_shape = Shape::legacy(width, offset);
378
379                 // Use block-style only for the last item or multiline comments.
380                 let block_style = !formatting.ends_with_newline && last
381                     || comment.trim().contains('\n')
382                     || comment.trim().len() > width;
383
384                 rewrite_comment(
385                     comment.trim_left(),
386                     block_style,
387                     comment_shape,
388                     formatting.config,
389                 )
390             };
391
392             let mut formatted_comment = rewrite_post_comment(&mut item_max_width)?;
393
394             if !starts_with_newline(comment) {
395                 let mut comment_alignment =
396                     post_comment_alignment(item_max_width, inner_item.len());
397                 if first_line_width(&formatted_comment) + last_line_width(&result)
398                     + comment_alignment + 1 > formatting.config.max_width()
399                 {
400                     item_max_width = None;
401                     formatted_comment = rewrite_post_comment(&mut item_max_width)?;
402                     comment_alignment = post_comment_alignment(item_max_width, inner_item.len());
403                 }
404                 for _ in 0..(comment_alignment + 1) {
405                     result.push(' ');
406                 }
407                 // An additional space for the missing trailing separator.
408                 if last && item_max_width.is_some() && !separate && !formatting.separator.is_empty()
409                 {
410                     result.push(' ');
411                 }
412             } else {
413                 result.push('\n');
414                 result.push_str(indent_str);
415             }
416             if formatted_comment.contains('\n') {
417                 item_max_width = None;
418             }
419             result.push_str(&formatted_comment);
420         } else {
421             item_max_width = None;
422         }
423
424         if formatting.preserve_newline && !last && tactic == DefinitiveListTactic::Vertical
425             && item.new_lines
426         {
427             item_max_width = None;
428             result.push('\n');
429         }
430     }
431
432     Some(result)
433 }
434
435 fn max_width_of_item_with_post_comment<I, T>(
436     items: &I,
437     i: usize,
438     overhead: usize,
439     max_budget: usize,
440 ) -> usize
441 where
442     I: IntoIterator<Item = T> + Clone,
443     T: AsRef<ListItem>,
444 {
445     let mut max_width = 0;
446     let mut first = true;
447     for item in items.clone().into_iter().skip(i) {
448         let item = item.as_ref();
449         let inner_item_width = item.inner_as_ref().len();
450         if !first
451             && (item.is_different_group() || !item.post_comment.is_some()
452                 || inner_item_width + overhead > max_budget)
453         {
454             return max_width;
455         }
456         if max_width < inner_item_width {
457             max_width = inner_item_width;
458         }
459         if item.new_lines {
460             return max_width;
461         }
462         first = false;
463     }
464     max_width
465 }
466
467 fn post_comment_alignment(item_max_width: Option<usize>, inner_item_len: usize) -> usize {
468     item_max_width
469         .and_then(|max_line_width| max_line_width.checked_sub(inner_item_len))
470         .unwrap_or(0)
471 }
472
473 pub struct ListItems<'a, I, F1, F2, F3>
474 where
475     I: Iterator,
476 {
477     snippet_provider: &'a SnippetProvider<'a>,
478     inner: Peekable<I>,
479     get_lo: F1,
480     get_hi: F2,
481     get_item_string: F3,
482     prev_span_end: BytePos,
483     next_span_start: BytePos,
484     terminator: &'a str,
485     separator: &'a str,
486     leave_last: bool,
487 }
488
489 impl<'a, T, I, F1, F2, F3> Iterator for ListItems<'a, I, F1, F2, F3>
490 where
491     I: Iterator<Item = T>,
492     F1: Fn(&T) -> BytePos,
493     F2: Fn(&T) -> BytePos,
494     F3: Fn(&T) -> Option<String>,
495 {
496     type Item = ListItem;
497
498     fn next(&mut self) -> Option<Self::Item> {
499         let white_space: &[_] = &[' ', '\t'];
500
501         self.inner.next().map(|item| {
502             let mut new_lines = false;
503             // Pre-comment
504             let pre_snippet = self.snippet_provider
505                 .span_to_snippet(mk_sp(self.prev_span_end, (self.get_lo)(&item)))
506                 .unwrap();
507             let trimmed_pre_snippet = pre_snippet.trim();
508             let has_single_line_comment = trimmed_pre_snippet.starts_with("//");
509             let has_block_comment = trimmed_pre_snippet.starts_with("/*");
510             let (pre_comment, pre_comment_style) = if has_single_line_comment {
511                 (
512                     Some(trimmed_pre_snippet.to_owned()),
513                     ListItemCommentStyle::DifferentLine,
514                 )
515             } else if has_block_comment {
516                 let comment_end = pre_snippet.chars().rev().position(|c| c == '/').unwrap();
517                 if pre_snippet
518                     .chars()
519                     .rev()
520                     .take(comment_end + 1)
521                     .any(|c| c == '\n')
522                 {
523                     (
524                         Some(trimmed_pre_snippet.to_owned()),
525                         ListItemCommentStyle::DifferentLine,
526                     )
527                 } else {
528                     (
529                         Some(trimmed_pre_snippet.to_owned()),
530                         ListItemCommentStyle::SameLine,
531                     )
532                 }
533             } else {
534                 (None, ListItemCommentStyle::None)
535             };
536
537             // Post-comment
538             let next_start = match self.inner.peek() {
539                 Some(next_item) => (self.get_lo)(next_item),
540                 None => self.next_span_start,
541             };
542             let post_snippet = self.snippet_provider
543                 .span_to_snippet(mk_sp((self.get_hi)(&item), next_start))
544                 .unwrap();
545
546             let comment_end = match self.inner.peek() {
547                 Some(..) => {
548                     let mut block_open_index = post_snippet.find("/*");
549                     // check if it really is a block comment (and not `//*` or a nested comment)
550                     if let Some(i) = block_open_index {
551                         match post_snippet.find('/') {
552                             Some(j) if j < i => block_open_index = None,
553                             _ if i > 0 && &post_snippet[i - 1..i] == "/" => block_open_index = None,
554                             _ => (),
555                         }
556                     }
557                     let newline_index = post_snippet.find('\n');
558                     if let Some(separator_index) = post_snippet.find_uncommented(self.separator) {
559                         match (block_open_index, newline_index) {
560                             // Separator before comment, with the next item on same line.
561                             // Comment belongs to next item.
562                             (Some(i), None) if i > separator_index => separator_index + 1,
563                             // Block-style post-comment before the separator.
564                             (Some(i), None) => cmp::max(
565                                 find_comment_end(&post_snippet[i..]).unwrap() + i,
566                                 separator_index + 1,
567                             ),
568                             // Block-style post-comment. Either before or after the separator.
569                             (Some(i), Some(j)) if i < j => cmp::max(
570                                 find_comment_end(&post_snippet[i..]).unwrap() + i,
571                                 separator_index + 1,
572                             ),
573                             // Potential *single* line comment.
574                             (_, Some(j)) if j > separator_index => j + 1,
575                             _ => post_snippet.len(),
576                         }
577                     } else if let Some(newline_index) = newline_index {
578                         // Match arms may not have trailing comma. In any case, for match arms,
579                         // we will assume that the post comment belongs to the next arm if they
580                         // do not end with trailing comma.
581                         newline_index + 1
582                     } else {
583                         0
584                     }
585                 }
586                 None => post_snippet
587                     .find_uncommented(self.terminator)
588                     .unwrap_or_else(|| post_snippet.len()),
589             };
590
591             if !post_snippet.is_empty() && comment_end > 0 {
592                 // Account for extra whitespace between items. This is fiddly
593                 // because of the way we divide pre- and post- comments.
594
595                 // Everything from the separator to the next item.
596                 let test_snippet = &post_snippet[comment_end - 1..];
597                 let first_newline = test_snippet
598                     .find('\n')
599                     .unwrap_or_else(|| test_snippet.len());
600                 // From the end of the first line of comments.
601                 let test_snippet = &test_snippet[first_newline..];
602                 let first = test_snippet
603                     .find(|c: char| !c.is_whitespace())
604                     .unwrap_or_else(|| test_snippet.len());
605                 // From the end of the first line of comments to the next non-whitespace char.
606                 let test_snippet = &test_snippet[..first];
607
608                 if count_newlines(test_snippet) > 1 {
609                     // There were multiple line breaks which got trimmed to nothing.
610                     new_lines = true;
611                 }
612             }
613
614             // Cleanup post-comment: strip separators and whitespace.
615             self.prev_span_end = (self.get_hi)(&item) + BytePos(comment_end as u32);
616             let post_snippet = post_snippet[..comment_end].trim();
617
618             let post_snippet_trimmed = if post_snippet.starts_with(|c| c == ',' || c == ':') {
619                 post_snippet[1..].trim_matches(white_space)
620             } else if post_snippet.ends_with(',') {
621                 post_snippet[..(post_snippet.len() - 1)].trim_matches(white_space)
622             } else {
623                 post_snippet
624             };
625
626             let post_comment = if !post_snippet_trimmed.is_empty() {
627                 Some(post_snippet_trimmed.to_owned())
628             } else {
629                 None
630             };
631
632             ListItem {
633                 pre_comment,
634                 pre_comment_style,
635                 item: if self.inner.peek().is_none() && self.leave_last {
636                     None
637                 } else {
638                     (self.get_item_string)(&item)
639                 },
640                 post_comment,
641                 new_lines,
642             }
643         })
644     }
645 }
646
647 #[cfg_attr(feature = "cargo-clippy", allow(too_many_arguments))]
648 // Creates an iterator over a list's items with associated comments.
649 pub fn itemize_list<'a, T, I, F1, F2, F3>(
650     snippet_provider: &'a SnippetProvider,
651     inner: I,
652     terminator: &'a str,
653     separator: &'a str,
654     get_lo: F1,
655     get_hi: F2,
656     get_item_string: F3,
657     prev_span_end: BytePos,
658     next_span_start: BytePos,
659     leave_last: bool,
660 ) -> ListItems<'a, I, F1, F2, F3>
661 where
662     I: Iterator<Item = T>,
663     F1: Fn(&T) -> BytePos,
664     F2: Fn(&T) -> BytePos,
665     F3: Fn(&T) -> Option<String>,
666 {
667     ListItems {
668         snippet_provider,
669         inner: inner.peekable(),
670         get_lo,
671         get_hi,
672         get_item_string,
673         prev_span_end,
674         next_span_start,
675         terminator,
676         separator,
677         leave_last,
678     }
679 }
680
681 /// Returns the count and total width of the list items.
682 fn calculate_width<I, T>(items: I) -> (usize, usize)
683 where
684     I: IntoIterator<Item = T>,
685     T: AsRef<ListItem>,
686 {
687     items
688         .into_iter()
689         .map(|item| total_item_width(item.as_ref()))
690         .fold((0, 0), |acc, l| (acc.0 + 1, acc.1 + l))
691 }
692
693 pub fn total_item_width(item: &ListItem) -> usize {
694     comment_len(item.pre_comment.as_ref().map(|x| &(*x)[..]))
695         + comment_len(item.post_comment.as_ref().map(|x| &(*x)[..]))
696         + item.item.as_ref().map_or(0, |str| str.len())
697 }
698
699 fn comment_len(comment: Option<&str>) -> usize {
700     match comment {
701         Some(s) => {
702             let text_len = s.trim().len();
703             if text_len > 0 {
704                 // We'll put " /*" before and " */" after inline comments.
705                 text_len + 6
706             } else {
707                 text_len
708             }
709         }
710         None => 0,
711     }
712 }
713
714 // Compute horizontal and vertical shapes for a struct-lit-like thing.
715 pub fn struct_lit_shape(
716     shape: Shape,
717     context: &RewriteContext,
718     prefix_width: usize,
719     suffix_width: usize,
720 ) -> Option<(Option<Shape>, Shape)> {
721     let v_shape = match context.config.indent_style() {
722         IndentStyle::Visual => shape
723             .visual_indent(0)
724             .shrink_left(prefix_width)?
725             .sub_width(suffix_width)?,
726         IndentStyle::Block => {
727             let shape = shape.block_indent(context.config.tab_spaces());
728             Shape {
729                 width: context.budget(shape.indent.width()),
730                 ..shape
731             }
732         }
733     };
734     let shape_width = shape.width.checked_sub(prefix_width + suffix_width);
735     if let Some(w) = shape_width {
736         let shape_width = cmp::min(w, context.config.width_heuristics().struct_lit_width);
737         Some((Some(Shape::legacy(shape_width, shape.indent)), v_shape))
738     } else {
739         Some((None, v_shape))
740     }
741 }
742
743 // Compute the tactic for the internals of a struct-lit-like thing.
744 pub fn struct_lit_tactic(
745     h_shape: Option<Shape>,
746     context: &RewriteContext,
747     items: &[ListItem],
748 ) -> DefinitiveListTactic {
749     if let Some(h_shape) = h_shape {
750         let prelim_tactic = match (context.config.indent_style(), items.len()) {
751             (IndentStyle::Visual, 1) => ListTactic::HorizontalVertical,
752             _ if context.config.struct_lit_single_line() => ListTactic::HorizontalVertical,
753             _ => ListTactic::Vertical,
754         };
755         definitive_tactic(items, prelim_tactic, Separator::Comma, h_shape.width)
756     } else {
757         DefinitiveListTactic::Vertical
758     }
759 }
760
761 // Given a tactic and possible shapes for horizontal and vertical layout,
762 // come up with the actual shape to use.
763 pub fn shape_for_tactic(
764     tactic: DefinitiveListTactic,
765     h_shape: Option<Shape>,
766     v_shape: Shape,
767 ) -> Shape {
768     match tactic {
769         DefinitiveListTactic::Horizontal => h_shape.unwrap(),
770         _ => v_shape,
771     }
772 }
773
774 // Create a ListFormatting object for formatting the internals of a
775 // struct-lit-like thing, that is a series of fields.
776 pub fn struct_lit_formatting<'a>(
777     shape: Shape,
778     tactic: DefinitiveListTactic,
779     context: &'a RewriteContext,
780     force_no_trailing_comma: bool,
781 ) -> ListFormatting<'a> {
782     let ends_with_newline = context.config.indent_style() != IndentStyle::Visual
783         && tactic == DefinitiveListTactic::Vertical;
784     ListFormatting {
785         tactic,
786         separator: ",",
787         trailing_separator: if force_no_trailing_comma {
788             SeparatorTactic::Never
789         } else {
790             context.config.trailing_comma()
791         },
792         separator_place: SeparatorPlace::Back,
793         shape,
794         ends_with_newline,
795         preserve_newline: true,
796         config: context.config,
797     }
798 }