]> git.lizzy.rs Git - rust.git/blob - src/expr.rs
Format macro call with item arguments
[rust.git] / src / expr.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 std::borrow::Cow;
12 use std::cmp::min;
13 use std::iter::repeat;
14
15 use config::lists::*;
16 use syntax::{ast, ptr};
17 use syntax::codemap::{BytePos, CodeMap, Span};
18
19 use chains::rewrite_chain;
20 use closures;
21 use codemap::{LineRangeUtils, SpanUtils};
22 use comment::{combine_strs_with_missing_comments, contains_comment, recover_comment_removed,
23               rewrite_comment, rewrite_missing_comment, CharClasses, FindUncommented};
24 use config::{Config, ControlBraceStyle, IndentStyle};
25 use lists::{definitive_tactic, itemize_list, shape_for_tactic, struct_lit_formatting,
26             struct_lit_shape, struct_lit_tactic, write_list, ListFormatting, ListItem, Separator};
27 use macros::{rewrite_macro, MacroArg, MacroPosition};
28 use patterns::{can_be_overflowed_pat, TuplePatField};
29 use rewrite::{Rewrite, RewriteContext};
30 use shape::{Indent, Shape};
31 use spanned::Spanned;
32 use string::{rewrite_string, StringFormat};
33 use types::{can_be_overflowed_type, rewrite_path, PathContext};
34 use utils::{colon_spaces, contains_skip, count_newlines, extra_offset, first_line_width,
35             inner_attributes, last_line_extendable, last_line_width, mk_sp, outer_attributes,
36             paren_overhead, ptr_vec_to_ref_vec, semicolon_for_stmt, trimmed_last_line_width,
37             wrap_str};
38 use vertical::rewrite_with_alignment;
39 use visitor::FmtVisitor;
40
41 impl Rewrite for ast::Expr {
42     fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
43         format_expr(self, ExprType::SubExpression, context, shape)
44     }
45 }
46
47 #[derive(Copy, Clone, PartialEq)]
48 pub enum ExprType {
49     Statement,
50     SubExpression,
51 }
52
53 pub fn format_expr(
54     expr: &ast::Expr,
55     expr_type: ExprType,
56     context: &RewriteContext,
57     shape: Shape,
58 ) -> Option<String> {
59     skip_out_of_file_lines_range!(context, expr.span);
60
61     if contains_skip(&*expr.attrs) {
62         return Some(context.snippet(expr.span()).to_owned());
63     }
64
65     let expr_rw = match expr.node {
66         ast::ExprKind::Array(ref expr_vec) => rewrite_array(
67             &ptr_vec_to_ref_vec(expr_vec),
68             mk_sp(
69                 context.snippet_provider.span_after(expr.span, "["),
70                 expr.span.hi(),
71             ),
72             context,
73             shape,
74             false,
75         ),
76         ast::ExprKind::Lit(ref l) => rewrite_literal(context, l, shape),
77         ast::ExprKind::Call(ref callee, ref args) => {
78             let inner_span = mk_sp(callee.span.hi(), expr.span.hi());
79             let callee_str = callee.rewrite(context, shape)?;
80             rewrite_call(context, &callee_str, args, inner_span, shape)
81         }
82         ast::ExprKind::Paren(ref subexpr) => rewrite_paren(context, subexpr, shape, expr.span),
83         ast::ExprKind::Binary(ref op, ref lhs, ref rhs) => {
84             // FIXME: format comments between operands and operator
85             rewrite_pair(
86                 &**lhs,
87                 &**rhs,
88                 PairParts::new("", &format!(" {} ", context.snippet(op.span)), ""),
89                 context,
90                 shape,
91                 context.config.binop_separator(),
92             )
93         }
94         ast::ExprKind::Unary(ref op, ref subexpr) => rewrite_unary_op(context, op, subexpr, shape),
95         ast::ExprKind::Struct(ref path, ref fields, ref base) => rewrite_struct_lit(
96             context,
97             path,
98             fields,
99             base.as_ref().map(|e| &**e),
100             expr.span,
101             shape,
102         ),
103         ast::ExprKind::Tup(ref items) => {
104             rewrite_tuple(context, &ptr_vec_to_ref_vec(items), expr.span, shape)
105         }
106         ast::ExprKind::If(..)
107         | ast::ExprKind::IfLet(..)
108         | ast::ExprKind::ForLoop(..)
109         | ast::ExprKind::Loop(..)
110         | ast::ExprKind::While(..)
111         | ast::ExprKind::WhileLet(..) => to_control_flow(expr, expr_type)
112             .and_then(|control_flow| control_flow.rewrite(context, shape)),
113         ast::ExprKind::Block(ref block) => {
114             match expr_type {
115                 ExprType::Statement => {
116                     if is_unsafe_block(block) {
117                         block.rewrite(context, shape)
118                     } else if let rw @ Some(_) = rewrite_empty_block(context, block, shape) {
119                         // Rewrite block without trying to put it in a single line.
120                         rw
121                     } else {
122                         let prefix = block_prefix(context, block, shape)?;
123                         rewrite_block_with_visitor(context, &prefix, block, shape, true)
124                     }
125                 }
126                 ExprType::SubExpression => block.rewrite(context, shape),
127             }
128         }
129         ast::ExprKind::Match(ref cond, ref arms) => {
130             rewrite_match(context, cond, arms, shape, expr.span, &expr.attrs)
131         }
132         ast::ExprKind::Path(ref qself, ref path) => {
133             rewrite_path(context, PathContext::Expr, qself.as_ref(), path, shape)
134         }
135         ast::ExprKind::Assign(ref lhs, ref rhs) => {
136             rewrite_assignment(context, lhs, rhs, None, shape)
137         }
138         ast::ExprKind::AssignOp(ref op, ref lhs, ref rhs) => {
139             rewrite_assignment(context, lhs, rhs, Some(op), shape)
140         }
141         ast::ExprKind::Continue(ref opt_label) => {
142             let id_str = match *opt_label {
143                 Some(label) => format!(" {}", label.ident),
144                 None => String::new(),
145             };
146             Some(format!("continue{}", id_str))
147         }
148         ast::ExprKind::Break(ref opt_label, ref opt_expr) => {
149             let id_str = match *opt_label {
150                 Some(label) => format!(" {}", label.ident),
151                 None => String::new(),
152             };
153
154             if let Some(ref expr) = *opt_expr {
155                 rewrite_unary_prefix(context, &format!("break{} ", id_str), &**expr, shape)
156             } else {
157                 Some(format!("break{}", id_str))
158             }
159         }
160         ast::ExprKind::Yield(ref opt_expr) => if let Some(ref expr) = *opt_expr {
161             rewrite_unary_prefix(context, "yield ", &**expr, shape)
162         } else {
163             Some("yield".to_string())
164         },
165         ast::ExprKind::Closure(capture, movability, ref fn_decl, ref body, _) => {
166             closures::rewrite_closure(
167                 capture,
168                 movability,
169                 fn_decl,
170                 body,
171                 expr.span,
172                 context,
173                 shape,
174             )
175         }
176         ast::ExprKind::Try(..)
177         | ast::ExprKind::Field(..)
178         | ast::ExprKind::TupField(..)
179         | ast::ExprKind::MethodCall(..) => rewrite_chain(expr, context, shape),
180         ast::ExprKind::Mac(ref mac) => {
181             rewrite_macro(mac, None, context, shape, MacroPosition::Expression).or_else(|| {
182                 wrap_str(
183                     context.snippet(expr.span).to_owned(),
184                     context.config.max_width(),
185                     shape,
186                 )
187             })
188         }
189         ast::ExprKind::Ret(None) => Some("return".to_owned()),
190         ast::ExprKind::Ret(Some(ref expr)) => {
191             rewrite_unary_prefix(context, "return ", &**expr, shape)
192         }
193         ast::ExprKind::Box(ref expr) => rewrite_unary_prefix(context, "box ", &**expr, shape),
194         ast::ExprKind::AddrOf(mutability, ref expr) => {
195             rewrite_expr_addrof(context, mutability, expr, shape)
196         }
197         ast::ExprKind::Cast(ref expr, ref ty) => rewrite_pair(
198             &**expr,
199             &**ty,
200             PairParts::new("", " as ", ""),
201             context,
202             shape,
203             SeparatorPlace::Front,
204         ),
205         ast::ExprKind::Type(ref expr, ref ty) => rewrite_pair(
206             &**expr,
207             &**ty,
208             PairParts::new("", ": ", ""),
209             context,
210             shape,
211             SeparatorPlace::Back,
212         ),
213         ast::ExprKind::Index(ref expr, ref index) => {
214             rewrite_index(&**expr, &**index, context, shape)
215         }
216         ast::ExprKind::Repeat(ref expr, ref repeats) => {
217             let (lbr, rbr) = if context.config.spaces_within_parens_and_brackets() {
218                 ("[ ", " ]")
219             } else {
220                 ("[", "]")
221             };
222             rewrite_pair(
223                 &**expr,
224                 &**repeats,
225                 PairParts::new(lbr, "; ", rbr),
226                 context,
227                 shape,
228                 SeparatorPlace::Back,
229             )
230         }
231         ast::ExprKind::Range(ref lhs, ref rhs, limits) => {
232             let delim = match limits {
233                 ast::RangeLimits::HalfOpen => "..",
234                 ast::RangeLimits::Closed => "..=",
235             };
236
237             fn needs_space_before_range(context: &RewriteContext, lhs: &ast::Expr) -> bool {
238                 match lhs.node {
239                     ast::ExprKind::Lit(ref lit) => match lit.node {
240                         ast::LitKind::FloatUnsuffixed(..) => {
241                             context.snippet(lit.span).ends_with('.')
242                         }
243                         _ => false,
244                     },
245                     _ => false,
246                 }
247             }
248
249             match (lhs.as_ref().map(|x| &**x), rhs.as_ref().map(|x| &**x)) {
250                 (Some(lhs), Some(rhs)) => {
251                     let sp_delim = if context.config.spaces_around_ranges() {
252                         format!(" {} ", delim)
253                     } else if needs_space_before_range(context, lhs) {
254                         format!(" {}", delim)
255                     } else {
256                         delim.to_owned()
257                     };
258                     rewrite_pair(
259                         &*lhs,
260                         &*rhs,
261                         PairParts::new("", &sp_delim, ""),
262                         context,
263                         shape,
264                         context.config.binop_separator(),
265                     )
266                 }
267                 (None, Some(rhs)) => {
268                     let sp_delim = if context.config.spaces_around_ranges() {
269                         format!("{} ", delim)
270                     } else {
271                         delim.to_owned()
272                     };
273                     rewrite_unary_prefix(context, &sp_delim, &*rhs, shape)
274                 }
275                 (Some(lhs), None) => {
276                     let sp_delim = if context.config.spaces_around_ranges() {
277                         format!(" {}", delim)
278                     } else {
279                         delim.to_owned()
280                     };
281                     rewrite_unary_suffix(context, &sp_delim, &*lhs, shape)
282                 }
283                 (None, None) => Some(delim.to_owned()),
284             }
285         }
286         // We do not format these expressions yet, but they should still
287         // satisfy our width restrictions.
288         ast::ExprKind::InPlace(..) | ast::ExprKind::InlineAsm(..) => {
289             Some(context.snippet(expr.span).to_owned())
290         }
291         ast::ExprKind::Catch(ref block) => {
292             if let rw @ Some(_) = rewrite_single_line_block(context, "do catch ", block, shape) {
293                 rw
294             } else {
295                 // 9 = `do catch `
296                 let budget = shape.width.checked_sub(9).unwrap_or(0);
297                 Some(format!(
298                     "{}{}",
299                     "do catch ",
300                     block.rewrite(context, Shape::legacy(budget, shape.indent))?
301                 ))
302             }
303         }
304     };
305
306     expr_rw
307         .and_then(|expr_str| recover_comment_removed(expr_str, expr.span, context))
308         .and_then(|expr_str| {
309             let attrs = outer_attributes(&expr.attrs);
310             let attrs_str = attrs.rewrite(context, shape)?;
311             let span = mk_sp(
312                 attrs.last().map_or(expr.span.lo(), |attr| attr.span.hi()),
313                 expr.span.lo(),
314             );
315             combine_strs_with_missing_comments(context, &attrs_str, &expr_str, span, shape, false)
316         })
317 }
318
319 #[derive(new, Clone, Copy)]
320 pub struct PairParts<'a> {
321     prefix: &'a str,
322     infix: &'a str,
323     suffix: &'a str,
324 }
325
326 pub fn rewrite_pair<LHS, RHS>(
327     lhs: &LHS,
328     rhs: &RHS,
329     pp: PairParts,
330     context: &RewriteContext,
331     shape: Shape,
332     separator_place: SeparatorPlace,
333 ) -> Option<String>
334 where
335     LHS: Rewrite,
336     RHS: Rewrite,
337 {
338     let lhs_overhead = match separator_place {
339         SeparatorPlace::Back => shape.used_width() + pp.prefix.len() + pp.infix.trim_right().len(),
340         SeparatorPlace::Front => shape.used_width(),
341     };
342     let lhs_shape = Shape {
343         width: context.budget(lhs_overhead),
344         ..shape
345     };
346     let lhs_result = lhs.rewrite(context, lhs_shape)
347         .map(|lhs_str| format!("{}{}", pp.prefix, lhs_str))?;
348
349     // Try to the both lhs and rhs on the same line.
350     let rhs_orig_result = shape
351         .offset_left(last_line_width(&lhs_result) + pp.infix.len())
352         .and_then(|s| s.sub_width(pp.suffix.len()))
353         .and_then(|rhs_shape| rhs.rewrite(context, rhs_shape));
354     if let Some(ref rhs_result) = rhs_orig_result {
355         // If the rhs looks like block expression, we allow it to stay on the same line
356         // with the lhs even if it is multi-lined.
357         let allow_same_line = rhs_result
358             .lines()
359             .next()
360             .map(|first_line| first_line.ends_with('{'))
361             .unwrap_or(false);
362         if !rhs_result.contains('\n') || allow_same_line {
363             let one_line_width = last_line_width(&lhs_result) + pp.infix.len()
364                 + first_line_width(rhs_result) + pp.suffix.len();
365             if one_line_width <= shape.width {
366                 return Some(format!(
367                     "{}{}{}{}",
368                     lhs_result, pp.infix, rhs_result, pp.suffix
369                 ));
370             }
371         }
372     }
373
374     // We have to use multiple lines.
375     // Re-evaluate the rhs because we have more space now:
376     let mut rhs_shape = match context.config.indent_style() {
377         IndentStyle::Visual => shape
378             .sub_width(pp.suffix.len() + pp.prefix.len())?
379             .visual_indent(pp.prefix.len()),
380         IndentStyle::Block => {
381             // Try to calculate the initial constraint on the right hand side.
382             let rhs_overhead = shape.rhs_overhead(context.config);
383             Shape::indented(shape.indent.block_indent(context.config), context.config)
384                 .sub_width(rhs_overhead)?
385         }
386     };
387     let infix = match separator_place {
388         SeparatorPlace::Back => pp.infix.trim_right(),
389         SeparatorPlace::Front => pp.infix.trim_left(),
390     };
391     if separator_place == SeparatorPlace::Front {
392         rhs_shape = rhs_shape.offset_left(infix.len())?;
393     }
394     let rhs_result = rhs.rewrite(context, rhs_shape)?;
395     let indent_str = rhs_shape.indent.to_string_with_newline(context.config);
396     let infix_with_sep = match separator_place {
397         SeparatorPlace::Back => format!("{}{}", infix, indent_str),
398         SeparatorPlace::Front => format!("{}{}", indent_str, infix),
399     };
400     Some(format!(
401         "{}{}{}{}",
402         lhs_result, infix_with_sep, rhs_result, pp.suffix
403     ))
404 }
405
406 pub fn rewrite_array<T: Rewrite + Spanned + ToExpr>(
407     exprs: &[&T],
408     span: Span,
409     context: &RewriteContext,
410     shape: Shape,
411     trailing_comma: bool,
412 ) -> Option<String> {
413     let bracket_size = if context.config.spaces_within_parens_and_brackets() {
414         2 // "[ "
415     } else {
416         1 // "["
417     };
418
419     let nested_shape = match context.config.indent_style() {
420         IndentStyle::Block => shape
421             .block()
422             .block_indent(context.config.tab_spaces())
423             .with_max_width(context.config)
424             .sub_width(1)?,
425         IndentStyle::Visual => shape
426             .visual_indent(bracket_size)
427             .sub_width(bracket_size * 2)?,
428     };
429
430     let items = itemize_list(
431         context.snippet_provider,
432         exprs.iter(),
433         "]",
434         ",",
435         |item| item.span().lo(),
436         |item| item.span().hi(),
437         |item| item.rewrite(context, nested_shape),
438         span.lo(),
439         span.hi(),
440         false,
441     ).collect::<Vec<_>>();
442
443     if items.is_empty() {
444         if context.config.spaces_within_parens_and_brackets() {
445             return Some("[ ]".to_string());
446         } else {
447             return Some("[]".to_string());
448         }
449     }
450
451     let tactic = array_tactic(context, shape, nested_shape, exprs, &items, bracket_size);
452     let ends_with_newline = tactic.ends_with_newline(context.config.indent_style());
453
454     let fmt = ListFormatting {
455         tactic,
456         separator: ",",
457         trailing_separator: if trailing_comma {
458             SeparatorTactic::Always
459         } else if context.inside_macro && !exprs.is_empty() {
460             let ends_with_bracket = context.snippet(span).ends_with(']');
461             let bracket_offset = if ends_with_bracket { 1 } else { 0 };
462             let snippet = context.snippet(mk_sp(span.lo(), span.hi() - BytePos(bracket_offset)));
463             let last_char_index = snippet.rfind(|c: char| !c.is_whitespace())?;
464             if &snippet[last_char_index..last_char_index + 1] == "," {
465                 SeparatorTactic::Always
466             } else {
467                 SeparatorTactic::Never
468             }
469         } else if context.config.indent_style() == IndentStyle::Visual {
470             SeparatorTactic::Never
471         } else {
472             SeparatorTactic::Vertical
473         },
474         separator_place: SeparatorPlace::Back,
475         shape: nested_shape,
476         ends_with_newline,
477         preserve_newline: false,
478         config: context.config,
479     };
480     let list_str = write_list(&items, &fmt)?;
481
482     let result = if context.config.indent_style() == IndentStyle::Visual
483         || tactic == DefinitiveListTactic::Horizontal
484     {
485         if context.config.spaces_within_parens_and_brackets() && !list_str.is_empty() {
486             format!("[ {} ]", list_str)
487         } else {
488             format!("[{}]", list_str)
489         }
490     } else {
491         format!(
492             "[{}{}{}]",
493             nested_shape.indent.to_string_with_newline(context.config),
494             list_str,
495             shape.block().indent.to_string_with_newline(context.config)
496         )
497     };
498
499     Some(result)
500 }
501
502 fn array_tactic<T: Rewrite + Spanned + ToExpr>(
503     context: &RewriteContext,
504     shape: Shape,
505     nested_shape: Shape,
506     exprs: &[&T],
507     items: &[ListItem],
508     bracket_size: usize,
509 ) -> DefinitiveListTactic {
510     let has_long_item = items
511         .iter()
512         .any(|li| li.item.as_ref().map(|s| s.len() > 10).unwrap_or(false));
513
514     match context.config.indent_style() {
515         IndentStyle::Block => {
516             let tactic = match shape.width.checked_sub(2 * bracket_size) {
517                 Some(width) => {
518                     let tactic = ListTactic::LimitedHorizontalVertical(
519                         context.config.width_heuristics().array_width,
520                     );
521                     definitive_tactic(items, tactic, Separator::Comma, width)
522                 }
523                 None => DefinitiveListTactic::Vertical,
524             };
525             if tactic == DefinitiveListTactic::Vertical && !has_long_item
526                 && is_every_args_simple(exprs)
527             {
528                 DefinitiveListTactic::Mixed
529             } else {
530                 tactic
531             }
532         }
533         IndentStyle::Visual => {
534             if has_long_item || items.iter().any(ListItem::is_multiline) {
535                 definitive_tactic(
536                     items,
537                     ListTactic::LimitedHorizontalVertical(
538                         context.config.width_heuristics().array_width,
539                     ),
540                     Separator::Comma,
541                     nested_shape.width,
542                 )
543             } else {
544                 DefinitiveListTactic::Mixed
545             }
546         }
547     }
548 }
549
550 fn nop_block_collapse(block_str: Option<String>, budget: usize) -> Option<String> {
551     debug!("nop_block_collapse {:?} {}", block_str, budget);
552     block_str.map(|block_str| {
553         if block_str.starts_with('{') && budget >= 2
554             && (block_str[1..].find(|c: char| !c.is_whitespace()).unwrap() == block_str.len() - 2)
555         {
556             "{}".to_owned()
557         } else {
558             block_str.to_owned()
559         }
560     })
561 }
562
563 fn rewrite_empty_block(
564     context: &RewriteContext,
565     block: &ast::Block,
566     shape: Shape,
567 ) -> Option<String> {
568     if block.stmts.is_empty() && !block_contains_comment(block, context.codemap) && shape.width >= 2
569     {
570         return Some("{}".to_owned());
571     }
572
573     // If a block contains only a single-line comment, then leave it on one line.
574     let user_str = context.snippet(block.span);
575     let user_str = user_str.trim();
576     if user_str.starts_with('{') && user_str.ends_with('}') {
577         let comment_str = user_str[1..user_str.len() - 1].trim();
578         if block.stmts.is_empty() && !comment_str.contains('\n') && !comment_str.starts_with("//")
579             && comment_str.len() + 4 <= shape.width
580         {
581             return Some(format!("{{ {} }}", comment_str));
582         }
583     }
584
585     None
586 }
587
588 fn block_prefix(context: &RewriteContext, block: &ast::Block, shape: Shape) -> Option<String> {
589     Some(match block.rules {
590         ast::BlockCheckMode::Unsafe(..) => {
591             let snippet = context.snippet(block.span);
592             let open_pos = snippet.find_uncommented("{")?;
593             // Extract comment between unsafe and block start.
594             let trimmed = &snippet[6..open_pos].trim();
595
596             if !trimmed.is_empty() {
597                 // 9 = "unsafe  {".len(), 7 = "unsafe ".len()
598                 let budget = shape.width.checked_sub(9)?;
599                 format!(
600                     "unsafe {} ",
601                     rewrite_comment(
602                         trimmed,
603                         true,
604                         Shape::legacy(budget, shape.indent + 7),
605                         context.config,
606                     )?
607                 )
608             } else {
609                 "unsafe ".to_owned()
610             }
611         }
612         ast::BlockCheckMode::Default => String::new(),
613     })
614 }
615
616 fn rewrite_single_line_block(
617     context: &RewriteContext,
618     prefix: &str,
619     block: &ast::Block,
620     shape: Shape,
621 ) -> Option<String> {
622     if is_simple_block(block, context.codemap) {
623         let expr_shape = shape.offset_left(last_line_width(prefix))?;
624         let expr_str = block.stmts[0].rewrite(context, expr_shape)?;
625         let result = format!("{}{{ {} }}", prefix, expr_str);
626         if result.len() <= shape.width && !result.contains('\n') {
627             return Some(result);
628         }
629     }
630     None
631 }
632
633 pub fn rewrite_block_with_visitor(
634     context: &RewriteContext,
635     prefix: &str,
636     block: &ast::Block,
637     shape: Shape,
638     has_braces: bool,
639 ) -> Option<String> {
640     if let rw @ Some(_) = rewrite_empty_block(context, block, shape) {
641         return rw;
642     }
643
644     let mut visitor = FmtVisitor::from_context(context);
645     visitor.block_indent = shape.indent;
646     visitor.is_if_else_block = context.is_if_else_block;
647     match block.rules {
648         ast::BlockCheckMode::Unsafe(..) => {
649             let snippet = context.snippet(block.span);
650             let open_pos = snippet.find_uncommented("{")?;
651             visitor.last_pos = block.span.lo() + BytePos(open_pos as u32)
652         }
653         ast::BlockCheckMode::Default => visitor.last_pos = block.span.lo(),
654     }
655
656     visitor.visit_block(block, None, has_braces);
657     Some(format!("{}{}", prefix, visitor.buffer))
658 }
659
660 impl Rewrite for ast::Block {
661     fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
662         // shape.width is used only for the single line case: either the empty block `{}`,
663         // or an unsafe expression `unsafe { e }`.
664         if let rw @ Some(_) = rewrite_empty_block(context, self, shape) {
665             return rw;
666         }
667
668         let prefix = block_prefix(context, self, shape)?;
669
670         let result = rewrite_block_with_visitor(context, &prefix, self, shape, true);
671         if let Some(ref result_str) = result {
672             if result_str.lines().count() <= 3 {
673                 if let rw @ Some(_) = rewrite_single_line_block(context, &prefix, self, shape) {
674                     return rw;
675                 }
676             }
677         }
678
679         result
680     }
681 }
682
683 impl Rewrite for ast::Stmt {
684     fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
685         skip_out_of_file_lines_range!(context, self.span());
686
687         let result = match self.node {
688             ast::StmtKind::Local(ref local) => local.rewrite(context, shape),
689             ast::StmtKind::Expr(ref ex) | ast::StmtKind::Semi(ref ex) => {
690                 let suffix = if semicolon_for_stmt(context, self) {
691                     ";"
692                 } else {
693                     ""
694                 };
695
696                 let shape = shape.sub_width(suffix.len())?;
697                 format_expr(ex, ExprType::Statement, context, shape).map(|s| s + suffix)
698             }
699             ast::StmtKind::Mac(..) | ast::StmtKind::Item(..) => None,
700         };
701         result.and_then(|res| recover_comment_removed(res, self.span(), context))
702     }
703 }
704
705 // Rewrite condition if the given expression has one.
706 pub fn rewrite_cond(context: &RewriteContext, expr: &ast::Expr, shape: Shape) -> Option<String> {
707     match expr.node {
708         ast::ExprKind::Match(ref cond, _) => {
709             // `match `cond` {`
710             let cond_shape = match context.config.indent_style() {
711                 IndentStyle::Visual => shape.shrink_left(6).and_then(|s| s.sub_width(2))?,
712                 IndentStyle::Block => shape.offset_left(8)?,
713             };
714             cond.rewrite(context, cond_shape)
715         }
716         _ => to_control_flow(expr, ExprType::SubExpression).and_then(|control_flow| {
717             let alt_block_sep =
718                 String::from("\n") + &shape.indent.block_only().to_string(context.config);
719             control_flow
720                 .rewrite_cond(context, shape, &alt_block_sep)
721                 .and_then(|rw| Some(rw.0))
722         }),
723     }
724 }
725
726 // Abstraction over control flow expressions
727 #[derive(Debug)]
728 struct ControlFlow<'a> {
729     cond: Option<&'a ast::Expr>,
730     block: &'a ast::Block,
731     else_block: Option<&'a ast::Expr>,
732     label: Option<ast::Label>,
733     pats: Vec<&'a ast::Pat>,
734     keyword: &'a str,
735     matcher: &'a str,
736     connector: &'a str,
737     allow_single_line: bool,
738     // True if this is an `if` expression in an `else if` :-( hacky
739     nested_if: bool,
740     span: Span,
741 }
742
743 fn to_control_flow(expr: &ast::Expr, expr_type: ExprType) -> Option<ControlFlow> {
744     match expr.node {
745         ast::ExprKind::If(ref cond, ref if_block, ref else_block) => Some(ControlFlow::new_if(
746             cond,
747             vec![],
748             if_block,
749             else_block.as_ref().map(|e| &**e),
750             expr_type == ExprType::SubExpression,
751             false,
752             expr.span,
753         )),
754         ast::ExprKind::IfLet(ref pat, ref cond, ref if_block, ref else_block) => {
755             Some(ControlFlow::new_if(
756                 cond,
757                 ptr_vec_to_ref_vec(pat),
758                 if_block,
759                 else_block.as_ref().map(|e| &**e),
760                 expr_type == ExprType::SubExpression,
761                 false,
762                 expr.span,
763             ))
764         }
765         ast::ExprKind::ForLoop(ref pat, ref cond, ref block, label) => {
766             Some(ControlFlow::new_for(pat, cond, block, label, expr.span))
767         }
768         ast::ExprKind::Loop(ref block, label) => {
769             Some(ControlFlow::new_loop(block, label, expr.span))
770         }
771         ast::ExprKind::While(ref cond, ref block, label) => Some(ControlFlow::new_while(
772             vec![],
773             cond,
774             block,
775             label,
776             expr.span,
777         )),
778         ast::ExprKind::WhileLet(ref pat, ref cond, ref block, label) => Some(
779             ControlFlow::new_while(ptr_vec_to_ref_vec(pat), cond, block, label, expr.span),
780         ),
781         _ => None,
782     }
783 }
784
785 fn choose_matcher(pats: &[&ast::Pat]) -> &'static str {
786     if pats.is_empty() {
787         ""
788     } else {
789         "let"
790     }
791 }
792
793 impl<'a> ControlFlow<'a> {
794     fn new_if(
795         cond: &'a ast::Expr,
796         pats: Vec<&'a ast::Pat>,
797         block: &'a ast::Block,
798         else_block: Option<&'a ast::Expr>,
799         allow_single_line: bool,
800         nested_if: bool,
801         span: Span,
802     ) -> ControlFlow<'a> {
803         let matcher = choose_matcher(&pats);
804         ControlFlow {
805             cond: Some(cond),
806             block,
807             else_block,
808             label: None,
809             pats,
810             keyword: "if",
811             matcher,
812             connector: " =",
813             allow_single_line,
814             nested_if,
815             span,
816         }
817     }
818
819     fn new_loop(block: &'a ast::Block, label: Option<ast::Label>, span: Span) -> ControlFlow<'a> {
820         ControlFlow {
821             cond: None,
822             block,
823             else_block: None,
824             label,
825             pats: vec![],
826             keyword: "loop",
827             matcher: "",
828             connector: "",
829             allow_single_line: false,
830             nested_if: false,
831             span,
832         }
833     }
834
835     fn new_while(
836         pats: Vec<&'a ast::Pat>,
837         cond: &'a ast::Expr,
838         block: &'a ast::Block,
839         label: Option<ast::Label>,
840         span: Span,
841     ) -> ControlFlow<'a> {
842         let matcher = choose_matcher(&pats);
843         ControlFlow {
844             cond: Some(cond),
845             block,
846             else_block: None,
847             label,
848             pats,
849             keyword: "while",
850             matcher,
851             connector: " =",
852             allow_single_line: false,
853             nested_if: false,
854             span,
855         }
856     }
857
858     fn new_for(
859         pat: &'a ast::Pat,
860         cond: &'a ast::Expr,
861         block: &'a ast::Block,
862         label: Option<ast::Label>,
863         span: Span,
864     ) -> ControlFlow<'a> {
865         ControlFlow {
866             cond: Some(cond),
867             block,
868             else_block: None,
869             label,
870             pats: vec![pat],
871             keyword: "for",
872             matcher: "",
873             connector: " in",
874             allow_single_line: false,
875             nested_if: false,
876             span,
877         }
878     }
879
880     fn rewrite_single_line(
881         &self,
882         pat_expr_str: &str,
883         context: &RewriteContext,
884         width: usize,
885     ) -> Option<String> {
886         assert!(self.allow_single_line);
887         let else_block = self.else_block?;
888         let fixed_cost = self.keyword.len() + "  {  } else {  }".len();
889
890         if let ast::ExprKind::Block(ref else_node) = else_block.node {
891             if !is_simple_block(self.block, context.codemap)
892                 || !is_simple_block(else_node, context.codemap)
893                 || pat_expr_str.contains('\n')
894             {
895                 return None;
896             }
897
898             let new_width = width.checked_sub(pat_expr_str.len() + fixed_cost)?;
899             let expr = &self.block.stmts[0];
900             let if_str = expr.rewrite(context, Shape::legacy(new_width, Indent::empty()))?;
901
902             let new_width = new_width.checked_sub(if_str.len())?;
903             let else_expr = &else_node.stmts[0];
904             let else_str = else_expr.rewrite(context, Shape::legacy(new_width, Indent::empty()))?;
905
906             if if_str.contains('\n') || else_str.contains('\n') {
907                 return None;
908             }
909
910             let result = format!(
911                 "{} {} {{ {} }} else {{ {} }}",
912                 self.keyword, pat_expr_str, if_str, else_str
913             );
914
915             if result.len() <= width {
916                 return Some(result);
917             }
918         }
919
920         None
921     }
922 }
923
924 impl<'a> ControlFlow<'a> {
925     fn rewrite_pat_expr(
926         &self,
927         context: &RewriteContext,
928         expr: &ast::Expr,
929         shape: Shape,
930         offset: usize,
931     ) -> Option<String> {
932         debug!("rewrite_pat_expr {:?} {:?} {:?}", shape, self.pats, expr);
933
934         let cond_shape = shape.offset_left(offset)?;
935         if !self.pats.is_empty() {
936             let matcher = if self.matcher.is_empty() {
937                 self.matcher.to_owned()
938             } else {
939                 format!("{} ", self.matcher)
940             };
941             let pat_shape = cond_shape
942                 .offset_left(matcher.len())?
943                 .sub_width(self.connector.len())?;
944             let pat_string = rewrite_multiple_patterns(context, &self.pats, pat_shape)?;
945             let result = format!("{}{}{}", matcher, pat_string, self.connector);
946             return rewrite_assign_rhs(context, result, expr, cond_shape);
947         }
948
949         let expr_rw = expr.rewrite(context, cond_shape);
950         // The expression may (partially) fit on the current line.
951         // We do not allow splitting between `if` and condition.
952         if self.keyword == "if" || expr_rw.is_some() {
953             return expr_rw;
954         }
955
956         // The expression won't fit on the current line, jump to next.
957         let nested_shape = shape
958             .block_indent(context.config.tab_spaces())
959             .with_max_width(context.config);
960         let nested_indent_str = nested_shape.indent.to_string_with_newline(context.config);
961         expr.rewrite(context, nested_shape)
962             .map(|expr_rw| format!("{}{}", nested_indent_str, expr_rw))
963     }
964
965     fn rewrite_cond(
966         &self,
967         context: &RewriteContext,
968         shape: Shape,
969         alt_block_sep: &str,
970     ) -> Option<(String, usize)> {
971         // Do not take the rhs overhead from the upper expressions into account
972         // when rewriting pattern.
973         let new_width = context.budget(shape.used_width());
974         let fresh_shape = Shape {
975             width: new_width,
976             ..shape
977         };
978         let constr_shape = if self.nested_if {
979             // We are part of an if-elseif-else chain. Our constraints are tightened.
980             // 7 = "} else " .len()
981             fresh_shape.offset_left(7)?
982         } else {
983             fresh_shape
984         };
985
986         let label_string = rewrite_label(self.label);
987         // 1 = space after keyword.
988         let offset = self.keyword.len() + label_string.len() + 1;
989
990         let pat_expr_string = match self.cond {
991             Some(cond) => self.rewrite_pat_expr(context, cond, constr_shape, offset)?,
992             None => String::new(),
993         };
994
995         let brace_overhead =
996             if context.config.control_brace_style() != ControlBraceStyle::AlwaysNextLine {
997                 // 2 = ` {`
998                 2
999             } else {
1000                 0
1001             };
1002         let one_line_budget = context
1003             .config
1004             .max_width()
1005             .checked_sub(constr_shape.used_width() + offset + brace_overhead)
1006             .unwrap_or(0);
1007         let force_newline_brace = (pat_expr_string.contains('\n')
1008             || pat_expr_string.len() > one_line_budget)
1009             && !last_line_extendable(&pat_expr_string);
1010
1011         // Try to format if-else on single line.
1012         if self.allow_single_line
1013             && context
1014                 .config
1015                 .width_heuristics()
1016                 .single_line_if_else_max_width > 0
1017         {
1018             let trial = self.rewrite_single_line(&pat_expr_string, context, shape.width);
1019
1020             if let Some(cond_str) = trial {
1021                 if cond_str.len()
1022                     <= context
1023                         .config
1024                         .width_heuristics()
1025                         .single_line_if_else_max_width
1026                 {
1027                     return Some((cond_str, 0));
1028                 }
1029             }
1030         }
1031
1032         let cond_span = if let Some(cond) = self.cond {
1033             cond.span
1034         } else {
1035             mk_sp(self.block.span.lo(), self.block.span.lo())
1036         };
1037
1038         // `for event in event`
1039         // Do not include label in the span.
1040         let lo = self.label.map_or(self.span.lo(), |label| label.span.hi());
1041         let between_kwd_cond = mk_sp(
1042             context
1043                 .snippet_provider
1044                 .span_after(mk_sp(lo, self.span.hi()), self.keyword.trim()),
1045             if self.pats.is_empty() {
1046                 cond_span.lo()
1047             } else if self.matcher.is_empty() {
1048                 self.pats[0].span.lo()
1049             } else {
1050                 context
1051                     .snippet_provider
1052                     .span_before(self.span, self.matcher.trim())
1053             },
1054         );
1055
1056         let between_kwd_cond_comment = extract_comment(between_kwd_cond, context, shape);
1057
1058         let after_cond_comment =
1059             extract_comment(mk_sp(cond_span.hi(), self.block.span.lo()), context, shape);
1060
1061         let block_sep = if self.cond.is_none() && between_kwd_cond_comment.is_some() {
1062             ""
1063         } else if context.config.control_brace_style() == ControlBraceStyle::AlwaysNextLine
1064             || force_newline_brace
1065         {
1066             alt_block_sep
1067         } else {
1068             " "
1069         };
1070
1071         let used_width = if pat_expr_string.contains('\n') {
1072             last_line_width(&pat_expr_string)
1073         } else {
1074             // 2 = spaces after keyword and condition.
1075             label_string.len() + self.keyword.len() + pat_expr_string.len() + 2
1076         };
1077
1078         Some((
1079             format!(
1080                 "{}{}{}{}{}",
1081                 label_string,
1082                 self.keyword,
1083                 between_kwd_cond_comment.as_ref().map_or(
1084                     if pat_expr_string.is_empty() || pat_expr_string.starts_with('\n') {
1085                         ""
1086                     } else {
1087                         " "
1088                     },
1089                     |s| &**s,
1090                 ),
1091                 pat_expr_string,
1092                 after_cond_comment.as_ref().map_or(block_sep, |s| &**s)
1093             ),
1094             used_width,
1095         ))
1096     }
1097 }
1098
1099 impl<'a> Rewrite for ControlFlow<'a> {
1100     fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
1101         debug!("ControlFlow::rewrite {:?} {:?}", self, shape);
1102
1103         let alt_block_sep = &shape.indent.to_string_with_newline(context.config);
1104         let (cond_str, used_width) = self.rewrite_cond(context, shape, alt_block_sep)?;
1105         // If `used_width` is 0, it indicates that whole control flow is written in a single line.
1106         if used_width == 0 {
1107             return Some(cond_str);
1108         }
1109
1110         let block_width = shape.width.checked_sub(used_width).unwrap_or(0);
1111         // This is used only for the empty block case: `{}`. So, we use 1 if we know
1112         // we should avoid the single line case.
1113         let block_width = if self.else_block.is_some() || self.nested_if {
1114             min(1, block_width)
1115         } else {
1116             block_width
1117         };
1118         let block_shape = Shape {
1119             width: block_width,
1120             ..shape
1121         };
1122         let mut block_context = context.clone();
1123         block_context.is_if_else_block = self.else_block.is_some();
1124         let block_str =
1125             rewrite_block_with_visitor(&block_context, "", self.block, block_shape, true)?;
1126
1127         let mut result = format!("{}{}", cond_str, block_str);
1128
1129         if let Some(else_block) = self.else_block {
1130             let shape = Shape::indented(shape.indent, context.config);
1131             let mut last_in_chain = false;
1132             let rewrite = match else_block.node {
1133                 // If the else expression is another if-else expression, prevent it
1134                 // from being formatted on a single line.
1135                 // Note how we're passing the original shape, as the
1136                 // cost of "else" should not cascade.
1137                 ast::ExprKind::IfLet(ref pat, ref cond, ref if_block, ref next_else_block) => {
1138                     ControlFlow::new_if(
1139                         cond,
1140                         ptr_vec_to_ref_vec(pat),
1141                         if_block,
1142                         next_else_block.as_ref().map(|e| &**e),
1143                         false,
1144                         true,
1145                         mk_sp(else_block.span.lo(), self.span.hi()),
1146                     ).rewrite(context, shape)
1147                 }
1148                 ast::ExprKind::If(ref cond, ref if_block, ref next_else_block) => {
1149                     ControlFlow::new_if(
1150                         cond,
1151                         vec![],
1152                         if_block,
1153                         next_else_block.as_ref().map(|e| &**e),
1154                         false,
1155                         true,
1156                         mk_sp(else_block.span.lo(), self.span.hi()),
1157                     ).rewrite(context, shape)
1158                 }
1159                 _ => {
1160                     last_in_chain = true;
1161                     // When rewriting a block, the width is only used for single line
1162                     // blocks, passing 1 lets us avoid that.
1163                     let else_shape = Shape {
1164                         width: min(1, shape.width),
1165                         ..shape
1166                     };
1167                     format_expr(else_block, ExprType::Statement, context, else_shape)
1168                 }
1169             };
1170
1171             let between_kwd_else_block = mk_sp(
1172                 self.block.span.hi(),
1173                 context
1174                     .snippet_provider
1175                     .span_before(mk_sp(self.block.span.hi(), else_block.span.lo()), "else"),
1176             );
1177             let between_kwd_else_block_comment =
1178                 extract_comment(between_kwd_else_block, context, shape);
1179
1180             let after_else = mk_sp(
1181                 context
1182                     .snippet_provider
1183                     .span_after(mk_sp(self.block.span.hi(), else_block.span.lo()), "else"),
1184                 else_block.span.lo(),
1185             );
1186             let after_else_comment = extract_comment(after_else, context, shape);
1187
1188             let between_sep = match context.config.control_brace_style() {
1189                 ControlBraceStyle::AlwaysNextLine | ControlBraceStyle::ClosingNextLine => {
1190                     &*alt_block_sep
1191                 }
1192                 ControlBraceStyle::AlwaysSameLine => " ",
1193             };
1194             let after_sep = match context.config.control_brace_style() {
1195                 ControlBraceStyle::AlwaysNextLine if last_in_chain => &*alt_block_sep,
1196                 _ => " ",
1197             };
1198
1199             result.push_str(&format!(
1200                 "{}else{}",
1201                 between_kwd_else_block_comment
1202                     .as_ref()
1203                     .map_or(between_sep, |s| &**s),
1204                 after_else_comment.as_ref().map_or(after_sep, |s| &**s),
1205             ));
1206             result.push_str(&rewrite?);
1207         }
1208
1209         Some(result)
1210     }
1211 }
1212
1213 fn rewrite_label(opt_label: Option<ast::Label>) -> Cow<'static, str> {
1214     match opt_label {
1215         Some(label) => Cow::from(format!("{}: ", label.ident)),
1216         None => Cow::from(""),
1217     }
1218 }
1219
1220 fn extract_comment(span: Span, context: &RewriteContext, shape: Shape) -> Option<String> {
1221     match rewrite_missing_comment(span, shape, context) {
1222         Some(ref comment) if !comment.is_empty() => Some(format!(
1223             "{indent}{}{indent}",
1224             comment,
1225             indent = shape.indent.to_string_with_newline(context.config)
1226         )),
1227         _ => None,
1228     }
1229 }
1230
1231 pub fn block_contains_comment(block: &ast::Block, codemap: &CodeMap) -> bool {
1232     let snippet = codemap.span_to_snippet(block.span).unwrap();
1233     contains_comment(&snippet)
1234 }
1235
1236 // Checks that a block contains no statements, an expression and no comments.
1237 // FIXME: incorrectly returns false when comment is contained completely within
1238 // the expression.
1239 pub fn is_simple_block(block: &ast::Block, codemap: &CodeMap) -> bool {
1240     (block.stmts.len() == 1 && stmt_is_expr(&block.stmts[0])
1241         && !block_contains_comment(block, codemap))
1242 }
1243
1244 /// Checks whether a block contains at most one statement or expression, and no comments.
1245 pub fn is_simple_block_stmt(block: &ast::Block, codemap: &CodeMap) -> bool {
1246     block.stmts.len() <= 1 && !block_contains_comment(block, codemap)
1247 }
1248
1249 /// Checks whether a block contains no statements, expressions, or comments.
1250 pub fn is_empty_block(block: &ast::Block, codemap: &CodeMap) -> bool {
1251     block.stmts.is_empty() && !block_contains_comment(block, codemap)
1252 }
1253
1254 pub fn stmt_is_expr(stmt: &ast::Stmt) -> bool {
1255     match stmt.node {
1256         ast::StmtKind::Expr(..) => true,
1257         _ => false,
1258     }
1259 }
1260
1261 pub fn is_unsafe_block(block: &ast::Block) -> bool {
1262     if let ast::BlockCheckMode::Unsafe(..) = block.rules {
1263         true
1264     } else {
1265         false
1266     }
1267 }
1268
1269 /// A simple wrapper type against `ast::Arm`. Used inside `write_list()`.
1270 struct ArmWrapper<'a> {
1271     pub arm: &'a ast::Arm,
1272     /// True if the arm is the last one in match expression. Used to decide on whether we should add
1273     /// trailing comma to the match arm when `config.trailing_comma() == Never`.
1274     pub is_last: bool,
1275     /// Holds a byte position of `|` at the beginning of the arm pattern, if available.
1276     pub beginning_vert: Option<BytePos>,
1277 }
1278
1279 impl<'a> ArmWrapper<'a> {
1280     pub fn new(
1281         arm: &'a ast::Arm,
1282         is_last: bool,
1283         beginning_vert: Option<BytePos>,
1284     ) -> ArmWrapper<'a> {
1285         ArmWrapper {
1286             arm,
1287             is_last,
1288             beginning_vert,
1289         }
1290     }
1291 }
1292
1293 impl<'a> Spanned for ArmWrapper<'a> {
1294     fn span(&self) -> Span {
1295         if let Some(lo) = self.beginning_vert {
1296             mk_sp(lo, self.arm.span().hi())
1297         } else {
1298             self.arm.span()
1299         }
1300     }
1301 }
1302
1303 impl<'a> Rewrite for ArmWrapper<'a> {
1304     fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
1305         rewrite_match_arm(context, self.arm, shape, self.is_last, self.beginning_vert)
1306     }
1307 }
1308
1309 fn rewrite_match(
1310     context: &RewriteContext,
1311     cond: &ast::Expr,
1312     arms: &[ast::Arm],
1313     shape: Shape,
1314     span: Span,
1315     attrs: &[ast::Attribute],
1316 ) -> Option<String> {
1317     // Do not take the rhs overhead from the upper expressions into account
1318     // when rewriting match condition.
1319     let cond_shape = Shape {
1320         width: context.budget(shape.used_width()),
1321         ..shape
1322     };
1323     // 6 = `match `
1324     let cond_shape = match context.config.indent_style() {
1325         IndentStyle::Visual => cond_shape.shrink_left(6)?,
1326         IndentStyle::Block => cond_shape.offset_left(6)?,
1327     };
1328     let cond_str = cond.rewrite(context, cond_shape)?;
1329     let alt_block_sep = &shape.indent.to_string_with_newline(context.config);
1330     let block_sep = match context.config.control_brace_style() {
1331         ControlBraceStyle::AlwaysNextLine => alt_block_sep,
1332         _ if last_line_extendable(&cond_str) => " ",
1333         // 2 = ` {`
1334         _ if cond_str.contains('\n') || cond_str.len() + 2 > cond_shape.width => alt_block_sep,
1335         _ => " ",
1336     };
1337
1338     let nested_indent_str = shape
1339         .indent
1340         .block_indent(context.config)
1341         .to_string(context.config);
1342     // Inner attributes.
1343     let inner_attrs = &inner_attributes(attrs);
1344     let inner_attrs_str = if inner_attrs.is_empty() {
1345         String::new()
1346     } else {
1347         inner_attrs
1348             .rewrite(context, shape)
1349             .map(|s| format!("{}{}\n", nested_indent_str, s))?
1350     };
1351
1352     let open_brace_pos = if inner_attrs.is_empty() {
1353         let hi = if arms.is_empty() {
1354             span.hi()
1355         } else {
1356             arms[0].span().lo()
1357         };
1358         context
1359             .snippet_provider
1360             .span_after(mk_sp(cond.span.hi(), hi), "{")
1361     } else {
1362         inner_attrs[inner_attrs.len() - 1].span().hi()
1363     };
1364
1365     if arms.is_empty() {
1366         let snippet = context.snippet(mk_sp(open_brace_pos, span.hi() - BytePos(1)));
1367         if snippet.trim().is_empty() {
1368             Some(format!("match {} {{}}", cond_str))
1369         } else {
1370             // Empty match with comments or inner attributes? We are not going to bother, sorry ;)
1371             Some(context.snippet(span).to_owned())
1372         }
1373     } else {
1374         Some(format!(
1375             "match {}{}{{\n{}{}{}\n{}}}",
1376             cond_str,
1377             block_sep,
1378             inner_attrs_str,
1379             nested_indent_str,
1380             rewrite_match_arms(context, arms, shape, span, open_brace_pos)?,
1381             shape.indent.to_string(context.config),
1382         ))
1383     }
1384 }
1385
1386 fn arm_comma(config: &Config, body: &ast::Expr, is_last: bool) -> &'static str {
1387     if is_last && config.trailing_comma() == SeparatorTactic::Never {
1388         ""
1389     } else if config.match_block_trailing_comma() {
1390         ","
1391     } else if let ast::ExprKind::Block(ref block) = body.node {
1392         if let ast::BlockCheckMode::Default = block.rules {
1393             ""
1394         } else {
1395             ","
1396         }
1397     } else {
1398         ","
1399     }
1400 }
1401
1402 /// Collect a byte position of the beginning `|` for each arm, if available.
1403 fn collect_beginning_verts(
1404     context: &RewriteContext,
1405     arms: &[ast::Arm],
1406     span: Span,
1407 ) -> Vec<Option<BytePos>> {
1408     let mut beginning_verts = Vec::with_capacity(arms.len());
1409     let mut lo = context.snippet_provider.span_after(span, "{");
1410     for arm in arms {
1411         let hi = arm.pats[0].span.lo();
1412         let missing_span = mk_sp(lo, hi);
1413         beginning_verts.push(context.snippet_provider.opt_span_before(missing_span, "|"));
1414         lo = arm.span().hi();
1415     }
1416     beginning_verts
1417 }
1418
1419 fn rewrite_match_arms(
1420     context: &RewriteContext,
1421     arms: &[ast::Arm],
1422     shape: Shape,
1423     span: Span,
1424     open_brace_pos: BytePos,
1425 ) -> Option<String> {
1426     let arm_shape = shape
1427         .block_indent(context.config.tab_spaces())
1428         .with_max_width(context.config);
1429
1430     let arm_len = arms.len();
1431     let is_last_iter = repeat(false)
1432         .take(arm_len.checked_sub(1).unwrap_or(0))
1433         .chain(repeat(true));
1434     let beginning_verts = collect_beginning_verts(context, arms, span);
1435     let items = itemize_list(
1436         context.snippet_provider,
1437         arms.iter()
1438             .zip(is_last_iter)
1439             .zip(beginning_verts.into_iter())
1440             .map(|((arm, is_last), beginning_vert)| ArmWrapper::new(arm, is_last, beginning_vert)),
1441         "}",
1442         "|",
1443         |arm| arm.span().lo(),
1444         |arm| arm.span().hi(),
1445         |arm| arm.rewrite(context, arm_shape),
1446         open_brace_pos,
1447         span.hi(),
1448         false,
1449     );
1450     let arms_vec: Vec<_> = items.collect();
1451     let fmt = ListFormatting {
1452         tactic: DefinitiveListTactic::Vertical,
1453         // We will add/remove commas inside `arm.rewrite()`, and hence no separator here.
1454         separator: "",
1455         trailing_separator: SeparatorTactic::Never,
1456         separator_place: SeparatorPlace::Back,
1457         shape: arm_shape,
1458         ends_with_newline: true,
1459         preserve_newline: true,
1460         config: context.config,
1461     };
1462
1463     write_list(&arms_vec, &fmt)
1464 }
1465
1466 fn rewrite_match_arm(
1467     context: &RewriteContext,
1468     arm: &ast::Arm,
1469     shape: Shape,
1470     is_last: bool,
1471     beginning_vert: Option<BytePos>,
1472 ) -> Option<String> {
1473     let (missing_span, attrs_str) = if !arm.attrs.is_empty() {
1474         if contains_skip(&arm.attrs) {
1475             let (_, body) = flatten_arm_body(context, &arm.body);
1476             // `arm.span()` does not include trailing comma, add it manually.
1477             return Some(format!(
1478                 "{}{}",
1479                 context.snippet(arm.span()),
1480                 arm_comma(context.config, body, is_last),
1481             ));
1482         }
1483         let missing_span = mk_sp(
1484             arm.attrs[arm.attrs.len() - 1].span.hi(),
1485             arm.pats[0].span.lo(),
1486         );
1487         (missing_span, arm.attrs.rewrite(context, shape)?)
1488     } else {
1489         (mk_sp(arm.span().lo(), arm.span().lo()), String::new())
1490     };
1491     let pats_str = rewrite_match_pattern(
1492         context,
1493         &ptr_vec_to_ref_vec(&arm.pats),
1494         &arm.guard,
1495         beginning_vert.is_some(),
1496         shape,
1497     ).and_then(|pats_str| {
1498         combine_strs_with_missing_comments(
1499             context,
1500             &attrs_str,
1501             &pats_str,
1502             missing_span,
1503             shape,
1504             false,
1505         )
1506     })?;
1507     rewrite_match_body(
1508         context,
1509         &arm.body,
1510         &pats_str,
1511         shape,
1512         arm.guard.is_some(),
1513         is_last,
1514     )
1515 }
1516
1517 /// Returns true if the given pattern is short. A short pattern is defined by the following grammer:
1518 ///
1519 /// [small, ntp]:
1520 ///     - single token
1521 ///     - `&[single-line, ntp]`
1522 ///
1523 /// [small]:
1524 ///     - `[small, ntp]`
1525 ///     - unary tuple constructor `([small, ntp])`
1526 ///     - `&[small]`
1527 fn is_short_pattern(pat: &ast::Pat, pat_str: &str) -> bool {
1528     // We also require that the pattern is reasonably 'small' with its literal width.
1529     pat_str.len() <= 20 && !pat_str.contains('\n') && is_short_pattern_inner(pat)
1530 }
1531
1532 fn is_short_pattern_inner(pat: &ast::Pat) -> bool {
1533     match pat.node {
1534         ast::PatKind::Wild | ast::PatKind::Lit(_) => true,
1535         ast::PatKind::Ident(_, _, ref pat) => pat.is_none(),
1536         ast::PatKind::Struct(..)
1537         | ast::PatKind::Mac(..)
1538         | ast::PatKind::Slice(..)
1539         | ast::PatKind::Path(..)
1540         | ast::PatKind::Range(..) => false,
1541         ast::PatKind::Tuple(ref subpats, _) => subpats.len() <= 1,
1542         ast::PatKind::TupleStruct(ref path, ref subpats, _) => {
1543             path.segments.len() <= 1 && subpats.len() <= 1
1544         }
1545         ast::PatKind::Box(ref p) | ast::PatKind::Ref(ref p, _) | ast::PatKind::Paren(ref p) => {
1546             is_short_pattern_inner(&*p)
1547         }
1548     }
1549 }
1550
1551 fn rewrite_match_pattern(
1552     context: &RewriteContext,
1553     pats: &[&ast::Pat],
1554     guard: &Option<ptr::P<ast::Expr>>,
1555     has_beginning_vert: bool,
1556     shape: Shape,
1557 ) -> Option<String> {
1558     // Patterns
1559     // 5 = ` => {`
1560     // 2 = `| `
1561     let pat_shape = shape
1562         .sub_width(5)?
1563         .offset_left(if has_beginning_vert { 2 } else { 0 })?;
1564     let pats_str = rewrite_multiple_patterns(context, pats, pat_shape)?;
1565     let beginning_vert = if has_beginning_vert { "| " } else { "" };
1566
1567     // Guard
1568     let guard_str = rewrite_guard(context, guard, shape, trimmed_last_line_width(&pats_str))?;
1569
1570     Some(format!("{}{}{}", beginning_vert, pats_str, guard_str))
1571 }
1572
1573 // (extend, body)
1574 // @extend: true if the arm body can be put next to `=>`
1575 // @body: flattened body, if the body is block with a single expression
1576 fn flatten_arm_body<'a>(context: &'a RewriteContext, body: &'a ast::Expr) -> (bool, &'a ast::Expr) {
1577     match body.node {
1578         ast::ExprKind::Block(ref block)
1579             if !is_unsafe_block(block) && is_simple_block(block, context.codemap) =>
1580         {
1581             if let ast::StmtKind::Expr(ref expr) = block.stmts[0].node {
1582                 (
1583                     !context.config.force_multiline_blocks() && can_extend_match_arm_body(expr),
1584                     &*expr,
1585                 )
1586             } else {
1587                 (false, &*body)
1588             }
1589         }
1590         _ => (
1591             !context.config.force_multiline_blocks() && body.can_be_overflowed(context, 1),
1592             &*body,
1593         ),
1594     }
1595 }
1596
1597 fn rewrite_match_body(
1598     context: &RewriteContext,
1599     body: &ptr::P<ast::Expr>,
1600     pats_str: &str,
1601     shape: Shape,
1602     has_guard: bool,
1603     is_last: bool,
1604 ) -> Option<String> {
1605     let (extend, body) = flatten_arm_body(context, body);
1606     let (is_block, is_empty_block) = if let ast::ExprKind::Block(ref block) = body.node {
1607         (true, is_empty_block(block, context.codemap))
1608     } else {
1609         (false, false)
1610     };
1611
1612     let comma = arm_comma(context.config, body, is_last);
1613     let alt_block_sep = &shape.indent.to_string_with_newline(context.config);
1614
1615     let combine_orig_body = |body_str: &str| {
1616         let block_sep = match context.config.control_brace_style() {
1617             ControlBraceStyle::AlwaysNextLine if is_block => alt_block_sep,
1618             _ => " ",
1619         };
1620
1621         Some(format!("{} =>{}{}{}", pats_str, block_sep, body_str, comma))
1622     };
1623
1624     let forbid_same_line = has_guard && pats_str.contains('\n') && !is_empty_block;
1625     let next_line_indent = if !is_block || is_empty_block {
1626         shape.indent.block_indent(context.config)
1627     } else {
1628         shape.indent
1629     };
1630     let combine_next_line_body = |body_str: &str| {
1631         if is_block {
1632             return Some(format!(
1633                 "{} =>{}{}",
1634                 pats_str,
1635                 next_line_indent.to_string_with_newline(context.config),
1636                 body_str
1637             ));
1638         }
1639
1640         let indent_str = shape.indent.to_string_with_newline(context.config);
1641         let nested_indent_str = next_line_indent.to_string_with_newline(context.config);
1642         let (body_prefix, body_suffix) = if context.config.match_arm_blocks() {
1643             let comma = if context.config.match_block_trailing_comma() {
1644                 ","
1645             } else {
1646                 ""
1647             };
1648             ("{", format!("{}}}{}", indent_str, comma))
1649         } else {
1650             ("", String::from(","))
1651         };
1652
1653         let block_sep = match context.config.control_brace_style() {
1654             ControlBraceStyle::AlwaysNextLine => format!("{}{}", alt_block_sep, body_prefix),
1655             _ if body_prefix.is_empty() => "".to_owned(),
1656             _ if forbid_same_line => format!("{}{}", alt_block_sep, body_prefix),
1657             _ => format!(" {}", body_prefix),
1658         } + &nested_indent_str;
1659
1660         Some(format!(
1661             "{} =>{}{}{}",
1662             pats_str, block_sep, body_str, body_suffix
1663         ))
1664     };
1665
1666     // Let's try and get the arm body on the same line as the condition.
1667     // 4 = ` => `.len()
1668     let orig_body_shape = shape
1669         .offset_left(extra_offset(pats_str, shape) + 4)
1670         .and_then(|shape| shape.sub_width(comma.len()));
1671     let orig_body = if let Some(body_shape) = orig_body_shape {
1672         let rewrite = nop_block_collapse(
1673             format_expr(body, ExprType::Statement, context, body_shape),
1674             body_shape.width,
1675         );
1676
1677         match rewrite {
1678             Some(ref body_str)
1679                 if !forbid_same_line
1680                     && (is_block
1681                         || (!body_str.contains('\n') && body_str.len() <= body_shape.width)) =>
1682             {
1683                 return combine_orig_body(body_str);
1684             }
1685             _ => rewrite,
1686         }
1687     } else {
1688         None
1689     };
1690     let orig_budget = orig_body_shape.map_or(0, |shape| shape.width);
1691
1692     // Try putting body on the next line and see if it looks better.
1693     let next_line_body_shape = Shape::indented(next_line_indent, context.config);
1694     let next_line_body = nop_block_collapse(
1695         format_expr(body, ExprType::Statement, context, next_line_body_shape),
1696         next_line_body_shape.width,
1697     );
1698     match (orig_body, next_line_body) {
1699         (Some(ref orig_str), Some(ref next_line_str))
1700             if forbid_same_line || prefer_next_line(orig_str, next_line_str) =>
1701         {
1702             combine_next_line_body(next_line_str)
1703         }
1704         (Some(ref orig_str), _) if extend && first_line_width(orig_str) <= orig_budget => {
1705             combine_orig_body(orig_str)
1706         }
1707         (Some(ref orig_str), Some(ref next_line_str)) if orig_str.contains('\n') => {
1708             combine_next_line_body(next_line_str)
1709         }
1710         (None, Some(ref next_line_str)) => combine_next_line_body(next_line_str),
1711         (None, None) => None,
1712         (Some(ref orig_str), _) => combine_orig_body(orig_str),
1713     }
1714 }
1715
1716 // The `if ...` guard on a match arm.
1717 fn rewrite_guard(
1718     context: &RewriteContext,
1719     guard: &Option<ptr::P<ast::Expr>>,
1720     shape: Shape,
1721     // The amount of space used up on this line for the pattern in
1722     // the arm (excludes offset).
1723     pattern_width: usize,
1724 ) -> Option<String> {
1725     if let Some(ref guard) = *guard {
1726         // First try to fit the guard string on the same line as the pattern.
1727         // 4 = ` if `, 5 = ` => {`
1728         let cond_shape = shape
1729             .offset_left(pattern_width + 4)
1730             .and_then(|s| s.sub_width(5));
1731         if let Some(cond_shape) = cond_shape {
1732             if let Some(cond_str) = guard.rewrite(context, cond_shape) {
1733                 if !cond_str.contains('\n') || pattern_width <= context.config.tab_spaces() {
1734                     return Some(format!(" if {}", cond_str));
1735                 }
1736             }
1737         }
1738
1739         // Not enough space to put the guard after the pattern, try a newline.
1740         // 3 = `if `, 5 = ` => {`
1741         let cond_shape = Shape::indented(shape.indent.block_indent(context.config), context.config)
1742             .offset_left(3)
1743             .and_then(|s| s.sub_width(5));
1744         if let Some(cond_shape) = cond_shape {
1745             if let Some(cond_str) = guard.rewrite(context, cond_shape) {
1746                 return Some(format!(
1747                     "{}if {}",
1748                     cond_shape.indent.to_string_with_newline(context.config),
1749                     cond_str
1750                 ));
1751             }
1752         }
1753
1754         None
1755     } else {
1756         Some(String::new())
1757     }
1758 }
1759
1760 fn rewrite_multiple_patterns(
1761     context: &RewriteContext,
1762     pats: &[&ast::Pat],
1763     shape: Shape,
1764 ) -> Option<String> {
1765     let pat_strs = pats.iter()
1766         .map(|p| p.rewrite(context, shape))
1767         .collect::<Option<Vec<_>>>()?;
1768
1769     let use_mixed_layout = pats.iter()
1770         .zip(pat_strs.iter())
1771         .all(|(pat, pat_str)| is_short_pattern(pat, pat_str));
1772     let items: Vec<_> = pat_strs.into_iter().map(ListItem::from_str).collect();
1773     let tactic = if use_mixed_layout {
1774         DefinitiveListTactic::Mixed
1775     } else {
1776         definitive_tactic(
1777             &items,
1778             ListTactic::HorizontalVertical,
1779             Separator::VerticalBar,
1780             shape.width,
1781         )
1782     };
1783     let fmt = ListFormatting {
1784         tactic,
1785         separator: " |",
1786         trailing_separator: SeparatorTactic::Never,
1787         separator_place: context.config.binop_separator(),
1788         shape,
1789         ends_with_newline: false,
1790         preserve_newline: false,
1791         config: context.config,
1792     };
1793     write_list(&items, &fmt)
1794 }
1795
1796 fn can_extend_match_arm_body(body: &ast::Expr) -> bool {
1797     match body.node {
1798         // We do not allow `if` to stay on the same line, since we could easily mistake
1799         // `pat => if cond { ... }` and `pat if cond => { ... }`.
1800         ast::ExprKind::If(..) | ast::ExprKind::IfLet(..) => false,
1801         ast::ExprKind::ForLoop(..)
1802         | ast::ExprKind::Loop(..)
1803         | ast::ExprKind::While(..)
1804         | ast::ExprKind::WhileLet(..)
1805         | ast::ExprKind::Match(..)
1806         | ast::ExprKind::Block(..)
1807         | ast::ExprKind::Closure(..)
1808         | ast::ExprKind::Array(..)
1809         | ast::ExprKind::Call(..)
1810         | ast::ExprKind::MethodCall(..)
1811         | ast::ExprKind::Mac(..)
1812         | ast::ExprKind::Struct(..)
1813         | ast::ExprKind::Tup(..) => true,
1814         ast::ExprKind::AddrOf(_, ref expr)
1815         | ast::ExprKind::Box(ref expr)
1816         | ast::ExprKind::Try(ref expr)
1817         | ast::ExprKind::Unary(_, ref expr)
1818         | ast::ExprKind::Cast(ref expr, _) => can_extend_match_arm_body(expr),
1819         _ => false,
1820     }
1821 }
1822
1823 pub fn rewrite_literal(context: &RewriteContext, l: &ast::Lit, shape: Shape) -> Option<String> {
1824     match l.node {
1825         ast::LitKind::Str(_, ast::StrStyle::Cooked) => rewrite_string_lit(context, l.span, shape),
1826         _ => wrap_str(
1827             context.snippet(l.span).to_owned(),
1828             context.config.max_width(),
1829             shape,
1830         ),
1831     }
1832 }
1833
1834 fn rewrite_string_lit(context: &RewriteContext, span: Span, shape: Shape) -> Option<String> {
1835     let string_lit = context.snippet(span);
1836
1837     if !context.config.format_strings() {
1838         if string_lit
1839             .lines()
1840             .rev()
1841             .skip(1)
1842             .all(|line| line.ends_with('\\'))
1843         {
1844             let new_indent = shape.visual_indent(1).indent;
1845             let indented_string_lit = String::from(
1846                 string_lit
1847                     .lines()
1848                     .map(|line| {
1849                         format!(
1850                             "{}{}",
1851                             new_indent.to_string(context.config),
1852                             line.trim_left()
1853                         )
1854                     })
1855                     .collect::<Vec<_>>()
1856                     .join("\n")
1857                     .trim_left(),
1858             );
1859             return wrap_str(indented_string_lit, context.config.max_width(), shape);
1860         } else {
1861             return wrap_str(string_lit.to_owned(), context.config.max_width(), shape);
1862         }
1863     }
1864
1865     // Remove the quote characters.
1866     let str_lit = &string_lit[1..string_lit.len() - 1];
1867
1868     rewrite_string(
1869         str_lit,
1870         &StringFormat::new(shape.visual_indent(0), context.config),
1871         None,
1872     )
1873 }
1874
1875 /// A list of `format!`-like macros, that take a long format string and a list of arguments to
1876 /// format.
1877 ///
1878 /// Organized as a list of `(&str, usize)` tuples, giving the name of the macro and the number of
1879 /// arguments before the format string (none for `format!("format", ...)`, one for `assert!(result,
1880 /// "format", ...)`, two for `assert_eq!(left, right, "format", ...)`).
1881 const SPECIAL_MACRO_WHITELIST: &[(&str, usize)] = &[
1882     // format! like macros
1883     // From the Rust Standard Library.
1884     ("eprint!", 0),
1885     ("eprintln!", 0),
1886     ("format!", 0),
1887     ("format_args!", 0),
1888     ("print!", 0),
1889     ("println!", 0),
1890     ("panic!", 0),
1891     ("unreachable!", 0),
1892     // From the `log` crate.
1893     ("debug!", 0),
1894     ("error!", 0),
1895     ("info!", 0),
1896     ("warn!", 0),
1897     // write! like macros
1898     ("assert!", 1),
1899     ("debug_assert!", 1),
1900     ("write!", 1),
1901     ("writeln!", 1),
1902     // assert_eq! like macros
1903     ("assert_eq!", 2),
1904     ("assert_ne!", 2),
1905     ("debug_assert_eq!", 2),
1906     ("debug_assert_ne!", 2),
1907 ];
1908
1909 pub fn rewrite_call(
1910     context: &RewriteContext,
1911     callee: &str,
1912     args: &[ptr::P<ast::Expr>],
1913     span: Span,
1914     shape: Shape,
1915 ) -> Option<String> {
1916     let force_trailing_comma = if context.inside_macro {
1917         span_ends_with_comma(context, span)
1918     } else {
1919         false
1920     };
1921     rewrite_call_inner(
1922         context,
1923         callee,
1924         &ptr_vec_to_ref_vec(args),
1925         span,
1926         shape,
1927         context.config.width_heuristics().fn_call_width,
1928         force_trailing_comma,
1929     )
1930 }
1931
1932 pub fn rewrite_call_inner<'a, T>(
1933     context: &RewriteContext,
1934     callee_str: &str,
1935     args: &[&T],
1936     span: Span,
1937     shape: Shape,
1938     args_max_width: usize,
1939     force_trailing_comma: bool,
1940 ) -> Option<String>
1941 where
1942     T: Rewrite + Spanned + ToExpr + 'a,
1943 {
1944     // 2 = `( `, 1 = `(`
1945     let paren_overhead = if context.config.spaces_within_parens_and_brackets() {
1946         2
1947     } else {
1948         1
1949     };
1950     let used_width = extra_offset(callee_str, shape);
1951     let one_line_width = shape
1952         .width
1953         .checked_sub(used_width + 2 * paren_overhead)
1954         .unwrap_or(0);
1955
1956     // 1 = "(" or ")"
1957     let one_line_shape = shape
1958         .offset_left(last_line_width(callee_str) + 1)
1959         .and_then(|shape| shape.sub_width(1))
1960         .unwrap_or(Shape { width: 0, ..shape });
1961     let nested_shape = shape_from_indent_style(
1962         context,
1963         shape,
1964         used_width + 2 * paren_overhead,
1965         used_width + paren_overhead,
1966     )?;
1967
1968     let span_lo = context.snippet_provider.span_after(span, "(");
1969     let args_span = mk_sp(span_lo, span.hi());
1970
1971     let (extendable, list_str) = rewrite_call_args(
1972         context,
1973         args,
1974         args_span,
1975         one_line_shape,
1976         nested_shape,
1977         one_line_width,
1978         args_max_width,
1979         force_trailing_comma,
1980         callee_str,
1981     )?;
1982
1983     if !context.use_block_indent() && need_block_indent(&list_str, nested_shape) && !extendable {
1984         let mut new_context = context.clone();
1985         new_context.use_block = true;
1986         return rewrite_call_inner(
1987             &new_context,
1988             callee_str,
1989             args,
1990             span,
1991             shape,
1992             args_max_width,
1993             force_trailing_comma,
1994         );
1995     }
1996
1997     let args_shape = Shape {
1998         width: shape
1999             .width
2000             .checked_sub(last_line_width(callee_str))
2001             .unwrap_or(0),
2002         ..shape
2003     };
2004     Some(format!(
2005         "{}{}",
2006         callee_str,
2007         wrap_args_with_parens(context, &list_str, extendable, args_shape, nested_shape)
2008     ))
2009 }
2010
2011 fn need_block_indent(s: &str, shape: Shape) -> bool {
2012     s.lines().skip(1).any(|s| {
2013         s.find(|c| !char::is_whitespace(c))
2014             .map_or(false, |w| w + 1 < shape.indent.width())
2015     })
2016 }
2017
2018 fn rewrite_call_args<'a, T>(
2019     context: &RewriteContext,
2020     args: &[&T],
2021     span: Span,
2022     one_line_shape: Shape,
2023     nested_shape: Shape,
2024     one_line_width: usize,
2025     args_max_width: usize,
2026     force_trailing_comma: bool,
2027     callee_str: &str,
2028 ) -> Option<(bool, String)>
2029 where
2030     T: Rewrite + Spanned + ToExpr + 'a,
2031 {
2032     let items = itemize_list(
2033         context.snippet_provider,
2034         args.iter(),
2035         ")",
2036         ",",
2037         |item| item.span().lo(),
2038         |item| item.span().hi(),
2039         |item| item.rewrite(context, nested_shape),
2040         span.lo(),
2041         span.hi(),
2042         true,
2043     );
2044     let mut item_vec: Vec<_> = items.collect();
2045
2046     // Try letting the last argument overflow to the next line with block
2047     // indentation. If its first line fits on one line with the other arguments,
2048     // we format the function arguments horizontally.
2049     let tactic = try_overflow_last_arg(
2050         context,
2051         &mut item_vec,
2052         &args[..],
2053         one_line_shape,
2054         nested_shape,
2055         one_line_width,
2056         args_max_width,
2057         callee_str,
2058     );
2059
2060     let fmt = ListFormatting {
2061         tactic,
2062         separator: ",",
2063         trailing_separator: if force_trailing_comma {
2064             SeparatorTactic::Always
2065         } else if context.inside_macro || !context.use_block_indent() {
2066             SeparatorTactic::Never
2067         } else {
2068             context.config.trailing_comma()
2069         },
2070         separator_place: SeparatorPlace::Back,
2071         shape: nested_shape,
2072         ends_with_newline: context.use_block_indent() && tactic == DefinitiveListTactic::Vertical,
2073         preserve_newline: false,
2074         config: context.config,
2075     };
2076
2077     write_list(&item_vec, &fmt)
2078         .map(|args_str| (tactic == DefinitiveListTactic::Horizontal, args_str))
2079 }
2080
2081 fn try_overflow_last_arg<'a, T>(
2082     context: &RewriteContext,
2083     item_vec: &mut Vec<ListItem>,
2084     args: &[&T],
2085     one_line_shape: Shape,
2086     nested_shape: Shape,
2087     one_line_width: usize,
2088     args_max_width: usize,
2089     callee_str: &str,
2090 ) -> DefinitiveListTactic
2091 where
2092     T: Rewrite + Spanned + ToExpr + 'a,
2093 {
2094     // 1 = "("
2095     let combine_arg_with_callee =
2096         callee_str.len() + 1 <= context.config.tab_spaces() && args.len() == 1;
2097     let overflow_last = combine_arg_with_callee || can_be_overflowed(context, args);
2098
2099     // Replace the last item with its first line to see if it fits with
2100     // first arguments.
2101     let placeholder = if overflow_last {
2102         let mut context = context.clone();
2103         if !combine_arg_with_callee {
2104             if let Some(expr) = args[args.len() - 1].to_expr() {
2105                 if let ast::ExprKind::MethodCall(..) = expr.node {
2106                     context.force_one_line_chain = true;
2107                 }
2108             }
2109         }
2110         last_arg_shape(args, item_vec, one_line_shape, args_max_width).and_then(|arg_shape| {
2111             rewrite_last_arg_with_overflow(&context, args, &mut item_vec[args.len() - 1], arg_shape)
2112         })
2113     } else {
2114         None
2115     };
2116
2117     let mut tactic = definitive_tactic(
2118         &*item_vec,
2119         ListTactic::LimitedHorizontalVertical(args_max_width),
2120         Separator::Comma,
2121         one_line_width,
2122     );
2123
2124     // Replace the stub with the full overflowing last argument if the rewrite
2125     // succeeded and its first line fits with the other arguments.
2126     match (overflow_last, tactic, placeholder) {
2127         (true, DefinitiveListTactic::Horizontal, Some(ref overflowed)) if args.len() == 1 => {
2128             // When we are rewriting a nested function call, we restrict the
2129             // bugdet for the inner function to avoid them being deeply nested.
2130             // However, when the inner function has a prefix or a suffix
2131             // (e.g. `foo() as u32`), this budget reduction may produce poorly
2132             // formatted code, where a prefix or a suffix being left on its own
2133             // line. Here we explicitlly check those cases.
2134             if count_newlines(overflowed) == 1 {
2135                 let rw = args.last()
2136                     .and_then(|last_arg| last_arg.rewrite(context, nested_shape));
2137                 let no_newline = rw.as_ref().map_or(false, |s| !s.contains('\n'));
2138                 if no_newline {
2139                     item_vec[args.len() - 1].item = rw;
2140                 } else {
2141                     item_vec[args.len() - 1].item = Some(overflowed.to_owned());
2142                 }
2143             } else {
2144                 item_vec[args.len() - 1].item = Some(overflowed.to_owned());
2145             }
2146         }
2147         (true, DefinitiveListTactic::Horizontal, placeholder @ Some(..)) => {
2148             item_vec[args.len() - 1].item = placeholder;
2149         }
2150         _ if args.len() >= 1 => {
2151             item_vec[args.len() - 1].item = args.last()
2152                 .and_then(|last_arg| last_arg.rewrite(context, nested_shape));
2153
2154             let default_tactic = || {
2155                 definitive_tactic(
2156                     &*item_vec,
2157                     ListTactic::LimitedHorizontalVertical(args_max_width),
2158                     Separator::Comma,
2159                     one_line_width,
2160                 )
2161             };
2162
2163             // Use horizontal layout for a function with a single argument as long as
2164             // everything fits in a single line.
2165             if args.len() == 1
2166                 && args_max_width != 0 // Vertical layout is forced.
2167                 && !item_vec[0].has_comment()
2168                 && !item_vec[0].inner_as_ref().contains('\n')
2169                 && ::lists::total_item_width(&item_vec[0]) <= one_line_width
2170             {
2171                 tactic = DefinitiveListTactic::Horizontal;
2172             } else {
2173                 tactic = default_tactic();
2174
2175                 if tactic == DefinitiveListTactic::Vertical {
2176                     if let Some((all_simple, num_args_before)) =
2177                         maybe_get_args_offset(callee_str, args)
2178                     {
2179                         let one_line = all_simple
2180                             && definitive_tactic(
2181                                 &item_vec[..num_args_before],
2182                                 ListTactic::HorizontalVertical,
2183                                 Separator::Comma,
2184                                 nested_shape.width,
2185                             ) == DefinitiveListTactic::Horizontal
2186                             && definitive_tactic(
2187                                 &item_vec[num_args_before + 1..],
2188                                 ListTactic::HorizontalVertical,
2189                                 Separator::Comma,
2190                                 nested_shape.width,
2191                             ) == DefinitiveListTactic::Horizontal;
2192
2193                         if one_line {
2194                             tactic = DefinitiveListTactic::SpecialMacro(num_args_before);
2195                         };
2196                     }
2197                 }
2198             }
2199         }
2200         _ => (),
2201     }
2202
2203     tactic
2204 }
2205
2206 fn is_simple_arg(expr: &ast::Expr) -> bool {
2207     match expr.node {
2208         ast::ExprKind::Lit(..) => true,
2209         ast::ExprKind::Path(ref qself, ref path) => qself.is_none() && path.segments.len() <= 1,
2210         ast::ExprKind::AddrOf(_, ref expr)
2211         | ast::ExprKind::Box(ref expr)
2212         | ast::ExprKind::Cast(ref expr, _)
2213         | ast::ExprKind::Field(ref expr, _)
2214         | ast::ExprKind::Try(ref expr)
2215         | ast::ExprKind::TupField(ref expr, _)
2216         | ast::ExprKind::Unary(_, ref expr) => is_simple_arg(expr),
2217         ast::ExprKind::Index(ref lhs, ref rhs) | ast::ExprKind::Repeat(ref lhs, ref rhs) => {
2218             is_simple_arg(lhs) && is_simple_arg(rhs)
2219         }
2220         _ => false,
2221     }
2222 }
2223
2224 fn is_every_args_simple<T: ToExpr>(lists: &[&T]) -> bool {
2225     lists
2226         .iter()
2227         .all(|arg| arg.to_expr().map_or(false, is_simple_arg))
2228 }
2229
2230 /// In case special-case style is required, returns an offset from which we start horizontal layout.
2231 fn maybe_get_args_offset<T: ToExpr>(callee_str: &str, args: &[&T]) -> Option<(bool, usize)> {
2232     if let Some(&(_, num_args_before)) = SPECIAL_MACRO_WHITELIST
2233         .iter()
2234         .find(|&&(s, _)| s == callee_str)
2235     {
2236         let all_simple = args.len() > num_args_before && is_every_args_simple(args);
2237
2238         Some((all_simple, num_args_before))
2239     } else {
2240         None
2241     }
2242 }
2243
2244 /// Returns a shape for the last argument which is going to be overflowed.
2245 fn last_arg_shape<T>(
2246     lists: &[&T],
2247     items: &[ListItem],
2248     shape: Shape,
2249     args_max_width: usize,
2250 ) -> Option<Shape>
2251 where
2252     T: Rewrite + Spanned + ToExpr,
2253 {
2254     let is_nested_call = lists
2255         .iter()
2256         .next()
2257         .and_then(|item| item.to_expr())
2258         .map_or(false, is_nested_call);
2259     if items.len() == 1 && !is_nested_call {
2260         return Some(shape);
2261     }
2262     let offset = items.iter().rev().skip(1).fold(0, |acc, i| {
2263         // 2 = ", "
2264         acc + 2 + i.inner_as_ref().len()
2265     });
2266     Shape {
2267         width: min(args_max_width, shape.width),
2268         ..shape
2269     }.offset_left(offset)
2270 }
2271
2272 fn rewrite_last_arg_with_overflow<'a, T>(
2273     context: &RewriteContext,
2274     args: &[&T],
2275     last_item: &mut ListItem,
2276     shape: Shape,
2277 ) -> Option<String>
2278 where
2279     T: Rewrite + Spanned + ToExpr + 'a,
2280 {
2281     let last_arg = args[args.len() - 1];
2282     let rewrite = if let Some(expr) = last_arg.to_expr() {
2283         match expr.node {
2284             // When overflowing the closure which consists of a single control flow expression,
2285             // force to use block if its condition uses multi line.
2286             ast::ExprKind::Closure(..) => {
2287                 // If the argument consists of multiple closures, we do not overflow
2288                 // the last closure.
2289                 if closures::args_have_many_closure(args) {
2290                     None
2291                 } else {
2292                     closures::rewrite_last_closure(context, expr, shape)
2293                 }
2294             }
2295             _ => expr.rewrite(context, shape),
2296         }
2297     } else {
2298         last_arg.rewrite(context, shape)
2299     };
2300
2301     if let Some(rewrite) = rewrite {
2302         let rewrite_first_line = Some(rewrite[..first_line_width(&rewrite)].to_owned());
2303         last_item.item = rewrite_first_line;
2304         Some(rewrite)
2305     } else {
2306         None
2307     }
2308 }
2309
2310 fn can_be_overflowed<'a, T>(context: &RewriteContext, args: &[&T]) -> bool
2311 where
2312     T: Rewrite + Spanned + ToExpr + 'a,
2313 {
2314     args.last()
2315         .map_or(false, |x| x.can_be_overflowed(context, args.len()))
2316 }
2317
2318 pub fn can_be_overflowed_expr(context: &RewriteContext, expr: &ast::Expr, args_len: usize) -> bool {
2319     match expr.node {
2320         ast::ExprKind::Match(..) => {
2321             (context.use_block_indent() && args_len == 1)
2322                 || (context.config.indent_style() == IndentStyle::Visual && args_len > 1)
2323         }
2324         ast::ExprKind::If(..)
2325         | ast::ExprKind::IfLet(..)
2326         | ast::ExprKind::ForLoop(..)
2327         | ast::ExprKind::Loop(..)
2328         | ast::ExprKind::While(..)
2329         | ast::ExprKind::WhileLet(..) => {
2330             context.config.combine_control_expr() && context.use_block_indent() && args_len == 1
2331         }
2332         ast::ExprKind::Block(..) | ast::ExprKind::Closure(..) => {
2333             context.use_block_indent()
2334                 || context.config.indent_style() == IndentStyle::Visual && args_len > 1
2335         }
2336         ast::ExprKind::Array(..)
2337         | ast::ExprKind::Call(..)
2338         | ast::ExprKind::Mac(..)
2339         | ast::ExprKind::MethodCall(..)
2340         | ast::ExprKind::Struct(..)
2341         | ast::ExprKind::Tup(..) => context.use_block_indent() && args_len == 1,
2342         ast::ExprKind::AddrOf(_, ref expr)
2343         | ast::ExprKind::Box(ref expr)
2344         | ast::ExprKind::Try(ref expr)
2345         | ast::ExprKind::Unary(_, ref expr)
2346         | ast::ExprKind::Cast(ref expr, _) => can_be_overflowed_expr(context, expr, args_len),
2347         _ => false,
2348     }
2349 }
2350
2351 fn is_nested_call(expr: &ast::Expr) -> bool {
2352     match expr.node {
2353         ast::ExprKind::Call(..) | ast::ExprKind::Mac(..) => true,
2354         ast::ExprKind::AddrOf(_, ref expr)
2355         | ast::ExprKind::Box(ref expr)
2356         | ast::ExprKind::Try(ref expr)
2357         | ast::ExprKind::Unary(_, ref expr)
2358         | ast::ExprKind::Cast(ref expr, _) => is_nested_call(expr),
2359         _ => false,
2360     }
2361 }
2362
2363 pub fn wrap_args_with_parens(
2364     context: &RewriteContext,
2365     args_str: &str,
2366     is_extendable: bool,
2367     shape: Shape,
2368     nested_shape: Shape,
2369 ) -> String {
2370     let paren_overhead = paren_overhead(context);
2371     let fits_one_line = args_str.len() + paren_overhead <= shape.width;
2372     let extend_width = if args_str.is_empty() {
2373         paren_overhead
2374     } else {
2375         paren_overhead / 2
2376     };
2377     if !context.use_block_indent()
2378         || (context.inside_macro && !args_str.contains('\n') && fits_one_line)
2379         || (is_extendable && extend_width <= shape.width)
2380     {
2381         let mut result = String::with_capacity(args_str.len() + 4);
2382         if context.config.spaces_within_parens_and_brackets() && !args_str.is_empty() {
2383             result.push_str("( ");
2384             result.push_str(args_str);
2385             result.push_str(" )");
2386         } else {
2387             result.push_str("(");
2388             result.push_str(args_str);
2389             result.push_str(")");
2390         }
2391         result
2392     } else {
2393         let nested_indent_str = nested_shape.indent.to_string_with_newline(context.config);
2394         let indent_str = shape.block().indent.to_string_with_newline(context.config);
2395         let mut result =
2396             String::with_capacity(args_str.len() + 2 + indent_str.len() + nested_indent_str.len());
2397         result.push_str("(");
2398         if !args_str.is_empty() {
2399             result.push_str(&nested_indent_str);
2400             result.push_str(args_str);
2401         }
2402         result.push_str(&indent_str);
2403         result.push_str(")");
2404         result
2405     }
2406 }
2407
2408 /// Return true if a function call or a method call represented by the given span ends with a
2409 /// trailing comma. This function is used when rewriting macro, as adding or removing a trailing
2410 /// comma from macro can potentially break the code.
2411 fn span_ends_with_comma(context: &RewriteContext, span: Span) -> bool {
2412     let mut result: bool = Default::default();
2413     let mut prev_char: char = Default::default();
2414
2415     for (kind, c) in CharClasses::new(context.snippet(span).chars()) {
2416         match c {
2417             _ if kind.is_comment() || c.is_whitespace() => continue,
2418             ')' | '}' => result = result && prev_char != c,
2419             ',' => result = true,
2420             _ => result = false,
2421         }
2422         prev_char = c;
2423     }
2424
2425     result
2426 }
2427
2428 fn rewrite_paren(
2429     context: &RewriteContext,
2430     mut subexpr: &ast::Expr,
2431     shape: Shape,
2432     mut span: Span,
2433 ) -> Option<String> {
2434     debug!("rewrite_paren, shape: {:?}", shape);
2435
2436     // Extract comments within parens.
2437     let mut pre_comment;
2438     let mut post_comment;
2439     loop {
2440         // 1 = "(" or ")"
2441         let pre_span = mk_sp(span.lo() + BytePos(1), subexpr.span.lo());
2442         let post_span = mk_sp(subexpr.span.hi(), span.hi() - BytePos(1));
2443         pre_comment = rewrite_missing_comment(pre_span, shape, context)?;
2444         post_comment = rewrite_missing_comment(post_span, shape, context)?;
2445
2446         // Remove nested parens if there are no comments.
2447         if let ast::ExprKind::Paren(ref subsubexpr) = subexpr.node {
2448             if pre_comment.is_empty() && post_comment.is_empty() {
2449                 span = subexpr.span;
2450                 subexpr = subsubexpr;
2451                 continue;
2452             }
2453         }
2454
2455         break;
2456     }
2457
2458     let total_paren_overhead = paren_overhead(context);
2459     let paren_overhead = total_paren_overhead / 2;
2460     let sub_shape = shape
2461         .offset_left(paren_overhead)
2462         .and_then(|s| s.sub_width(paren_overhead))?;
2463
2464     let paren_wrapper = |s: &str| {
2465         if context.config.spaces_within_parens_and_brackets() && !s.is_empty() {
2466             format!("( {}{}{} )", pre_comment, s, post_comment)
2467         } else {
2468             format!("({}{}{})", pre_comment, s, post_comment)
2469         }
2470     };
2471
2472     let subexpr_str = subexpr.rewrite(context, sub_shape)?;
2473     debug!("rewrite_paren, subexpr_str: `{:?}`", subexpr_str);
2474
2475     if subexpr_str.contains('\n')
2476         || first_line_width(&subexpr_str) + total_paren_overhead <= shape.width
2477     {
2478         Some(paren_wrapper(&subexpr_str))
2479     } else {
2480         None
2481     }
2482 }
2483
2484 fn rewrite_index(
2485     expr: &ast::Expr,
2486     index: &ast::Expr,
2487     context: &RewriteContext,
2488     shape: Shape,
2489 ) -> Option<String> {
2490     let expr_str = expr.rewrite(context, shape)?;
2491
2492     let (lbr, rbr) = if context.config.spaces_within_parens_and_brackets() {
2493         ("[ ", " ]")
2494     } else {
2495         ("[", "]")
2496     };
2497
2498     let offset = last_line_width(&expr_str) + lbr.len();
2499     let rhs_overhead = shape.rhs_overhead(context.config);
2500     let index_shape = if expr_str.contains('\n') {
2501         Shape::legacy(context.config.max_width(), shape.indent)
2502             .offset_left(offset)
2503             .and_then(|shape| shape.sub_width(rbr.len() + rhs_overhead))
2504     } else {
2505         shape.visual_indent(offset).sub_width(offset + rbr.len())
2506     };
2507     let orig_index_rw = index_shape.and_then(|s| index.rewrite(context, s));
2508
2509     // Return if index fits in a single line.
2510     match orig_index_rw {
2511         Some(ref index_str) if !index_str.contains('\n') => {
2512             return Some(format!("{}{}{}{}", expr_str, lbr, index_str, rbr));
2513         }
2514         _ => (),
2515     }
2516
2517     // Try putting index on the next line and see if it fits in a single line.
2518     let indent = shape.indent.block_indent(context.config);
2519     let index_shape = Shape::indented(indent, context.config).offset_left(lbr.len())?;
2520     let index_shape = index_shape.sub_width(rbr.len() + rhs_overhead)?;
2521     let new_index_rw = index.rewrite(context, index_shape);
2522     match (orig_index_rw, new_index_rw) {
2523         (_, Some(ref new_index_str)) if !new_index_str.contains('\n') => Some(format!(
2524             "{}{}{}{}{}",
2525             expr_str,
2526             indent.to_string_with_newline(context.config),
2527             lbr,
2528             new_index_str,
2529             rbr
2530         )),
2531         (None, Some(ref new_index_str)) => Some(format!(
2532             "{}{}{}{}{}",
2533             expr_str,
2534             indent.to_string_with_newline(context.config),
2535             lbr,
2536             new_index_str,
2537             rbr
2538         )),
2539         (Some(ref index_str), _) => Some(format!("{}{}{}{}", expr_str, lbr, index_str, rbr)),
2540         _ => None,
2541     }
2542 }
2543
2544 fn struct_lit_can_be_aligned(fields: &[ast::Field], base: &Option<&ast::Expr>) -> bool {
2545     if base.is_some() {
2546         return false;
2547     }
2548
2549     fields.iter().all(|field| !field.is_shorthand)
2550 }
2551
2552 fn rewrite_struct_lit<'a>(
2553     context: &RewriteContext,
2554     path: &ast::Path,
2555     fields: &'a [ast::Field],
2556     base: Option<&'a ast::Expr>,
2557     span: Span,
2558     shape: Shape,
2559 ) -> Option<String> {
2560     debug!("rewrite_struct_lit: shape {:?}", shape);
2561
2562     enum StructLitField<'a> {
2563         Regular(&'a ast::Field),
2564         Base(&'a ast::Expr),
2565     }
2566
2567     // 2 = " {".len()
2568     let path_shape = shape.sub_width(2)?;
2569     let path_str = rewrite_path(context, PathContext::Expr, None, path, path_shape)?;
2570
2571     if fields.is_empty() && base.is_none() {
2572         return Some(format!("{} {{}}", path_str));
2573     }
2574
2575     // Foo { a: Foo } - indent is +3, width is -5.
2576     let (h_shape, v_shape) = struct_lit_shape(shape, context, path_str.len() + 3, 2)?;
2577
2578     let one_line_width = h_shape.map_or(0, |shape| shape.width);
2579     let body_lo = context.snippet_provider.span_after(span, "{");
2580     let fields_str = if struct_lit_can_be_aligned(fields, &base)
2581         && context.config.struct_field_align_threshold() > 0
2582     {
2583         rewrite_with_alignment(
2584             fields,
2585             context,
2586             shape,
2587             mk_sp(body_lo, span.hi()),
2588             one_line_width,
2589         )?
2590     } else {
2591         let field_iter = fields
2592             .into_iter()
2593             .map(StructLitField::Regular)
2594             .chain(base.into_iter().map(StructLitField::Base));
2595
2596         let span_lo = |item: &StructLitField| match *item {
2597             StructLitField::Regular(field) => field.span().lo(),
2598             StructLitField::Base(expr) => {
2599                 let last_field_hi = fields.last().map_or(span.lo(), |field| field.span.hi());
2600                 let snippet = context.snippet(mk_sp(last_field_hi, expr.span.lo()));
2601                 let pos = snippet.find_uncommented("..").unwrap();
2602                 last_field_hi + BytePos(pos as u32)
2603             }
2604         };
2605         let span_hi = |item: &StructLitField| match *item {
2606             StructLitField::Regular(field) => field.span().hi(),
2607             StructLitField::Base(expr) => expr.span.hi(),
2608         };
2609         let rewrite = |item: &StructLitField| match *item {
2610             StructLitField::Regular(field) => {
2611                 // The 1 taken from the v_budget is for the comma.
2612                 rewrite_field(context, field, v_shape.sub_width(1)?, 0)
2613             }
2614             StructLitField::Base(expr) => {
2615                 // 2 = ..
2616                 expr.rewrite(context, v_shape.offset_left(2)?)
2617                     .map(|s| format!("..{}", s))
2618             }
2619         };
2620
2621         let items = itemize_list(
2622             context.snippet_provider,
2623             field_iter,
2624             "}",
2625             ",",
2626             span_lo,
2627             span_hi,
2628             rewrite,
2629             body_lo,
2630             span.hi(),
2631             false,
2632         );
2633         let item_vec = items.collect::<Vec<_>>();
2634
2635         let tactic = struct_lit_tactic(h_shape, context, &item_vec);
2636         let nested_shape = shape_for_tactic(tactic, h_shape, v_shape);
2637
2638         let ends_with_comma = span_ends_with_comma(context, span);
2639         let force_no_trailing_comma = if context.inside_macro && !ends_with_comma {
2640             true
2641         } else {
2642             false
2643         };
2644
2645         let fmt = struct_lit_formatting(
2646             nested_shape,
2647             tactic,
2648             context,
2649             force_no_trailing_comma || base.is_some(),
2650         );
2651
2652         write_list(&item_vec, &fmt)?
2653     };
2654
2655     let fields_str = wrap_struct_field(context, &fields_str, shape, v_shape, one_line_width);
2656     Some(format!("{} {{{}}}", path_str, fields_str))
2657
2658     // FIXME if context.config.indent_style() == Visual, but we run out
2659     // of space, we should fall back to BlockIndent.
2660 }
2661
2662 pub fn wrap_struct_field(
2663     context: &RewriteContext,
2664     fields_str: &str,
2665     shape: Shape,
2666     nested_shape: Shape,
2667     one_line_width: usize,
2668 ) -> String {
2669     if context.config.indent_style() == IndentStyle::Block
2670         && (fields_str.contains('\n') || !context.config.struct_lit_single_line()
2671             || fields_str.len() > one_line_width)
2672     {
2673         format!(
2674             "{}{}{}",
2675             nested_shape.indent.to_string_with_newline(context.config),
2676             fields_str,
2677             shape.indent.to_string_with_newline(context.config)
2678         )
2679     } else {
2680         // One liner or visual indent.
2681         format!(" {} ", fields_str)
2682     }
2683 }
2684
2685 pub fn struct_lit_field_separator(config: &Config) -> &str {
2686     colon_spaces(config.space_before_colon(), config.space_after_colon())
2687 }
2688
2689 pub fn rewrite_field(
2690     context: &RewriteContext,
2691     field: &ast::Field,
2692     shape: Shape,
2693     prefix_max_width: usize,
2694 ) -> Option<String> {
2695     if contains_skip(&field.attrs) {
2696         return Some(context.snippet(field.span()).to_owned());
2697     }
2698     let mut attrs_str = field.attrs.rewrite(context, shape)?;
2699     if !attrs_str.is_empty() {
2700         attrs_str.push_str(&shape.indent.to_string_with_newline(context.config));
2701     };
2702     let name = field.ident.node.to_string();
2703     if field.is_shorthand {
2704         Some(attrs_str + &name)
2705     } else {
2706         let mut separator = String::from(struct_lit_field_separator(context.config));
2707         for _ in 0..prefix_max_width.checked_sub(name.len()).unwrap_or(0) {
2708             separator.push(' ');
2709         }
2710         let overhead = name.len() + separator.len();
2711         let expr_shape = shape.offset_left(overhead)?;
2712         let expr = field.expr.rewrite(context, expr_shape);
2713
2714         match expr {
2715             Some(ref e) if e.as_str() == name && context.config.use_field_init_shorthand() => {
2716                 Some(attrs_str + &name)
2717             }
2718             Some(e) => Some(format!("{}{}{}{}", attrs_str, name, separator, e)),
2719             None => {
2720                 let expr_offset = shape.indent.block_indent(context.config);
2721                 let expr = field
2722                     .expr
2723                     .rewrite(context, Shape::indented(expr_offset, context.config));
2724                 expr.map(|s| {
2725                     format!(
2726                         "{}{}:\n{}{}",
2727                         attrs_str,
2728                         name,
2729                         expr_offset.to_string(context.config),
2730                         s
2731                     )
2732                 })
2733             }
2734         }
2735     }
2736 }
2737
2738 fn shape_from_indent_style(
2739     context: &RewriteContext,
2740     shape: Shape,
2741     overhead: usize,
2742     offset: usize,
2743 ) -> Option<Shape> {
2744     if context.use_block_indent() {
2745         // 1 = ","
2746         shape
2747             .block()
2748             .block_indent(context.config.tab_spaces())
2749             .with_max_width(context.config)
2750             .sub_width(1)
2751     } else {
2752         shape.visual_indent(offset).sub_width(overhead)
2753     }
2754 }
2755
2756 fn rewrite_tuple_in_visual_indent_style<'a, T>(
2757     context: &RewriteContext,
2758     items: &[&T],
2759     span: Span,
2760     shape: Shape,
2761 ) -> Option<String>
2762 where
2763     T: Rewrite + Spanned + ToExpr + 'a,
2764 {
2765     let mut items = items.iter();
2766     // In case of length 1, need a trailing comma
2767     debug!("rewrite_tuple_in_visual_indent_style {:?}", shape);
2768     if items.len() == 1 {
2769         // 3 = "(" + ",)"
2770         let nested_shape = shape.sub_width(3)?.visual_indent(1);
2771         return items
2772             .next()
2773             .unwrap()
2774             .rewrite(context, nested_shape)
2775             .map(|s| {
2776                 if context.config.spaces_within_parens_and_brackets() {
2777                     format!("( {}, )", s)
2778                 } else {
2779                     format!("({},)", s)
2780                 }
2781             });
2782     }
2783
2784     let list_lo = context.snippet_provider.span_after(span, "(");
2785     let nested_shape = shape.sub_width(2)?.visual_indent(1);
2786     let items = itemize_list(
2787         context.snippet_provider,
2788         items,
2789         ")",
2790         ",",
2791         |item| item.span().lo(),
2792         |item| item.span().hi(),
2793         |item| item.rewrite(context, nested_shape),
2794         list_lo,
2795         span.hi() - BytePos(1),
2796         false,
2797     );
2798     let item_vec: Vec<_> = items.collect();
2799     let tactic = definitive_tactic(
2800         &item_vec,
2801         ListTactic::HorizontalVertical,
2802         Separator::Comma,
2803         nested_shape.width,
2804     );
2805     let fmt = ListFormatting {
2806         tactic,
2807         separator: ",",
2808         trailing_separator: SeparatorTactic::Never,
2809         separator_place: SeparatorPlace::Back,
2810         shape,
2811         ends_with_newline: false,
2812         preserve_newline: false,
2813         config: context.config,
2814     };
2815     let list_str = write_list(&item_vec, &fmt)?;
2816
2817     if context.config.spaces_within_parens_and_brackets() && !list_str.is_empty() {
2818         Some(format!("( {} )", list_str))
2819     } else {
2820         Some(format!("({})", list_str))
2821     }
2822 }
2823
2824 pub fn rewrite_tuple<'a, T>(
2825     context: &RewriteContext,
2826     items: &[&T],
2827     span: Span,
2828     shape: Shape,
2829 ) -> Option<String>
2830 where
2831     T: Rewrite + Spanned + ToExpr + 'a,
2832 {
2833     debug!("rewrite_tuple {:?}", shape);
2834     if context.use_block_indent() {
2835         // We use the same rule as function calls for rewriting tuples.
2836         let force_trailing_comma = if context.inside_macro {
2837             span_ends_with_comma(context, span)
2838         } else {
2839             items.len() == 1
2840         };
2841         rewrite_call_inner(
2842             context,
2843             &String::new(),
2844             items,
2845             span,
2846             shape,
2847             context.config.width_heuristics().fn_call_width,
2848             force_trailing_comma,
2849         )
2850     } else {
2851         rewrite_tuple_in_visual_indent_style(context, items, span, shape)
2852     }
2853 }
2854
2855 pub fn rewrite_unary_prefix<R: Rewrite>(
2856     context: &RewriteContext,
2857     prefix: &str,
2858     rewrite: &R,
2859     shape: Shape,
2860 ) -> Option<String> {
2861     rewrite
2862         .rewrite(context, shape.offset_left(prefix.len())?)
2863         .map(|r| format!("{}{}", prefix, r))
2864 }
2865
2866 // FIXME: this is probably not correct for multi-line Rewrites. we should
2867 // subtract suffix.len() from the last line budget, not the first!
2868 pub fn rewrite_unary_suffix<R: Rewrite>(
2869     context: &RewriteContext,
2870     suffix: &str,
2871     rewrite: &R,
2872     shape: Shape,
2873 ) -> Option<String> {
2874     rewrite
2875         .rewrite(context, shape.sub_width(suffix.len())?)
2876         .map(|mut r| {
2877             r.push_str(suffix);
2878             r
2879         })
2880 }
2881
2882 fn rewrite_unary_op(
2883     context: &RewriteContext,
2884     op: &ast::UnOp,
2885     expr: &ast::Expr,
2886     shape: Shape,
2887 ) -> Option<String> {
2888     // For some reason, an UnOp is not spanned like BinOp!
2889     let operator_str = match *op {
2890         ast::UnOp::Deref => "*",
2891         ast::UnOp::Not => "!",
2892         ast::UnOp::Neg => "-",
2893     };
2894     rewrite_unary_prefix(context, operator_str, expr, shape)
2895 }
2896
2897 fn rewrite_assignment(
2898     context: &RewriteContext,
2899     lhs: &ast::Expr,
2900     rhs: &ast::Expr,
2901     op: Option<&ast::BinOp>,
2902     shape: Shape,
2903 ) -> Option<String> {
2904     let operator_str = match op {
2905         Some(op) => context.snippet(op.span),
2906         None => "=",
2907     };
2908
2909     // 1 = space between lhs and operator.
2910     let lhs_shape = shape.sub_width(operator_str.len() + 1)?;
2911     let lhs_str = format!("{} {}", lhs.rewrite(context, lhs_shape)?, operator_str);
2912
2913     rewrite_assign_rhs(context, lhs_str, rhs, shape)
2914 }
2915
2916 // The left hand side must contain everything up to, and including, the
2917 // assignment operator.
2918 pub fn rewrite_assign_rhs<S: Into<String>, R: Rewrite>(
2919     context: &RewriteContext,
2920     lhs: S,
2921     ex: &R,
2922     shape: Shape,
2923 ) -> Option<String> {
2924     let lhs = lhs.into();
2925     let last_line_width = last_line_width(&lhs)
2926         .checked_sub(if lhs.contains('\n') {
2927             shape.indent.width()
2928         } else {
2929             0
2930         })
2931         .unwrap_or(0);
2932     // 1 = space between operator and rhs.
2933     let orig_shape = shape.offset_left(last_line_width + 1).unwrap_or(Shape {
2934         width: 0,
2935         offset: shape.offset + last_line_width + 1,
2936         ..shape
2937     });
2938     let rhs = choose_rhs(context, ex, orig_shape, ex.rewrite(context, orig_shape))?;
2939     Some(lhs + &rhs)
2940 }
2941
2942 pub fn choose_rhs<R: Rewrite>(
2943     context: &RewriteContext,
2944     expr: &R,
2945     shape: Shape,
2946     orig_rhs: Option<String>,
2947 ) -> Option<String> {
2948     match orig_rhs {
2949         Some(ref new_str) if !new_str.contains('\n') && new_str.len() <= shape.width => {
2950             Some(format!(" {}", new_str))
2951         }
2952         _ => {
2953             // Expression did not fit on the same line as the identifier.
2954             // Try splitting the line and see if that works better.
2955             let new_shape =
2956                 Shape::indented(shape.indent.block_indent(context.config), context.config)
2957                     .sub_width(shape.rhs_overhead(context.config))?;
2958             let new_rhs = expr.rewrite(context, new_shape);
2959             let new_indent_str = &new_shape.indent.to_string_with_newline(context.config);
2960
2961             match (orig_rhs, new_rhs) {
2962                 (Some(ref orig_rhs), Some(ref new_rhs))
2963                     if wrap_str(new_rhs.clone(), context.config.max_width(), new_shape)
2964                         .is_none() =>
2965                 {
2966                     Some(format!(" {}", orig_rhs))
2967                 }
2968                 (Some(ref orig_rhs), Some(ref new_rhs)) if prefer_next_line(orig_rhs, new_rhs) => {
2969                     Some(format!("{}{}", new_indent_str, new_rhs))
2970                 }
2971                 (None, Some(ref new_rhs)) => Some(format!("{}{}", new_indent_str, new_rhs)),
2972                 (None, None) => None,
2973                 (Some(ref orig_rhs), _) => Some(format!(" {}", orig_rhs)),
2974             }
2975         }
2976     }
2977 }
2978
2979 fn prefer_next_line(orig_rhs: &str, next_line_rhs: &str) -> bool {
2980     !next_line_rhs.contains('\n') || count_newlines(orig_rhs) > count_newlines(next_line_rhs) + 1
2981 }
2982
2983 fn rewrite_expr_addrof(
2984     context: &RewriteContext,
2985     mutability: ast::Mutability,
2986     expr: &ast::Expr,
2987     shape: Shape,
2988 ) -> Option<String> {
2989     let operator_str = match mutability {
2990         ast::Mutability::Immutable => "&",
2991         ast::Mutability::Mutable => "&mut ",
2992     };
2993     rewrite_unary_prefix(context, operator_str, expr, shape)
2994 }
2995
2996 pub trait ToExpr {
2997     fn to_expr(&self) -> Option<&ast::Expr>;
2998     fn can_be_overflowed(&self, context: &RewriteContext, len: usize) -> bool;
2999 }
3000
3001 impl ToExpr for ast::Expr {
3002     fn to_expr(&self) -> Option<&ast::Expr> {
3003         Some(self)
3004     }
3005
3006     fn can_be_overflowed(&self, context: &RewriteContext, len: usize) -> bool {
3007         can_be_overflowed_expr(context, self, len)
3008     }
3009 }
3010
3011 impl ToExpr for ast::Ty {
3012     fn to_expr(&self) -> Option<&ast::Expr> {
3013         None
3014     }
3015
3016     fn can_be_overflowed(&self, context: &RewriteContext, len: usize) -> bool {
3017         can_be_overflowed_type(context, self, len)
3018     }
3019 }
3020
3021 impl<'a> ToExpr for TuplePatField<'a> {
3022     fn to_expr(&self) -> Option<&ast::Expr> {
3023         None
3024     }
3025
3026     fn can_be_overflowed(&self, context: &RewriteContext, len: usize) -> bool {
3027         can_be_overflowed_pat(context, self, len)
3028     }
3029 }
3030
3031 impl<'a> ToExpr for ast::StructField {
3032     fn to_expr(&self) -> Option<&ast::Expr> {
3033         None
3034     }
3035
3036     fn can_be_overflowed(&self, _: &RewriteContext, _: usize) -> bool {
3037         false
3038     }
3039 }
3040
3041 impl<'a> ToExpr for MacroArg {
3042     fn to_expr(&self) -> Option<&ast::Expr> {
3043         match *self {
3044             MacroArg::Expr(ref expr) => Some(expr),
3045             _ => None,
3046         }
3047     }
3048
3049     fn can_be_overflowed(&self, context: &RewriteContext, len: usize) -> bool {
3050         match *self {
3051             MacroArg::Expr(ref expr) => can_be_overflowed_expr(context, expr, len),
3052             MacroArg::Ty(ref ty) => can_be_overflowed_type(context, ty, len),
3053             MacroArg::Pat(..) => false,
3054             MacroArg::Item(..) => len == 1,
3055         }
3056     }
3057 }