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