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