]> git.lizzy.rs Git - rust.git/blob - src/expr.rs
Merge pull request #2556 from topecongiro/issue-2554
[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::borrow::Cow;
12 use std::cmp::min;
13
14 use config::lists::*;
15 use syntax::codemap::{BytePos, CodeMap, Span};
16 use syntax::{ast, ptr};
17
18 use chains::rewrite_chain;
19 use closures;
20 use codemap::{LineRangeUtils, SpanUtils};
21 use comment::{combine_strs_with_missing_comments, contains_comment, recover_comment_removed,
22               rewrite_comment, rewrite_missing_comment, CharClasses, FindUncommented};
23 use config::{Config, ControlBraceStyle, IndentStyle};
24 use lists::{definitive_tactic, itemize_list, shape_for_tactic, struct_lit_formatting,
25             struct_lit_shape, struct_lit_tactic, write_list, ListFormatting, ListItem, Separator};
26 use macros::{rewrite_macro, MacroArg, MacroPosition};
27 use matches::rewrite_match;
28 use overflow;
29 use patterns::{can_be_overflowed_pat, is_short_pattern, TuplePatField};
30 use rewrite::{Rewrite, RewriteContext};
31 use shape::{Indent, Shape};
32 use spanned::Spanned;
33 use string::{rewrite_string, StringFormat};
34 use types::{can_be_overflowed_type, rewrite_path, PathContext};
35 use utils::{colon_spaces, contains_skip, count_newlines, first_line_width, inner_attributes,
36             last_line_extendable, last_line_width, mk_sp, outer_attributes, paren_overhead,
37             ptr_vec_to_ref_vec, semicolon_for_stmt, wrap_str};
38 use vertical::rewrite_with_alignment;
39 use visitor::FmtVisitor;
40
41 impl Rewrite for ast::Expr {
42     fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
43         format_expr(self, ExprType::SubExpression, context, shape)
44     }
45 }
46
47 #[derive(Copy, Clone, PartialEq)]
48 pub enum ExprType {
49     Statement,
50     SubExpression,
51 }
52
53 pub fn format_expr(
54     expr: &ast::Expr,
55     expr_type: ExprType,
56     context: &RewriteContext,
57     shape: Shape,
58 ) -> Option<String> {
59     skip_out_of_file_lines_range!(context, expr.span);
60
61     if contains_skip(&*expr.attrs) {
62         return Some(context.snippet(expr.span()).to_owned());
63     }
64
65     let expr_rw = match expr.node {
66         ast::ExprKind::Array(ref expr_vec) => rewrite_array(
67             &ptr_vec_to_ref_vec(expr_vec),
68             mk_sp(
69                 context.snippet_provider.span_after(expr.span, "["),
70                 expr.span.hi(),
71             ),
72             context,
73             shape,
74             false,
75         ),
76         ast::ExprKind::Lit(ref l) => rewrite_literal(context, l, shape),
77         ast::ExprKind::Call(ref callee, ref args) => {
78             let inner_span = mk_sp(callee.span.hi(), expr.span.hi());
79             let callee_str = callee.rewrite(context, shape)?;
80             rewrite_call(context, &callee_str, args, inner_span, shape)
81         }
82         ast::ExprKind::Paren(ref subexpr) => rewrite_paren(context, subexpr, shape, expr.span),
83         ast::ExprKind::Binary(ref op, ref lhs, ref rhs) => {
84             // FIXME: format comments between operands and operator
85             rewrite_pair(
86                 &**lhs,
87                 &**rhs,
88                 PairParts::new("", &format!(" {} ", context.snippet(op.span)), ""),
89                 context,
90                 shape,
91                 context.config.binop_separator(),
92             )
93         }
94         ast::ExprKind::Unary(ref op, ref subexpr) => rewrite_unary_op(context, op, subexpr, shape),
95         ast::ExprKind::Struct(ref path, ref fields, ref base) => rewrite_struct_lit(
96             context,
97             path,
98             fields,
99             base.as_ref().map(|e| &**e),
100             expr.span,
101             shape,
102         ),
103         ast::ExprKind::Tup(ref items) => {
104             rewrite_tuple(context, &ptr_vec_to_ref_vec(items), expr.span, shape)
105         }
106         ast::ExprKind::If(..)
107         | ast::ExprKind::IfLet(..)
108         | ast::ExprKind::ForLoop(..)
109         | ast::ExprKind::Loop(..)
110         | ast::ExprKind::While(..)
111         | ast::ExprKind::WhileLet(..) => to_control_flow(expr, expr_type)
112             .and_then(|control_flow| control_flow.rewrite(context, shape)),
113         ast::ExprKind::Block(ref block) => {
114             match expr_type {
115                 ExprType::Statement => {
116                     if is_unsafe_block(block) {
117                         rewrite_block(block, Some(&expr.attrs), context, shape)
118                     } else if let rw @ Some(_) =
119                         rewrite_empty_block(context, block, Some(&expr.attrs), "", shape)
120                     {
121                         // Rewrite block without trying to put it in a single line.
122                         rw
123                     } else {
124                         let prefix = block_prefix(context, block, shape)?;
125                         rewrite_block_with_visitor(
126                             context,
127                             &prefix,
128                             block,
129                             Some(&expr.attrs),
130                             shape,
131                             true,
132                         )
133                     }
134                 }
135                 ExprType::SubExpression => rewrite_block(block, Some(&expr.attrs), context, shape),
136             }
137         }
138         ast::ExprKind::Match(ref cond, ref arms) => {
139             rewrite_match(context, cond, arms, shape, expr.span, &expr.attrs)
140         }
141         ast::ExprKind::Path(ref qself, ref path) => {
142             rewrite_path(context, PathContext::Expr, qself.as_ref(), path, shape)
143         }
144         ast::ExprKind::Assign(ref lhs, ref rhs) => {
145             rewrite_assignment(context, lhs, rhs, None, shape)
146         }
147         ast::ExprKind::AssignOp(ref op, ref lhs, ref rhs) => {
148             rewrite_assignment(context, lhs, rhs, Some(op), shape)
149         }
150         ast::ExprKind::Continue(ref opt_label) => {
151             let id_str = match *opt_label {
152                 Some(label) => format!(" {}", label.ident),
153                 None => String::new(),
154             };
155             Some(format!("continue{}", id_str))
156         }
157         ast::ExprKind::Break(ref opt_label, ref opt_expr) => {
158             let id_str = match *opt_label {
159                 Some(label) => format!(" {}", label.ident),
160                 None => String::new(),
161             };
162
163             if let Some(ref expr) = *opt_expr {
164                 rewrite_unary_prefix(context, &format!("break{} ", id_str), &**expr, shape)
165             } else {
166                 Some(format!("break{}", id_str))
167             }
168         }
169         ast::ExprKind::Yield(ref opt_expr) => if let Some(ref expr) = *opt_expr {
170             rewrite_unary_prefix(context, "yield ", &**expr, shape)
171         } else {
172             Some("yield".to_string())
173         },
174         ast::ExprKind::Closure(capture, movability, ref fn_decl, ref body, _) => {
175             closures::rewrite_closure(
176                 capture,
177                 movability,
178                 fn_decl,
179                 body,
180                 expr.span,
181                 context,
182                 shape,
183             )
184         }
185         ast::ExprKind::Try(..)
186         | ast::ExprKind::Field(..)
187         | ast::ExprKind::TupField(..)
188         | ast::ExprKind::MethodCall(..) => rewrite_chain(expr, context, shape),
189         ast::ExprKind::Mac(ref mac) => {
190             rewrite_macro(mac, None, context, shape, MacroPosition::Expression).or_else(|| {
191                 wrap_str(
192                     context.snippet(expr.span).to_owned(),
193                     context.config.max_width(),
194                     shape,
195                 )
196             })
197         }
198         ast::ExprKind::Ret(None) => Some("return".to_owned()),
199         ast::ExprKind::Ret(Some(ref expr)) => {
200             rewrite_unary_prefix(context, "return ", &**expr, shape)
201         }
202         ast::ExprKind::Box(ref expr) => rewrite_unary_prefix(context, "box ", &**expr, shape),
203         ast::ExprKind::AddrOf(mutability, ref expr) => {
204             rewrite_expr_addrof(context, mutability, expr, shape)
205         }
206         ast::ExprKind::Cast(ref expr, ref ty) => rewrite_pair(
207             &**expr,
208             &**ty,
209             PairParts::new("", " as ", ""),
210             context,
211             shape,
212             SeparatorPlace::Front,
213         ),
214         ast::ExprKind::Type(ref expr, ref ty) => rewrite_pair(
215             &**expr,
216             &**ty,
217             PairParts::new("", ": ", ""),
218             context,
219             shape,
220             SeparatorPlace::Back,
221         ),
222         ast::ExprKind::Index(ref expr, ref index) => {
223             rewrite_index(&**expr, &**index, context, shape)
224         }
225         ast::ExprKind::Repeat(ref expr, ref repeats) => {
226             let (lbr, rbr) = if context.config.spaces_within_parens_and_brackets() {
227                 ("[ ", " ]")
228             } else {
229                 ("[", "]")
230             };
231             rewrite_pair(
232                 &**expr,
233                 &**repeats,
234                 PairParts::new(lbr, "; ", rbr),
235                 context,
236                 shape,
237                 SeparatorPlace::Back,
238             )
239         }
240         ast::ExprKind::Range(ref lhs, ref rhs, limits) => {
241             let delim = match limits {
242                 ast::RangeLimits::HalfOpen => "..",
243                 ast::RangeLimits::Closed => "..=",
244             };
245
246             fn needs_space_before_range(context: &RewriteContext, lhs: &ast::Expr) -> bool {
247                 match lhs.node {
248                     ast::ExprKind::Lit(ref lit) => match lit.node {
249                         ast::LitKind::FloatUnsuffixed(..) => {
250                             context.snippet(lit.span).ends_with('.')
251                         }
252                         _ => false,
253                     },
254                     _ => false,
255                 }
256             }
257
258             match (lhs.as_ref().map(|x| &**x), rhs.as_ref().map(|x| &**x)) {
259                 (Some(lhs), Some(rhs)) => {
260                     let sp_delim = if context.config.spaces_around_ranges() {
261                         format!(" {} ", delim)
262                     } else if needs_space_before_range(context, lhs) {
263                         format!(" {}", delim)
264                     } else {
265                         delim.to_owned()
266                     };
267                     rewrite_pair(
268                         &*lhs,
269                         &*rhs,
270                         PairParts::new("", &sp_delim, ""),
271                         context,
272                         shape,
273                         context.config.binop_separator(),
274                     )
275                 }
276                 (None, Some(rhs)) => {
277                     let sp_delim = if context.config.spaces_around_ranges() {
278                         format!("{} ", delim)
279                     } else {
280                         delim.to_owned()
281                     };
282                     rewrite_unary_prefix(context, &sp_delim, &*rhs, shape)
283                 }
284                 (Some(lhs), None) => {
285                     let sp_delim = if context.config.spaces_around_ranges() {
286                         format!(" {}", delim)
287                     } else {
288                         delim.to_owned()
289                     };
290                     rewrite_unary_suffix(context, &sp_delim, &*lhs, shape)
291                 }
292                 (None, None) => Some(delim.to_owned()),
293             }
294         }
295         // We do not format these expressions yet, but they should still
296         // satisfy our width restrictions.
297         ast::ExprKind::InPlace(..) | ast::ExprKind::InlineAsm(..) => {
298             Some(context.snippet(expr.span).to_owned())
299         }
300         ast::ExprKind::Catch(ref block) => {
301             if let rw @ Some(_) =
302                 rewrite_single_line_block(context, "do catch ", block, Some(&expr.attrs), shape)
303             {
304                 rw
305             } else {
306                 // 9 = `do catch `
307                 let budget = shape.width.checked_sub(9).unwrap_or(0);
308                 Some(format!(
309                     "{}{}",
310                     "do catch ",
311                     rewrite_block(
312                         block,
313                         Some(&expr.attrs),
314                         context,
315                         Shape::legacy(budget, shape.indent)
316                     )?
317                 ))
318             }
319         }
320     };
321
322     expr_rw
323         .and_then(|expr_str| recover_comment_removed(expr_str, expr.span, context))
324         .and_then(|expr_str| {
325             let attrs = outer_attributes(&expr.attrs);
326             let attrs_str = attrs.rewrite(context, shape)?;
327             let span = mk_sp(
328                 attrs.last().map_or(expr.span.lo(), |attr| attr.span.hi()),
329                 expr.span.lo(),
330             );
331             combine_strs_with_missing_comments(context, &attrs_str, &expr_str, span, shape, false)
332         })
333 }
334
335 #[derive(new, Clone, Copy)]
336 pub struct PairParts<'a> {
337     prefix: &'a str,
338     infix: &'a str,
339     suffix: &'a str,
340 }
341
342 pub fn rewrite_pair<LHS, RHS>(
343     lhs: &LHS,
344     rhs: &RHS,
345     pp: PairParts,
346     context: &RewriteContext,
347     shape: Shape,
348     separator_place: SeparatorPlace,
349 ) -> Option<String>
350 where
351     LHS: Rewrite,
352     RHS: Rewrite,
353 {
354     let lhs_overhead = match separator_place {
355         SeparatorPlace::Back => shape.used_width() + pp.prefix.len() + pp.infix.trim_right().len(),
356         SeparatorPlace::Front => shape.used_width(),
357     };
358     let lhs_shape = Shape {
359         width: context.budget(lhs_overhead),
360         ..shape
361     };
362     let lhs_result = lhs.rewrite(context, lhs_shape)
363         .map(|lhs_str| format!("{}{}", pp.prefix, lhs_str))?;
364
365     // Try to put both lhs and rhs on the same line.
366     let rhs_orig_result = shape
367         .offset_left(last_line_width(&lhs_result) + pp.infix.len())
368         .and_then(|s| s.sub_width(pp.suffix.len()))
369         .and_then(|rhs_shape| rhs.rewrite(context, rhs_shape));
370     if let Some(ref rhs_result) = rhs_orig_result {
371         // If the length of the lhs is equal to or shorter than the tab width or
372         // the rhs looks like block expression, we put the rhs on the same
373         // line with the lhs even if the rhs is multi-lined.
374         let allow_same_line = lhs_result.len() <= context.config.tab_spaces()
375             || rhs_result
376                 .lines()
377                 .next()
378                 .map(|first_line| first_line.ends_with('{'))
379                 .unwrap_or(false);
380         if !rhs_result.contains('\n') || allow_same_line {
381             let one_line_width = last_line_width(&lhs_result) + pp.infix.len()
382                 + first_line_width(rhs_result) + pp.suffix.len();
383             if one_line_width <= shape.width {
384                 return Some(format!(
385                     "{}{}{}{}",
386                     lhs_result, pp.infix, rhs_result, pp.suffix
387                 ));
388             }
389         }
390     }
391
392     // We have to use multiple lines.
393     // Re-evaluate the rhs because we have more space now:
394     let mut rhs_shape = match context.config.indent_style() {
395         IndentStyle::Visual => shape
396             .sub_width(pp.suffix.len() + pp.prefix.len())?
397             .visual_indent(pp.prefix.len()),
398         IndentStyle::Block => {
399             // Try to calculate the initial constraint on the right hand side.
400             let rhs_overhead = shape.rhs_overhead(context.config);
401             Shape::indented(shape.indent.block_indent(context.config), context.config)
402                 .sub_width(rhs_overhead)?
403         }
404     };
405     let infix = match separator_place {
406         SeparatorPlace::Back => pp.infix.trim_right(),
407         SeparatorPlace::Front => pp.infix.trim_left(),
408     };
409     if separator_place == SeparatorPlace::Front {
410         rhs_shape = rhs_shape.offset_left(infix.len())?;
411     }
412     let rhs_result = rhs.rewrite(context, rhs_shape)?;
413     let indent_str = rhs_shape.indent.to_string_with_newline(context.config);
414     let infix_with_sep = match separator_place {
415         SeparatorPlace::Back => format!("{}{}", infix, indent_str),
416         SeparatorPlace::Front => format!("{}{}", indent_str, infix),
417     };
418     Some(format!(
419         "{}{}{}{}",
420         lhs_result, infix_with_sep, rhs_result, pp.suffix
421     ))
422 }
423
424 pub fn rewrite_array<T: Rewrite + Spanned + ToExpr>(
425     exprs: &[&T],
426     span: Span,
427     context: &RewriteContext,
428     shape: Shape,
429     trailing_comma: bool,
430 ) -> Option<String> {
431     let bracket_size = if context.config.spaces_within_parens_and_brackets() {
432         2 // "[ "
433     } else {
434         1 // "["
435     };
436
437     let nested_shape = match context.config.indent_style() {
438         IndentStyle::Block => shape
439             .block()
440             .block_indent(context.config.tab_spaces())
441             .with_max_width(context.config)
442             .sub_width(1)?,
443         IndentStyle::Visual => shape
444             .visual_indent(bracket_size)
445             .sub_width(bracket_size * 2)?,
446     };
447
448     let items = itemize_list(
449         context.snippet_provider,
450         exprs.iter(),
451         "]",
452         ",",
453         |item| item.span().lo(),
454         |item| item.span().hi(),
455         |item| item.rewrite(context, nested_shape),
456         span.lo(),
457         span.hi(),
458         false,
459     ).collect::<Vec<_>>();
460
461     if items.is_empty() {
462         if context.config.spaces_within_parens_and_brackets() {
463             return Some("[ ]".to_string());
464         } else {
465             return Some("[]".to_string());
466         }
467     }
468
469     let tactic = array_tactic(context, shape, nested_shape, exprs, &items, bracket_size);
470     let ends_with_newline = tactic.ends_with_newline(context.config.indent_style());
471
472     let fmt = ListFormatting {
473         tactic,
474         separator: ",",
475         trailing_separator: if trailing_comma {
476             SeparatorTactic::Always
477         } else if context.inside_macro() && !exprs.is_empty() {
478             let ends_with_bracket = context.snippet(span).ends_with(']');
479             let bracket_offset = if ends_with_bracket { 1 } else { 0 };
480             let snippet = context.snippet(mk_sp(span.lo(), span.hi() - BytePos(bracket_offset)));
481             let last_char_index = snippet.rfind(|c: char| !c.is_whitespace())?;
482             if &snippet[last_char_index..last_char_index + 1] == "," {
483                 SeparatorTactic::Always
484             } else {
485                 SeparatorTactic::Never
486             }
487         } else if context.config.indent_style() == IndentStyle::Visual {
488             SeparatorTactic::Never
489         } else {
490             SeparatorTactic::Vertical
491         },
492         separator_place: SeparatorPlace::Back,
493         shape: nested_shape,
494         ends_with_newline,
495         preserve_newline: false,
496         config: context.config,
497     };
498     let list_str = write_list(&items, &fmt)?;
499
500     let result = if context.config.indent_style() == IndentStyle::Visual
501         || tactic == DefinitiveListTactic::Horizontal
502     {
503         if context.config.spaces_within_parens_and_brackets() && !list_str.is_empty() {
504             format!("[ {} ]", list_str)
505         } else {
506             format!("[{}]", list_str)
507         }
508     } else {
509         format!(
510             "[{}{}{}]",
511             nested_shape.indent.to_string_with_newline(context.config),
512             list_str,
513             shape.block().indent.to_string_with_newline(context.config)
514         )
515     };
516
517     Some(result)
518 }
519
520 fn array_tactic<T: Rewrite + Spanned + ToExpr>(
521     context: &RewriteContext,
522     shape: Shape,
523     nested_shape: Shape,
524     exprs: &[&T],
525     items: &[ListItem],
526     bracket_size: usize,
527 ) -> DefinitiveListTactic {
528     let has_long_item = items
529         .iter()
530         .any(|li| li.item.as_ref().map(|s| s.len() > 10).unwrap_or(false));
531
532     match context.config.indent_style() {
533         IndentStyle::Block => {
534             let tactic = match shape.width.checked_sub(2 * bracket_size) {
535                 Some(width) => {
536                     let tactic = ListTactic::LimitedHorizontalVertical(
537                         context.config.width_heuristics().array_width,
538                     );
539                     definitive_tactic(items, tactic, Separator::Comma, width)
540                 }
541                 None => DefinitiveListTactic::Vertical,
542             };
543             if tactic == DefinitiveListTactic::Vertical && !has_long_item
544                 && is_every_expr_simple(exprs)
545             {
546                 DefinitiveListTactic::Mixed
547             } else {
548                 tactic
549             }
550         }
551         IndentStyle::Visual => {
552             if has_long_item || items.iter().any(ListItem::is_multiline) {
553                 definitive_tactic(
554                     items,
555                     ListTactic::LimitedHorizontalVertical(
556                         context.config.width_heuristics().array_width,
557                     ),
558                     Separator::Comma,
559                     nested_shape.width,
560                 )
561             } else {
562                 DefinitiveListTactic::Mixed
563             }
564         }
565     }
566 }
567
568 fn rewrite_empty_block(
569     context: &RewriteContext,
570     block: &ast::Block,
571     attrs: Option<&[ast::Attribute]>,
572     prefix: &str,
573     shape: Shape,
574 ) -> Option<String> {
575     if attrs.map_or(false, |a| !inner_attributes(a).is_empty()) {
576         return None;
577     }
578
579     if block.stmts.is_empty() && !block_contains_comment(block, context.codemap) && shape.width >= 2
580     {
581         return Some(format!("{}{{}}", prefix));
582     }
583
584     // If a block contains only a single-line comment, then leave it on one line.
585     let user_str = context.snippet(block.span);
586     let user_str = user_str.trim();
587     if user_str.starts_with('{') && user_str.ends_with('}') {
588         let comment_str = user_str[1..user_str.len() - 1].trim();
589         if block.stmts.is_empty() && !comment_str.contains('\n') && !comment_str.starts_with("//")
590             && comment_str.len() + 4 <= shape.width
591         {
592             return Some(format!("{}{{ {} }}", prefix, comment_str));
593         }
594     }
595
596     None
597 }
598
599 fn block_prefix(context: &RewriteContext, block: &ast::Block, shape: Shape) -> Option<String> {
600     Some(match block.rules {
601         ast::BlockCheckMode::Unsafe(..) => {
602             let snippet = context.snippet(block.span);
603             let open_pos = snippet.find_uncommented("{")?;
604             // Extract comment between unsafe and block start.
605             let trimmed = &snippet[6..open_pos].trim();
606
607             if !trimmed.is_empty() {
608                 // 9 = "unsafe  {".len(), 7 = "unsafe ".len()
609                 let budget = shape.width.checked_sub(9)?;
610                 format!(
611                     "unsafe {} ",
612                     rewrite_comment(
613                         trimmed,
614                         true,
615                         Shape::legacy(budget, shape.indent + 7),
616                         context.config,
617                     )?
618                 )
619             } else {
620                 "unsafe ".to_owned()
621             }
622         }
623         ast::BlockCheckMode::Default => String::new(),
624     })
625 }
626
627 fn rewrite_single_line_block(
628     context: &RewriteContext,
629     prefix: &str,
630     block: &ast::Block,
631     attrs: Option<&[ast::Attribute]>,
632     shape: Shape,
633 ) -> Option<String> {
634     if is_simple_block(block, attrs, context.codemap) {
635         let expr_shape = shape.offset_left(last_line_width(prefix))?;
636         let expr_str = block.stmts[0].rewrite(context, expr_shape)?;
637         let result = format!("{}{{ {} }}", prefix, expr_str);
638         if result.len() <= shape.width && !result.contains('\n') {
639             return Some(result);
640         }
641     }
642     None
643 }
644
645 pub fn rewrite_block_with_visitor(
646     context: &RewriteContext,
647     prefix: &str,
648     block: &ast::Block,
649     attrs: Option<&[ast::Attribute]>,
650     shape: Shape,
651     has_braces: bool,
652 ) -> Option<String> {
653     if let rw @ Some(_) = rewrite_empty_block(context, block, attrs, prefix, shape) {
654         return rw;
655     }
656
657     let mut visitor = FmtVisitor::from_context(context);
658     visitor.block_indent = shape.indent;
659     visitor.is_if_else_block = context.is_if_else_block();
660     match block.rules {
661         ast::BlockCheckMode::Unsafe(..) => {
662             let snippet = context.snippet(block.span);
663             let open_pos = snippet.find_uncommented("{")?;
664             visitor.last_pos = block.span.lo() + BytePos(open_pos as u32)
665         }
666         ast::BlockCheckMode::Default => visitor.last_pos = block.span.lo(),
667     }
668
669     let inner_attrs = attrs.map(inner_attributes);
670     visitor.visit_block(block, inner_attrs.as_ref().map(|a| &**a), has_braces);
671     Some(format!("{}{}", prefix, visitor.buffer))
672 }
673
674 impl Rewrite for ast::Block {
675     fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
676         rewrite_block(self, None, context, shape)
677     }
678 }
679
680 fn rewrite_block(
681     block: &ast::Block,
682     attrs: Option<&[ast::Attribute]>,
683     context: &RewriteContext,
684     shape: Shape,
685 ) -> Option<String> {
686     let prefix = block_prefix(context, block, shape)?;
687
688     // shape.width is used only for the single line case: either the empty block `{}`,
689     // or an unsafe expression `unsafe { e }`.
690     if let rw @ Some(_) = rewrite_empty_block(context, block, attrs, &prefix, shape) {
691         return rw;
692     }
693
694     let result = rewrite_block_with_visitor(context, &prefix, block, attrs, shape, true);
695     if let Some(ref result_str) = result {
696         if result_str.lines().count() <= 3 {
697             if let rw @ Some(_) = rewrite_single_line_block(context, &prefix, block, attrs, shape) {
698                 return rw;
699             }
700         }
701     }
702
703     result
704 }
705
706 impl Rewrite for ast::Stmt {
707     fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
708         skip_out_of_file_lines_range!(context, self.span());
709
710         let result = match self.node {
711             ast::StmtKind::Local(ref local) => local.rewrite(context, shape),
712             ast::StmtKind::Expr(ref ex) | ast::StmtKind::Semi(ref ex) => {
713                 let suffix = if semicolon_for_stmt(context, self) {
714                     ";"
715                 } else {
716                     ""
717                 };
718
719                 let shape = shape.sub_width(suffix.len())?;
720                 format_expr(ex, ExprType::Statement, context, shape).map(|s| s + suffix)
721             }
722             ast::StmtKind::Mac(..) | ast::StmtKind::Item(..) => None,
723         };
724         result.and_then(|res| recover_comment_removed(res, self.span(), context))
725     }
726 }
727
728 // Rewrite condition if the given expression has one.
729 pub fn rewrite_cond(context: &RewriteContext, expr: &ast::Expr, shape: Shape) -> Option<String> {
730     match expr.node {
731         ast::ExprKind::Match(ref cond, _) => {
732             // `match `cond` {`
733             let cond_shape = match context.config.indent_style() {
734                 IndentStyle::Visual => shape.shrink_left(6).and_then(|s| s.sub_width(2))?,
735                 IndentStyle::Block => shape.offset_left(8)?,
736             };
737             cond.rewrite(context, cond_shape)
738         }
739         _ => to_control_flow(expr, ExprType::SubExpression).and_then(|control_flow| {
740             let alt_block_sep =
741                 String::from("\n") + &shape.indent.block_only().to_string(context.config);
742             control_flow
743                 .rewrite_cond(context, shape, &alt_block_sep)
744                 .and_then(|rw| Some(rw.0))
745         }),
746     }
747 }
748
749 // Abstraction over control flow expressions
750 #[derive(Debug)]
751 struct ControlFlow<'a> {
752     cond: Option<&'a ast::Expr>,
753     block: &'a ast::Block,
754     else_block: Option<&'a ast::Expr>,
755     label: Option<ast::Label>,
756     pats: Vec<&'a ast::Pat>,
757     keyword: &'a str,
758     matcher: &'a str,
759     connector: &'a str,
760     allow_single_line: bool,
761     // True if this is an `if` expression in an `else if` :-( hacky
762     nested_if: bool,
763     span: Span,
764 }
765
766 fn to_control_flow(expr: &ast::Expr, expr_type: ExprType) -> Option<ControlFlow> {
767     match expr.node {
768         ast::ExprKind::If(ref cond, ref if_block, ref else_block) => Some(ControlFlow::new_if(
769             cond,
770             vec![],
771             if_block,
772             else_block.as_ref().map(|e| &**e),
773             expr_type == ExprType::SubExpression,
774             false,
775             expr.span,
776         )),
777         ast::ExprKind::IfLet(ref pat, ref cond, ref if_block, ref else_block) => {
778             Some(ControlFlow::new_if(
779                 cond,
780                 ptr_vec_to_ref_vec(pat),
781                 if_block,
782                 else_block.as_ref().map(|e| &**e),
783                 expr_type == ExprType::SubExpression,
784                 false,
785                 expr.span,
786             ))
787         }
788         ast::ExprKind::ForLoop(ref pat, ref cond, ref block, label) => {
789             Some(ControlFlow::new_for(pat, cond, block, label, expr.span))
790         }
791         ast::ExprKind::Loop(ref block, label) => {
792             Some(ControlFlow::new_loop(block, label, expr.span))
793         }
794         ast::ExprKind::While(ref cond, ref block, label) => Some(ControlFlow::new_while(
795             vec![],
796             cond,
797             block,
798             label,
799             expr.span,
800         )),
801         ast::ExprKind::WhileLet(ref pat, ref cond, ref block, label) => Some(
802             ControlFlow::new_while(ptr_vec_to_ref_vec(pat), cond, block, label, expr.span),
803         ),
804         _ => None,
805     }
806 }
807
808 fn choose_matcher(pats: &[&ast::Pat]) -> &'static str {
809     if pats.is_empty() {
810         ""
811     } else {
812         "let"
813     }
814 }
815
816 impl<'a> ControlFlow<'a> {
817     fn new_if(
818         cond: &'a ast::Expr,
819         pats: Vec<&'a ast::Pat>,
820         block: &'a ast::Block,
821         else_block: Option<&'a ast::Expr>,
822         allow_single_line: bool,
823         nested_if: bool,
824         span: Span,
825     ) -> ControlFlow<'a> {
826         let matcher = choose_matcher(&pats);
827         ControlFlow {
828             cond: Some(cond),
829             block,
830             else_block,
831             label: None,
832             pats,
833             keyword: "if",
834             matcher,
835             connector: " =",
836             allow_single_line,
837             nested_if,
838             span,
839         }
840     }
841
842     fn new_loop(block: &'a ast::Block, label: Option<ast::Label>, span: Span) -> ControlFlow<'a> {
843         ControlFlow {
844             cond: None,
845             block,
846             else_block: None,
847             label,
848             pats: vec![],
849             keyword: "loop",
850             matcher: "",
851             connector: "",
852             allow_single_line: false,
853             nested_if: false,
854             span,
855         }
856     }
857
858     fn new_while(
859         pats: Vec<&'a ast::Pat>,
860         cond: &'a ast::Expr,
861         block: &'a ast::Block,
862         label: Option<ast::Label>,
863         span: Span,
864     ) -> ControlFlow<'a> {
865         let matcher = choose_matcher(&pats);
866         ControlFlow {
867             cond: Some(cond),
868             block,
869             else_block: None,
870             label,
871             pats,
872             keyword: "while",
873             matcher,
874             connector: " =",
875             allow_single_line: false,
876             nested_if: false,
877             span,
878         }
879     }
880
881     fn new_for(
882         pat: &'a ast::Pat,
883         cond: &'a ast::Expr,
884         block: &'a ast::Block,
885         label: Option<ast::Label>,
886         span: Span,
887     ) -> ControlFlow<'a> {
888         ControlFlow {
889             cond: Some(cond),
890             block,
891             else_block: None,
892             label,
893             pats: vec![pat],
894             keyword: "for",
895             matcher: "",
896             connector: " in",
897             allow_single_line: false,
898             nested_if: false,
899             span,
900         }
901     }
902
903     fn rewrite_single_line(
904         &self,
905         pat_expr_str: &str,
906         context: &RewriteContext,
907         width: usize,
908     ) -> Option<String> {
909         assert!(self.allow_single_line);
910         let else_block = self.else_block?;
911         let fixed_cost = self.keyword.len() + "  {  } else {  }".len();
912
913         if let ast::ExprKind::Block(ref else_node) = else_block.node {
914             if !is_simple_block(self.block, None, context.codemap)
915                 || !is_simple_block(else_node, None, context.codemap)
916                 || pat_expr_str.contains('\n')
917             {
918                 return None;
919             }
920
921             let new_width = width.checked_sub(pat_expr_str.len() + fixed_cost)?;
922             let expr = &self.block.stmts[0];
923             let if_str = expr.rewrite(context, Shape::legacy(new_width, Indent::empty()))?;
924
925             let new_width = new_width.checked_sub(if_str.len())?;
926             let else_expr = &else_node.stmts[0];
927             let else_str = else_expr.rewrite(context, Shape::legacy(new_width, Indent::empty()))?;
928
929             if if_str.contains('\n') || else_str.contains('\n') {
930                 return None;
931             }
932
933             let result = format!(
934                 "{} {} {{ {} }} else {{ {} }}",
935                 self.keyword, pat_expr_str, if_str, else_str
936             );
937
938             if result.len() <= width {
939                 return Some(result);
940             }
941         }
942
943         None
944     }
945 }
946
947 impl<'a> ControlFlow<'a> {
948     fn rewrite_pat_expr(
949         &self,
950         context: &RewriteContext,
951         expr: &ast::Expr,
952         shape: Shape,
953         offset: usize,
954     ) -> Option<String> {
955         debug!("rewrite_pat_expr {:?} {:?} {:?}", shape, self.pats, expr);
956
957         let cond_shape = shape.offset_left(offset)?;
958         if !self.pats.is_empty() {
959             let matcher = if self.matcher.is_empty() {
960                 self.matcher.to_owned()
961             } else {
962                 format!("{} ", self.matcher)
963             };
964             let pat_shape = cond_shape
965                 .offset_left(matcher.len())?
966                 .sub_width(self.connector.len())?;
967             let pat_string = rewrite_multiple_patterns(context, &self.pats, pat_shape)?;
968             let result = format!("{}{}{}", matcher, pat_string, self.connector);
969             return rewrite_assign_rhs(context, result, expr, cond_shape);
970         }
971
972         let expr_rw = expr.rewrite(context, cond_shape);
973         // The expression may (partially) fit on the current line.
974         // We do not allow splitting between `if` and condition.
975         if self.keyword == "if" || expr_rw.is_some() {
976             return expr_rw;
977         }
978
979         // The expression won't fit on the current line, jump to next.
980         let nested_shape = shape
981             .block_indent(context.config.tab_spaces())
982             .with_max_width(context.config);
983         let nested_indent_str = nested_shape.indent.to_string_with_newline(context.config);
984         expr.rewrite(context, nested_shape)
985             .map(|expr_rw| format!("{}{}", nested_indent_str, expr_rw))
986     }
987
988     fn rewrite_cond(
989         &self,
990         context: &RewriteContext,
991         shape: Shape,
992         alt_block_sep: &str,
993     ) -> Option<(String, usize)> {
994         // Do not take the rhs overhead from the upper expressions into account
995         // when rewriting pattern.
996         let new_width = context.budget(shape.used_width());
997         let fresh_shape = Shape {
998             width: new_width,
999             ..shape
1000         };
1001         let constr_shape = if self.nested_if {
1002             // We are part of an if-elseif-else chain. Our constraints are tightened.
1003             // 7 = "} else " .len()
1004             fresh_shape.offset_left(7)?
1005         } else {
1006             fresh_shape
1007         };
1008
1009         let label_string = rewrite_label(self.label);
1010         // 1 = space after keyword.
1011         let offset = self.keyword.len() + label_string.len() + 1;
1012
1013         let pat_expr_string = match self.cond {
1014             Some(cond) => self.rewrite_pat_expr(context, cond, constr_shape, offset)?,
1015             None => String::new(),
1016         };
1017
1018         let brace_overhead =
1019             if context.config.control_brace_style() != ControlBraceStyle::AlwaysNextLine {
1020                 // 2 = ` {`
1021                 2
1022             } else {
1023                 0
1024             };
1025         let one_line_budget = context
1026             .config
1027             .max_width()
1028             .checked_sub(constr_shape.used_width() + offset + brace_overhead)
1029             .unwrap_or(0);
1030         let force_newline_brace = (pat_expr_string.contains('\n')
1031             || pat_expr_string.len() > one_line_budget)
1032             && !last_line_extendable(&pat_expr_string);
1033
1034         // Try to format if-else on single line.
1035         if self.allow_single_line
1036             && context
1037                 .config
1038                 .width_heuristics()
1039                 .single_line_if_else_max_width > 0
1040         {
1041             let trial = self.rewrite_single_line(&pat_expr_string, context, shape.width);
1042
1043             if let Some(cond_str) = trial {
1044                 if cond_str.len()
1045                     <= context
1046                         .config
1047                         .width_heuristics()
1048                         .single_line_if_else_max_width
1049                 {
1050                     return Some((cond_str, 0));
1051                 }
1052             }
1053         }
1054
1055         let cond_span = if let Some(cond) = self.cond {
1056             cond.span
1057         } else {
1058             mk_sp(self.block.span.lo(), self.block.span.lo())
1059         };
1060
1061         // `for event in event`
1062         // Do not include label in the span.
1063         let lo = self.label.map_or(self.span.lo(), |label| label.span.hi());
1064         let between_kwd_cond = mk_sp(
1065             context
1066                 .snippet_provider
1067                 .span_after(mk_sp(lo, self.span.hi()), self.keyword.trim()),
1068             if self.pats.is_empty() {
1069                 cond_span.lo()
1070             } else if self.matcher.is_empty() {
1071                 self.pats[0].span.lo()
1072             } else {
1073                 context
1074                     .snippet_provider
1075                     .span_before(self.span, self.matcher.trim())
1076             },
1077         );
1078
1079         let between_kwd_cond_comment = extract_comment(between_kwd_cond, context, shape);
1080
1081         let after_cond_comment =
1082             extract_comment(mk_sp(cond_span.hi(), self.block.span.lo()), context, shape);
1083
1084         let block_sep = if self.cond.is_none() && between_kwd_cond_comment.is_some() {
1085             ""
1086         } else if context.config.control_brace_style() == ControlBraceStyle::AlwaysNextLine
1087             || force_newline_brace
1088         {
1089             alt_block_sep
1090         } else {
1091             " "
1092         };
1093
1094         let used_width = if pat_expr_string.contains('\n') {
1095             last_line_width(&pat_expr_string)
1096         } else {
1097             // 2 = spaces after keyword and condition.
1098             label_string.len() + self.keyword.len() + pat_expr_string.len() + 2
1099         };
1100
1101         Some((
1102             format!(
1103                 "{}{}{}{}{}",
1104                 label_string,
1105                 self.keyword,
1106                 between_kwd_cond_comment.as_ref().map_or(
1107                     if pat_expr_string.is_empty() || pat_expr_string.starts_with('\n') {
1108                         ""
1109                     } else {
1110                         " "
1111                     },
1112                     |s| &**s,
1113                 ),
1114                 pat_expr_string,
1115                 after_cond_comment.as_ref().map_or(block_sep, |s| &**s)
1116             ),
1117             used_width,
1118         ))
1119     }
1120 }
1121
1122 impl<'a> Rewrite for ControlFlow<'a> {
1123     fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
1124         debug!("ControlFlow::rewrite {:?} {:?}", self, shape);
1125
1126         let alt_block_sep = &shape.indent.to_string_with_newline(context.config);
1127         let (cond_str, used_width) = self.rewrite_cond(context, shape, alt_block_sep)?;
1128         // If `used_width` is 0, it indicates that whole control flow is written in a single line.
1129         if used_width == 0 {
1130             return Some(cond_str);
1131         }
1132
1133         let block_width = shape.width.checked_sub(used_width).unwrap_or(0);
1134         // This is used only for the empty block case: `{}`. So, we use 1 if we know
1135         // we should avoid the single line case.
1136         let block_width = if self.else_block.is_some() || self.nested_if {
1137             min(1, block_width)
1138         } else {
1139             block_width
1140         };
1141         let block_shape = Shape {
1142             width: block_width,
1143             ..shape
1144         };
1145         let block_str = {
1146             let old_val = context.is_if_else_block.replace(self.else_block.is_some());
1147             let result =
1148                 rewrite_block_with_visitor(context, "", self.block, None, block_shape, true);
1149             context.is_if_else_block.replace(old_val);
1150             result?
1151         };
1152
1153         let mut result = format!("{}{}", cond_str, block_str);
1154
1155         if let Some(else_block) = self.else_block {
1156             let shape = Shape::indented(shape.indent, context.config);
1157             let mut last_in_chain = false;
1158             let rewrite = match else_block.node {
1159                 // If the else expression is another if-else expression, prevent it
1160                 // from being formatted on a single line.
1161                 // Note how we're passing the original shape, as the
1162                 // cost of "else" should not cascade.
1163                 ast::ExprKind::IfLet(ref pat, ref cond, ref if_block, ref next_else_block) => {
1164                     ControlFlow::new_if(
1165                         cond,
1166                         ptr_vec_to_ref_vec(pat),
1167                         if_block,
1168                         next_else_block.as_ref().map(|e| &**e),
1169                         false,
1170                         true,
1171                         mk_sp(else_block.span.lo(), self.span.hi()),
1172                     ).rewrite(context, shape)
1173                 }
1174                 ast::ExprKind::If(ref cond, ref if_block, ref next_else_block) => {
1175                     ControlFlow::new_if(
1176                         cond,
1177                         vec![],
1178                         if_block,
1179                         next_else_block.as_ref().map(|e| &**e),
1180                         false,
1181                         true,
1182                         mk_sp(else_block.span.lo(), self.span.hi()),
1183                     ).rewrite(context, shape)
1184                 }
1185                 _ => {
1186                     last_in_chain = true;
1187                     // When rewriting a block, the width is only used for single line
1188                     // blocks, passing 1 lets us avoid that.
1189                     let else_shape = Shape {
1190                         width: min(1, shape.width),
1191                         ..shape
1192                     };
1193                     format_expr(else_block, ExprType::Statement, context, else_shape)
1194                 }
1195             };
1196
1197             let between_kwd_else_block = mk_sp(
1198                 self.block.span.hi(),
1199                 context
1200                     .snippet_provider
1201                     .span_before(mk_sp(self.block.span.hi(), else_block.span.lo()), "else"),
1202             );
1203             let between_kwd_else_block_comment =
1204                 extract_comment(between_kwd_else_block, context, shape);
1205
1206             let after_else = mk_sp(
1207                 context
1208                     .snippet_provider
1209                     .span_after(mk_sp(self.block.span.hi(), else_block.span.lo()), "else"),
1210                 else_block.span.lo(),
1211             );
1212             let after_else_comment = extract_comment(after_else, context, shape);
1213
1214             let between_sep = match context.config.control_brace_style() {
1215                 ControlBraceStyle::AlwaysNextLine | ControlBraceStyle::ClosingNextLine => {
1216                     &*alt_block_sep
1217                 }
1218                 ControlBraceStyle::AlwaysSameLine => " ",
1219             };
1220             let after_sep = match context.config.control_brace_style() {
1221                 ControlBraceStyle::AlwaysNextLine if last_in_chain => &*alt_block_sep,
1222                 _ => " ",
1223             };
1224
1225             result.push_str(&format!(
1226                 "{}else{}",
1227                 between_kwd_else_block_comment
1228                     .as_ref()
1229                     .map_or(between_sep, |s| &**s),
1230                 after_else_comment.as_ref().map_or(after_sep, |s| &**s),
1231             ));
1232             result.push_str(&rewrite?);
1233         }
1234
1235         Some(result)
1236     }
1237 }
1238
1239 fn rewrite_label(opt_label: Option<ast::Label>) -> Cow<'static, str> {
1240     match opt_label {
1241         Some(label) => Cow::from(format!("{}: ", label.ident)),
1242         None => Cow::from(""),
1243     }
1244 }
1245
1246 fn extract_comment(span: Span, context: &RewriteContext, shape: Shape) -> Option<String> {
1247     match rewrite_missing_comment(span, shape, context) {
1248         Some(ref comment) if !comment.is_empty() => Some(format!(
1249             "{indent}{}{indent}",
1250             comment,
1251             indent = shape.indent.to_string_with_newline(context.config)
1252         )),
1253         _ => None,
1254     }
1255 }
1256
1257 pub fn block_contains_comment(block: &ast::Block, codemap: &CodeMap) -> bool {
1258     let snippet = codemap.span_to_snippet(block.span).unwrap();
1259     contains_comment(&snippet)
1260 }
1261
1262 // Checks that a block contains no statements, an expression and no comments or
1263 // attributes.
1264 // FIXME: incorrectly returns false when comment is contained completely within
1265 // the expression.
1266 pub fn is_simple_block(
1267     block: &ast::Block,
1268     attrs: Option<&[ast::Attribute]>,
1269     codemap: &CodeMap,
1270 ) -> bool {
1271     (block.stmts.len() == 1 && stmt_is_expr(&block.stmts[0])
1272         && !block_contains_comment(block, codemap) && attrs.map_or(true, |a| a.is_empty()))
1273 }
1274
1275 /// Checks whether a block contains at most one statement or expression, and no
1276 /// comments or attributes.
1277 pub fn is_simple_block_stmt(
1278     block: &ast::Block,
1279     attrs: Option<&[ast::Attribute]>,
1280     codemap: &CodeMap,
1281 ) -> bool {
1282     block.stmts.len() <= 1 && !block_contains_comment(block, codemap)
1283         && attrs.map_or(true, |a| a.is_empty())
1284 }
1285
1286 /// Checks whether a block contains no statements, expressions, comments, or
1287 /// inner attributes.
1288 pub fn is_empty_block(
1289     block: &ast::Block,
1290     attrs: Option<&[ast::Attribute]>,
1291     codemap: &CodeMap,
1292 ) -> bool {
1293     block.stmts.is_empty() && !block_contains_comment(block, codemap)
1294         && attrs.map_or(true, |a| inner_attributes(a).is_empty())
1295 }
1296
1297 pub fn stmt_is_expr(stmt: &ast::Stmt) -> bool {
1298     match stmt.node {
1299         ast::StmtKind::Expr(..) => true,
1300         _ => false,
1301     }
1302 }
1303
1304 pub fn is_unsafe_block(block: &ast::Block) -> bool {
1305     if let ast::BlockCheckMode::Unsafe(..) = block.rules {
1306         true
1307     } else {
1308         false
1309     }
1310 }
1311
1312 pub fn rewrite_multiple_patterns(
1313     context: &RewriteContext,
1314     pats: &[&ast::Pat],
1315     shape: Shape,
1316 ) -> Option<String> {
1317     let pat_strs = pats.iter()
1318         .map(|p| p.rewrite(context, shape))
1319         .collect::<Option<Vec<_>>>()?;
1320
1321     let use_mixed_layout = pats.iter()
1322         .zip(pat_strs.iter())
1323         .all(|(pat, pat_str)| is_short_pattern(pat, pat_str));
1324     let items: Vec<_> = pat_strs.into_iter().map(ListItem::from_str).collect();
1325     let tactic = if use_mixed_layout {
1326         DefinitiveListTactic::Mixed
1327     } else {
1328         definitive_tactic(
1329             &items,
1330             ListTactic::HorizontalVertical,
1331             Separator::VerticalBar,
1332             shape.width,
1333         )
1334     };
1335     let fmt = ListFormatting {
1336         tactic,
1337         separator: " |",
1338         trailing_separator: SeparatorTactic::Never,
1339         separator_place: context.config.binop_separator(),
1340         shape,
1341         ends_with_newline: false,
1342         preserve_newline: false,
1343         config: context.config,
1344     };
1345     write_list(&items, &fmt)
1346 }
1347
1348 pub fn rewrite_literal(context: &RewriteContext, l: &ast::Lit, shape: Shape) -> Option<String> {
1349     match l.node {
1350         ast::LitKind::Str(_, ast::StrStyle::Cooked) => rewrite_string_lit(context, l.span, shape),
1351         _ => wrap_str(
1352             context.snippet(l.span).to_owned(),
1353             context.config.max_width(),
1354             shape,
1355         ),
1356     }
1357 }
1358
1359 fn rewrite_string_lit(context: &RewriteContext, span: Span, shape: Shape) -> Option<String> {
1360     let string_lit = context.snippet(span);
1361
1362     if !context.config.format_strings() {
1363         if string_lit
1364             .lines()
1365             .rev()
1366             .skip(1)
1367             .all(|line| line.ends_with('\\'))
1368         {
1369             let new_indent = shape.visual_indent(1).indent;
1370             let indented_string_lit = String::from(
1371                 string_lit
1372                     .lines()
1373                     .map(|line| {
1374                         format!(
1375                             "{}{}",
1376                             new_indent.to_string(context.config),
1377                             line.trim_left()
1378                         )
1379                     })
1380                     .collect::<Vec<_>>()
1381                     .join("\n")
1382                     .trim_left(),
1383             );
1384             return wrap_str(indented_string_lit, context.config.max_width(), shape);
1385         } else {
1386             return wrap_str(string_lit.to_owned(), context.config.max_width(), shape);
1387         }
1388     }
1389
1390     // Remove the quote characters.
1391     let str_lit = &string_lit[1..string_lit.len() - 1];
1392
1393     rewrite_string(
1394         str_lit,
1395         &StringFormat::new(shape.visual_indent(0), context.config),
1396         None,
1397     )
1398 }
1399
1400 /// In case special-case style is required, returns an offset from which we start horizontal layout.
1401 pub fn maybe_get_args_offset<T: ToExpr>(callee_str: &str, args: &[&T]) -> Option<(bool, usize)> {
1402     if let Some(&(_, num_args_before)) = SPECIAL_MACRO_WHITELIST
1403         .iter()
1404         .find(|&&(s, _)| s == callee_str)
1405     {
1406         let all_simple = args.len() > num_args_before && is_every_expr_simple(args);
1407
1408         Some((all_simple, num_args_before))
1409     } else {
1410         None
1411     }
1412 }
1413
1414 /// A list of `format!`-like macros, that take a long format string and a list of arguments to
1415 /// format.
1416 ///
1417 /// Organized as a list of `(&str, usize)` tuples, giving the name of the macro and the number of
1418 /// arguments before the format string (none for `format!("format", ...)`, one for `assert!(result,
1419 /// "format", ...)`, two for `assert_eq!(left, right, "format", ...)`).
1420 const SPECIAL_MACRO_WHITELIST: &[(&str, usize)] = &[
1421     // format! like macros
1422     // From the Rust Standard Library.
1423     ("eprint!", 0),
1424     ("eprintln!", 0),
1425     ("format!", 0),
1426     ("format_args!", 0),
1427     ("print!", 0),
1428     ("println!", 0),
1429     ("panic!", 0),
1430     ("unreachable!", 0),
1431     // From the `log` crate.
1432     ("debug!", 0),
1433     ("error!", 0),
1434     ("info!", 0),
1435     ("warn!", 0),
1436     // write! like macros
1437     ("assert!", 1),
1438     ("debug_assert!", 1),
1439     ("write!", 1),
1440     ("writeln!", 1),
1441     // assert_eq! like macros
1442     ("assert_eq!", 2),
1443     ("assert_ne!", 2),
1444     ("debug_assert_eq!", 2),
1445     ("debug_assert_ne!", 2),
1446 ];
1447
1448 pub fn rewrite_call(
1449     context: &RewriteContext,
1450     callee: &str,
1451     args: &[ptr::P<ast::Expr>],
1452     span: Span,
1453     shape: Shape,
1454 ) -> Option<String> {
1455     overflow::rewrite_with_parens(
1456         context,
1457         callee,
1458         &ptr_vec_to_ref_vec(args),
1459         shape,
1460         span,
1461         context.config.width_heuristics().fn_call_width,
1462         if context.inside_macro() {
1463             if span_ends_with_comma(context, span) {
1464                 Some(SeparatorTactic::Always)
1465             } else {
1466                 Some(SeparatorTactic::Never)
1467             }
1468         } else {
1469             None
1470         },
1471     )
1472 }
1473
1474 fn is_simple_expr(expr: &ast::Expr) -> bool {
1475     match expr.node {
1476         ast::ExprKind::Lit(..) => true,
1477         ast::ExprKind::Path(ref qself, ref path) => qself.is_none() && path.segments.len() <= 1,
1478         ast::ExprKind::AddrOf(_, ref expr)
1479         | ast::ExprKind::Box(ref expr)
1480         | ast::ExprKind::Cast(ref expr, _)
1481         | ast::ExprKind::Field(ref expr, _)
1482         | ast::ExprKind::Try(ref expr)
1483         | ast::ExprKind::TupField(ref expr, _)
1484         | ast::ExprKind::Unary(_, ref expr) => is_simple_expr(expr),
1485         ast::ExprKind::Index(ref lhs, ref rhs) | ast::ExprKind::Repeat(ref lhs, ref rhs) => {
1486             is_simple_expr(lhs) && is_simple_expr(rhs)
1487         }
1488         _ => false,
1489     }
1490 }
1491
1492 fn is_every_expr_simple<T: ToExpr>(lists: &[&T]) -> bool {
1493     lists
1494         .iter()
1495         .all(|arg| arg.to_expr().map_or(false, is_simple_expr))
1496 }
1497
1498 pub fn can_be_overflowed_expr(context: &RewriteContext, expr: &ast::Expr, args_len: usize) -> bool {
1499     match expr.node {
1500         ast::ExprKind::Match(..) => {
1501             (context.use_block_indent() && args_len == 1)
1502                 || (context.config.indent_style() == IndentStyle::Visual && args_len > 1)
1503         }
1504         ast::ExprKind::If(..)
1505         | ast::ExprKind::IfLet(..)
1506         | ast::ExprKind::ForLoop(..)
1507         | ast::ExprKind::Loop(..)
1508         | ast::ExprKind::While(..)
1509         | ast::ExprKind::WhileLet(..) => {
1510             context.config.combine_control_expr() && context.use_block_indent() && args_len == 1
1511         }
1512         ast::ExprKind::Block(..) | ast::ExprKind::Closure(..) => {
1513             context.use_block_indent()
1514                 || context.config.indent_style() == IndentStyle::Visual && args_len > 1
1515         }
1516         ast::ExprKind::Array(..)
1517         | ast::ExprKind::Call(..)
1518         | ast::ExprKind::Mac(..)
1519         | ast::ExprKind::MethodCall(..)
1520         | ast::ExprKind::Struct(..)
1521         | ast::ExprKind::Tup(..) => context.use_block_indent() && args_len == 1,
1522         ast::ExprKind::AddrOf(_, ref expr)
1523         | ast::ExprKind::Box(ref expr)
1524         | ast::ExprKind::Try(ref expr)
1525         | ast::ExprKind::Unary(_, ref expr)
1526         | ast::ExprKind::Cast(ref expr, _) => can_be_overflowed_expr(context, expr, args_len),
1527         _ => false,
1528     }
1529 }
1530
1531 pub fn is_nested_call(expr: &ast::Expr) -> bool {
1532     match expr.node {
1533         ast::ExprKind::Call(..) | ast::ExprKind::Mac(..) => true,
1534         ast::ExprKind::AddrOf(_, ref expr)
1535         | ast::ExprKind::Box(ref expr)
1536         | ast::ExprKind::Try(ref expr)
1537         | ast::ExprKind::Unary(_, ref expr)
1538         | ast::ExprKind::Cast(ref expr, _) => is_nested_call(expr),
1539         _ => false,
1540     }
1541 }
1542
1543 /// Return true if a function call or a method call represented by the given span ends with a
1544 /// trailing comma. This function is used when rewriting macro, as adding or removing a trailing
1545 /// comma from macro can potentially break the code.
1546 pub fn span_ends_with_comma(context: &RewriteContext, span: Span) -> bool {
1547     let mut result: bool = Default::default();
1548     let mut prev_char: char = Default::default();
1549
1550     for (kind, c) in CharClasses::new(context.snippet(span).chars()) {
1551         match c {
1552             _ if kind.is_comment() || c.is_whitespace() => continue,
1553             ')' | '}' => result = result && prev_char != ')' && prev_char != '}',
1554             ',' => result = true,
1555             _ => result = false,
1556         }
1557         prev_char = c;
1558     }
1559
1560     result
1561 }
1562
1563 fn rewrite_paren(
1564     context: &RewriteContext,
1565     mut subexpr: &ast::Expr,
1566     shape: Shape,
1567     mut span: Span,
1568 ) -> Option<String> {
1569     debug!("rewrite_paren, shape: {:?}", shape);
1570
1571     // Extract comments within parens.
1572     let mut pre_comment;
1573     let mut post_comment;
1574     loop {
1575         // 1 = "(" or ")"
1576         let pre_span = mk_sp(span.lo() + BytePos(1), subexpr.span.lo());
1577         let post_span = mk_sp(subexpr.span.hi(), span.hi() - BytePos(1));
1578         pre_comment = rewrite_missing_comment(pre_span, shape, context)?;
1579         post_comment = rewrite_missing_comment(post_span, shape, context)?;
1580
1581         // Remove nested parens if there are no comments.
1582         if let ast::ExprKind::Paren(ref subsubexpr) = subexpr.node {
1583             if pre_comment.is_empty() && post_comment.is_empty() {
1584                 span = subexpr.span;
1585                 subexpr = subsubexpr;
1586                 continue;
1587             }
1588         }
1589
1590         break;
1591     }
1592
1593     let total_paren_overhead = paren_overhead(context);
1594     let paren_overhead = total_paren_overhead / 2;
1595     let sub_shape = shape
1596         .offset_left(paren_overhead)
1597         .and_then(|s| s.sub_width(paren_overhead))?;
1598
1599     let paren_wrapper = |s: &str| {
1600         if context.config.spaces_within_parens_and_brackets() && !s.is_empty() {
1601             format!("( {}{}{} )", pre_comment, s, post_comment)
1602         } else {
1603             format!("({}{}{})", pre_comment, s, post_comment)
1604         }
1605     };
1606
1607     let subexpr_str = subexpr.rewrite(context, sub_shape)?;
1608     debug!("rewrite_paren, subexpr_str: `{:?}`", subexpr_str);
1609
1610     if subexpr_str.contains('\n')
1611         || first_line_width(&subexpr_str) + total_paren_overhead <= shape.width
1612     {
1613         Some(paren_wrapper(&subexpr_str))
1614     } else {
1615         None
1616     }
1617 }
1618
1619 fn rewrite_index(
1620     expr: &ast::Expr,
1621     index: &ast::Expr,
1622     context: &RewriteContext,
1623     shape: Shape,
1624 ) -> Option<String> {
1625     let expr_str = expr.rewrite(context, shape)?;
1626
1627     let (lbr, rbr) = if context.config.spaces_within_parens_and_brackets() {
1628         ("[ ", " ]")
1629     } else {
1630         ("[", "]")
1631     };
1632
1633     let offset = last_line_width(&expr_str) + lbr.len();
1634     let rhs_overhead = shape.rhs_overhead(context.config);
1635     let index_shape = if expr_str.contains('\n') {
1636         Shape::legacy(context.config.max_width(), shape.indent)
1637             .offset_left(offset)
1638             .and_then(|shape| shape.sub_width(rbr.len() + rhs_overhead))
1639     } else {
1640         shape.visual_indent(offset).sub_width(offset + rbr.len())
1641     };
1642     let orig_index_rw = index_shape.and_then(|s| index.rewrite(context, s));
1643
1644     // Return if index fits in a single line.
1645     match orig_index_rw {
1646         Some(ref index_str) if !index_str.contains('\n') => {
1647             return Some(format!("{}{}{}{}", expr_str, lbr, index_str, rbr));
1648         }
1649         _ => (),
1650     }
1651
1652     // Try putting index on the next line and see if it fits in a single line.
1653     let indent = shape.indent.block_indent(context.config);
1654     let index_shape = Shape::indented(indent, context.config).offset_left(lbr.len())?;
1655     let index_shape = index_shape.sub_width(rbr.len() + rhs_overhead)?;
1656     let new_index_rw = index.rewrite(context, index_shape);
1657     match (orig_index_rw, new_index_rw) {
1658         (_, Some(ref new_index_str)) if !new_index_str.contains('\n') => Some(format!(
1659             "{}{}{}{}{}",
1660             expr_str,
1661             indent.to_string_with_newline(context.config),
1662             lbr,
1663             new_index_str,
1664             rbr
1665         )),
1666         (None, Some(ref new_index_str)) => Some(format!(
1667             "{}{}{}{}{}",
1668             expr_str,
1669             indent.to_string_with_newline(context.config),
1670             lbr,
1671             new_index_str,
1672             rbr
1673         )),
1674         (Some(ref index_str), _) => Some(format!("{}{}{}{}", expr_str, lbr, index_str, rbr)),
1675         _ => None,
1676     }
1677 }
1678
1679 fn struct_lit_can_be_aligned(fields: &[ast::Field], base: &Option<&ast::Expr>) -> bool {
1680     if base.is_some() {
1681         return false;
1682     }
1683
1684     fields.iter().all(|field| !field.is_shorthand)
1685 }
1686
1687 fn rewrite_struct_lit<'a>(
1688     context: &RewriteContext,
1689     path: &ast::Path,
1690     fields: &'a [ast::Field],
1691     base: Option<&'a ast::Expr>,
1692     span: Span,
1693     shape: Shape,
1694 ) -> Option<String> {
1695     debug!("rewrite_struct_lit: shape {:?}", shape);
1696
1697     enum StructLitField<'a> {
1698         Regular(&'a ast::Field),
1699         Base(&'a ast::Expr),
1700     }
1701
1702     // 2 = " {".len()
1703     let path_shape = shape.sub_width(2)?;
1704     let path_str = rewrite_path(context, PathContext::Expr, None, path, path_shape)?;
1705
1706     if fields.is_empty() && base.is_none() {
1707         return Some(format!("{} {{}}", path_str));
1708     }
1709
1710     // Foo { a: Foo } - indent is +3, width is -5.
1711     let (h_shape, v_shape) = struct_lit_shape(shape, context, path_str.len() + 3, 2)?;
1712
1713     let one_line_width = h_shape.map_or(0, |shape| shape.width);
1714     let body_lo = context.snippet_provider.span_after(span, "{");
1715     let fields_str = if struct_lit_can_be_aligned(fields, &base)
1716         && context.config.struct_field_align_threshold() > 0
1717     {
1718         rewrite_with_alignment(
1719             fields,
1720             context,
1721             shape,
1722             mk_sp(body_lo, span.hi()),
1723             one_line_width,
1724         )?
1725     } else {
1726         let field_iter = fields
1727             .into_iter()
1728             .map(StructLitField::Regular)
1729             .chain(base.into_iter().map(StructLitField::Base));
1730
1731         let span_lo = |item: &StructLitField| match *item {
1732             StructLitField::Regular(field) => field.span().lo(),
1733             StructLitField::Base(expr) => {
1734                 let last_field_hi = fields.last().map_or(span.lo(), |field| field.span.hi());
1735                 let snippet = context.snippet(mk_sp(last_field_hi, expr.span.lo()));
1736                 let pos = snippet.find_uncommented("..").unwrap();
1737                 last_field_hi + BytePos(pos as u32)
1738             }
1739         };
1740         let span_hi = |item: &StructLitField| match *item {
1741             StructLitField::Regular(field) => field.span().hi(),
1742             StructLitField::Base(expr) => expr.span.hi(),
1743         };
1744         let rewrite = |item: &StructLitField| match *item {
1745             StructLitField::Regular(field) => {
1746                 // The 1 taken from the v_budget is for the comma.
1747                 rewrite_field(context, field, v_shape.sub_width(1)?, 0)
1748             }
1749             StructLitField::Base(expr) => {
1750                 // 2 = ..
1751                 expr.rewrite(context, v_shape.offset_left(2)?)
1752                     .map(|s| format!("..{}", s))
1753             }
1754         };
1755
1756         let items = itemize_list(
1757             context.snippet_provider,
1758             field_iter,
1759             "}",
1760             ",",
1761             span_lo,
1762             span_hi,
1763             rewrite,
1764             body_lo,
1765             span.hi(),
1766             false,
1767         );
1768         let item_vec = items.collect::<Vec<_>>();
1769
1770         let tactic = struct_lit_tactic(h_shape, context, &item_vec);
1771         let nested_shape = shape_for_tactic(tactic, h_shape, v_shape);
1772
1773         let ends_with_comma = span_ends_with_comma(context, span);
1774         let force_no_trailing_comma = if context.inside_macro() && !ends_with_comma {
1775             true
1776         } else {
1777             false
1778         };
1779
1780         let fmt = struct_lit_formatting(
1781             nested_shape,
1782             tactic,
1783             context,
1784             force_no_trailing_comma || base.is_some(),
1785         );
1786
1787         write_list(&item_vec, &fmt)?
1788     };
1789
1790     let fields_str = wrap_struct_field(context, &fields_str, shape, v_shape, one_line_width);
1791     Some(format!("{} {{{}}}", path_str, fields_str))
1792
1793     // FIXME if context.config.indent_style() == Visual, but we run out
1794     // of space, we should fall back to BlockIndent.
1795 }
1796
1797 pub fn wrap_struct_field(
1798     context: &RewriteContext,
1799     fields_str: &str,
1800     shape: Shape,
1801     nested_shape: Shape,
1802     one_line_width: usize,
1803 ) -> String {
1804     if context.config.indent_style() == IndentStyle::Block
1805         && (fields_str.contains('\n') || !context.config.struct_lit_single_line()
1806             || fields_str.len() > one_line_width)
1807     {
1808         format!(
1809             "{}{}{}",
1810             nested_shape.indent.to_string_with_newline(context.config),
1811             fields_str,
1812             shape.indent.to_string_with_newline(context.config)
1813         )
1814     } else {
1815         // One liner or visual indent.
1816         format!(" {} ", fields_str)
1817     }
1818 }
1819
1820 pub fn struct_lit_field_separator(config: &Config) -> &str {
1821     colon_spaces(config.space_before_colon(), config.space_after_colon())
1822 }
1823
1824 pub fn rewrite_field(
1825     context: &RewriteContext,
1826     field: &ast::Field,
1827     shape: Shape,
1828     prefix_max_width: usize,
1829 ) -> Option<String> {
1830     if contains_skip(&field.attrs) {
1831         return Some(context.snippet(field.span()).to_owned());
1832     }
1833     let mut attrs_str = field.attrs.rewrite(context, shape)?;
1834     if !attrs_str.is_empty() {
1835         attrs_str.push_str(&shape.indent.to_string_with_newline(context.config));
1836     };
1837     let name = field.ident.node.to_string();
1838     if field.is_shorthand {
1839         Some(attrs_str + &name)
1840     } else {
1841         let mut separator = String::from(struct_lit_field_separator(context.config));
1842         for _ in 0..prefix_max_width.checked_sub(name.len()).unwrap_or(0) {
1843             separator.push(' ');
1844         }
1845         let overhead = name.len() + separator.len();
1846         let expr_shape = shape.offset_left(overhead)?;
1847         let expr = field.expr.rewrite(context, expr_shape);
1848
1849         match expr {
1850             Some(ref e) if e.as_str() == name && context.config.use_field_init_shorthand() => {
1851                 Some(attrs_str + &name)
1852             }
1853             Some(e) => Some(format!("{}{}{}{}", attrs_str, name, separator, e)),
1854             None => {
1855                 let expr_offset = shape.indent.block_indent(context.config);
1856                 let expr = field
1857                     .expr
1858                     .rewrite(context, Shape::indented(expr_offset, context.config));
1859                 expr.map(|s| {
1860                     format!(
1861                         "{}{}:\n{}{}",
1862                         attrs_str,
1863                         name,
1864                         expr_offset.to_string(context.config),
1865                         s
1866                     )
1867                 })
1868             }
1869         }
1870     }
1871 }
1872
1873 fn rewrite_tuple_in_visual_indent_style<'a, T>(
1874     context: &RewriteContext,
1875     items: &[&T],
1876     span: Span,
1877     shape: Shape,
1878 ) -> Option<String>
1879 where
1880     T: Rewrite + Spanned + ToExpr + 'a,
1881 {
1882     let mut items = items.iter();
1883     // In case of length 1, need a trailing comma
1884     debug!("rewrite_tuple_in_visual_indent_style {:?}", shape);
1885     if items.len() == 1 {
1886         // 3 = "(" + ",)"
1887         let nested_shape = shape.sub_width(3)?.visual_indent(1);
1888         return items
1889             .next()
1890             .unwrap()
1891             .rewrite(context, nested_shape)
1892             .map(|s| {
1893                 if context.config.spaces_within_parens_and_brackets() {
1894                     format!("( {}, )", s)
1895                 } else {
1896                     format!("({},)", s)
1897                 }
1898             });
1899     }
1900
1901     let list_lo = context.snippet_provider.span_after(span, "(");
1902     let nested_shape = shape.sub_width(2)?.visual_indent(1);
1903     let items = itemize_list(
1904         context.snippet_provider,
1905         items,
1906         ")",
1907         ",",
1908         |item| item.span().lo(),
1909         |item| item.span().hi(),
1910         |item| item.rewrite(context, nested_shape),
1911         list_lo,
1912         span.hi() - BytePos(1),
1913         false,
1914     );
1915     let item_vec: Vec<_> = items.collect();
1916     let tactic = definitive_tactic(
1917         &item_vec,
1918         ListTactic::HorizontalVertical,
1919         Separator::Comma,
1920         nested_shape.width,
1921     );
1922     let fmt = ListFormatting {
1923         tactic,
1924         separator: ",",
1925         trailing_separator: SeparatorTactic::Never,
1926         separator_place: SeparatorPlace::Back,
1927         shape,
1928         ends_with_newline: false,
1929         preserve_newline: false,
1930         config: context.config,
1931     };
1932     let list_str = write_list(&item_vec, &fmt)?;
1933
1934     if context.config.spaces_within_parens_and_brackets() && !list_str.is_empty() {
1935         Some(format!("( {} )", list_str))
1936     } else {
1937         Some(format!("({})", list_str))
1938     }
1939 }
1940
1941 pub fn rewrite_tuple<'a, T>(
1942     context: &RewriteContext,
1943     items: &[&T],
1944     span: Span,
1945     shape: Shape,
1946 ) -> Option<String>
1947 where
1948     T: Rewrite + Spanned + ToExpr + 'a,
1949 {
1950     debug!("rewrite_tuple {:?}", shape);
1951     if context.use_block_indent() {
1952         // We use the same rule as function calls for rewriting tuples.
1953         let force_tactic = if context.inside_macro() {
1954             if span_ends_with_comma(context, span) {
1955                 Some(SeparatorTactic::Always)
1956             } else {
1957                 Some(SeparatorTactic::Never)
1958             }
1959         } else {
1960             if items.len() == 1 {
1961                 Some(SeparatorTactic::Always)
1962             } else {
1963                 None
1964             }
1965         };
1966         overflow::rewrite_with_parens(
1967             context,
1968             "",
1969             items,
1970             shape,
1971             span,
1972             context.config.width_heuristics().fn_call_width,
1973             force_tactic,
1974         )
1975     } else {
1976         rewrite_tuple_in_visual_indent_style(context, items, span, shape)
1977     }
1978 }
1979
1980 pub fn rewrite_unary_prefix<R: Rewrite>(
1981     context: &RewriteContext,
1982     prefix: &str,
1983     rewrite: &R,
1984     shape: Shape,
1985 ) -> Option<String> {
1986     rewrite
1987         .rewrite(context, shape.offset_left(prefix.len())?)
1988         .map(|r| format!("{}{}", prefix, r))
1989 }
1990
1991 // FIXME: this is probably not correct for multi-line Rewrites. we should
1992 // subtract suffix.len() from the last line budget, not the first!
1993 pub fn rewrite_unary_suffix<R: Rewrite>(
1994     context: &RewriteContext,
1995     suffix: &str,
1996     rewrite: &R,
1997     shape: Shape,
1998 ) -> Option<String> {
1999     rewrite
2000         .rewrite(context, shape.sub_width(suffix.len())?)
2001         .map(|mut r| {
2002             r.push_str(suffix);
2003             r
2004         })
2005 }
2006
2007 fn rewrite_unary_op(
2008     context: &RewriteContext,
2009     op: &ast::UnOp,
2010     expr: &ast::Expr,
2011     shape: Shape,
2012 ) -> Option<String> {
2013     // For some reason, an UnOp is not spanned like BinOp!
2014     let operator_str = match *op {
2015         ast::UnOp::Deref => "*",
2016         ast::UnOp::Not => "!",
2017         ast::UnOp::Neg => "-",
2018     };
2019     rewrite_unary_prefix(context, operator_str, expr, shape)
2020 }
2021
2022 fn rewrite_assignment(
2023     context: &RewriteContext,
2024     lhs: &ast::Expr,
2025     rhs: &ast::Expr,
2026     op: Option<&ast::BinOp>,
2027     shape: Shape,
2028 ) -> Option<String> {
2029     let operator_str = match op {
2030         Some(op) => context.snippet(op.span),
2031         None => "=",
2032     };
2033
2034     // 1 = space between lhs and operator.
2035     let lhs_shape = shape.sub_width(operator_str.len() + 1)?;
2036     let lhs_str = format!("{} {}", lhs.rewrite(context, lhs_shape)?, operator_str);
2037
2038     rewrite_assign_rhs(context, lhs_str, rhs, shape)
2039 }
2040
2041 /// Controls where to put the rhs.
2042 #[derive(Debug, Copy, Clone, PartialEq, Eq)]
2043 pub enum RhsTactics {
2044     /// Use heuristics.
2045     Default,
2046     /// Put the rhs on the next line if it uses multiple line.
2047     ForceNextLine,
2048 }
2049
2050 // The left hand side must contain everything up to, and including, the
2051 // assignment operator.
2052 pub fn rewrite_assign_rhs<S: Into<String>, R: Rewrite>(
2053     context: &RewriteContext,
2054     lhs: S,
2055     ex: &R,
2056     shape: Shape,
2057 ) -> Option<String> {
2058     rewrite_assign_rhs_with(context, lhs, ex, shape, RhsTactics::Default)
2059 }
2060
2061 pub fn rewrite_assign_rhs_with<S: Into<String>, R: Rewrite>(
2062     context: &RewriteContext,
2063     lhs: S,
2064     ex: &R,
2065     shape: Shape,
2066     rhs_tactics: RhsTactics,
2067 ) -> Option<String> {
2068     let lhs = lhs.into();
2069     let last_line_width = last_line_width(&lhs)
2070         .checked_sub(if lhs.contains('\n') {
2071             shape.indent.width()
2072         } else {
2073             0
2074         })
2075         .unwrap_or(0);
2076     // 1 = space between operator and rhs.
2077     let orig_shape = shape.offset_left(last_line_width + 1).unwrap_or(Shape {
2078         width: 0,
2079         offset: shape.offset + last_line_width + 1,
2080         ..shape
2081     });
2082     let rhs = choose_rhs(
2083         context,
2084         ex,
2085         orig_shape,
2086         ex.rewrite(context, orig_shape),
2087         rhs_tactics,
2088     )?;
2089     Some(lhs + &rhs)
2090 }
2091
2092 fn choose_rhs<R: Rewrite>(
2093     context: &RewriteContext,
2094     expr: &R,
2095     shape: Shape,
2096     orig_rhs: Option<String>,
2097     rhs_tactics: RhsTactics,
2098 ) -> Option<String> {
2099     match orig_rhs {
2100         Some(ref new_str) if !new_str.contains('\n') && new_str.len() <= shape.width => {
2101             Some(format!(" {}", new_str))
2102         }
2103         _ => {
2104             // Expression did not fit on the same line as the identifier.
2105             // Try splitting the line and see if that works better.
2106             let new_shape =
2107                 Shape::indented(shape.indent.block_indent(context.config), context.config)
2108                     .sub_width(shape.rhs_overhead(context.config))?;
2109             let new_rhs = expr.rewrite(context, new_shape);
2110             let new_indent_str = &new_shape.indent.to_string_with_newline(context.config);
2111
2112             match (orig_rhs, new_rhs) {
2113                 (Some(ref orig_rhs), Some(ref new_rhs))
2114                     if wrap_str(new_rhs.clone(), context.config.max_width(), new_shape)
2115                         .is_none() =>
2116                 {
2117                     Some(format!(" {}", orig_rhs))
2118                 }
2119                 (Some(ref orig_rhs), Some(ref new_rhs))
2120                     if prefer_next_line(orig_rhs, new_rhs, rhs_tactics) =>
2121                 {
2122                     Some(format!("{}{}", new_indent_str, new_rhs))
2123                 }
2124                 (None, Some(ref new_rhs)) => Some(format!("{}{}", new_indent_str, new_rhs)),
2125                 (None, None) => None,
2126                 (Some(ref orig_rhs), _) => Some(format!(" {}", orig_rhs)),
2127             }
2128         }
2129     }
2130 }
2131
2132 pub fn prefer_next_line(orig_rhs: &str, next_line_rhs: &str, rhs_tactics: RhsTactics) -> bool {
2133     rhs_tactics == RhsTactics::ForceNextLine || !next_line_rhs.contains('\n')
2134         || count_newlines(orig_rhs) > count_newlines(next_line_rhs) + 1
2135 }
2136
2137 fn rewrite_expr_addrof(
2138     context: &RewriteContext,
2139     mutability: ast::Mutability,
2140     expr: &ast::Expr,
2141     shape: Shape,
2142 ) -> Option<String> {
2143     let operator_str = match mutability {
2144         ast::Mutability::Immutable => "&",
2145         ast::Mutability::Mutable => "&mut ",
2146     };
2147     rewrite_unary_prefix(context, operator_str, expr, shape)
2148 }
2149
2150 pub trait ToExpr {
2151     fn to_expr(&self) -> Option<&ast::Expr>;
2152     fn can_be_overflowed(&self, context: &RewriteContext, len: usize) -> bool;
2153 }
2154
2155 impl ToExpr for ast::Expr {
2156     fn to_expr(&self) -> Option<&ast::Expr> {
2157         Some(self)
2158     }
2159
2160     fn can_be_overflowed(&self, context: &RewriteContext, len: usize) -> bool {
2161         can_be_overflowed_expr(context, self, len)
2162     }
2163 }
2164
2165 impl ToExpr for ast::Ty {
2166     fn to_expr(&self) -> Option<&ast::Expr> {
2167         None
2168     }
2169
2170     fn can_be_overflowed(&self, context: &RewriteContext, len: usize) -> bool {
2171         can_be_overflowed_type(context, self, len)
2172     }
2173 }
2174
2175 impl<'a> ToExpr for TuplePatField<'a> {
2176     fn to_expr(&self) -> Option<&ast::Expr> {
2177         None
2178     }
2179
2180     fn can_be_overflowed(&self, context: &RewriteContext, len: usize) -> bool {
2181         can_be_overflowed_pat(context, self, len)
2182     }
2183 }
2184
2185 impl<'a> ToExpr for ast::StructField {
2186     fn to_expr(&self) -> Option<&ast::Expr> {
2187         None
2188     }
2189
2190     fn can_be_overflowed(&self, _: &RewriteContext, _: usize) -> bool {
2191         false
2192     }
2193 }
2194
2195 impl<'a> ToExpr for MacroArg {
2196     fn to_expr(&self) -> Option<&ast::Expr> {
2197         match *self {
2198             MacroArg::Expr(ref expr) => Some(expr),
2199             _ => None,
2200         }
2201     }
2202
2203     fn can_be_overflowed(&self, context: &RewriteContext, len: usize) -> bool {
2204         match *self {
2205             MacroArg::Expr(ref expr) => can_be_overflowed_expr(context, expr, len),
2206             MacroArg::Ty(ref ty) => can_be_overflowed_type(context, ty, len),
2207             MacroArg::Pat(..) => false,
2208             MacroArg::Item(..) => len == 1,
2209         }
2210     }
2211 }
2212
2213 impl ToExpr for ast::GenericParam {
2214     fn to_expr(&self) -> Option<&ast::Expr> {
2215         None
2216     }
2217
2218     fn can_be_overflowed(&self, _: &RewriteContext, _: usize) -> bool {
2219         false
2220     }
2221 }