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