rust/src/expr.rs

2985 lines
96 KiB
Rust
Raw Normal View History

2015-04-21 21:01:19 +12:00
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
use std::cmp::{min, Ordering};
use std::fmt::Write;
use std::iter::ExactSizeIterator;
use syntax::{ast, ptr};
use syntax::codemap::{BytePos, CodeMap, Span};
use syntax::parse::classify;
2015-09-04 18:09:05 +02:00
use {Indent, Shape, Spanned};
2015-09-11 00:52:16 +02:00
use chains::rewrite_chain;
use codemap::SpanUtils;
use comment::{contains_comment, recover_comment_removed, rewrite_comment, FindUncommented};
use config::{Config, ControlBraceStyle, IndentStyle, MultilineStyle, Style};
use items::{span_hi_for_arg, span_lo_for_arg};
use lists::{definitive_tactic, itemize_list, shape_for_tactic, struct_lit_formatting,
struct_lit_shape, struct_lit_tactic, write_list, DefinitiveListTactic, ListFormatting,
ListItem, ListTactic, SeparatorTactic};
use macros::{rewrite_macro, MacroPosition};
use patterns::{can_be_overflowed_pat, TuplePatField};
use rewrite::{Rewrite, RewriteContext};
use string::{rewrite_string, StringFormat};
use types::{can_be_overflowed_type, rewrite_path, PathContext};
use utils::{binary_search, colon_spaces, contains_skip, extra_offset, first_line_width,
last_line_extendable, last_line_width, left_most_sub_expr, mk_sp, paren_overhead,
semicolon_for_stmt, stmt_expr, trimmed_last_line_width, wrap_str};
use vertical::rewrite_with_alignment;
use visitor::FmtVisitor;
2015-04-21 21:01:19 +12:00
2015-06-16 17:29:05 +02:00
impl Rewrite for ast::Expr {
fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
format_expr(self, ExprType::SubExpression, context, shape)
}
}
#[derive(PartialEq)]
pub enum ExprType {
Statement,
SubExpression,
}
fn combine_attr_and_expr(
context: &RewriteContext,
shape: Shape,
attr_str: &str,
expr_str: &str,
) -> String {
let separator = if attr_str.is_empty() {
String::new()
} else {
if expr_str.contains('\n') || attr_str.contains('\n') ||
attr_str.len() + expr_str.len() > shape.width
{
format!("\n{}", shape.indent.to_string(context.config))
} else {
String::from(" ")
}
};
format!("{}{}{}", attr_str, separator, expr_str)
}
pub fn format_expr(
expr: &ast::Expr,
expr_type: ExprType,
context: &RewriteContext,
shape: Shape,
) -> Option<String> {
let attr_rw = (&*expr.attrs).rewrite(context, shape);
2017-05-28 11:41:16 +09:00
if contains_skip(&*expr.attrs) {
if let Some(attr_str) = attr_rw {
return Some(combine_attr_and_expr(
context,
shape,
&attr_str,
&context.snippet(expr.span),
));
} else {
return Some(context.snippet(expr.span));
}
2017-05-28 11:41:16 +09:00
}
let expr_rw = match expr.node {
2017-07-11 21:53:10 +09:00
ast::ExprKind::Array(ref expr_vec) => rewrite_array(
expr_vec.iter().map(|e| &**e),
mk_sp(context.codemap.span_after(expr.span, "["), expr.span.hi),
context,
shape,
false,
),
ast::ExprKind::Lit(ref l) => match l.node {
ast::LitKind::Str(_, ast::StrStyle::Cooked) => {
rewrite_string_lit(context, l.span, shape)
2015-10-02 12:00:28 +02:00
}
2017-07-11 21:53:10 +09:00
_ => wrap_str(
context.snippet(expr.span),
context.config.max_width(),
shape,
),
},
ast::ExprKind::Call(ref callee, ref args) => {
let inner_span = mk_sp(callee.span.hi, expr.span.hi);
rewrite_call_with_binary_search(
context,
&**callee,
&args.iter().map(|x| &**x).collect::<Vec<_>>()[..],
inner_span,
shape,
)
}
ast::ExprKind::Paren(ref subexpr) => rewrite_paren(context, subexpr, shape),
ast::ExprKind::Binary(ref op, ref lhs, ref rhs) => {
2017-01-11 12:06:23 +13:00
// FIXME: format comments between operands and operator
rewrite_pair(
&**lhs,
&**rhs,
"",
&format!(" {} ", context.snippet(op.span)),
"",
context,
shape,
)
}
ast::ExprKind::Unary(ref op, ref subexpr) => rewrite_unary_op(context, op, subexpr, shape),
2017-07-11 21:53:10 +09:00
ast::ExprKind::Struct(ref path, ref fields, ref base) => rewrite_struct_lit(
context,
path,
fields,
base.as_ref().map(|e| &**e),
expr.span,
shape,
),
ast::ExprKind::Tup(ref items) => rewrite_tuple(
context,
&items.iter().map(|x| &**x).collect::<Vec<_>>()[..],
expr.span,
shape,
),
2017-06-15 23:26:32 +09:00
ast::ExprKind::If(..) |
ast::ExprKind::IfLet(..) |
ast::ExprKind::ForLoop(..) |
ast::ExprKind::Loop(..) |
ast::ExprKind::While(..) |
2017-07-11 21:53:10 +09:00
ast::ExprKind::WhileLet(..) => to_control_flow(expr, expr_type)
.and_then(|control_flow| control_flow.rewrite(context, shape)),
ast::ExprKind::Block(ref block) => {
match expr_type {
ExprType::Statement => {
if is_unsafe_block(block) {
block.rewrite(context, shape)
} else {
// Rewrite block without trying to put it in a single line.
if let rw @ Some(_) = rewrite_empty_block(context, block, shape) {
return rw;
}
let prefix = try_opt!(block_prefix(context, block, shape));
rewrite_block_with_visitor(context, &prefix, block, shape)
}
}
ExprType::SubExpression => block.rewrite(context, shape),
}
}
ast::ExprKind::Match(ref cond, ref arms) => {
rewrite_match(context, cond, arms, shape, expr.span)
}
ast::ExprKind::Path(ref qself, ref path) => {
rewrite_path(context, PathContext::Expr, qself.as_ref(), path, shape)
}
ast::ExprKind::Assign(ref lhs, ref rhs) => {
rewrite_assignment(context, lhs, rhs, None, shape)
}
ast::ExprKind::AssignOp(ref op, ref lhs, ref rhs) => {
rewrite_assignment(context, lhs, rhs, Some(op), shape)
}
ast::ExprKind::Continue(ref opt_ident) => {
let id_str = match *opt_ident {
Some(ident) => format!(" {}", ident.node),
None => String::new(),
};
wrap_str(
format!("continue{}", id_str),
context.config.max_width(),
shape,
)
}
ast::ExprKind::Break(ref opt_ident, ref opt_expr) => {
let id_str = match *opt_ident {
Some(ident) => format!(" {}", ident.node),
None => String::new(),
};
if let Some(ref expr) = *opt_expr {
rewrite_unary_prefix(context, &format!("break{} ", id_str), &**expr, shape)
} else {
wrap_str(
format!("break{}", id_str),
context.config.max_width(),
shape,
)
}
}
ast::ExprKind::Closure(capture, ref fn_decl, ref body, _) => {
rewrite_closure(capture, fn_decl, body, expr.span, context, shape)
}
ast::ExprKind::Try(..) |
ast::ExprKind::Field(..) |
ast::ExprKind::TupField(..) |
ast::ExprKind::MethodCall(..) => rewrite_chain(expr, context, shape),
ast::ExprKind::Mac(ref mac) => {
// Failure to rewrite a marco should not imply failure to
// rewrite the expression.
2017-05-25 16:08:08 +09:00
rewrite_macro(mac, None, context, shape, MacroPosition::Expression).or_else(|| {
wrap_str(
context.snippet(expr.span),
context.config.max_width(),
shape,
)
2017-05-25 16:08:08 +09:00
})
}
ast::ExprKind::Ret(None) => {
wrap_str("return".to_owned(), context.config.max_width(), shape)
}
ast::ExprKind::Ret(Some(ref expr)) => {
rewrite_unary_prefix(context, "return ", &**expr, shape)
}
ast::ExprKind::Box(ref expr) => rewrite_unary_prefix(context, "box ", &**expr, shape),
ast::ExprKind::AddrOf(mutability, ref expr) => {
rewrite_expr_addrof(context, mutability, expr, shape)
}
ast::ExprKind::Cast(ref expr, ref ty) => {
rewrite_pair(&**expr, &**ty, "", " as ", "", context, shape)
}
ast::ExprKind::Type(ref expr, ref ty) => {
rewrite_pair(&**expr, &**ty, "", ": ", "", context, shape)
}
ast::ExprKind::Index(ref expr, ref index) => {
rewrite_index(&**expr, &**index, context, shape)
}
ast::ExprKind::Repeat(ref expr, ref repeats) => {
let (lbr, rbr) = if context.config.spaces_within_square_brackets() {
2017-01-11 12:06:23 +13:00
("[ ", " ]")
} else {
("[", "]")
};
rewrite_pair(&**expr, &**repeats, lbr, "; ", rbr, context, shape)
}
ast::ExprKind::Range(ref lhs, ref rhs, limits) => {
let delim = match limits {
ast::RangeLimits::HalfOpen => "..",
ast::RangeLimits::Closed => "...",
};
fn needs_space_before_range(context: &RewriteContext, lhs: &ast::Expr) -> bool {
match lhs.node {
2017-07-11 21:53:10 +09:00
ast::ExprKind::Lit(ref lit) => match lit.node {
ast::LitKind::FloatUnsuffixed(..) => {
context.snippet(lit.span).ends_with('.')
}
2017-07-11 21:53:10 +09:00
_ => false,
},
_ => false,
}
}
match (lhs.as_ref().map(|x| &**x), rhs.as_ref().map(|x| &**x)) {
(Some(ref lhs), Some(ref rhs)) => {
let sp_delim = if context.config.spaces_around_ranges() {
2016-09-17 01:44:51 +02:00
format!(" {} ", delim)
} else if needs_space_before_range(context, lhs) {
format!(" {}", delim)
2016-09-17 01:44:51 +02:00
} else {
delim.into()
};
rewrite_pair(&**lhs, &**rhs, "", &sp_delim, "", context, shape)
}
(None, Some(ref rhs)) => {
let sp_delim = if context.config.spaces_around_ranges() {
2016-09-17 01:44:51 +02:00
format!("{} ", delim)
} else {
delim.into()
};
rewrite_unary_prefix(context, &sp_delim, &**rhs, shape)
}
(Some(ref lhs), None) => {
let sp_delim = if context.config.spaces_around_ranges() {
2016-09-17 01:44:51 +02:00
format!(" {}", delim)
} else {
delim.into()
};
rewrite_unary_suffix(context, &sp_delim, &**lhs, shape)
}
(None, None) => wrap_str(delim.into(), context.config.max_width(), shape),
}
}
// We do not format these expressions yet, but they should still
// satisfy our width restrictions.
2017-07-11 21:53:10 +09:00
ast::ExprKind::InPlace(..) | ast::ExprKind::InlineAsm(..) => wrap_str(
context.snippet(expr.span),
context.config.max_width(),
shape,
),
2017-05-13 07:28:48 +09:00
ast::ExprKind::Catch(ref block) => {
2017-06-20 21:34:19 +09:00
if let rewrite @ Some(_) =
rewrite_single_line_block(context, "do catch ", block, shape)
{
2017-05-13 07:28:48 +09:00
return rewrite;
}
// 9 = `do catch `
let budget = shape.width.checked_sub(9).unwrap_or(0);
Some(format!(
"{}{}",
"do catch ",
2017-06-16 18:56:32 +09:00
try_opt!(block.rewrite(&context, Shape::legacy(budget, shape.indent)))
))
2017-05-13 07:28:48 +09:00
}
};
2017-05-28 11:41:16 +09:00
match (attr_rw, expr_rw) {
2017-07-11 21:53:10 +09:00
(Some(attr_str), Some(expr_str)) => recover_comment_removed(
combine_attr_and_expr(context, shape, &attr_str, &expr_str),
expr.span,
context,
shape,
),
2017-05-28 11:41:16 +09:00
_ => None,
}
2015-06-16 17:29:05 +02:00
}
2015-04-21 21:01:19 +12:00
pub fn rewrite_pair<LHS, RHS>(
lhs: &LHS,
rhs: &RHS,
prefix: &str,
infix: &str,
suffix: &str,
context: &RewriteContext,
shape: Shape,
) -> Option<String>
where
LHS: Rewrite,
RHS: Rewrite,
2015-10-02 12:25:22 +02:00
{
2017-01-11 12:06:23 +13:00
// Get "full width" rhs and see if it fits on the current line. This
// usually works fairly well since it tends to place operands of
// operations with high precendence close together.
// Note that this is non-conservative, but its just to see if it's even
// worth trying to put everything on one line.
2017-02-21 14:43:43 +13:00
let rhs_shape = try_opt!(shape.sub_width(suffix.len()));
let rhs_result = rhs.rewrite(context, rhs_shape);
2017-01-11 12:06:23 +13:00
if let Some(rhs_result) = rhs_result {
// This is needed in case of line break not caused by a
// shortage of space, but by end-of-line comments, for example.
if !rhs_result.contains('\n') {
2017-06-16 08:49:49 +09:00
let lhs_shape =
try_opt!(try_opt!(shape.offset_left(prefix.len())).sub_width(infix.len()));
2017-02-21 14:43:43 +13:00
let lhs_result = lhs.rewrite(context, lhs_shape);
2017-01-11 12:06:23 +13:00
if let Some(lhs_result) = lhs_result {
let mut result = format!("{}{}{}", prefix, lhs_result, infix);
2017-03-28 11:14:47 +13:00
let remaining_width = shape
.width
2017-05-19 19:31:01 +09:00
.checked_sub(last_line_width(&result) + suffix.len())
2017-03-28 11:14:47 +13:00
.unwrap_or(0);
2017-01-11 12:06:23 +13:00
if rhs_result.len() <= remaining_width {
result.push_str(&rhs_result);
result.push_str(suffix);
return Some(result);
}
// Try rewriting the rhs into the remaining space.
2017-02-21 14:43:43 +13:00
let rhs_shape = shape.shrink_left(last_line_width(&result) + suffix.len());
if let Some(rhs_shape) = rhs_shape {
if let Some(rhs_result) = rhs.rewrite(context, rhs_shape) {
// FIXME this should always hold.
if rhs_result.len() <= remaining_width {
result.push_str(&rhs_result);
result.push_str(suffix);
return Some(result);
}
2017-01-11 12:06:23 +13:00
}
}
}
}
}
// We have to use multiple lines.
// Re-evaluate the rhs because we have more space now:
let infix = infix.trim_right();
let rhs_shape = match context.config.control_style() {
Style::Legacy => {
2017-05-25 16:08:08 +09:00
try_opt!(shape.sub_width(suffix.len() + prefix.len())).visual_indent(prefix.len())
}
Style::Rfc => {
2017-06-14 20:37:54 +09:00
// Try to calculate the initial constraint on the right hand side.
let rhs_overhead = shape.rhs_overhead(context.config);
2017-06-14 20:37:54 +09:00
try_opt!(
Shape::indented(shape.indent.block_indent(context.config), context.config)
.sub_width(rhs_overhead)
)
}
};
2017-02-21 14:43:43 +13:00
let rhs_result = try_opt!(rhs.rewrite(context, rhs_shape));
2017-06-14 20:37:54 +09:00
let lhs_overhead = shape.used_width() + prefix.len() + infix.len();
let lhs_shape = Shape {
width: try_opt!(context.config.max_width().checked_sub(lhs_overhead)),
..shape
};
let lhs_result = try_opt!(lhs.rewrite(context, lhs_shape));
Some(format!(
"{}{}{}\n{}{}{}",
prefix,
lhs_result,
infix,
rhs_shape.indent.to_string(context.config),
rhs_result,
suffix
))
2015-10-02 11:31:40 +02:00
}
pub fn rewrite_array<'a, I>(
expr_iter: I,
span: Span,
context: &RewriteContext,
shape: Shape,
trailing_comma: bool,
) -> Option<String>
where
I: Iterator<Item = &'a ast::Expr>,
2015-09-12 00:06:17 +02:00
{
let bracket_size = if context.config.spaces_within_square_brackets() {
2 // "[ "
} else {
1 // "["
};
let mut nested_shape = match context.config.array_layout() {
2017-07-11 21:53:10 +09:00
IndentStyle::Block => try_opt!(
shape
.block()
.block_indent(context.config.tab_spaces())
.with_max_width(context.config)
.sub_width(1)
),
IndentStyle::Visual => try_opt!(
shape
.visual_indent(bracket_size)
.sub_width(bracket_size * 2)
),
};
let items = itemize_list(
context.codemap,
expr_iter,
"]",
|item| item.span.lo,
|item| item.span.hi,
|item| item.rewrite(context, nested_shape),
span.lo,
span.hi,
).collect::<Vec<_>>();
2015-09-12 00:06:17 +02:00
if items.is_empty() {
if context.config.spaces_within_square_brackets() {
return Some("[ ]".to_string());
} else {
return Some("[]".to_string());
}
}
2017-06-16 08:49:49 +09:00
let has_long_item = items
.iter()
.any(|li| li.item.as_ref().map(|s| s.len() > 10).unwrap_or(false));
let mut tactic = match context.config.array_layout() {
IndentStyle::Block => {
// FIXME wrong shape in one-line case
match shape.width.checked_sub(2 * bracket_size) {
Some(width) => {
let tactic =
ListTactic::LimitedHorizontalVertical(context.config.array_width());
definitive_tactic(&items, tactic, width)
}
None => DefinitiveListTactic::Vertical,
}
}
2017-07-11 21:53:10 +09:00
IndentStyle::Visual => if has_long_item || items.iter().any(ListItem::is_multiline) {
definitive_tactic(
&items,
ListTactic::LimitedHorizontalVertical(context.config.array_width()),
nested_shape.width,
)
} else {
DefinitiveListTactic::Mixed
},
2015-09-12 00:06:17 +02:00
};
if context.config.array_horizontal_layout_threshold() > 0 &&
items.len() > context.config.array_horizontal_layout_threshold()
{
tactic = DefinitiveListTactic::Mixed;
if context.config.array_layout() == IndentStyle::Block {
nested_shape = try_opt!(
shape
.visual_indent(bracket_size)
.sub_width(bracket_size * 2)
);
}
}
2015-09-12 00:06:17 +02:00
let fmt = ListFormatting {
tactic: tactic,
separator: ",",
trailing_separator: if trailing_comma {
SeparatorTactic::Always
} else if context.inside_macro || context.config.array_layout() == IndentStyle::Visual {
SeparatorTactic::Never
} else {
SeparatorTactic::Vertical
},
2017-02-21 14:43:43 +13:00
shape: nested_shape,
2015-09-12 00:06:17 +02:00
ends_with_newline: false,
config: context.config,
2015-09-12 00:06:17 +02:00
};
let list_str = try_opt!(write_list(&items, &fmt));
let result = if context.config.array_layout() == IndentStyle::Visual ||
tactic != DefinitiveListTactic::Vertical
{
if context.config.spaces_within_square_brackets() && list_str.len() > 0 {
format!("[ {} ]", list_str)
} else {
format!("[{}]", list_str)
}
} else {
format!(
"[\n{}{}\n{}]",
nested_shape.indent.to_string(context.config),
list_str,
shape.block().indent.to_string(context.config)
)
};
Some(result)
2015-09-12 00:06:17 +02:00
}
2017-06-15 23:27:33 +09:00
// Return type is (prefix, extra_offset)
fn rewrite_closure_fn_decl(
capture: ast::CaptureBy,
fn_decl: &ast::FnDecl,
body: &ast::Expr,
span: Span,
context: &RewriteContext,
shape: Shape,
2017-06-15 23:27:33 +09:00
) -> Option<(String, usize)> {
2016-03-01 17:27:19 -05:00
let mover = if capture == ast::CaptureBy::Value {
2015-08-19 22:39:45 +02:00
"move "
} else {
""
};
// 4 = "|| {".len(), which is overconservative when the closure consists of
// a single expression.
2017-02-21 14:43:43 +13:00
let nested_shape = try_opt!(try_opt!(shape.shrink_left(mover.len())).sub_width(4));
2017-02-21 14:43:43 +13:00
// 1 = |
let argument_offset = nested_shape.indent + 1;
let arg_shape = try_opt!(nested_shape.shrink_left(1)).visual_indent(0);
let ret_str = try_opt!(fn_decl.output.rewrite(context, arg_shape));
2015-08-19 22:39:45 +02:00
let arg_items = itemize_list(
context.codemap,
fn_decl.inputs.iter(),
"|",
|arg| span_lo_for_arg(arg),
|arg| span_hi_for_arg(context, arg),
|arg| arg.rewrite(context, arg_shape),
context.codemap.span_after(span, "|"),
body.span.lo,
);
let item_vec = arg_items.collect::<Vec<_>>();
2017-02-21 14:43:43 +13:00
// 1 = space between arguments and return type.
2017-03-28 11:14:47 +13:00
let horizontal_budget = nested_shape
.width
.checked_sub(ret_str.len() + 1)
.unwrap_or(0);
let tactic = definitive_tactic(&item_vec, ListTactic::HorizontalVertical, horizontal_budget);
2017-02-21 14:43:43 +13:00
let arg_shape = match tactic {
DefinitiveListTactic::Horizontal => try_opt!(arg_shape.sub_width(ret_str.len() + 1)),
_ => arg_shape,
};
2015-08-19 22:39:45 +02:00
2015-09-08 20:56:33 +02:00
let fmt = ListFormatting {
tactic: tactic,
2015-09-08 20:56:33 +02:00
separator: ",",
trailing_separator: SeparatorTactic::Never,
2017-02-21 14:43:43 +13:00
shape: arg_shape,
2015-09-08 20:56:33 +02:00
ends_with_newline: false,
config: context.config,
2015-09-08 20:56:33 +02:00
};
let list_str = try_opt!(write_list(&item_vec, &fmt));
2015-09-08 20:56:33 +02:00
let mut prefix = format!("{}|{}|", mover, list_str);
2017-06-16 08:28:12 +09:00
// 1 = space between `|...|` and body.
2017-06-15 23:27:33 +09:00
let extra_offset = extra_offset(&prefix, shape) + 1;
2015-09-08 20:56:33 +02:00
if !ret_str.is_empty() {
if prefix.contains('\n') {
prefix.push('\n');
prefix.push_str(&argument_offset.to_string(context.config));
2015-09-08 20:56:33 +02:00
} else {
prefix.push(' ');
}
prefix.push_str(&ret_str);
}
2017-06-15 23:27:33 +09:00
Some((prefix, extra_offset))
}
// This functions is pretty messy because of the rules around closures and blocks:
// FIXME - the below is probably no longer true in full.
// * if there is a return type, then there must be braces,
// * given a closure with braces, whether that is parsed to give an inner block
// or not depends on if there is a return type and if there are statements
// in that block,
// * if the first expression in the body ends with a block (i.e., is a
// statement without needing a semi-colon), then adding or removing braces
// can change whether it is treated as an expression or statement.
fn rewrite_closure(
capture: ast::CaptureBy,
fn_decl: &ast::FnDecl,
body: &ast::Expr,
span: Span,
context: &RewriteContext,
shape: Shape,
) -> Option<String> {
let (prefix, extra_offset) = try_opt!(rewrite_closure_fn_decl(
capture,
fn_decl,
body,
span,
context,
shape,
));
// 1 = space between `|...|` and body.
2017-06-14 20:37:54 +09:00
let body_shape = try_opt!(shape.offset_left(extra_offset));
if let ast::ExprKind::Block(ref block) = body.node {
2017-02-21 14:43:43 +13:00
// The body of the closure is an empty block.
if block.stmts.is_empty() && !block_contains_comment(block, context.codemap) {
return Some(format!("{} {{}}", prefix));
}
// Figure out if the block is necessary.
let needs_block = block.rules != ast::BlockCheckMode::Default ||
block.stmts.len() > 1 || context.inside_macro ||
block_contains_comment(block, context.codemap) ||
prefix.contains('\n');
2017-06-15 23:27:33 +09:00
let no_return_type = if let ast::FunctionRetTy::Default(_) = fn_decl.output {
true
} else {
false
};
if no_return_type && !needs_block {
// lock.stmts.len() == 1
if let Some(ref expr) = stmt_expr(&block.stmts[0]) {
2017-02-22 16:20:50 +13:00
if let Some(rw) = rewrite_closure_expr(expr, &prefix, context, body_shape) {
return Some(rw);
}
}
}
if !needs_block {
// We need braces, but we might still prefer a one-liner.
let stmt = &block.stmts[0];
// 4 = braces and spaces.
2017-05-07 13:06:54 +09:00
if let Some(body_shape) = body_shape.sub_width(4) {
// Checks if rewrite succeeded and fits on a single line.
if let Some(rewrite) = and_one_line(stmt.rewrite(context, body_shape)) {
return Some(format!("{} {{ {} }}", prefix, rewrite));
}
}
}
// Either we require a block, or tried without and failed.
2017-06-15 23:27:33 +09:00
rewrite_closure_block(&block, &prefix, context, body_shape)
} else {
rewrite_closure_expr(body, &prefix, context, body_shape).or_else(|| {
// The closure originally had a non-block expression, but we can't fit on
// one line, so we'll insert a block.
rewrite_closure_with_block(context, body_shape, &prefix, body)
})
}
2017-06-15 23:27:33 +09:00
}
2015-08-19 22:39:45 +02:00
2017-06-16 08:28:12 +09:00
// Rewrite closure with a single expression wrapping its body with block.
2017-06-15 23:27:33 +09:00
fn rewrite_closure_with_block(
context: &RewriteContext,
shape: Shape,
prefix: &str,
body: &ast::Expr,
) -> Option<String> {
let block = ast::Block {
stmts: vec![
ast::Stmt {
id: ast::NodeId::new(0),
node: ast::StmtKind::Expr(ptr::P(body.clone())),
span: body.span,
},
],
id: ast::NodeId::new(0),
rules: ast::BlockCheckMode::Default,
span: body.span,
};
2017-06-15 23:27:33 +09:00
rewrite_closure_block(&block, prefix, context, shape)
}
2017-06-16 08:28:12 +09:00
// Rewrite closure with a single expression without wrapping its body with block.
2017-06-15 23:27:33 +09:00
fn rewrite_closure_expr(
expr: &ast::Expr,
prefix: &str,
context: &RewriteContext,
shape: Shape,
) -> Option<String> {
let mut rewrite = expr.rewrite(context, shape);
if classify::expr_requires_semi_to_be_stmt(left_most_sub_expr(expr)) {
rewrite = and_one_line(rewrite);
2015-08-20 23:05:41 +02:00
}
2017-06-15 23:27:33 +09:00
rewrite.map(|rw| format!("{} {}", prefix, rw))
}
2015-08-20 23:05:41 +02:00
2017-06-16 08:28:12 +09:00
// Rewrite closure whose body is block.
2017-06-15 23:27:33 +09:00
fn rewrite_closure_block(
block: &ast::Block,
prefix: &str,
context: &RewriteContext,
shape: Shape,
) -> Option<String> {
// Start with visual indent, then fall back to block indent if the
// closure is large.
let block_threshold = context.config.closure_block_indent_threshold();
if block_threshold >= 0 {
if let Some(block_str) = block.rewrite(&context, shape) {
if block_str.matches('\n').count() <= block_threshold as usize &&
!need_block_indent(&block_str, shape)
{
if let Some(block_str) = block_str.rewrite(context, shape) {
return Some(format!("{} {}", prefix, block_str));
}
}
}
}
2017-06-15 23:27:33 +09:00
// The body of the closure is big enough to be block indented, that
// means we must re-format.
let block_shape = shape.block();
2017-06-15 23:27:33 +09:00
let block_str = try_opt!(block.rewrite(&context, block_shape));
Some(format!("{} {}", prefix, block_str))
2015-08-19 22:39:45 +02:00
}
fn and_one_line(x: Option<String>) -> Option<String> {
x.and_then(|x| if x.contains('\n') { None } else { Some(x) })
}
fn nop_block_collapse(block_str: Option<String>, budget: usize) -> Option<String> {
debug!("nop_block_collapse {:?} {}", block_str, budget);
2017-06-15 23:29:46 +09:00
block_str.map(|block_str| {
if block_str.starts_with('{') && budget >= 2 &&
(block_str[1..].find(|c: char| !c.is_whitespace()).unwrap() == block_str.len() - 2)
{
"{}".to_owned()
} else {
block_str.to_owned()
}
})
2015-09-24 10:22:06 +10:00
}
2017-06-20 21:34:19 +09:00
fn rewrite_empty_block(
context: &RewriteContext,
block: &ast::Block,
shape: Shape,
) -> Option<String> {
if block.stmts.is_empty() && !block_contains_comment(block, context.codemap) &&
shape.width >= 2
{
return Some("{}".to_owned());
}
2016-06-09 00:43:08 +09:00
2017-06-20 21:34:19 +09:00
// If a block contains only a single-line comment, then leave it on one line.
let user_str = context.snippet(block.span);
let user_str = user_str.trim();
if user_str.starts_with('{') && user_str.ends_with('}') {
let comment_str = user_str[1..user_str.len() - 1].trim();
if block.stmts.is_empty() && !comment_str.contains('\n') &&
!comment_str.starts_with("//") && comment_str.len() + 4 <= shape.width
{
2017-06-20 21:34:19 +09:00
return Some(format!("{{ {} }}", comment_str));
}
2017-06-20 21:34:19 +09:00
}
2017-06-20 21:34:19 +09:00
None
}
fn block_prefix(context: &RewriteContext, block: &ast::Block, shape: Shape) -> Option<String> {
Some(match block.rules {
ast::BlockCheckMode::Unsafe(..) => {
let snippet = context.snippet(block.span);
let open_pos = try_opt!(snippet.find_uncommented("{"));
// Extract comment between unsafe and block start.
let trimmed = &snippet[6..open_pos].trim();
if !trimmed.is_empty() {
// 9 = "unsafe {".len(), 7 = "unsafe ".len()
let budget = try_opt!(shape.width.checked_sub(9));
format!(
"unsafe {} ",
try_opt!(rewrite_comment(
trimmed,
true,
Shape::legacy(budget, shape.indent + 7),
context.config,
))
)
} else {
"unsafe ".to_owned()
}
2015-08-16 16:13:55 +12:00
}
2017-06-20 21:34:19 +09:00
ast::BlockCheckMode::Default => String::new(),
})
}
2015-08-16 16:13:55 +12:00
2017-06-20 21:34:19 +09:00
fn rewrite_single_line_block(
context: &RewriteContext,
prefix: &str,
block: &ast::Block,
shape: Shape,
) -> Option<String> {
if is_simple_block(block, context.codemap) {
let expr_shape = Shape::legacy(shape.width - prefix.len(), shape.indent);
let expr_str = try_opt!(block.stmts[0].rewrite(context, expr_shape));
let result = format!("{}{{ {} }}", prefix, expr_str);
if result.len() <= shape.width && !result.contains('\n') {
return Some(result);
}
}
None
}
2015-08-01 14:22:31 +02:00
2017-06-20 21:34:19 +09:00
fn rewrite_block_with_visitor(
context: &RewriteContext,
prefix: &str,
block: &ast::Block,
shape: Shape,
) -> Option<String> {
if let rw @ Some(_) = rewrite_empty_block(context, block, shape) {
return rw;
}
let mut visitor = FmtVisitor::from_codemap(context.parse_session, context.config);
visitor.block_indent = shape.indent;
visitor.is_if_else_block = context.is_if_else_block;
match block.rules {
ast::BlockCheckMode::Unsafe(..) => {
let snippet = context.snippet(block.span);
let open_pos = try_opt!(snippet.find_uncommented("{"));
visitor.last_pos = block.span.lo + BytePos(open_pos as u32)
}
ast::BlockCheckMode::Default => visitor.last_pos = block.span.lo,
}
visitor.visit_block(block);
if visitor.failed && shape.indent.alignment != 0 {
block.rewrite(
context,
Shape::indented(shape.indent.block_only(), context.config),
)
} else {
Some(format!("{}{}", prefix, visitor.buffer))
}
}
impl Rewrite for ast::Block {
fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
// shape.width is used only for the single line case: either the empty block `{}`,
// or an unsafe expression `unsafe { e }`.
if let rw @ Some(_) = rewrite_empty_block(context, self, shape) {
return rw;
}
2017-06-20 21:34:19 +09:00
let prefix = try_opt!(block_prefix(context, self, shape));
if let rw @ Some(_) = rewrite_single_line_block(context, &prefix, self, shape) {
return rw;
}
rewrite_block_with_visitor(context, &prefix, self, shape)
2015-07-13 21:51:56 +02:00
}
}
2015-11-19 02:08:17 -06:00
impl Rewrite for ast::Stmt {
fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
let result = match self.node {
2017-03-22 09:05:50 +13:00
ast::StmtKind::Local(ref local) => local.rewrite(context, shape),
2017-07-10 02:24:59 +09:00
ast::StmtKind::Expr(ref ex) | ast::StmtKind::Semi(ref ex) => {
let suffix = if semicolon_for_stmt(context, self) {
";"
} else {
""
};
2015-11-19 02:08:17 -06:00
format_expr(
ex,
match self.node {
ast::StmtKind::Expr(_) => ExprType::SubExpression,
ast::StmtKind::Semi(_) => ExprType::Statement,
_ => unreachable!(),
},
context,
try_opt!(shape.sub_width(suffix.len())),
).map(|s| s + suffix)
2015-11-19 02:08:17 -06:00
}
2017-07-10 02:24:59 +09:00
ast::StmtKind::Mac(..) | ast::StmtKind::Item(..) => None,
};
result.and_then(|res| {
recover_comment_removed(res, self.span, context, shape)
})
2015-11-19 02:08:17 -06:00
}
}
2017-06-15 23:26:32 +09:00
// Rewrite condition if the given expression has one.
fn rewrite_cond(context: &RewriteContext, expr: &ast::Expr, shape: Shape) -> Option<String> {
match expr.node {
ast::ExprKind::Match(ref cond, _) => {
// `match `cond` {`
let cond_shape = match context.config.control_style() {
Style::Legacy => try_opt!(shape.shrink_left(6).and_then(|s| s.sub_width(2))),
Style::Rfc => try_opt!(shape.offset_left(8)),
};
cond.rewrite(context, cond_shape)
}
ast::ExprKind::Block(ref block) if block.stmts.len() == 1 => {
stmt_expr(&block.stmts[0]).and_then(|e| rewrite_cond(context, e, shape))
}
2017-07-11 21:53:10 +09:00
_ => to_control_flow(expr, ExprType::SubExpression).and_then(|control_flow| {
let alt_block_sep =
String::from("\n") + &shape.indent.block_only().to_string(context.config);
control_flow
.rewrite_cond(context, shape, &alt_block_sep)
.and_then(|rw| Some(rw.0))
}),
2017-06-15 23:26:32 +09:00
}
}
// Abstraction over control flow expressions
2017-01-27 09:14:26 +13:00
#[derive(Debug)]
struct ControlFlow<'a> {
2015-07-20 23:29:25 +02:00
cond: Option<&'a ast::Expr>,
block: &'a ast::Block,
else_block: Option<&'a ast::Expr>,
label: Option<ast::SpannedIdent>,
2015-07-20 23:29:25 +02:00
pat: Option<&'a ast::Pat>,
keyword: &'a str,
matcher: &'a str,
connector: &'a str,
allow_single_line: bool,
// True if this is an `if` expression in an `else if` :-( hacky
nested_if: bool,
span: Span,
2015-07-20 23:29:25 +02:00
}
2017-06-15 23:26:32 +09:00
fn to_control_flow<'a>(expr: &'a ast::Expr, expr_type: ExprType) -> Option<ControlFlow<'a>> {
match expr.node {
2017-07-11 21:53:10 +09:00
ast::ExprKind::If(ref cond, ref if_block, ref else_block) => Some(ControlFlow::new_if(
cond,
None,
if_block,
else_block.as_ref().map(|e| &**e),
expr_type == ExprType::SubExpression,
false,
expr.span,
)),
2017-06-15 23:26:32 +09:00
ast::ExprKind::IfLet(ref pat, ref cond, ref if_block, ref else_block) => {
Some(ControlFlow::new_if(
cond,
Some(pat),
if_block,
else_block.as_ref().map(|e| &**e),
expr_type == ExprType::SubExpression,
false,
expr.span,
))
}
ast::ExprKind::ForLoop(ref pat, ref cond, ref block, label) => {
Some(ControlFlow::new_for(pat, cond, block, label, expr.span))
}
2017-07-11 21:53:10 +09:00
ast::ExprKind::Loop(ref block, label) => {
Some(ControlFlow::new_loop(block, label, expr.span))
}
ast::ExprKind::While(ref cond, ref block, label) => {
Some(ControlFlow::new_while(None, cond, block, label, expr.span))
2017-06-15 23:26:32 +09:00
}
2017-07-11 21:53:10 +09:00
ast::ExprKind::WhileLet(ref pat, ref cond, ref block, label) => Some(
ControlFlow::new_while(Some(pat), cond, block, label, expr.span),
),
2017-06-15 23:26:32 +09:00
_ => None,
}
}
impl<'a> ControlFlow<'a> {
fn new_if(
cond: &'a ast::Expr,
pat: Option<&'a ast::Pat>,
block: &'a ast::Block,
else_block: Option<&'a ast::Expr>,
allow_single_line: bool,
nested_if: bool,
span: Span,
) -> ControlFlow<'a> {
ControlFlow {
cond: Some(cond),
block: block,
else_block: else_block,
label: None,
pat: pat,
keyword: "if",
matcher: match pat {
Some(..) => "let",
None => "",
},
connector: " =",
allow_single_line: allow_single_line,
nested_if: nested_if,
span: span,
}
}
fn new_loop(
block: &'a ast::Block,
label: Option<ast::SpannedIdent>,
span: Span,
) -> ControlFlow<'a> {
ControlFlow {
2015-07-20 23:29:25 +02:00
cond: None,
block: block,
else_block: None,
2015-07-20 23:29:25 +02:00
label: label,
pat: None,
keyword: "loop",
matcher: "",
connector: "",
allow_single_line: false,
nested_if: false,
span: span,
2015-07-20 23:29:25 +02:00
}
}
fn new_while(
pat: Option<&'a ast::Pat>,
cond: &'a ast::Expr,
block: &'a ast::Block,
label: Option<ast::SpannedIdent>,
span: Span,
) -> ControlFlow<'a> {
ControlFlow {
2015-07-20 23:29:25 +02:00
cond: Some(cond),
block: block,
else_block: None,
2015-07-20 23:29:25 +02:00
label: label,
pat: pat,
keyword: "while",
2015-07-20 23:29:25 +02:00
matcher: match pat {
Some(..) => "let",
2015-08-16 15:58:17 +12:00
None => "",
2015-07-20 23:29:25 +02:00
},
connector: " =",
allow_single_line: false,
nested_if: false,
span: span,
2015-07-20 23:29:25 +02:00
}
}
fn new_for(
pat: &'a ast::Pat,
cond: &'a ast::Expr,
block: &'a ast::Block,
label: Option<ast::SpannedIdent>,
span: Span,
) -> ControlFlow<'a> {
ControlFlow {
2015-07-20 23:29:25 +02:00
cond: Some(cond),
block: block,
else_block: None,
2015-07-20 23:29:25 +02:00
label: label,
pat: Some(pat),
keyword: "for",
2015-07-20 23:29:25 +02:00
matcher: "",
connector: " in",
allow_single_line: false,
nested_if: false,
span: span,
2015-07-20 23:29:25 +02:00
}
}
fn rewrite_single_line(
&self,
pat_expr_str: &str,
context: &RewriteContext,
width: usize,
) -> Option<String> {
assert!(self.allow_single_line);
let else_block = try_opt!(self.else_block);
let fixed_cost = self.keyword.len() + " { } else { }".len();
if let ast::ExprKind::Block(ref else_node) = else_block.node {
if !is_simple_block(self.block, context.codemap) ||
!is_simple_block(else_node, context.codemap) ||
pat_expr_str.contains('\n')
{
return None;
}
let new_width = try_opt!(width.checked_sub(pat_expr_str.len() + fixed_cost));
let expr = &self.block.stmts[0];
let if_str = try_opt!(expr.rewrite(
context,
Shape::legacy(new_width, Indent::empty()),
));
let new_width = try_opt!(new_width.checked_sub(if_str.len()));
let else_expr = &else_node.stmts[0];
2017-06-17 16:56:54 +09:00
let else_str =
try_opt!(else_expr.rewrite(context, Shape::legacy(new_width, Indent::empty())));
if if_str.contains('\n') || else_str.contains('\n') {
return None;
}
let result = format!(
"{} {} {{ {} }} else {{ {} }}",
self.keyword,
pat_expr_str,
if_str,
else_str
);
if result.len() <= width {
return Some(result);
}
}
None
}
2015-07-20 23:29:25 +02:00
}
2017-06-15 23:26:32 +09:00
impl<'a> ControlFlow<'a> {
fn rewrite_cond(
&self,
context: &RewriteContext,
shape: Shape,
alt_block_sep: &str,
) -> Option<(String, usize)> {
2017-02-21 14:43:43 +13:00
let constr_shape = if self.nested_if {
// We are part of an if-elseif-else chain. Our constraints are tightened.
// 7 = "} else " .len()
2017-02-21 14:43:43 +13:00
try_opt!(shape.shrink_left(7))
} else {
2017-02-21 14:43:43 +13:00
shape
};
2015-07-20 23:29:25 +02:00
let label_string = rewrite_label(self.label);
// 1 = space after keyword.
2017-06-14 20:37:54 +09:00
let offset = self.keyword.len() + label_string.len() + 1;
2015-07-20 23:29:25 +02:00
let pat_expr_string = match self.cond {
2015-11-20 21:05:10 +01:00
Some(cond) => {
let mut cond_shape = match context.config.control_style() {
2017-06-14 20:37:54 +09:00
Style::Legacy => try_opt!(constr_shape.shrink_left(offset)),
Style::Rfc => try_opt!(constr_shape.offset_left(offset)),
};
if context.config.control_brace_style() != ControlBraceStyle::AlwaysNextLine {
2017-02-21 14:43:43 +13:00
// 2 = " {".len()
cond_shape = try_opt!(cond_shape.sub_width(2));
}
try_opt!(rewrite_pat_expr(
context,
self.pat,
cond,
self.matcher,
self.connector,
self.keyword,
cond_shape,
))
2015-11-20 21:05:10 +01:00
}
2015-08-16 15:58:17 +12:00
None => String::new(),
2015-07-20 23:29:25 +02:00
};
let force_newline_brace = context.config.control_style() == Style::Rfc &&
pat_expr_string.contains('\n') &&
!last_line_extendable(&pat_expr_string);
// Try to format if-else on single line.
if self.allow_single_line && context.config.single_line_if_else_max_width() > 0 {
let trial = self.rewrite_single_line(&pat_expr_string, context, shape.width);
2016-06-09 00:43:08 +09:00
2017-06-15 23:26:32 +09:00
if let Some(cond_str) = trial {
if cond_str.len() <= context.config.single_line_if_else_max_width() {
return Some((cond_str, 0));
}
}
}
let cond_span = if let Some(cond) = self.cond {
cond.span
} else {
mk_sp(self.block.span.lo, self.block.span.lo)
};
// for event in event
2017-06-01 12:08:09 +09:00
let between_kwd_cond = mk_sp(
context.codemap.span_after(self.span, self.keyword.trim()),
2017-06-03 22:50:13 +09:00
self.pat.map_or(
cond_span.lo,
|p| if self.matcher.is_empty() {
2017-06-01 12:08:09 +09:00
p.span.lo
} else {
context.codemap.span_before(self.span, self.matcher.trim())
2017-06-03 22:50:13 +09:00
},
),
2017-06-01 12:08:09 +09:00
);
let between_kwd_cond_comment = extract_comment(between_kwd_cond, context, shape);
let after_cond_comment =
extract_comment(mk_sp(cond_span.hi, self.block.span.lo), context, shape);
let block_sep = if self.cond.is_none() && between_kwd_cond_comment.is_some() {
""
} else if context.config.control_brace_style() == ControlBraceStyle::AlwaysNextLine ||
force_newline_brace
{
2017-06-15 23:26:32 +09:00
alt_block_sep
} else {
" "
};
2017-06-15 23:26:32 +09:00
let used_width = if pat_expr_string.contains('\n') {
last_line_width(&pat_expr_string)
} else {
// 2 = spaces after keyword and condition.
label_string.len() + self.keyword.len() + pat_expr_string.len() + 2
};
Some((
format!(
"{}{}{}{}{}",
label_string,
self.keyword,
between_kwd_cond_comment.as_ref().map_or(
2017-07-06 01:03:07 +09:00
if pat_expr_string.is_empty() || pat_expr_string.starts_with('\n') {
2017-06-15 23:26:32 +09:00
""
} else {
" "
},
|s| &**s,
),
pat_expr_string,
after_cond_comment.as_ref().map_or(block_sep, |s| &**s)
),
used_width,
))
}
}
impl<'a> Rewrite for ControlFlow<'a> {
fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
debug!("ControlFlow::rewrite {:?} {:?}", self, shape);
2017-07-05 18:31:37 +09:00
let alt_block_sep =
String::from("\n") + &shape.indent.block_only().to_string(context.config);
2017-06-15 23:26:32 +09:00
let (cond_str, used_width) = try_opt!(self.rewrite_cond(context, shape, &alt_block_sep));
// If `used_width` is 0, it indicates that whole control flow is written in a single line.
if used_width == 0 {
return Some(cond_str);
}
let block_width = shape.width.checked_sub(used_width).unwrap_or(0);
// This is used only for the empty block case: `{}`. So, we use 1 if we know
// we should avoid the single line case.
let block_width = if self.else_block.is_some() || self.nested_if {
min(1, block_width)
} else {
block_width
};
let block_shape = Shape {
width: block_width,
..shape
};
let mut block_context = context.clone();
block_context.is_if_else_block = self.else_block.is_some();
let block_str = try_opt!(rewrite_block_with_visitor(
&block_context,
"",
self.block,
block_shape,
));
2017-06-15 23:26:32 +09:00
let mut result = format!("{}{}", cond_str, block_str);
if let Some(else_block) = self.else_block {
let shape = Shape::indented(shape.indent, context.config);
let mut last_in_chain = false;
let rewrite = match else_block.node {
// If the else expression is another if-else expression, prevent it
// from being formatted on a single line.
// Note how we're passing the original shape, as the
// cost of "else" should not cascade.
ast::ExprKind::IfLet(ref pat, ref cond, ref if_block, ref next_else_block) => {
ControlFlow::new_if(
cond,
Some(pat),
if_block,
next_else_block.as_ref().map(|e| &**e),
false,
true,
mk_sp(else_block.span.lo, self.span.hi),
).rewrite(context, shape)
}
ast::ExprKind::If(ref cond, ref if_block, ref next_else_block) => {
ControlFlow::new_if(
cond,
None,
if_block,
next_else_block.as_ref().map(|e| &**e),
false,
true,
mk_sp(else_block.span.lo, self.span.hi),
).rewrite(context, shape)
}
_ => {
last_in_chain = true;
// When rewriting a block, the width is only used for single line
// blocks, passing 1 lets us avoid that.
2017-03-22 09:05:50 +13:00
let else_shape = Shape {
width: min(1, shape.width),
..shape
};
format_expr(else_block, ExprType::Statement, context, else_shape)
}
};
2017-06-16 18:56:32 +09:00
let between_kwd_else_block = mk_sp(
self.block.span.hi,
2017-06-17 16:56:54 +09:00
context
.codemap
.span_before(mk_sp(self.block.span.hi, else_block.span.lo), "else"),
2017-06-16 18:56:32 +09:00
);
let between_kwd_else_block_comment =
extract_comment(between_kwd_else_block, context, shape);
let after_else = mk_sp(
2017-06-17 16:56:54 +09:00
context
.codemap
.span_after(mk_sp(self.block.span.hi, else_block.span.lo), "else"),
else_block.span.lo,
);
let after_else_comment = extract_comment(after_else, context, shape);
let between_sep = match context.config.control_brace_style() {
2017-07-10 02:24:59 +09:00
ControlBraceStyle::AlwaysNextLine | ControlBraceStyle::ClosingNextLine => {
&*alt_block_sep
}
ControlBraceStyle::AlwaysSameLine => " ",
};
let after_sep = match context.config.control_brace_style() {
ControlBraceStyle::AlwaysNextLine if last_in_chain => &*alt_block_sep,
_ => " ",
};
try_opt!(
write!(
&mut result,
"{}else{}",
2017-06-17 16:56:54 +09:00
between_kwd_else_block_comment
.as_ref()
.map_or(between_sep, |s| &**s),
after_else_comment.as_ref().map_or(after_sep, |s| &**s)
).ok()
);
result.push_str(&try_opt!(rewrite));
}
Some(result)
2015-07-20 23:29:25 +02:00
}
}
fn rewrite_label(label: Option<ast::SpannedIdent>) -> String {
2015-07-16 16:29:28 +02:00
match label {
Some(ident) => format!("{}: ", ident.node),
2015-08-16 15:58:17 +12:00
None => "".to_owned(),
2015-07-16 16:29:28 +02:00
}
}
fn extract_comment(span: Span, context: &RewriteContext, shape: Shape) -> Option<String> {
let comment_str = context.snippet(span);
if contains_comment(&comment_str) {
let comment = try_opt!(rewrite_comment(
comment_str.trim(),
false,
shape,
context.config,
));
Some(format!(
"\n{indent}{}\n{indent}",
comment,
indent = shape.indent.to_string(context.config)
))
} else {
None
}
}
fn block_contains_comment(block: &ast::Block, codemap: &CodeMap) -> bool {
let snippet = codemap.span_to_snippet(block.span).unwrap();
contains_comment(&snippet)
}
// Checks that a block contains no statements, an expression and no comments.
2015-11-20 21:05:10 +01:00
// FIXME: incorrectly returns false when comment is contained completely within
// the expression.
pub fn is_simple_block(block: &ast::Block, codemap: &CodeMap) -> bool {
(block.stmts.len() == 1 && stmt_is_expr(&block.stmts[0]) &&
!block_contains_comment(block, codemap))
}
2015-11-19 01:53:25 -06:00
/// Checks whether a block contains at most one statement or expression, and no comments.
pub fn is_simple_block_stmt(block: &ast::Block, codemap: &CodeMap) -> bool {
block.stmts.len() <= 1 && !block_contains_comment(block, codemap)
2015-11-19 01:53:25 -06:00
}
/// Checks whether a block contains no statements, expressions, or comments.
pub fn is_empty_block(block: &ast::Block, codemap: &CodeMap) -> bool {
block.stmts.is_empty() && !block_contains_comment(block, codemap)
}
pub fn stmt_is_expr(stmt: &ast::Stmt) -> bool {
match stmt.node {
ast::StmtKind::Expr(..) => true,
_ => false,
}
2015-11-19 01:53:25 -06:00
}
fn is_unsafe_block(block: &ast::Block) -> bool {
2016-03-01 17:27:19 -05:00
if let ast::BlockCheckMode::Unsafe(..) = block.rules {
true
} else {
false
}
}
2015-09-24 10:22:06 +10:00
// inter-match-arm-comment-rules:
// - all comments following a match arm before the start of the next arm
// are about the second arm
fn rewrite_match_arm_comment(
context: &RewriteContext,
missed_str: &str,
shape: Shape,
arm_indent_str: &str,
) -> Option<String> {
2015-09-24 10:22:06 +10:00
// The leading "," is not part of the arm-comment
let missed_str = match missed_str.find_uncommented(",") {
2015-10-02 11:48:52 +02:00
Some(n) => &missed_str[n + 1..],
2015-09-24 10:22:06 +10:00
None => &missed_str[..],
};
let mut result = String::new();
// any text not preceeded by a newline is pushed unmodified to the block
2017-03-28 11:25:59 +13:00
let first_brk = missed_str.find(|c: char| c == '\n').unwrap_or(0);
2015-09-24 10:22:06 +10:00
result.push_str(&missed_str[..first_brk]);
let missed_str = &missed_str[first_brk..]; // If missed_str had one newline, it starts with it
2017-06-16 18:56:32 +09:00
let first = missed_str
.find(|c: char| !c.is_whitespace())
.unwrap_or(missed_str.len());
2017-04-24 16:50:11 +09:00
if missed_str[..first].chars().filter(|c| c == &'\n').count() >= 2 {
2015-09-24 10:22:06 +10:00
// Excessive vertical whitespace before comment should be preserved
// FIXME handle vertical whitespace better
2015-09-24 10:22:06 +10:00
result.push('\n');
}
let missed_str = missed_str[first..].trim();
if !missed_str.is_empty() {
let comment = try_opt!(rewrite_comment(&missed_str, false, shape, context.config));
2015-09-24 10:22:06 +10:00
result.push('\n');
result.push_str(arm_indent_str);
result.push_str(&comment);
2015-09-24 10:22:06 +10:00
}
Some(result)
2015-09-24 10:22:06 +10:00
}
fn rewrite_match(
context: &RewriteContext,
cond: &ast::Expr,
arms: &[ast::Arm],
shape: Shape,
span: Span,
) -> Option<String> {
2015-08-21 13:31:09 +02:00
if arms.is_empty() {
2015-08-17 09:41:45 +12:00
return None;
}
2015-08-14 20:00:22 +12:00
// `match `cond` {`
let cond_shape = match context.config.control_style() {
Style::Legacy => try_opt!(shape.shrink_left(6).and_then(|s| s.sub_width(2))),
2017-06-14 20:37:54 +09:00
Style::Rfc => try_opt!(shape.offset_left(8)),
};
let cond_str = try_opt!(cond.rewrite(context, cond_shape));
2017-03-28 11:25:59 +13:00
let alt_block_sep = String::from("\n") + &shape.indent.block_only().to_string(context.config);
let block_sep = match context.config.control_brace_style() {
ControlBraceStyle::AlwaysNextLine => alt_block_sep.as_str(),
_ => " ",
};
2017-07-11 21:52:27 +09:00
Some(format!(
"match {}{}{{{}\n{}}}",
cond_str,
block_sep,
try_opt!(rewrite_match_arms(context, arms, shape, span, cond.span.hi)),
shape.indent.to_string(context.config),
))
}
fn arm_comma(config: &Config, body: &ast::Expr) -> &'static str {
if config.match_block_trailing_comma() {
","
} else if let ast::ExprKind::Block(ref block) = body.node {
if let ast::BlockCheckMode::Default = block.rules {
""
} else {
","
}
} else {
","
}
}
fn rewrite_match_pattern(
context: &RewriteContext,
pats: &Vec<ptr::P<ast::Pat>>,
guard: &Option<ptr::P<ast::Expr>>,
shape: Shape,
) -> Option<String> {
// Patterns
// 5 = ` => {`
let pat_shape = try_opt!(shape.sub_width(5));
let pat_strs = try_opt!(
pats.iter()
.map(|p| p.rewrite(context, pat_shape))
.collect::<Option<Vec<_>>>()
);
let items: Vec<_> = pat_strs.into_iter().map(ListItem::from_str).collect();
let tactic = definitive_tactic(&items, ListTactic::HorizontalVertical, pat_shape.width);
let fmt = ListFormatting {
tactic: tactic,
separator: " |",
trailing_separator: SeparatorTactic::Never,
shape: pat_shape,
ends_with_newline: false,
config: context.config,
};
let pats_str = try_opt!(write_list(&items, &fmt));
// Guard
let guard_str = try_opt!(rewrite_guard(
context,
guard,
shape,
trimmed_last_line_width(&pats_str),
));
Some(format!("{}{}", pats_str, guard_str))
}
fn rewrite_match_arms(
context: &RewriteContext,
arms: &[ast::Arm],
shape: Shape,
span: Span,
cond_end_pos: BytePos,
) -> Option<String> {
let mut result = String::new();
2015-08-14 20:00:22 +12:00
let arm_shape = if context.config.indent_match_arms() {
shape.block_indent(context.config.tab_spaces())
} else {
shape.block_indent(0)
2017-07-11 21:52:27 +09:00
}.with_max_width(context.config);
2017-02-21 14:43:43 +13:00
let arm_indent_str = arm_shape.indent.to_string(context.config);
2015-08-14 20:00:22 +12:00
2017-06-17 16:56:54 +09:00
let open_brace_pos = context
.codemap
2017-07-11 21:52:27 +09:00
.span_after(mk_sp(cond_end_pos, arms[0].span().lo), "{");
2015-08-17 09:41:45 +12:00
let arm_num = arms.len();
2015-08-17 09:41:45 +12:00
for (i, arm) in arms.iter().enumerate() {
// Make sure we get the stuff between arms.
let missed_str = if i == 0 {
2017-07-11 21:52:27 +09:00
context.snippet(mk_sp(open_brace_pos, arm.span().lo))
2015-08-17 09:41:45 +12:00
} else {
2017-07-11 21:52:27 +09:00
context.snippet(mk_sp(arms[i - 1].span().hi, arm.span().lo))
2015-08-17 09:41:45 +12:00
};
let comment = try_opt!(rewrite_match_arm_comment(
context,
&missed_str,
arm_shape,
&arm_indent_str,
));
result.push_str(&comment);
2015-08-14 20:00:22 +12:00
result.push('\n');
result.push_str(&arm_indent_str);
2015-08-17 09:41:45 +12:00
2017-07-11 21:52:27 +09:00
let arm_str = rewrite_match_arm(context, arm, arm_shape);
2015-08-17 09:41:45 +12:00
if let Some(ref arm_str) = arm_str {
// Trim the trailing comma if necessary.
if i == arm_num - 1 && context.config.trailing_comma() == SeparatorTactic::Never &&
arm_str.ends_with(',')
{
result.push_str(&arm_str[0..arm_str.len() - 1])
} else {
result.push_str(arm_str)
}
2015-08-17 09:41:45 +12:00
} else {
// We couldn't format the arm, just reproduce the source.
2017-07-11 21:52:27 +09:00
let snippet = context.snippet(arm.span());
2015-08-17 09:41:45 +12:00
result.push_str(&snippet);
if context.config.trailing_comma() != SeparatorTactic::Never {
result.push_str(arm_comma(context.config, &arm.body))
}
2015-08-17 09:41:45 +12:00
}
2015-08-14 20:00:22 +12:00
}
// BytePos(1) = closing match brace.
2017-07-11 21:52:27 +09:00
let last_span = mk_sp(arms[arms.len() - 1].span().hi, span.hi - BytePos(1));
let last_comment = context.snippet(last_span);
let comment = try_opt!(rewrite_match_arm_comment(
context,
&last_comment,
arm_shape,
&arm_indent_str,
));
result.push_str(&comment);
2015-08-17 09:41:45 +12:00
2017-07-11 21:52:27 +09:00
Some(result)
2015-08-17 09:41:45 +12:00
}
2017-07-11 21:52:27 +09:00
fn rewrite_match_arm(context: &RewriteContext, arm: &ast::Arm, shape: Shape) -> Option<String> {
let attr_str = if !arm.attrs.is_empty() {
if contains_skip(&arm.attrs) {
return None;
}
2017-07-11 21:52:27 +09:00
format!(
"{}\n{}",
try_opt!(arm.attrs.rewrite(context, shape)),
shape.indent.to_string(context.config)
)
} else {
2017-07-11 21:52:27 +09:00
String::new()
};
let pats_str = try_opt!(rewrite_match_pattern(context, &arm.pats, &arm.guard, shape));
let pats_str = attr_str + &pats_str;
rewrite_match_body(context, &arm.body, &pats_str, shape, arm.guard.is_some())
}
2017-07-11 21:52:27 +09:00
fn rewrite_match_body(
context: &RewriteContext,
body: &ptr::P<ast::Expr>,
pats_str: &str,
shape: Shape,
has_guard: bool,
) -> Option<String> {
let (extend, body) = match body.node {
ast::ExprKind::Block(ref block)
if !is_unsafe_block(block) && is_simple_block(block, context.codemap) => {
if let ast::StmtKind::Expr(ref expr) = block.stmts[0].node {
(expr.can_be_overflowed(context, 1), &**expr)
} else {
(false, &**body)
2015-08-17 09:41:45 +12:00
}
2017-07-11 21:52:27 +09:00
}
_ => (body.can_be_overflowed(context, 1), &**body),
};
2015-08-14 20:00:22 +12:00
2017-07-11 21:52:27 +09:00
let comma = arm_comma(&context.config, body);
let alt_block_sep = String::from("\n") + &shape.indent.block_only().to_string(context.config);
let alt_block_sep = alt_block_sep.as_str();
let is_block = if let ast::ExprKind::Block(..) = body.node {
true
} else {
false
};
2017-07-11 21:52:27 +09:00
let combine_orig_body = |body_str: &str| {
let block_sep = match context.config.control_brace_style() {
ControlBraceStyle::AlwaysNextLine if is_block => alt_block_sep,
_ if has_guard && pats_str.contains('\n') && is_block && body_str != "{}" => {
alt_block_sep
}
2017-07-11 21:52:27 +09:00
_ => " ",
};
2017-07-11 21:52:27 +09:00
Some(format!("{} =>{}{}{}", pats_str, block_sep, body_str, comma))
};
2015-08-14 20:00:22 +12:00
2017-07-11 21:52:27 +09:00
let combine_next_line_body = |body_str: &str| {
2017-06-16 08:49:49 +09:00
let indent_str = shape
.indent
.block_indent(context.config)
.to_string(context.config);
let (body_prefix, body_suffix) = if context.config.wrap_match_arms() {
2017-07-11 21:52:27 +09:00
let comma = if context.config.match_block_trailing_comma() {
","
} else {
2017-07-11 21:52:27 +09:00
""
};
(
"{",
format!("\n{}}}{}", shape.indent.to_string(context.config), comma),
)
} else {
2017-07-11 21:52:27 +09:00
("", String::from(","))
};
let block_sep = match context.config.control_brace_style() {
2017-07-11 21:52:27 +09:00
ControlBraceStyle::AlwaysNextLine => format!("{}{}\n", alt_block_sep, body_prefix),
2017-03-02 15:03:32 +13:00
_ if body_prefix.is_empty() => "\n".to_owned(),
_ => " ".to_owned() + body_prefix + "\n",
2017-07-11 21:52:27 +09:00
} + &indent_str;
2017-07-11 21:52:27 +09:00
Some(format!(
"{} =>{}{}{}",
pats_str,
block_sep,
body_str,
body_suffix
))
};
// Let's try and get the arm body on the same line as the condition.
// 4 = ` => `.len()
let orig_arm_shape = shape
.offset_left(extra_offset(&pats_str, shape) + 4)
.and_then(|shape| shape.sub_width(comma.len()));
let orig_body = if let Some(arm_shape) = orig_arm_shape {
let rewrite = nop_block_collapse(
format_expr(body, ExprType::Statement, context, arm_shape),
arm_shape.width,
);
match rewrite {
Some(ref body_str)
if ((!body_str.contains('\n')) && first_line_width(body_str) <= arm_shape.width) ||
is_block =>
{
return combine_orig_body(body_str);
}
_ => rewrite,
}
2017-07-11 21:52:27 +09:00
} else {
None
};
let orig_budget = orig_arm_shape.map_or(0, |shape| shape.width);
// Try putting body on the next line and see if it looks better.
let next_line_body_shape =
Shape::indented(shape.indent.block_indent(context.config), context.config);
let next_line_body = nop_block_collapse(
format_expr(body, ExprType::Statement, context, next_line_body_shape),
next_line_body_shape.width,
);
match (orig_body, next_line_body) {
(Some(ref orig_str), Some(ref next_line_str))
if prefer_next_line(orig_str, next_line_str) => combine_next_line_body(next_line_str),
(Some(ref orig_str), _) if extend && first_line_width(orig_str) <= orig_budget => {
combine_orig_body(orig_str)
}
(Some(ref orig_str), Some(ref next_line_str)) if orig_str.contains('\n') => {
combine_next_line_body(next_line_str)
}
(None, Some(ref next_line_str)) => combine_next_line_body(next_line_str),
(None, None) => None,
(Some(ref orig_str), _) => combine_orig_body(orig_str),
2015-08-14 20:00:22 +12:00
}
}
// The `if ...` guard on a match arm.
fn rewrite_guard(
context: &RewriteContext,
guard: &Option<ptr::P<ast::Expr>>,
shape: Shape,
// The amount of space used up on this line for the pattern in
// the arm (excludes offset).
pattern_width: usize,
) -> Option<String> {
2015-11-25 15:39:15 +09:00
if let Some(ref guard) = *guard {
// First try to fit the guard string on the same line as the pattern.
2015-08-14 20:00:22 +12:00
// 4 = ` if `, 5 = ` => {`
2017-07-11 21:52:27 +09:00
let cond_shape = shape
2017-07-10 16:52:07 +09:00
.offset_left(pattern_width + 4)
2017-07-11 21:52:27 +09:00
.and_then(|s| s.sub_width(5));
if let Some(cond_shape) = cond_shape {
if let Some(cond_str) = guard.rewrite(context, cond_shape) {
2017-07-10 16:52:07 +09:00
if !cond_str.contains('\n') || pattern_width <= context.config.tab_spaces() {
return Some(format!(" if {}", cond_str));
}
2015-08-14 20:00:22 +12:00
}
}
// Not enough space to put the guard after the pattern, try a newline.
2017-07-10 16:52:07 +09:00
// 3 = `if `, 5 = ` => {`
2017-07-11 21:52:27 +09:00
let cond_shape = Shape::indented(shape.indent.block_indent(context.config), context.config)
.offset_left(3)
.and_then(|s| s.sub_width(5));
if let Some(cond_shape) = cond_shape {
if let Some(cond_str) = guard.rewrite(context, cond_shape) {
2017-06-13 14:49:47 +12:00
return Some(format!(
"\n{}if {}",
2017-07-10 16:52:07 +09:00
cond_shape.indent.to_string(context.config),
2017-06-13 14:49:47 +12:00
cond_str
));
2015-08-14 20:00:22 +12:00
}
}
None
} else {
Some(String::new())
}
}
fn rewrite_pat_expr(
context: &RewriteContext,
pat: Option<&ast::Pat>,
expr: &ast::Expr,
matcher: &str,
// Connecting piece between pattern and expression,
// *without* trailing space.
connector: &str,
keyword: &str,
shape: Shape,
) -> Option<String> {
debug!("rewrite_pat_expr {:?} {:?} {:?}", shape, pat, expr);
if let Some(pat) = pat {
let matcher = if matcher.is_empty() {
matcher.to_owned()
} else {
format!("{} ", matcher)
};
let pat_shape =
try_opt!(try_opt!(shape.offset_left(matcher.len())).sub_width(connector.len()));
let pat_string = try_opt!(pat.rewrite(context, pat_shape));
let result = format!("{}{}{}", matcher, pat_string, connector);
return rewrite_assign_rhs(context, result, expr, shape);
2015-07-20 23:29:25 +02:00
}
let expr_rw = expr.rewrite(context, shape);
// The expression may (partially) fit on the current line.
// We do not allow splitting between `if` and condition.
if keyword == "if" || expr_rw.is_some() {
return expr_rw;
}
2015-07-20 23:29:25 +02:00
// The expression won't fit on the current line, jump to next.
let nested_shape = shape
.block_indent(context.config.tab_spaces())
.with_max_width(context.config);
let nested_indent_str = nested_shape.indent.to_string(context.config);
expr.rewrite(context, nested_shape)
.map(|expr_rw| format!("\n{}{}", nested_indent_str, expr_rw))
2015-07-19 23:42:54 +02:00
}
fn rewrite_string_lit(context: &RewriteContext, span: Span, shape: Shape) -> Option<String> {
let string_lit = context.snippet(span);
if !context.config.format_strings() && !context.config.force_format_strings() {
2017-06-18 22:44:56 +09:00
if string_lit
.lines()
.rev()
.skip(1)
.all(|line| line.ends_with('\\'))
{
let new_indent = shape.visual_indent(1).indent;
return Some(String::from(
string_lit
.lines()
.map(|line| {
new_indent.to_string(context.config) + line.trim_left()
})
.collect::<Vec<_>>()
.join("\n")
.trim_left(),
));
} else {
return Some(string_lit);
}
}
if !context.config.force_format_strings() &&
!string_requires_rewrite(context, span, &string_lit, shape)
{
return Some(string_lit);
}
2015-07-16 13:31:20 +12:00
let fmt = StringFormat {
opener: "\"",
closer: "\"",
line_start: " ",
line_end: "\\",
shape: shape,
2015-07-16 13:31:20 +12:00
trim_end: false,
config: context.config,
2015-07-16 13:31:20 +12:00
};
2015-04-21 21:01:19 +12:00
// Remove the quote characters.
let str_lit = &string_lit[1..string_lit.len() - 1];
2015-09-03 23:38:12 -04:00
rewrite_string(str_lit, &fmt)
2015-06-16 17:29:05 +02:00
}
fn string_requires_rewrite(
context: &RewriteContext,
span: Span,
string: &str,
shape: Shape,
) -> bool {
2017-03-28 11:25:59 +13:00
if context.codemap.lookup_char_pos(span.lo).col.0 != shape.indent.width() {
return true;
}
for (i, line) in string.lines().enumerate() {
if i == 0 {
if line.len() > shape.width {
return true;
}
} else {
if line.len() > shape.width + shape.indent.width() {
return true;
}
}
}
false
}
pub fn rewrite_call_with_binary_search<R>(
context: &RewriteContext,
callee: &R,
args: &[&ast::Expr],
span: Span,
shape: Shape,
) -> Option<String>
where
R: Rewrite,
2015-09-11 00:52:16 +02:00
{
let force_trailing_comma = if context.inside_macro {
span_ends_with_comma(context, span)
} else {
false
};
let closure = |callee_max_width| {
// FIXME using byte lens instead of char lens (and probably all over the
// place too)
let callee_shape = Shape {
width: callee_max_width,
..shape
};
2017-06-16 08:49:49 +09:00
let callee_str = callee
.rewrite(context, callee_shape)
.ok_or(Ordering::Greater)?;
rewrite_call_inner(
context,
&callee_str,
args,
span,
shape,
context.config.fn_call_width(),
force_trailing_comma,
)
};
2015-09-11 00:53:21 +02:00
binary_search(1, shape.width, closure)
2015-09-04 18:09:05 +02:00
}
pub fn rewrite_call(
context: &RewriteContext,
callee: &str,
args: &[ptr::P<ast::Expr>],
span: Span,
shape: Shape,
) -> Option<String> {
let force_trailing_comma = if context.inside_macro {
span_ends_with_comma(context, span)
} else {
false
};
rewrite_call_inner(
context,
&callee,
&args.iter().map(|x| &**x).collect::<Vec<_>>(),
span,
shape,
context.config.fn_call_width(),
force_trailing_comma,
).ok()
}
pub fn rewrite_call_inner<'a, T>(
context: &RewriteContext,
callee_str: &str,
args: &[&T],
span: Span,
shape: Shape,
args_max_width: usize,
force_trailing_comma: bool,
) -> Result<String, Ordering>
where
T: Rewrite + Spanned + ToExpr + 'a,
{
// 2 = `( `, 1 = `(`
let paren_overhead = if context.config.spaces_within_parens() {
2
} else {
1
};
let used_width = extra_offset(&callee_str, shape);
let one_line_width = shape
.width
.checked_sub(used_width + 2 * paren_overhead)
.ok_or(Ordering::Greater)?;
let nested_shape = shape_from_fn_call_style(
context,
shape,
used_width + 2 * paren_overhead,
used_width + paren_overhead,
).ok_or(Ordering::Greater)?;
2015-06-23 15:58:58 +02:00
let span_lo = context.codemap.span_after(span, "(");
2017-06-03 22:49:29 +09:00
let args_span = mk_sp(span_lo, span.hi);
2017-06-13 14:49:47 +12:00
let (extendable, list_str) = rewrite_call_args(
context,
args,
args_span,
nested_shape,
one_line_width,
args_max_width,
2017-06-13 14:49:47 +12:00
force_trailing_comma,
).or_else(|| if context.use_block_indent() {
rewrite_call_args(
context,
args,
args_span,
Shape::indented(
shape.block().indent.block_indent(context.config),
context.config,
),
0,
0,
2017-06-13 14:49:47 +12:00
force_trailing_comma,
)
} else {
None
})
.ok_or(Ordering::Less)?;
2017-06-03 22:49:29 +09:00
if !context.use_block_indent() && need_block_indent(&list_str, nested_shape) && !extendable {
let mut new_context = context.clone();
new_context.use_block = true;
return rewrite_call_inner(
&new_context,
callee_str,
args,
span,
shape,
args_max_width,
force_trailing_comma,
);
}
2017-06-16 08:49:49 +09:00
let args_shape = shape
.sub_width(last_line_width(&callee_str))
.ok_or(Ordering::Less)?;
2017-06-13 14:49:47 +12:00
Ok(format!(
"{}{}",
callee_str,
2017-06-16 18:56:32 +09:00
wrap_args_with_parens(context, &list_str, extendable, args_shape, nested_shape)
2017-06-13 14:49:47 +12:00
))
}
fn need_block_indent(s: &str, shape: Shape) -> bool {
s.lines().skip(1).any(|s| {
2017-06-17 16:56:54 +09:00
s.find(|c| !char::is_whitespace(c))
.map_or(false, |w| w + 1 < shape.indent.width())
})
}
fn rewrite_call_args<'a, T>(
context: &RewriteContext,
args: &[&T],
span: Span,
shape: Shape,
one_line_width: usize,
args_max_width: usize,
force_trailing_comma: bool,
) -> Option<(bool, String)>
where
T: Rewrite + Spanned + ToExpr + 'a,
{
let items = itemize_list(
context.codemap,
args.iter(),
")",
|item| item.span().lo,
|item| item.span().hi,
|item| item.rewrite(context, shape),
span.lo,
span.hi,
);
let mut item_vec: Vec<_> = items.collect();
// Try letting the last argument overflow to the next line with block
// indentation. If its first line fits on one line with the other arguments,
// we format the function arguments horizontally.
let tactic = try_overflow_last_arg(
context,
&mut item_vec,
&args[..],
shape,
one_line_width,
args_max_width,
);
2017-06-03 22:49:29 +09:00
let fmt = ListFormatting {
tactic: tactic,
separator: ",",
trailing_separator: if force_trailing_comma {
SeparatorTactic::Always
} else if context.inside_macro || !context.use_block_indent() {
SeparatorTactic::Never
} else {
2017-06-03 22:49:29 +09:00
context.config.trailing_comma()
},
shape: shape,
ends_with_newline: context.use_block_indent() && tactic == DefinitiveListTactic::Vertical,
2017-06-03 22:49:29 +09:00
config: context.config,
};
write_list(&item_vec, &fmt).map(|args_str| {
(tactic != DefinitiveListTactic::Vertical, args_str)
})
2017-06-03 22:49:29 +09:00
}
fn try_overflow_last_arg<'a, T>(
context: &RewriteContext,
item_vec: &mut Vec<ListItem>,
args: &[&T],
shape: Shape,
one_line_width: usize,
args_max_width: usize,
) -> DefinitiveListTactic
where
T: Rewrite + Spanned + ToExpr + 'a,
{
2017-06-03 22:49:29 +09:00
let overflow_last = can_be_overflowed(&context, args);
2017-06-03 22:49:29 +09:00
// Replace the last item with its first line to see if it fits with
// first arguments.
let (orig_last, placeholder) = if overflow_last {
let mut context = context.clone();
if let Some(expr) = args[args.len() - 1].to_expr() {
match expr.node {
ast::ExprKind::MethodCall(..) => context.force_one_line_chain = true,
_ => (),
}
}
last_arg_shape(&context, &item_vec, shape, args_max_width)
.map_or((None, None), |arg_shape| {
rewrite_last_arg_with_overflow(
&context,
args,
&mut item_vec[args.len() - 1],
arg_shape,
)
})
2017-06-03 22:49:29 +09:00
} else {
(None, None)
2017-04-06 21:17:22 +12:00
};
let tactic = definitive_tactic(
&*item_vec,
ListTactic::LimitedHorizontalVertical(args_max_width),
one_line_width,
);
// Replace the stub with the full overflowing last argument if the rewrite
// succeeded and its first line fits with the other arguments.
match (overflow_last, tactic, placeholder) {
(true, DefinitiveListTactic::Horizontal, placeholder @ Some(..)) => {
item_vec[args.len() - 1].item = placeholder;
}
(true, _, _) => {
item_vec[args.len() - 1].item = orig_last;
}
(false, _, _) => {}
}
2017-06-03 22:49:29 +09:00
tactic
}
fn last_arg_shape(
context: &RewriteContext,
items: &Vec<ListItem>,
shape: Shape,
args_max_width: usize,
) -> Option<Shape> {
2017-06-03 22:49:29 +09:00
let overhead = items.iter().rev().skip(1).fold(0, |acc, i| {
acc + i.item.as_ref().map_or(0, |s| first_line_width(&s))
});
let max_width = min(args_max_width, shape.width);
2017-06-03 22:49:29 +09:00
let arg_indent = if context.use_block_indent() {
shape.block().indent.block_unindent(context.config)
} else {
shape.block().indent
};
Some(Shape {
width: try_opt!(max_width.checked_sub(overhead)),
indent: arg_indent,
offset: 0,
})
2015-06-16 17:29:05 +02:00
}
2015-04-21 21:01:19 +12:00
// Rewriting closure which is placed at the end of the function call's arg.
// Returns `None` if the reformatted closure 'looks bad'.
fn rewrite_last_closure(
context: &RewriteContext,
expr: &ast::Expr,
shape: Shape,
) -> Option<String> {
if let ast::ExprKind::Closure(capture, ref fn_decl, ref body, _) = expr.node {
let body = match body.node {
ast::ExprKind::Block(ref block) if block.stmts.len() == 1 => {
stmt_expr(&block.stmts[0]).unwrap_or(body)
}
_ => body,
};
let (prefix, extra_offset) = try_opt!(rewrite_closure_fn_decl(
capture,
fn_decl,
body,
expr.span,
context,
shape,
));
// If the closure goes multi line before its body, do not overflow the closure.
if prefix.contains('\n') {
return None;
}
let body_shape = try_opt!(shape.offset_left(extra_offset));
// When overflowing the closure which consists of a single control flow expression,
// force to use block if its condition uses multi line.
if rewrite_cond(context, body, body_shape)
.map(|cond| cond.contains('\n'))
.unwrap_or(false)
{
return rewrite_closure_with_block(context, body_shape, &prefix, body);
}
// Seems fine, just format the closure in usual manner.
return expr.rewrite(context, shape);
}
None
}
fn rewrite_last_arg_with_overflow<'a, T>(
context: &RewriteContext,
args: &[&T],
last_item: &mut ListItem,
shape: Shape,
) -> (Option<String>, Option<String>)
where
T: Rewrite + Spanned + ToExpr + 'a,
{
let last_arg = args[args.len() - 1];
let rewrite = if let Some(expr) = last_arg.to_expr() {
match expr.node {
// When overflowing the closure which consists of a single control flow expression,
// force to use block if its condition uses multi line.
ast::ExprKind::Closure(..) => {
// If the argument consists of multiple closures, we do not overflow
// the last closure.
if args.len() > 1 &&
args.iter()
.rev()
.skip(1)
.filter_map(|arg| arg.to_expr())
.any(|expr| match expr.node {
ast::ExprKind::Closure(..) => true,
_ => false,
}) {
None
} else {
rewrite_last_closure(context, expr, shape)
}
}
_ => expr.rewrite(context, shape),
}
} else {
last_arg.rewrite(context, shape)
};
2017-06-03 22:49:29 +09:00
let orig_last = last_item.item.clone();
if let Some(rewrite) = rewrite {
let rewrite_first_line = Some(rewrite[..first_line_width(&rewrite)].to_owned());
last_item.item = rewrite_first_line;
(orig_last, Some(rewrite))
} else {
(orig_last, None)
}
}
fn can_be_overflowed<'a, T>(context: &RewriteContext, args: &[&T]) -> bool
where
T: Rewrite + Spanned + ToExpr + 'a,
{
2017-06-17 16:56:54 +09:00
args.last()
.map_or(false, |x| x.can_be_overflowed(context, args.len()))
}
pub fn can_be_overflowed_expr(context: &RewriteContext, expr: &ast::Expr, args_len: usize) -> bool {
2017-06-03 22:49:29 +09:00
match expr.node {
ast::ExprKind::Match(..) => {
(context.use_block_indent() && args_len == 1) ||
(context.config.fn_call_style() == IndentStyle::Visual && args_len > 1)
2017-06-03 22:49:29 +09:00
}
ast::ExprKind::If(..) |
ast::ExprKind::IfLet(..) |
ast::ExprKind::ForLoop(..) |
ast::ExprKind::Loop(..) |
ast::ExprKind::While(..) |
ast::ExprKind::WhileLet(..) => {
2017-06-03 22:50:13 +09:00
context.config.combine_control_expr() && context.use_block_indent() && args_len == 1
2017-06-03 22:49:29 +09:00
}
2017-07-10 02:24:59 +09:00
ast::ExprKind::Block(..) | ast::ExprKind::Closure(..) => {
2017-06-03 22:49:29 +09:00
context.use_block_indent() ||
context.config.fn_call_style() == IndentStyle::Visual && args_len > 1
2017-06-03 22:49:29 +09:00
}
2017-06-29 11:00:51 +09:00
ast::ExprKind::Array(..) |
2017-06-03 22:49:29 +09:00
ast::ExprKind::Call(..) |
ast::ExprKind::Mac(..) |
2017-06-29 11:00:51 +09:00
ast::ExprKind::MethodCall(..) |
ast::ExprKind::Struct(..) |
ast::ExprKind::Tup(..) => context.use_block_indent() && args_len == 1,
2017-06-03 22:49:29 +09:00
ast::ExprKind::AddrOf(_, ref expr) |
ast::ExprKind::Box(ref expr) |
ast::ExprKind::Try(ref expr) |
ast::ExprKind::Unary(_, ref expr) |
ast::ExprKind::Cast(ref expr, _) => can_be_overflowed_expr(context, expr, args_len),
_ => false,
}
}
pub fn wrap_args_with_parens(
2017-06-13 14:49:47 +12:00
context: &RewriteContext,
args_str: &str,
is_extendable: bool,
shape: Shape,
nested_shape: Shape,
) -> String {
if !context.use_block_indent() ||
2017-06-13 14:49:47 +12:00
(context.inside_macro && !args_str.contains('\n') &&
args_str.len() + paren_overhead(context) <= shape.width) || is_extendable
{
if context.config.spaces_within_parens() && args_str.len() > 0 {
format!("( {} )", args_str)
} else {
format!("({})", args_str)
}
} else {
format!(
"(\n{}{}\n{})",
nested_shape.indent.to_string(context.config),
args_str,
shape.block().indent.to_string(context.config)
)
}
}
fn span_ends_with_comma(context: &RewriteContext, span: Span) -> bool {
let snippet = context.snippet(span);
snippet
.trim_right_matches(|c: char| c == ')' || c.is_whitespace())
.ends_with(',')
}
fn rewrite_paren(context: &RewriteContext, subexpr: &ast::Expr, shape: Shape) -> Option<String> {
debug!("rewrite_paren, shape: {:?}", shape);
2017-06-14 20:37:54 +09:00
let paren_overhead = paren_overhead(context);
let sub_shape = try_opt!(shape.sub_width(paren_overhead / 2)).visual_indent(paren_overhead / 2);
2017-06-14 20:37:54 +09:00
let paren_wrapper = |s: &str| if context.config.spaces_within_parens() && s.len() > 0 {
format!("( {} )", s)
} else {
format!("({})", s)
2017-06-14 20:37:54 +09:00
};
let subexpr_str = try_opt!(subexpr.rewrite(context, sub_shape));
debug!("rewrite_paren, subexpr_str: `{:?}`", subexpr_str);
if subexpr_str.contains('\n') {
Some(paren_wrapper(&subexpr_str))
} else {
if subexpr_str.len() + paren_overhead <= shape.width {
Some(paren_wrapper(&subexpr_str))
} else {
let sub_shape = try_opt!(shape.offset_left(2));
let subexpr_str = try_opt!(subexpr.rewrite(context, sub_shape));
Some(paren_wrapper(&subexpr_str))
}
}
2015-06-16 17:29:05 +02:00
}
2015-05-24 19:57:13 +02:00
fn rewrite_index(
expr: &ast::Expr,
index: &ast::Expr,
context: &RewriteContext,
shape: Shape,
) -> Option<String> {
let expr_str = try_opt!(expr.rewrite(context, shape));
2017-01-11 12:06:23 +13:00
let (lbr, rbr) = if context.config.spaces_within_square_brackets() {
2017-01-11 12:06:23 +13:00
("[ ", " ]")
} else {
("[", "]")
};
let offset = last_line_width(&expr_str) + lbr.len();
let rhs_overhead = shape.rhs_overhead(context.config);
let index_shape = if expr_str.contains('\n') {
Shape::legacy(context.config.max_width(), shape.indent)
.offset_left(offset)
.and_then(|shape| shape.sub_width(rbr.len() + rhs_overhead))
} else {
shape.visual_indent(offset).sub_width(offset + rbr.len())
};
let orig_index_rw = index_shape.and_then(|s| index.rewrite(context, s));
// Return if index fits in a single line.
match orig_index_rw {
Some(ref index_str) if !index_str.contains('\n') => {
2017-05-25 23:01:41 +09:00
return Some(format!("{}{}{}{}", expr_str, lbr, index_str, rbr));
}
_ => (),
2017-01-11 12:06:23 +13:00
}
// Try putting index on the next line and see if it fits in a single line.
let indent = shape.indent.block_indent(context.config);
let index_shape = try_opt!(Shape::indented(indent, context.config).offset_left(lbr.len()));
let index_shape = try_opt!(index_shape.sub_width(rbr.len() + rhs_overhead));
let new_index_rw = index.rewrite(context, index_shape);
match (orig_index_rw, new_index_rw) {
2017-07-11 21:53:10 +09:00
(_, Some(ref new_index_str)) if !new_index_str.contains('\n') => Some(format!(
"{}\n{}{}{}{}",
expr_str,
indent.to_string(&context.config),
lbr,
new_index_str,
rbr
)),
(None, Some(ref new_index_str)) => Some(format!(
"{}\n{}{}{}{}",
expr_str,
indent.to_string(&context.config),
lbr,
new_index_str,
rbr
)),
(Some(ref index_str), _) => Some(format!("{}{}{}{}", expr_str, lbr, index_str, rbr)),
_ => None,
}
2017-01-11 12:06:23 +13:00
}
fn struct_lit_can_be_aligned(fields: &[ast::Field], base: &Option<&ast::Expr>) -> bool {
if base.is_some() {
return false;
}
fields.iter().all(|field| !field.is_shorthand)
}
fn rewrite_struct_lit<'a>(
context: &RewriteContext,
path: &ast::Path,
fields: &'a [ast::Field],
base: Option<&'a ast::Expr>,
span: Span,
shape: Shape,
) -> Option<String> {
debug!("rewrite_struct_lit: shape {:?}", shape);
2015-05-25 19:11:53 +12:00
2015-06-24 01:11:29 +02:00
enum StructLitField<'a> {
Regular(&'a ast::Field),
2015-07-03 11:13:28 +02:00
Base(&'a ast::Expr),
2015-06-24 01:11:29 +02:00
}
2015-08-14 14:09:19 +02:00
// 2 = " {".len()
2017-02-21 14:43:43 +13:00
let path_shape = try_opt!(shape.sub_width(2));
let path_str = try_opt!(rewrite_path(
context,
PathContext::Expr,
None,
path,
path_shape,
));
2015-08-14 14:09:19 +02:00
if fields.len() == 0 && base.is_none() {
return Some(format!("{} {{}}", path_str));
}
2015-05-25 19:11:53 +12:00
// Foo { a: Foo } - indent is +3, width is -5.
let (h_shape, v_shape) = try_opt!(struct_lit_shape(shape, context, path_str.len() + 3, 2));
let one_line_width = h_shape.map_or(0, |shape| shape.width);
let body_lo = context.codemap.span_after(span, "{");
let fields_str = if struct_lit_can_be_aligned(fields, &base) &&
context.config.struct_field_align_threshold() > 0
{
try_opt!(rewrite_with_alignment(
fields,
context,
shape,
mk_sp(body_lo, span.hi),
one_line_width,
))
} else {
let field_iter = fields
.into_iter()
.map(StructLitField::Regular)
.chain(base.into_iter().map(StructLitField::Base));
let span_lo = |item: &StructLitField| match *item {
StructLitField::Regular(field) => field.span().lo,
StructLitField::Base(expr) => {
let last_field_hi = fields.last().map_or(span.lo, |field| field.span.hi);
let snippet = context.snippet(mk_sp(last_field_hi, expr.span.lo));
let pos = snippet.find_uncommented("..").unwrap();
last_field_hi + BytePos(pos as u32)
}
};
let span_hi = |item: &StructLitField| match *item {
StructLitField::Regular(field) => field.span().hi,
StructLitField::Base(expr) => expr.span.hi,
};
let rewrite = |item: &StructLitField| match *item {
StructLitField::Regular(field) => {
// The 1 taken from the v_budget is for the comma.
rewrite_field(context, field, try_opt!(v_shape.sub_width(1)), 0)
}
StructLitField::Base(expr) => {
// 2 = ..
expr.rewrite(context, try_opt!(v_shape.shrink_left(2)))
.map(|s| format!("..{}", s))
}
};
let items = itemize_list(
context.codemap,
field_iter,
"}",
span_lo,
span_hi,
rewrite,
body_lo,
span.hi,
);
let item_vec = items.collect::<Vec<_>>();
let tactic = struct_lit_tactic(h_shape, context, &item_vec);
let nested_shape = shape_for_tactic(tactic, h_shape, v_shape);
let fmt = struct_lit_formatting(nested_shape, tactic, context, base.is_some());
try_opt!(write_list(&item_vec, &fmt))
};
let fields_str = wrap_struct_field(context, &fields_str, shape, v_shape, one_line_width);
Some(format!("{} {{{}}}", path_str, fields_str))
// FIXME if context.config.struct_lit_style() == Visual, but we run out
// of space, we should fall back to BlockIndent.
}
2015-06-24 01:11:29 +02:00
pub fn wrap_struct_field(
context: &RewriteContext,
fields_str: &str,
shape: Shape,
nested_shape: Shape,
one_line_width: usize,
) -> String {
if context.config.struct_lit_style() == IndentStyle::Block &&
(fields_str.contains('\n') ||
context.config.struct_lit_multiline_style() == MultilineStyle::ForceMulti ||
fields_str.len() > one_line_width)
{
format!(
"\n{}{}\n{}",
nested_shape.indent.to_string(context.config),
fields_str,
shape.indent.to_string(context.config)
)
2017-02-21 14:43:43 +13:00
} else {
// One liner or visual indent.
format!(" {} ", fields_str)
}
2015-06-16 17:29:05 +02:00
}
pub fn struct_lit_field_separator(config: &Config) -> &str {
colon_spaces(
config.space_before_struct_lit_field_colon(),
config.space_after_struct_lit_field_colon(),
)
}
pub fn rewrite_field(
context: &RewriteContext,
field: &ast::Field,
shape: Shape,
prefix_max_width: usize,
) -> Option<String> {
if contains_skip(&field.attrs) {
return wrap_str(
context.snippet(field.span()),
context.config.max_width(),
shape,
);
}
let name = &field.ident.node.to_string();
2017-02-13 03:16:11 +09:00
if field.is_shorthand {
Some(name.to_string())
} else {
let mut separator = String::from(struct_lit_field_separator(context.config));
for _ in 0..prefix_max_width.checked_sub(name.len()).unwrap_or(0) {
separator.push(' ');
}
2017-02-13 03:16:11 +09:00
let overhead = name.len() + separator.len();
let expr_shape = try_opt!(shape.offset_left(overhead));
2017-02-21 14:43:43 +13:00
let expr = field.expr.rewrite(context, expr_shape);
2017-02-13 03:16:11 +09:00
let mut attrs_str = try_opt!(field.attrs.rewrite(context, shape));
2017-05-12 17:58:38 +09:00
if !attrs_str.is_empty() {
attrs_str.push_str(&format!("\n{}", shape.indent.to_string(context.config)));
};
2017-02-13 03:16:11 +09:00
match expr {
2017-05-12 17:58:38 +09:00
Some(e) => Some(format!("{}{}{}{}", attrs_str, name, separator, e)),
2017-02-13 03:16:11 +09:00
None => {
let expr_offset = shape.indent.block_indent(context.config);
2017-06-17 16:56:54 +09:00
let expr = field
.expr
.rewrite(context, Shape::indented(expr_offset, context.config));
2017-05-12 17:58:38 +09:00
expr.map(|s| {
format!(
"{}{}:\n{}{}",
attrs_str,
name,
expr_offset.to_string(&context.config),
s
)
})
2017-02-13 03:16:11 +09:00
}
}
}
2015-06-16 17:29:05 +02:00
}
2015-05-25 19:11:53 +12:00
fn shape_from_fn_call_style(
context: &RewriteContext,
shape: Shape,
overhead: usize,
offset: usize,
) -> Option<Shape> {
2017-06-03 22:49:29 +09:00
if context.use_block_indent() {
// 1 = ","
shape
.block()
.block_indent(context.config.tab_spaces())
.with_max_width(context.config)
.sub_width(1)
} else {
shape.visual_indent(offset).sub_width(overhead)
}
}
fn rewrite_tuple_in_visual_indent_style<'a, T>(
context: &RewriteContext,
items: &[&T],
span: Span,
shape: Shape,
) -> Option<String>
where
T: Rewrite + Spanned + ToExpr + 'a,
2015-10-17 15:56:53 +02:00
{
let mut items = items.iter();
// In case of length 1, need a trailing comma
debug!("rewrite_tuple_in_visual_indent_style {:?}", shape);
if items.len() == 1 {
// 3 = "(" + ",)"
2017-02-21 14:43:43 +13:00
let nested_shape = try_opt!(shape.sub_width(3)).visual_indent(1);
return items.next().unwrap().rewrite(context, nested_shape).map(
2017-06-16 18:56:32 +09:00
|s| if context.config.spaces_within_parens() {
format!("( {}, )", s)
} else {
format!("({},)", s)
},
);
}
2015-06-23 15:58:58 +02:00
let list_lo = context.codemap.span_after(span, "(");
2017-02-21 14:43:43 +13:00
let nested_shape = try_opt!(shape.sub_width(2)).visual_indent(1);
let items = itemize_list(
context.codemap,
items,
")",
|item| item.span().lo,
|item| item.span().hi,
|item| item.rewrite(context, nested_shape),
list_lo,
span.hi - BytePos(1),
);
let item_vec: Vec<_> = items.collect();
let tactic = definitive_tactic(
&item_vec,
ListTactic::HorizontalVertical,
nested_shape.width,
);
let fmt = ListFormatting {
tactic: tactic,
separator: ",",
trailing_separator: SeparatorTactic::Never,
shape: shape,
ends_with_newline: false,
config: context.config,
};
let list_str = try_opt!(write_list(&item_vec, &fmt));
2015-06-23 15:58:58 +02:00
if context.config.spaces_within_parens() && list_str.len() > 0 {
Some(format!("( {} )", list_str))
} else {
Some(format!("({})", list_str))
}
2015-06-23 15:58:58 +02:00
}
pub fn rewrite_tuple<'a, T>(
context: &RewriteContext,
items: &[&T],
span: Span,
shape: Shape,
) -> Option<String>
where
T: Rewrite + Spanned + ToExpr + 'a,
{
debug!("rewrite_tuple {:?}", shape);
if context.use_block_indent() {
// We use the same rule as funcation call for rewriting tuple.
let force_trailing_comma = if context.inside_macro {
span_ends_with_comma(context, span)
} else {
items.len() == 1
};
rewrite_call_inner(
context,
&String::new(),
items,
span,
shape,
context.config.fn_call_width(),
force_trailing_comma,
).ok()
} else {
rewrite_tuple_in_visual_indent_style(context, items, span, shape)
}
}
pub fn rewrite_unary_prefix<R: Rewrite>(
context: &RewriteContext,
prefix: &str,
rewrite: &R,
shape: Shape,
) -> Option<String> {
2017-03-28 11:14:47 +13:00
rewrite
.rewrite(context, try_opt!(shape.offset_left(prefix.len())))
2017-03-28 11:14:47 +13:00
.map(|r| format!("{}{}", prefix, r))
}
2016-05-09 20:07:59 +02:00
// FIXME: this is probably not correct for multi-line Rewrites. we should
// subtract suffix.len() from the last line budget, not the first!
pub fn rewrite_unary_suffix<R: Rewrite>(
context: &RewriteContext,
suffix: &str,
rewrite: &R,
shape: Shape,
) -> Option<String> {
2017-03-28 11:14:47 +13:00
rewrite
.rewrite(context, try_opt!(shape.sub_width(suffix.len())))
.map(|mut r| {
r.push_str(suffix);
r
})
2016-05-09 20:07:59 +02:00
}
fn rewrite_unary_op(
context: &RewriteContext,
op: &ast::UnOp,
expr: &ast::Expr,
shape: Shape,
) -> Option<String> {
// For some reason, an UnOp is not spanned like BinOp!
let operator_str = match *op {
2016-03-01 17:27:19 -05:00
ast::UnOp::Deref => "*",
ast::UnOp::Not => "!",
ast::UnOp::Neg => "-",
};
rewrite_unary_prefix(context, operator_str, expr, shape)
}
2015-08-21 13:31:09 +02:00
fn rewrite_assignment(
context: &RewriteContext,
lhs: &ast::Expr,
rhs: &ast::Expr,
op: Option<&ast::BinOp>,
shape: Shape,
) -> Option<String> {
2015-08-21 13:31:09 +02:00
let operator_str = match op {
2015-07-17 23:10:15 +02:00
Some(op) => context.snippet(op.span),
2015-08-21 13:31:09 +02:00
None => "=".to_owned(),
};
// 1 = space between lhs and operator.
2017-02-21 14:43:43 +13:00
let lhs_shape = try_opt!(shape.sub_width(operator_str.len() + 1));
let lhs_str = format!(
"{} {}",
try_opt!(lhs.rewrite(context, lhs_shape)),
operator_str
);
2015-08-21 13:31:09 +02:00
rewrite_assign_rhs(context, lhs_str, rhs, shape)
2015-08-21 13:31:09 +02:00
}
// The left hand side must contain everything up to, and including, the
// assignment operator.
pub fn rewrite_assign_rhs<S: Into<String>>(
context: &RewriteContext,
lhs: S,
ex: &ast::Expr,
shape: Shape,
) -> Option<String> {
let lhs = lhs.into();
let last_line_width = last_line_width(&lhs) -
if lhs.contains('\n') {
shape.indent.width()
} else {
0
};
2015-08-21 13:31:09 +02:00
// 1 = space between operator and rhs.
2017-06-17 16:56:54 +09:00
let orig_shape = try_opt!(shape.offset_left(last_line_width + 1));
let rhs = try_opt!(choose_rhs(
context,
ex,
shape,
ex.rewrite(context, orig_shape)
));
Some(lhs + &rhs)
}
2015-08-21 13:31:09 +02:00
fn choose_rhs(
context: &RewriteContext,
expr: &ast::Expr,
shape: Shape,
orig_rhs: Option<String>,
) -> Option<String> {
match orig_rhs {
Some(ref new_str) if !new_str.contains('\n') => Some(format!(" {}", new_str)),
_ => {
// Expression did not fit on the same line as the identifier.
// Try splitting the line and see if that works better.
let new_shape = try_opt!(
Shape::indented(
shape.block().indent.block_indent(context.config),
context.config,
).sub_width(shape.rhs_overhead(context.config))
);
let new_rhs = expr.rewrite(context, new_shape);
let new_indent_str = &new_shape.indent.to_string(context.config);
match (orig_rhs, new_rhs) {
(Some(ref orig_rhs), Some(ref new_rhs)) if prefer_next_line(orig_rhs, new_rhs) => {
Some(format!("\n{}{}", new_indent_str, new_rhs))
}
(None, Some(ref new_rhs)) => Some(format!("\n{}{}", new_indent_str, new_rhs)),
(None, None) => None,
(Some(ref orig_rhs), _) => Some(format!(" {}", orig_rhs)),
}
2015-08-21 13:31:09 +02:00
}
}
}
fn prefer_next_line(orig_rhs: &str, next_line_rhs: &str) -> bool {
fn count_line_breaks(src: &str) -> usize {
src.chars().filter(|&x| x == '\n').count()
}
!next_line_rhs.contains('\n') ||
count_line_breaks(orig_rhs) > count_line_breaks(next_line_rhs) + 1
}
fn rewrite_expr_addrof(
context: &RewriteContext,
mutability: ast::Mutability,
expr: &ast::Expr,
shape: Shape,
) -> Option<String> {
let operator_str = match mutability {
2016-03-01 17:27:19 -05:00
ast::Mutability::Immutable => "&",
ast::Mutability::Mutable => "&mut ",
};
rewrite_unary_prefix(context, operator_str, expr, shape)
}
pub trait ToExpr {
fn to_expr(&self) -> Option<&ast::Expr>;
fn can_be_overflowed(&self, context: &RewriteContext, len: usize) -> bool;
}
impl ToExpr for ast::Expr {
fn to_expr(&self) -> Option<&ast::Expr> {
Some(self)
}
fn can_be_overflowed(&self, context: &RewriteContext, len: usize) -> bool {
can_be_overflowed_expr(context, self, len)
}
}
impl ToExpr for ast::Ty {
fn to_expr(&self) -> Option<&ast::Expr> {
None
}
fn can_be_overflowed(&self, context: &RewriteContext, len: usize) -> bool {
can_be_overflowed_type(context, self, len)
}
}
impl<'a> ToExpr for TuplePatField<'a> {
fn to_expr(&self) -> Option<&ast::Expr> {
None
}
fn can_be_overflowed(&self, context: &RewriteContext, len: usize) -> bool {
can_be_overflowed_pat(context, self, len)
}
}
impl<'a> ToExpr for ast::StructField {
fn to_expr(&self) -> Option<&ast::Expr> {
None
}
2017-06-24 19:49:01 +09:00
fn can_be_overflowed(&self, _: &RewriteContext, _: usize) -> bool {
false
}
}