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