]> git.lizzy.rs Git - rust.git/blob - src/expr.rs
Add trailing comma when using Mixed indent style with newline
[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.shrink_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.shrink_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.shrink_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_pattern(
1553     context: &RewriteContext,
1554     pats: &Vec<ptr::P<ast::Pat>>,
1555     guard: &Option<ptr::P<ast::Expr>>,
1556     shape: Shape,
1557 ) -> Option<String> {
1558     // Patterns
1559     // 5 = ` => {`
1560     let pat_shape = try_opt!(shape.sub_width(5));
1561
1562     let pat_strs = try_opt!(
1563         pats.iter()
1564             .map(|p| p.rewrite(context, pat_shape))
1565             .collect::<Option<Vec<_>>>()
1566     );
1567
1568     let items: Vec<_> = pat_strs.into_iter().map(ListItem::from_str).collect();
1569     let tactic = definitive_tactic(&items, ListTactic::HorizontalVertical, pat_shape.width);
1570     let fmt = ListFormatting {
1571         tactic: tactic,
1572         separator: " |",
1573         trailing_separator: SeparatorTactic::Never,
1574         shape: pat_shape,
1575         ends_with_newline: false,
1576         config: context.config,
1577     };
1578     let pats_str = try_opt!(write_list(&items, &fmt));
1579
1580     // Guard
1581     let guard_str = try_opt!(rewrite_guard(
1582         context,
1583         guard,
1584         shape,
1585         trimmed_last_line_width(&pats_str),
1586     ));
1587
1588     Some(format!("{}{}", pats_str, guard_str))
1589 }
1590
1591 fn rewrite_match_arms(
1592     context: &RewriteContext,
1593     arms: &[ast::Arm],
1594     shape: Shape,
1595     span: Span,
1596     cond_end_pos: BytePos,
1597 ) -> Option<String> {
1598     let mut result = String::new();
1599
1600     let arm_shape = if context.config.indent_match_arms() {
1601         shape.block_indent(context.config.tab_spaces())
1602     } else {
1603         shape.block_indent(0)
1604     }.with_max_width(context.config);
1605     let arm_indent_str = arm_shape.indent.to_string(context.config);
1606
1607     let open_brace_pos = context
1608         .codemap
1609         .span_after(mk_sp(cond_end_pos, arms[0].span().lo), "{");
1610
1611     let arm_num = arms.len();
1612     for (i, arm) in arms.iter().enumerate() {
1613         // Make sure we get the stuff between arms.
1614         let missed_str = if i == 0 {
1615             context.snippet(mk_sp(open_brace_pos, arm.span().lo))
1616         } else {
1617             context.snippet(mk_sp(arms[i - 1].span().hi, arm.span().lo))
1618         };
1619         let comment = try_opt!(rewrite_match_arm_comment(
1620             context,
1621             &missed_str,
1622             arm_shape,
1623             &arm_indent_str,
1624         ));
1625         result.push_str(&comment);
1626         result.push('\n');
1627         result.push_str(&arm_indent_str);
1628
1629         let arm_str = rewrite_match_arm(context, arm, arm_shape);
1630         if let Some(ref arm_str) = arm_str {
1631             // Trim the trailing comma if necessary.
1632             if i == arm_num - 1 && context.config.trailing_comma() == SeparatorTactic::Never &&
1633                 arm_str.ends_with(',')
1634             {
1635                 result.push_str(&arm_str[0..arm_str.len() - 1])
1636             } else {
1637                 result.push_str(arm_str)
1638             }
1639         } else {
1640             // We couldn't format the arm, just reproduce the source.
1641             let snippet = context.snippet(arm.span());
1642             result.push_str(&snippet);
1643             if context.config.trailing_comma() != SeparatorTactic::Never {
1644                 result.push_str(arm_comma(context.config, &arm.body))
1645             }
1646         }
1647     }
1648     // BytePos(1) = closing match brace.
1649     let last_span = mk_sp(arms[arms.len() - 1].span().hi, span.hi - BytePos(1));
1650     let last_comment = context.snippet(last_span);
1651     let comment = try_opt!(rewrite_match_arm_comment(
1652         context,
1653         &last_comment,
1654         arm_shape,
1655         &arm_indent_str,
1656     ));
1657     result.push_str(&comment);
1658
1659     Some(result)
1660 }
1661
1662 fn rewrite_match_arm(context: &RewriteContext, arm: &ast::Arm, shape: Shape) -> Option<String> {
1663     let attr_str = if !arm.attrs.is_empty() {
1664         if contains_skip(&arm.attrs) {
1665             return None;
1666         }
1667         format!(
1668             "{}\n{}",
1669             try_opt!(arm.attrs.rewrite(context, shape)),
1670             shape.indent.to_string(context.config)
1671         )
1672     } else {
1673         String::new()
1674     };
1675     let pats_str = try_opt!(rewrite_match_pattern(context, &arm.pats, &arm.guard, shape));
1676     let pats_str = attr_str + &pats_str;
1677     rewrite_match_body(context, &arm.body, &pats_str, shape, arm.guard.is_some())
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             if let ast::StmtKind::Expr(ref expr) = block.stmts[0].node {
1691                 (expr.can_be_overflowed(context, 1), &**expr)
1692             } else {
1693                 (false, &**body)
1694             }
1695         }
1696         _ => (body.can_be_overflowed(context, 1), &**body),
1697     };
1698
1699     let comma = arm_comma(&context.config, body);
1700     let alt_block_sep = String::from("\n") + &shape.indent.block_only().to_string(context.config);
1701     let alt_block_sep = alt_block_sep.as_str();
1702     let is_block = if let ast::ExprKind::Block(..) = body.node {
1703         true
1704     } else {
1705         false
1706     };
1707
1708     let combine_orig_body = |body_str: &str| {
1709         let block_sep = match context.config.control_brace_style() {
1710             ControlBraceStyle::AlwaysNextLine if is_block => alt_block_sep,
1711             _ if has_guard && pats_str.contains('\n') && is_block && body_str != "{}" => {
1712                 alt_block_sep
1713             }
1714             _ => " ",
1715         };
1716
1717         Some(format!("{} =>{}{}{}", pats_str, block_sep, body_str, comma))
1718     };
1719
1720     let combine_next_line_body = |body_str: &str| {
1721         let indent_str = shape
1722             .indent
1723             .block_indent(context.config)
1724             .to_string(context.config);
1725         let (body_prefix, body_suffix) = if context.config.wrap_match_arms() {
1726             let comma = if context.config.match_block_trailing_comma() {
1727                 ","
1728             } else {
1729                 ""
1730             };
1731             (
1732                 "{",
1733                 format!("\n{}}}{}", shape.indent.to_string(context.config), comma),
1734             )
1735         } else {
1736             ("", String::from(","))
1737         };
1738
1739         let block_sep = match context.config.control_brace_style() {
1740             ControlBraceStyle::AlwaysNextLine => format!("{}{}\n", alt_block_sep, body_prefix),
1741             _ if body_prefix.is_empty() => "\n".to_owned(),
1742             _ => " ".to_owned() + body_prefix + "\n",
1743         } + &indent_str;
1744
1745         Some(format!(
1746             "{} =>{}{}{}",
1747             pats_str,
1748             block_sep,
1749             body_str,
1750             body_suffix
1751         ))
1752     };
1753
1754     // Let's try and get the arm body on the same line as the condition.
1755     // 4 = ` => `.len()
1756     let orig_arm_shape = shape
1757         .offset_left(extra_offset(&pats_str, shape) + 4)
1758         .and_then(|shape| shape.sub_width(comma.len()));
1759     let orig_body = if let Some(arm_shape) = orig_arm_shape {
1760         let rewrite = nop_block_collapse(
1761             format_expr(body, ExprType::Statement, context, arm_shape),
1762             arm_shape.width,
1763         );
1764
1765         match rewrite {
1766             Some(ref body_str)
1767                 if ((!body_str.contains('\n')) && first_line_width(body_str) <= arm_shape.width) ||
1768                     is_block =>
1769             {
1770                 return combine_orig_body(body_str);
1771             }
1772             _ => rewrite,
1773         }
1774     } else {
1775         None
1776     };
1777     let orig_budget = orig_arm_shape.map_or(0, |shape| shape.width);
1778
1779     // Try putting body on the next line and see if it looks better.
1780     let next_line_body_shape =
1781         Shape::indented(shape.indent.block_indent(context.config), context.config);
1782     let next_line_body = nop_block_collapse(
1783         format_expr(body, ExprType::Statement, context, next_line_body_shape),
1784         next_line_body_shape.width,
1785     );
1786     match (orig_body, next_line_body) {
1787         (Some(ref orig_str), Some(ref next_line_str))
1788             if prefer_next_line(orig_str, next_line_str) => combine_next_line_body(next_line_str),
1789         (Some(ref orig_str), _) if extend && first_line_width(orig_str) <= orig_budget => {
1790             combine_orig_body(orig_str)
1791         }
1792         (Some(ref orig_str), Some(ref next_line_str)) if orig_str.contains('\n') => {
1793             combine_next_line_body(next_line_str)
1794         }
1795         (None, Some(ref next_line_str)) => combine_next_line_body(next_line_str),
1796         (None, None) => None,
1797         (Some(ref orig_str), _) => combine_orig_body(orig_str),
1798     }
1799 }
1800
1801 // The `if ...` guard on a match arm.
1802 fn rewrite_guard(
1803     context: &RewriteContext,
1804     guard: &Option<ptr::P<ast::Expr>>,
1805     shape: Shape,
1806     // The amount of space used up on this line for the pattern in
1807     // the arm (excludes offset).
1808     pattern_width: usize,
1809 ) -> Option<String> {
1810     if let Some(ref guard) = *guard {
1811         // First try to fit the guard string on the same line as the pattern.
1812         // 4 = ` if `, 5 = ` => {`
1813         let cond_shape = shape
1814             .offset_left(pattern_width + 4)
1815             .and_then(|s| s.sub_width(5));
1816         if let Some(cond_shape) = cond_shape {
1817             if let Some(cond_str) = guard.rewrite(context, cond_shape) {
1818                 if !cond_str.contains('\n') || pattern_width <= context.config.tab_spaces() {
1819                     return Some(format!(" if {}", cond_str));
1820                 }
1821             }
1822         }
1823
1824         // Not enough space to put the guard after the pattern, try a newline.
1825         // 3 = `if `, 5 = ` => {`
1826         let cond_shape = Shape::indented(shape.indent.block_indent(context.config), context.config)
1827             .offset_left(3)
1828             .and_then(|s| s.sub_width(5));
1829         if let Some(cond_shape) = cond_shape {
1830             if let Some(cond_str) = guard.rewrite(context, cond_shape) {
1831                 return Some(format!(
1832                     "\n{}if {}",
1833                     cond_shape.indent.to_string(context.config),
1834                     cond_str
1835                 ));
1836             }
1837         }
1838
1839         None
1840     } else {
1841         Some(String::new())
1842     }
1843 }
1844
1845 fn rewrite_pat_expr(
1846     context: &RewriteContext,
1847     pat: Option<&ast::Pat>,
1848     expr: &ast::Expr,
1849     matcher: &str,
1850     // Connecting piece between pattern and expression,
1851     // *without* trailing space.
1852     connector: &str,
1853     keyword: &str,
1854     shape: Shape,
1855 ) -> Option<String> {
1856     debug!("rewrite_pat_expr {:?} {:?} {:?}", shape, pat, expr);
1857     if let Some(pat) = pat {
1858         let matcher = if matcher.is_empty() {
1859             matcher.to_owned()
1860         } else {
1861             format!("{} ", matcher)
1862         };
1863         let pat_shape =
1864             try_opt!(try_opt!(shape.offset_left(matcher.len())).sub_width(connector.len()));
1865         let pat_string = try_opt!(pat.rewrite(context, pat_shape));
1866         let result = format!("{}{}{}", matcher, pat_string, connector);
1867         return rewrite_assign_rhs(context, result, expr, shape);
1868     }
1869
1870     let expr_rw = expr.rewrite(context, shape);
1871     // The expression may (partially) fit on the current line.
1872     // We do not allow splitting between `if` and condition.
1873     if keyword == "if" || expr_rw.is_some() {
1874         return expr_rw;
1875     }
1876
1877     // The expression won't fit on the current line, jump to next.
1878     let nested_shape = shape
1879         .block_indent(context.config.tab_spaces())
1880         .with_max_width(context.config);
1881     let nested_indent_str = nested_shape.indent.to_string(context.config);
1882     expr.rewrite(context, nested_shape)
1883         .map(|expr_rw| format!("\n{}{}", nested_indent_str, expr_rw))
1884 }
1885
1886 fn rewrite_string_lit(context: &RewriteContext, span: Span, shape: Shape) -> Option<String> {
1887     let string_lit = context.snippet(span);
1888
1889     if !context.config.format_strings() && !context.config.force_format_strings() {
1890         if string_lit
1891             .lines()
1892             .rev()
1893             .skip(1)
1894             .all(|line| line.ends_with('\\'))
1895         {
1896             let new_indent = shape.visual_indent(1).indent;
1897             return Some(String::from(
1898                 string_lit
1899                     .lines()
1900                     .map(|line| {
1901                         new_indent.to_string(context.config) + line.trim_left()
1902                     })
1903                     .collect::<Vec<_>>()
1904                     .join("\n")
1905                     .trim_left(),
1906             ));
1907         } else {
1908             return Some(string_lit);
1909         }
1910     }
1911
1912     if !context.config.force_format_strings() &&
1913         !string_requires_rewrite(context, span, &string_lit, shape)
1914     {
1915         return Some(string_lit);
1916     }
1917
1918     let fmt = StringFormat {
1919         opener: "\"",
1920         closer: "\"",
1921         line_start: " ",
1922         line_end: "\\",
1923         shape: shape,
1924         trim_end: false,
1925         config: context.config,
1926     };
1927
1928     // Remove the quote characters.
1929     let str_lit = &string_lit[1..string_lit.len() - 1];
1930
1931     rewrite_string(str_lit, &fmt)
1932 }
1933
1934 fn string_requires_rewrite(
1935     context: &RewriteContext,
1936     span: Span,
1937     string: &str,
1938     shape: Shape,
1939 ) -> bool {
1940     if context.codemap.lookup_char_pos(span.lo).col.0 != shape.indent.width() {
1941         return true;
1942     }
1943
1944     for (i, line) in string.lines().enumerate() {
1945         if i == 0 {
1946             if line.len() > shape.width {
1947                 return true;
1948             }
1949         } else {
1950             if line.len() > shape.width + shape.indent.width() {
1951                 return true;
1952             }
1953         }
1954     }
1955
1956     false
1957 }
1958
1959 pub fn rewrite_call_with_binary_search<R>(
1960     context: &RewriteContext,
1961     callee: &R,
1962     args: &[&ast::Expr],
1963     span: Span,
1964     shape: Shape,
1965 ) -> Option<String>
1966 where
1967     R: Rewrite,
1968 {
1969     let force_trailing_comma = if context.inside_macro {
1970         span_ends_with_comma(context, span)
1971     } else {
1972         false
1973     };
1974     let closure = |callee_max_width| {
1975         // FIXME using byte lens instead of char lens (and probably all over the
1976         // place too)
1977         let callee_shape = Shape {
1978             width: callee_max_width,
1979             ..shape
1980         };
1981         let callee_str = callee
1982             .rewrite(context, callee_shape)
1983             .ok_or(Ordering::Greater)?;
1984
1985         rewrite_call_inner(
1986             context,
1987             &callee_str,
1988             args,
1989             span,
1990             shape,
1991             context.config.fn_call_width(),
1992             force_trailing_comma,
1993         )
1994     };
1995
1996     binary_search(1, shape.width, closure)
1997 }
1998
1999 pub fn rewrite_call(
2000     context: &RewriteContext,
2001     callee: &str,
2002     args: &[ptr::P<ast::Expr>],
2003     span: Span,
2004     shape: Shape,
2005 ) -> Option<String> {
2006     let force_trailing_comma = if context.inside_macro {
2007         span_ends_with_comma(context, span)
2008     } else {
2009         false
2010     };
2011     rewrite_call_inner(
2012         context,
2013         &callee,
2014         &args.iter().map(|x| &**x).collect::<Vec<_>>(),
2015         span,
2016         shape,
2017         context.config.fn_call_width(),
2018         force_trailing_comma,
2019     ).ok()
2020 }
2021
2022 pub fn rewrite_call_inner<'a, T>(
2023     context: &RewriteContext,
2024     callee_str: &str,
2025     args: &[&T],
2026     span: Span,
2027     shape: Shape,
2028     args_max_width: usize,
2029     force_trailing_comma: bool,
2030 ) -> Result<String, Ordering>
2031 where
2032     T: Rewrite + Spanned + ToExpr + 'a,
2033 {
2034     // 2 = `( `, 1 = `(`
2035     let paren_overhead = if context.config.spaces_within_parens() {
2036         2
2037     } else {
2038         1
2039     };
2040     let used_width = extra_offset(&callee_str, shape);
2041     let one_line_width = shape
2042         .width
2043         .checked_sub(used_width + 2 * paren_overhead)
2044         .ok_or(Ordering::Greater)?;
2045
2046     let nested_shape = shape_from_fn_call_style(
2047         context,
2048         shape,
2049         used_width + 2 * paren_overhead,
2050         used_width + paren_overhead,
2051     ).ok_or(Ordering::Greater)?;
2052
2053     let span_lo = context.codemap.span_after(span, "(");
2054     let args_span = mk_sp(span_lo, span.hi);
2055
2056     let (extendable, list_str) = rewrite_call_args(
2057         context,
2058         args,
2059         args_span,
2060         nested_shape,
2061         one_line_width,
2062         args_max_width,
2063         force_trailing_comma,
2064     ).or_else(|| if context.use_block_indent() {
2065         rewrite_call_args(
2066             context,
2067             args,
2068             args_span,
2069             Shape::indented(
2070                 shape.block().indent.block_indent(context.config),
2071                 context.config,
2072             ),
2073             0,
2074             0,
2075             force_trailing_comma,
2076         )
2077     } else {
2078         None
2079     })
2080         .ok_or(Ordering::Less)?;
2081
2082     if !context.use_block_indent() && need_block_indent(&list_str, nested_shape) && !extendable {
2083         let mut new_context = context.clone();
2084         new_context.use_block = true;
2085         return rewrite_call_inner(
2086             &new_context,
2087             callee_str,
2088             args,
2089             span,
2090             shape,
2091             args_max_width,
2092             force_trailing_comma,
2093         );
2094     }
2095
2096     let args_shape = shape
2097         .sub_width(last_line_width(&callee_str))
2098         .ok_or(Ordering::Less)?;
2099     Ok(format!(
2100         "{}{}",
2101         callee_str,
2102         wrap_args_with_parens(context, &list_str, extendable, args_shape, nested_shape)
2103     ))
2104 }
2105
2106 fn need_block_indent(s: &str, shape: Shape) -> bool {
2107     s.lines().skip(1).any(|s| {
2108         s.find(|c| !char::is_whitespace(c))
2109             .map_or(false, |w| w + 1 < shape.indent.width())
2110     })
2111 }
2112
2113 fn rewrite_call_args<'a, T>(
2114     context: &RewriteContext,
2115     args: &[&T],
2116     span: Span,
2117     shape: Shape,
2118     one_line_width: usize,
2119     args_max_width: usize,
2120     force_trailing_comma: bool,
2121 ) -> Option<(bool, String)>
2122 where
2123     T: Rewrite + Spanned + ToExpr + 'a,
2124 {
2125     let items = itemize_list(
2126         context.codemap,
2127         args.iter(),
2128         ")",
2129         |item| item.span().lo,
2130         |item| item.span().hi,
2131         |item| item.rewrite(context, shape),
2132         span.lo,
2133         span.hi,
2134     );
2135     let mut item_vec: Vec<_> = items.collect();
2136
2137     // Try letting the last argument overflow to the next line with block
2138     // indentation. If its first line fits on one line with the other arguments,
2139     // we format the function arguments horizontally.
2140     let tactic = try_overflow_last_arg(
2141         context,
2142         &mut item_vec,
2143         &args[..],
2144         shape,
2145         one_line_width,
2146         args_max_width,
2147     );
2148
2149     let fmt = ListFormatting {
2150         tactic: tactic,
2151         separator: ",",
2152         trailing_separator: if force_trailing_comma {
2153             SeparatorTactic::Always
2154         } else if context.inside_macro || !context.use_block_indent() {
2155             SeparatorTactic::Never
2156         } else {
2157             context.config.trailing_comma()
2158         },
2159         shape: shape,
2160         ends_with_newline: context.use_block_indent() && tactic == DefinitiveListTactic::Vertical,
2161         config: context.config,
2162     };
2163
2164     write_list(&item_vec, &fmt).map(|args_str| {
2165         (tactic != DefinitiveListTactic::Vertical, args_str)
2166     })
2167 }
2168
2169 fn try_overflow_last_arg<'a, T>(
2170     context: &RewriteContext,
2171     item_vec: &mut Vec<ListItem>,
2172     args: &[&T],
2173     shape: Shape,
2174     one_line_width: usize,
2175     args_max_width: usize,
2176 ) -> DefinitiveListTactic
2177 where
2178     T: Rewrite + Spanned + ToExpr + 'a,
2179 {
2180     let overflow_last = can_be_overflowed(&context, args);
2181
2182     // Replace the last item with its first line to see if it fits with
2183     // first arguments.
2184     let (orig_last, placeholder) = if overflow_last {
2185         let mut context = context.clone();
2186         if let Some(expr) = args[args.len() - 1].to_expr() {
2187             match expr.node {
2188                 ast::ExprKind::MethodCall(..) => context.force_one_line_chain = true,
2189                 _ => (),
2190             }
2191         }
2192         last_arg_shape(&context, &item_vec, shape, args_max_width)
2193             .map_or((None, None), |arg_shape| {
2194                 rewrite_last_arg_with_overflow(
2195                     &context,
2196                     args,
2197                     &mut item_vec[args.len() - 1],
2198                     arg_shape,
2199                 )
2200             })
2201     } else {
2202         (None, None)
2203     };
2204
2205     let tactic = definitive_tactic(
2206         &*item_vec,
2207         ListTactic::LimitedHorizontalVertical(args_max_width),
2208         one_line_width,
2209     );
2210
2211     // Replace the stub with the full overflowing last argument if the rewrite
2212     // succeeded and its first line fits with the other arguments.
2213     match (overflow_last, tactic, placeholder) {
2214         (true, DefinitiveListTactic::Horizontal, placeholder @ Some(..)) => {
2215             item_vec[args.len() - 1].item = placeholder;
2216         }
2217         (true, _, _) => {
2218             item_vec[args.len() - 1].item = orig_last;
2219         }
2220         (false, _, _) => {}
2221     }
2222
2223     tactic
2224 }
2225
2226 fn last_arg_shape(
2227     context: &RewriteContext,
2228     items: &Vec<ListItem>,
2229     shape: Shape,
2230     args_max_width: usize,
2231 ) -> Option<Shape> {
2232     let overhead = items.iter().rev().skip(1).fold(0, |acc, i| {
2233         acc + i.item.as_ref().map_or(0, |s| first_line_width(&s))
2234     });
2235     let max_width = min(args_max_width, shape.width);
2236     let arg_indent = if context.use_block_indent() {
2237         shape.block().indent.block_unindent(context.config)
2238     } else {
2239         shape.block().indent
2240     };
2241     Some(Shape {
2242         width: try_opt!(max_width.checked_sub(overhead)),
2243         indent: arg_indent,
2244         offset: 0,
2245     })
2246 }
2247
2248 // Rewriting closure which is placed at the end of the function call's arg.
2249 // Returns `None` if the reformatted closure 'looks bad'.
2250 fn rewrite_last_closure(
2251     context: &RewriteContext,
2252     expr: &ast::Expr,
2253     shape: Shape,
2254 ) -> Option<String> {
2255     if let ast::ExprKind::Closure(capture, ref fn_decl, ref body, _) = expr.node {
2256         let body = match body.node {
2257             ast::ExprKind::Block(ref block) if block.stmts.len() == 1 => {
2258                 stmt_expr(&block.stmts[0]).unwrap_or(body)
2259             }
2260             _ => body,
2261         };
2262         let (prefix, extra_offset) = try_opt!(rewrite_closure_fn_decl(
2263             capture,
2264             fn_decl,
2265             body,
2266             expr.span,
2267             context,
2268             shape,
2269         ));
2270         // If the closure goes multi line before its body, do not overflow the closure.
2271         if prefix.contains('\n') {
2272             return None;
2273         }
2274         let body_shape = try_opt!(shape.offset_left(extra_offset));
2275         // When overflowing the closure which consists of a single control flow expression,
2276         // force to use block if its condition uses multi line.
2277         if rewrite_cond(context, body, body_shape)
2278             .map(|cond| cond.contains('\n'))
2279             .unwrap_or(false)
2280         {
2281             return rewrite_closure_with_block(context, body_shape, &prefix, body);
2282         }
2283
2284         // Seems fine, just format the closure in usual manner.
2285         return expr.rewrite(context, shape);
2286     }
2287     None
2288 }
2289
2290 fn rewrite_last_arg_with_overflow<'a, T>(
2291     context: &RewriteContext,
2292     args: &[&T],
2293     last_item: &mut ListItem,
2294     shape: Shape,
2295 ) -> (Option<String>, Option<String>)
2296 where
2297     T: Rewrite + Spanned + ToExpr + 'a,
2298 {
2299     let last_arg = args[args.len() - 1];
2300     let rewrite = if let Some(expr) = last_arg.to_expr() {
2301         match expr.node {
2302             // When overflowing the closure which consists of a single control flow expression,
2303             // force to use block if its condition uses multi line.
2304             ast::ExprKind::Closure(..) => {
2305                 // If the argument consists of multiple closures, we do not overflow
2306                 // the last closure.
2307                 if args.len() > 1 &&
2308                     args.iter()
2309                         .rev()
2310                         .skip(1)
2311                         .filter_map(|arg| arg.to_expr())
2312                         .any(|expr| match expr.node {
2313                             ast::ExprKind::Closure(..) => true,
2314                             _ => false,
2315                         }) {
2316                     None
2317                 } else {
2318                     rewrite_last_closure(context, expr, shape)
2319                 }
2320             }
2321             _ => expr.rewrite(context, shape),
2322         }
2323     } else {
2324         last_arg.rewrite(context, shape)
2325     };
2326     let orig_last = last_item.item.clone();
2327
2328     if let Some(rewrite) = rewrite {
2329         let rewrite_first_line = Some(rewrite[..first_line_width(&rewrite)].to_owned());
2330         last_item.item = rewrite_first_line;
2331         (orig_last, Some(rewrite))
2332     } else {
2333         (orig_last, None)
2334     }
2335 }
2336
2337 fn can_be_overflowed<'a, T>(context: &RewriteContext, args: &[&T]) -> bool
2338 where
2339     T: Rewrite + Spanned + ToExpr + 'a,
2340 {
2341     args.last()
2342         .map_or(false, |x| x.can_be_overflowed(context, args.len()))
2343 }
2344
2345 pub fn can_be_overflowed_expr(context: &RewriteContext, expr: &ast::Expr, args_len: usize) -> bool {
2346     match expr.node {
2347         ast::ExprKind::Match(..) => {
2348             (context.use_block_indent() && args_len == 1) ||
2349                 (context.config.fn_call_style() == IndentStyle::Visual && args_len > 1)
2350         }
2351         ast::ExprKind::If(..) |
2352         ast::ExprKind::IfLet(..) |
2353         ast::ExprKind::ForLoop(..) |
2354         ast::ExprKind::Loop(..) |
2355         ast::ExprKind::While(..) |
2356         ast::ExprKind::WhileLet(..) => {
2357             context.config.combine_control_expr() && context.use_block_indent() && args_len == 1
2358         }
2359         ast::ExprKind::Block(..) | ast::ExprKind::Closure(..) => {
2360             context.use_block_indent() ||
2361                 context.config.fn_call_style() == IndentStyle::Visual && args_len > 1
2362         }
2363         ast::ExprKind::Array(..) |
2364         ast::ExprKind::Call(..) |
2365         ast::ExprKind::Mac(..) |
2366         ast::ExprKind::MethodCall(..) |
2367         ast::ExprKind::Struct(..) |
2368         ast::ExprKind::Tup(..) => context.use_block_indent() && args_len == 1,
2369         ast::ExprKind::AddrOf(_, ref expr) |
2370         ast::ExprKind::Box(ref expr) |
2371         ast::ExprKind::Try(ref expr) |
2372         ast::ExprKind::Unary(_, ref expr) |
2373         ast::ExprKind::Cast(ref expr, _) => can_be_overflowed_expr(context, expr, args_len),
2374         _ => false,
2375     }
2376 }
2377
2378 pub fn wrap_args_with_parens(
2379     context: &RewriteContext,
2380     args_str: &str,
2381     is_extendable: bool,
2382     shape: Shape,
2383     nested_shape: Shape,
2384 ) -> String {
2385     if !context.use_block_indent() ||
2386         (context.inside_macro && !args_str.contains('\n') &&
2387              args_str.len() + paren_overhead(context) <= shape.width) || is_extendable
2388     {
2389         if context.config.spaces_within_parens() && args_str.len() > 0 {
2390             format!("( {} )", args_str)
2391         } else {
2392             format!("({})", args_str)
2393         }
2394     } else {
2395         format!(
2396             "(\n{}{}\n{})",
2397             nested_shape.indent.to_string(context.config),
2398             args_str,
2399             shape.block().indent.to_string(context.config)
2400         )
2401     }
2402 }
2403
2404 fn span_ends_with_comma(context: &RewriteContext, span: Span) -> bool {
2405     let snippet = context.snippet(span);
2406     snippet
2407         .trim_right_matches(|c: char| c == ')' || c.is_whitespace())
2408         .ends_with(',')
2409 }
2410
2411 fn rewrite_paren(context: &RewriteContext, subexpr: &ast::Expr, shape: Shape) -> Option<String> {
2412     debug!("rewrite_paren, shape: {:?}", shape);
2413     let paren_overhead = paren_overhead(context);
2414     let sub_shape = try_opt!(shape.sub_width(paren_overhead / 2)).visual_indent(paren_overhead / 2);
2415
2416     let paren_wrapper = |s: &str| if context.config.spaces_within_parens() && s.len() > 0 {
2417         format!("( {} )", s)
2418     } else {
2419         format!("({})", s)
2420     };
2421
2422     let subexpr_str = try_opt!(subexpr.rewrite(context, sub_shape));
2423     debug!("rewrite_paren, subexpr_str: `{:?}`", subexpr_str);
2424
2425     if subexpr_str.contains('\n') {
2426         Some(paren_wrapper(&subexpr_str))
2427     } else {
2428         if subexpr_str.len() + paren_overhead <= shape.width {
2429             Some(paren_wrapper(&subexpr_str))
2430         } else {
2431             let sub_shape = try_opt!(shape.offset_left(2));
2432             let subexpr_str = try_opt!(subexpr.rewrite(context, sub_shape));
2433             Some(paren_wrapper(&subexpr_str))
2434         }
2435     }
2436 }
2437
2438 fn rewrite_index(
2439     expr: &ast::Expr,
2440     index: &ast::Expr,
2441     context: &RewriteContext,
2442     shape: Shape,
2443 ) -> Option<String> {
2444     let expr_str = try_opt!(expr.rewrite(context, shape));
2445
2446     let (lbr, rbr) = if context.config.spaces_within_square_brackets() {
2447         ("[ ", " ]")
2448     } else {
2449         ("[", "]")
2450     };
2451
2452     let offset = last_line_width(&expr_str) + lbr.len();
2453     let rhs_overhead = shape.rhs_overhead(context.config);
2454     let index_shape = if expr_str.contains('\n') {
2455         Shape::legacy(context.config.max_width(), shape.indent)
2456             .offset_left(offset)
2457             .and_then(|shape| shape.sub_width(rbr.len() + rhs_overhead))
2458     } else {
2459         shape.visual_indent(offset).sub_width(offset + rbr.len())
2460     };
2461     let orig_index_rw = index_shape.and_then(|s| index.rewrite(context, s));
2462
2463     // Return if index fits in a single line.
2464     match orig_index_rw {
2465         Some(ref index_str) if !index_str.contains('\n') => {
2466             return Some(format!("{}{}{}{}", expr_str, lbr, index_str, rbr));
2467         }
2468         _ => (),
2469     }
2470
2471     // Try putting index on the next line and see if it fits in a single line.
2472     let indent = shape.indent.block_indent(context.config);
2473     let index_shape = try_opt!(Shape::indented(indent, context.config).offset_left(lbr.len()));
2474     let index_shape = try_opt!(index_shape.sub_width(rbr.len() + rhs_overhead));
2475     let new_index_rw = index.rewrite(context, index_shape);
2476     match (orig_index_rw, new_index_rw) {
2477         (_, Some(ref new_index_str)) if !new_index_str.contains('\n') => Some(format!(
2478             "{}\n{}{}{}{}",
2479             expr_str,
2480             indent.to_string(&context.config),
2481             lbr,
2482             new_index_str,
2483             rbr
2484         )),
2485         (None, Some(ref new_index_str)) => Some(format!(
2486             "{}\n{}{}{}{}",
2487             expr_str,
2488             indent.to_string(&context.config),
2489             lbr,
2490             new_index_str,
2491             rbr
2492         )),
2493         (Some(ref index_str), _) => Some(format!("{}{}{}{}", expr_str, lbr, index_str, rbr)),
2494         _ => None,
2495     }
2496 }
2497
2498 fn struct_lit_can_be_aligned(fields: &[ast::Field], base: &Option<&ast::Expr>) -> bool {
2499     if base.is_some() {
2500         return false;
2501     }
2502
2503     fields.iter().all(|field| !field.is_shorthand)
2504 }
2505
2506 fn rewrite_struct_lit<'a>(
2507     context: &RewriteContext,
2508     path: &ast::Path,
2509     fields: &'a [ast::Field],
2510     base: Option<&'a ast::Expr>,
2511     span: Span,
2512     shape: Shape,
2513 ) -> Option<String> {
2514     debug!("rewrite_struct_lit: shape {:?}", shape);
2515
2516     enum StructLitField<'a> {
2517         Regular(&'a ast::Field),
2518         Base(&'a ast::Expr),
2519     }
2520
2521     // 2 = " {".len()
2522     let path_shape = try_opt!(shape.sub_width(2));
2523     let path_str = try_opt!(rewrite_path(
2524         context,
2525         PathContext::Expr,
2526         None,
2527         path,
2528         path_shape,
2529     ));
2530
2531     if fields.len() == 0 && base.is_none() {
2532         return Some(format!("{} {{}}", path_str));
2533     }
2534
2535     // Foo { a: Foo } - indent is +3, width is -5.
2536     let (h_shape, v_shape) = try_opt!(struct_lit_shape(shape, context, path_str.len() + 3, 2));
2537
2538     let one_line_width = h_shape.map_or(0, |shape| shape.width);
2539     let body_lo = context.codemap.span_after(span, "{");
2540     let fields_str = if struct_lit_can_be_aligned(fields, &base) &&
2541         context.config.struct_field_align_threshold() > 0
2542     {
2543         try_opt!(rewrite_with_alignment(
2544             fields,
2545             context,
2546             shape,
2547             mk_sp(body_lo, span.hi),
2548             one_line_width,
2549         ))
2550     } else {
2551         let field_iter = fields
2552             .into_iter()
2553             .map(StructLitField::Regular)
2554             .chain(base.into_iter().map(StructLitField::Base));
2555
2556         let span_lo = |item: &StructLitField| match *item {
2557             StructLitField::Regular(field) => field.span().lo,
2558             StructLitField::Base(expr) => {
2559                 let last_field_hi = fields.last().map_or(span.lo, |field| field.span.hi);
2560                 let snippet = context.snippet(mk_sp(last_field_hi, expr.span.lo));
2561                 let pos = snippet.find_uncommented("..").unwrap();
2562                 last_field_hi + BytePos(pos as u32)
2563             }
2564         };
2565         let span_hi = |item: &StructLitField| match *item {
2566             StructLitField::Regular(field) => field.span().hi,
2567             StructLitField::Base(expr) => expr.span.hi,
2568         };
2569         let rewrite = |item: &StructLitField| match *item {
2570             StructLitField::Regular(field) => {
2571                 // The 1 taken from the v_budget is for the comma.
2572                 rewrite_field(context, field, try_opt!(v_shape.sub_width(1)), 0)
2573             }
2574             StructLitField::Base(expr) => {
2575                 // 2 = ..
2576                 expr.rewrite(context, try_opt!(v_shape.shrink_left(2)))
2577                     .map(|s| format!("..{}", s))
2578             }
2579         };
2580
2581         let items = itemize_list(
2582             context.codemap,
2583             field_iter,
2584             "}",
2585             span_lo,
2586             span_hi,
2587             rewrite,
2588             body_lo,
2589             span.hi,
2590         );
2591         let item_vec = items.collect::<Vec<_>>();
2592
2593         let tactic = struct_lit_tactic(h_shape, context, &item_vec);
2594         let nested_shape = shape_for_tactic(tactic, h_shape, v_shape);
2595         let fmt = struct_lit_formatting(nested_shape, tactic, context, base.is_some());
2596
2597         try_opt!(write_list(&item_vec, &fmt))
2598     };
2599
2600     let fields_str = wrap_struct_field(context, &fields_str, shape, v_shape, one_line_width);
2601     Some(format!("{} {{{}}}", path_str, fields_str))
2602
2603     // FIXME if context.config.struct_lit_style() == Visual, but we run out
2604     // of space, we should fall back to BlockIndent.
2605 }
2606
2607 pub fn wrap_struct_field(
2608     context: &RewriteContext,
2609     fields_str: &str,
2610     shape: Shape,
2611     nested_shape: Shape,
2612     one_line_width: usize,
2613 ) -> String {
2614     if context.config.struct_lit_style() == IndentStyle::Block &&
2615         (fields_str.contains('\n') ||
2616              context.config.struct_lit_multiline_style() == MultilineStyle::ForceMulti ||
2617              fields_str.len() > one_line_width)
2618     {
2619         format!(
2620             "\n{}{}\n{}",
2621             nested_shape.indent.to_string(context.config),
2622             fields_str,
2623             shape.indent.to_string(context.config)
2624         )
2625     } else {
2626         // One liner or visual indent.
2627         format!(" {} ", fields_str)
2628     }
2629 }
2630
2631 pub fn struct_lit_field_separator(config: &Config) -> &str {
2632     colon_spaces(
2633         config.space_before_struct_lit_field_colon(),
2634         config.space_after_struct_lit_field_colon(),
2635     )
2636 }
2637
2638 pub fn rewrite_field(
2639     context: &RewriteContext,
2640     field: &ast::Field,
2641     shape: Shape,
2642     prefix_max_width: usize,
2643 ) -> Option<String> {
2644     if contains_skip(&field.attrs) {
2645         return wrap_str(
2646             context.snippet(field.span()),
2647             context.config.max_width(),
2648             shape,
2649         );
2650     }
2651     let name = &field.ident.node.to_string();
2652     if field.is_shorthand {
2653         Some(name.to_string())
2654     } else {
2655         let mut separator = String::from(struct_lit_field_separator(context.config));
2656         for _ in 0..prefix_max_width.checked_sub(name.len()).unwrap_or(0) {
2657             separator.push(' ');
2658         }
2659         let overhead = name.len() + separator.len();
2660         let expr_shape = try_opt!(shape.offset_left(overhead));
2661         let expr = field.expr.rewrite(context, expr_shape);
2662
2663         let mut attrs_str = try_opt!(field.attrs.rewrite(context, shape));
2664         if !attrs_str.is_empty() {
2665             attrs_str.push_str(&format!("\n{}", shape.indent.to_string(context.config)));
2666         };
2667
2668         match expr {
2669             Some(e) => Some(format!("{}{}{}{}", attrs_str, name, separator, e)),
2670             None => {
2671                 let expr_offset = shape.indent.block_indent(context.config);
2672                 let expr = field
2673                     .expr
2674                     .rewrite(context, Shape::indented(expr_offset, context.config));
2675                 expr.map(|s| {
2676                     format!(
2677                         "{}{}:\n{}{}",
2678                         attrs_str,
2679                         name,
2680                         expr_offset.to_string(&context.config),
2681                         s
2682                     )
2683                 })
2684             }
2685         }
2686     }
2687 }
2688
2689 fn shape_from_fn_call_style(
2690     context: &RewriteContext,
2691     shape: Shape,
2692     overhead: usize,
2693     offset: usize,
2694 ) -> Option<Shape> {
2695     if context.use_block_indent() {
2696         // 1 = ","
2697         shape
2698             .block()
2699             .block_indent(context.config.tab_spaces())
2700             .with_max_width(context.config)
2701             .sub_width(1)
2702     } else {
2703         shape.visual_indent(offset).sub_width(overhead)
2704     }
2705 }
2706
2707 fn rewrite_tuple_in_visual_indent_style<'a, T>(
2708     context: &RewriteContext,
2709     items: &[&T],
2710     span: Span,
2711     shape: Shape,
2712 ) -> Option<String>
2713 where
2714     T: Rewrite + Spanned + ToExpr + 'a,
2715 {
2716     let mut items = items.iter();
2717     // In case of length 1, need a trailing comma
2718     debug!("rewrite_tuple_in_visual_indent_style {:?}", shape);
2719     if items.len() == 1 {
2720         // 3 = "(" + ",)"
2721         let nested_shape = try_opt!(shape.sub_width(3)).visual_indent(1);
2722         return items.next().unwrap().rewrite(context, nested_shape).map(
2723             |s| if context.config.spaces_within_parens() {
2724                 format!("( {}, )", s)
2725             } else {
2726                 format!("({},)", s)
2727             },
2728         );
2729     }
2730
2731     let list_lo = context.codemap.span_after(span, "(");
2732     let nested_shape = try_opt!(shape.sub_width(2)).visual_indent(1);
2733     let items = itemize_list(
2734         context.codemap,
2735         items,
2736         ")",
2737         |item| item.span().lo,
2738         |item| item.span().hi,
2739         |item| item.rewrite(context, nested_shape),
2740         list_lo,
2741         span.hi - BytePos(1),
2742     );
2743     let item_vec: Vec<_> = items.collect();
2744     let tactic = definitive_tactic(
2745         &item_vec,
2746         ListTactic::HorizontalVertical,
2747         nested_shape.width,
2748     );
2749     let fmt = ListFormatting {
2750         tactic: tactic,
2751         separator: ",",
2752         trailing_separator: SeparatorTactic::Never,
2753         shape: shape,
2754         ends_with_newline: false,
2755         config: context.config,
2756     };
2757     let list_str = try_opt!(write_list(&item_vec, &fmt));
2758
2759     if context.config.spaces_within_parens() && list_str.len() > 0 {
2760         Some(format!("( {} )", list_str))
2761     } else {
2762         Some(format!("({})", list_str))
2763     }
2764 }
2765
2766 pub fn rewrite_tuple<'a, T>(
2767     context: &RewriteContext,
2768     items: &[&T],
2769     span: Span,
2770     shape: Shape,
2771 ) -> Option<String>
2772 where
2773     T: Rewrite + Spanned + ToExpr + 'a,
2774 {
2775     debug!("rewrite_tuple {:?}", shape);
2776     if context.use_block_indent() {
2777         // We use the same rule as funcation call for rewriting tuple.
2778         let force_trailing_comma = if context.inside_macro {
2779             span_ends_with_comma(context, span)
2780         } else {
2781             items.len() == 1
2782         };
2783         rewrite_call_inner(
2784             context,
2785             &String::new(),
2786             items,
2787             span,
2788             shape,
2789             context.config.fn_call_width(),
2790             force_trailing_comma,
2791         ).ok()
2792     } else {
2793         rewrite_tuple_in_visual_indent_style(context, items, span, shape)
2794     }
2795 }
2796
2797 pub fn rewrite_unary_prefix<R: Rewrite>(
2798     context: &RewriteContext,
2799     prefix: &str,
2800     rewrite: &R,
2801     shape: Shape,
2802 ) -> Option<String> {
2803     rewrite
2804         .rewrite(context, try_opt!(shape.offset_left(prefix.len())))
2805         .map(|r| format!("{}{}", prefix, r))
2806 }
2807
2808 // FIXME: this is probably not correct for multi-line Rewrites. we should
2809 // subtract suffix.len() from the last line budget, not the first!
2810 pub fn rewrite_unary_suffix<R: Rewrite>(
2811     context: &RewriteContext,
2812     suffix: &str,
2813     rewrite: &R,
2814     shape: Shape,
2815 ) -> Option<String> {
2816     rewrite
2817         .rewrite(context, try_opt!(shape.sub_width(suffix.len())))
2818         .map(|mut r| {
2819             r.push_str(suffix);
2820             r
2821         })
2822 }
2823
2824 fn rewrite_unary_op(
2825     context: &RewriteContext,
2826     op: &ast::UnOp,
2827     expr: &ast::Expr,
2828     shape: Shape,
2829 ) -> Option<String> {
2830     // For some reason, an UnOp is not spanned like BinOp!
2831     let operator_str = match *op {
2832         ast::UnOp::Deref => "*",
2833         ast::UnOp::Not => "!",
2834         ast::UnOp::Neg => "-",
2835     };
2836     rewrite_unary_prefix(context, operator_str, expr, shape)
2837 }
2838
2839 fn rewrite_assignment(
2840     context: &RewriteContext,
2841     lhs: &ast::Expr,
2842     rhs: &ast::Expr,
2843     op: Option<&ast::BinOp>,
2844     shape: Shape,
2845 ) -> Option<String> {
2846     let operator_str = match op {
2847         Some(op) => context.snippet(op.span),
2848         None => "=".to_owned(),
2849     };
2850
2851     // 1 = space between lhs and operator.
2852     let lhs_shape = try_opt!(shape.sub_width(operator_str.len() + 1));
2853     let lhs_str = format!(
2854         "{} {}",
2855         try_opt!(lhs.rewrite(context, lhs_shape)),
2856         operator_str
2857     );
2858
2859     rewrite_assign_rhs(context, lhs_str, rhs, shape)
2860 }
2861
2862 // The left hand side must contain everything up to, and including, the
2863 // assignment operator.
2864 pub fn rewrite_assign_rhs<S: Into<String>>(
2865     context: &RewriteContext,
2866     lhs: S,
2867     ex: &ast::Expr,
2868     shape: Shape,
2869 ) -> Option<String> {
2870     let lhs = lhs.into();
2871     let last_line_width = last_line_width(&lhs) -
2872         if lhs.contains('\n') {
2873             shape.indent.width()
2874         } else {
2875             0
2876         };
2877     // 1 = space between operator and rhs.
2878     let orig_shape = try_opt!(shape.offset_left(last_line_width + 1));
2879     let rhs = try_opt!(choose_rhs(
2880         context,
2881         ex,
2882         shape,
2883         ex.rewrite(context, orig_shape)
2884     ));
2885     Some(lhs + &rhs)
2886 }
2887
2888 fn choose_rhs(
2889     context: &RewriteContext,
2890     expr: &ast::Expr,
2891     shape: Shape,
2892     orig_rhs: Option<String>,
2893 ) -> Option<String> {
2894     match orig_rhs {
2895         Some(ref new_str) if !new_str.contains('\n') => Some(format!(" {}", new_str)),
2896         _ => {
2897             // Expression did not fit on the same line as the identifier.
2898             // Try splitting the line and see if that works better.
2899             let new_shape = try_opt!(
2900                 Shape::indented(
2901                     shape.block().indent.block_indent(context.config),
2902                     context.config,
2903                 ).sub_width(shape.rhs_overhead(context.config))
2904             );
2905             let new_rhs = expr.rewrite(context, new_shape);
2906             let new_indent_str = &new_shape.indent.to_string(context.config);
2907
2908             match (orig_rhs, new_rhs) {
2909                 (Some(ref orig_rhs), Some(ref new_rhs)) if prefer_next_line(orig_rhs, new_rhs) => {
2910                     Some(format!("\n{}{}", new_indent_str, new_rhs))
2911                 }
2912                 (None, Some(ref new_rhs)) => Some(format!("\n{}{}", new_indent_str, new_rhs)),
2913                 (None, None) => None,
2914                 (Some(ref orig_rhs), _) => Some(format!(" {}", orig_rhs)),
2915             }
2916         }
2917     }
2918 }
2919
2920 fn prefer_next_line(orig_rhs: &str, next_line_rhs: &str) -> bool {
2921
2922     fn count_line_breaks(src: &str) -> usize {
2923         src.chars().filter(|&x| x == '\n').count()
2924     }
2925
2926     !next_line_rhs.contains('\n') ||
2927         count_line_breaks(orig_rhs) > count_line_breaks(next_line_rhs) + 1
2928 }
2929
2930 fn rewrite_expr_addrof(
2931     context: &RewriteContext,
2932     mutability: ast::Mutability,
2933     expr: &ast::Expr,
2934     shape: Shape,
2935 ) -> Option<String> {
2936     let operator_str = match mutability {
2937         ast::Mutability::Immutable => "&",
2938         ast::Mutability::Mutable => "&mut ",
2939     };
2940     rewrite_unary_prefix(context, operator_str, expr, shape)
2941 }
2942
2943 pub trait ToExpr {
2944     fn to_expr(&self) -> Option<&ast::Expr>;
2945     fn can_be_overflowed(&self, context: &RewriteContext, len: usize) -> bool;
2946 }
2947
2948 impl ToExpr for ast::Expr {
2949     fn to_expr(&self) -> Option<&ast::Expr> {
2950         Some(self)
2951     }
2952
2953     fn can_be_overflowed(&self, context: &RewriteContext, len: usize) -> bool {
2954         can_be_overflowed_expr(context, self, len)
2955     }
2956 }
2957
2958 impl ToExpr for ast::Ty {
2959     fn to_expr(&self) -> Option<&ast::Expr> {
2960         None
2961     }
2962
2963     fn can_be_overflowed(&self, context: &RewriteContext, len: usize) -> bool {
2964         can_be_overflowed_type(context, self, len)
2965     }
2966 }
2967
2968 impl<'a> ToExpr for TuplePatField<'a> {
2969     fn to_expr(&self) -> Option<&ast::Expr> {
2970         None
2971     }
2972
2973     fn can_be_overflowed(&self, context: &RewriteContext, len: usize) -> bool {
2974         can_be_overflowed_pat(context, self, len)
2975     }
2976 }
2977
2978 impl<'a> ToExpr for ast::StructField {
2979     fn to_expr(&self) -> Option<&ast::Expr> {
2980         None
2981     }
2982
2983     fn can_be_overflowed(&self, _: &RewriteContext, _: usize) -> bool {
2984         false
2985     }
2986 }