2017-09-15 18:11:24 +09:00
|
|
|
use std::borrow::Cow;
|
2017-12-24 00:28:58 +09:00
|
|
|
use std::cmp::min;
|
2017-07-13 18:42:14 +09:00
|
|
|
|
2019-03-29 17:54:29 +09:00
|
|
|
use itertools::Itertools;
|
2022-04-26 15:40:14 +03:00
|
|
|
use rustc_ast::token::{Delimiter, LitKind};
|
2022-10-10 13:40:56 +11:00
|
|
|
use rustc_ast::{ast, ptr, token};
|
2020-03-26 21:25:34 -05:00
|
|
|
use rustc_span::{BytePos, Span};
|
2015-09-04 18:09:05 +02:00
|
|
|
|
2019-02-04 13:30:43 +03:00
|
|
|
use crate::chains::rewrite_chain;
|
|
|
|
use crate::closures;
|
|
|
|
use crate::comment::{
|
2021-01-08 15:56:05 +02:00
|
|
|
combine_strs_with_missing_comments, contains_comment, recover_comment_removed, rewrite_comment,
|
|
|
|
rewrite_missing_comment, CharClasses, FindUncommented,
|
2018-04-29 20:22:48 +08:00
|
|
|
};
|
2019-02-04 13:30:43 +03:00
|
|
|
use crate::config::lists::*;
|
2021-10-20 00:11:59 -05:00
|
|
|
use crate::config::{Config, ControlBraceStyle, HexLiteralCase, IndentStyle, Version};
|
2019-02-04 13:30:43 +03:00
|
|
|
use crate::lists::{
|
2018-04-29 20:22:48 +08:00
|
|
|
definitive_tactic, itemize_list, shape_for_tactic, struct_lit_formatting, struct_lit_shape,
|
2019-09-08 23:33:21 +09:00
|
|
|
struct_lit_tactic, write_list, ListFormatting, Separator,
|
2018-04-29 20:22:48 +08:00
|
|
|
};
|
2019-02-04 13:30:43 +03:00
|
|
|
use crate::macros::{rewrite_macro, MacroPosition};
|
|
|
|
use crate::matches::rewrite_match;
|
|
|
|
use crate::overflow::{self, IntoOverflowableItem, OverflowableItem};
|
|
|
|
use crate::pairs::{rewrite_all_pairs, rewrite_pair, PairParts};
|
2022-06-22 22:14:32 -05:00
|
|
|
use crate::rewrite::{Rewrite, RewriteContext};
|
2019-02-04 13:30:43 +03:00
|
|
|
use crate::shape::{Indent, Shape};
|
|
|
|
use crate::source_map::{LineRangeUtils, SpanUtils};
|
|
|
|
use crate::spanned::Spanned;
|
|
|
|
use crate::string::{rewrite_string, StringFormat};
|
|
|
|
use crate::types::{rewrite_path, PathContext};
|
|
|
|
use crate::utils::{
|
2022-07-03 22:09:42 -05:00
|
|
|
colon_spaces, contains_skip, count_newlines, filtered_str_fits, first_line_ends_with,
|
|
|
|
inner_attributes, last_line_extendable, last_line_width, mk_sp, outer_attributes,
|
|
|
|
semicolon_for_expr, unicode_str_width, wrap_str,
|
2018-04-29 20:22:48 +08:00
|
|
|
};
|
2019-02-04 13:30:43 +03:00
|
|
|
use crate::vertical::rewrite_with_alignment;
|
|
|
|
use crate::visitor::FmtVisitor;
|
2015-04-21 21:01:19 +12:00
|
|
|
|
2015-06-16 17:29:05 +02:00
|
|
|
impl Rewrite for ast::Expr {
|
2019-02-09 16:14:30 +09:00
|
|
|
fn rewrite(&self, context: &RewriteContext<'_>, shape: Shape) -> Option<String> {
|
2017-01-31 08:28:48 +13:00
|
|
|
format_expr(self, ExprType::SubExpression, context, shape)
|
2016-05-29 17:58:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-29 22:16:04 +09:00
|
|
|
#[derive(Copy, Clone, PartialEq)]
|
2019-05-09 20:37:51 +02:00
|
|
|
pub(crate) enum ExprType {
|
2016-05-29 17:58:38 +02:00
|
|
|
Statement,
|
|
|
|
SubExpression,
|
|
|
|
}
|
|
|
|
|
2019-05-09 20:37:51 +02:00
|
|
|
pub(crate) fn format_expr(
|
2017-06-12 15:58:58 +12:00
|
|
|
expr: &ast::Expr,
|
|
|
|
expr_type: ExprType,
|
2019-02-09 16:14:30 +09:00
|
|
|
context: &RewriteContext<'_>,
|
2017-06-12 15:58:58 +12:00
|
|
|
shape: Shape,
|
|
|
|
) -> Option<String> {
|
2017-07-29 12:51:45 +09:00
|
|
|
skip_out_of_file_lines_range!(context, expr.span);
|
|
|
|
|
2017-05-28 11:41:16 +09:00
|
|
|
if contains_skip(&*expr.attrs) {
|
2017-12-08 13:07:42 +09:00
|
|
|
return Some(context.snippet(expr.span()).to_owned());
|
2017-05-28 11:41:16 +09:00
|
|
|
}
|
2018-12-25 18:20:29 +09:00
|
|
|
let shape = if expr_type == ExprType::Statement && semicolon_for_expr(context, expr) {
|
|
|
|
shape.sub_width(1)?
|
|
|
|
} else {
|
|
|
|
shape
|
|
|
|
};
|
2017-07-29 12:51:45 +09:00
|
|
|
|
2019-10-05 23:40:24 +09:00
|
|
|
let expr_rw = match expr.kind {
|
2017-07-11 21:53:10 +09:00
|
|
|
ast::ExprKind::Array(ref expr_vec) => rewrite_array(
|
2018-03-26 07:36:44 +09:00
|
|
|
"",
|
2018-09-29 14:33:00 +09:00
|
|
|
expr_vec.iter(),
|
2018-03-26 07:36:44 +09:00
|
|
|
expr.span,
|
2017-07-11 21:53:10 +09:00
|
|
|
context,
|
|
|
|
shape,
|
2018-04-28 15:09:54 +09:00
|
|
|
choose_separator_tactic(context, expr.span),
|
2018-03-26 07:36:44 +09:00
|
|
|
None,
|
2017-07-11 21:53:10 +09:00
|
|
|
),
|
2022-10-10 13:40:56 +11:00
|
|
|
ast::ExprKind::Lit(token_lit) => {
|
|
|
|
if let Some(expr_rw) = rewrite_literal(context, token_lit, expr.span, shape) {
|
2019-09-18 22:39:27 +09:00
|
|
|
Some(expr_rw)
|
|
|
|
} else {
|
2022-10-10 13:40:56 +11:00
|
|
|
if let LitKind::StrRaw(_) = token_lit.kind {
|
|
|
|
Some(context.snippet(expr.span).trim().into())
|
2019-09-18 22:39:27 +09:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-05-29 17:58:38 +02:00
|
|
|
ast::ExprKind::Call(ref callee, ref args) => {
|
2017-08-19 21:47:40 +03:00
|
|
|
let inner_span = mk_sp(callee.span.hi(), expr.span.hi());
|
2017-10-05 20:50:19 +09:00
|
|
|
let callee_str = callee.rewrite(context, shape)?;
|
2017-10-26 16:54:41 +09:00
|
|
|
rewrite_call(context, &callee_str, args, inner_span, shape)
|
2016-05-29 17:58:38 +02:00
|
|
|
}
|
2018-03-08 20:25:18 +09:00
|
|
|
ast::ExprKind::Paren(ref subexpr) => rewrite_paren(context, subexpr, shape, expr.span),
|
2018-05-06 15:22:17 +09:00
|
|
|
ast::ExprKind::Binary(op, ref lhs, ref rhs) => {
|
2017-01-11 12:06:23 +13:00
|
|
|
// FIXME: format comments between operands and operator
|
2018-06-30 19:53:06 +12:00
|
|
|
rewrite_all_pairs(expr, shape, context).or_else(|| {
|
2018-05-06 15:22:17 +09:00
|
|
|
rewrite_pair(
|
|
|
|
&**lhs,
|
|
|
|
&**rhs,
|
2018-06-28 11:50:03 +12:00
|
|
|
PairParts::infix(&format!(" {} ", context.snippet(op.span))),
|
2018-05-06 15:22:17 +09:00
|
|
|
context,
|
|
|
|
shape,
|
|
|
|
context.config.binop_separator(),
|
|
|
|
)
|
|
|
|
})
|
2016-05-29 17:58:38 +02:00
|
|
|
}
|
2018-09-01 16:26:47 -04:00
|
|
|
ast::ExprKind::Unary(op, ref subexpr) => rewrite_unary_op(context, op, subexpr, shape),
|
2021-03-27 12:19:05 -05:00
|
|
|
ast::ExprKind::Struct(ref struct_expr) => {
|
2020-12-10 13:20:07 +01:00
|
|
|
let ast::StructExpr {
|
2021-12-29 20:49:39 -06:00
|
|
|
qself,
|
|
|
|
fields,
|
|
|
|
path,
|
|
|
|
rest,
|
2020-12-10 13:20:07 +01:00
|
|
|
} = &**struct_expr;
|
2021-12-29 20:49:39 -06:00
|
|
|
rewrite_struct_lit(
|
|
|
|
context,
|
|
|
|
path,
|
2022-09-08 10:52:51 +10:00
|
|
|
qself,
|
2021-12-29 20:49:39 -06:00
|
|
|
fields,
|
|
|
|
rest,
|
|
|
|
&expr.attrs,
|
|
|
|
expr.span,
|
|
|
|
shape,
|
|
|
|
)
|
2021-03-27 12:19:05 -05:00
|
|
|
}
|
2017-09-15 22:27:20 +09:00
|
|
|
ast::ExprKind::Tup(ref items) => {
|
2018-09-29 14:33:00 +09:00
|
|
|
rewrite_tuple(context, items.iter(), expr.span, shape, items.len() == 1)
|
2017-09-15 22:27:20 +09:00
|
|
|
}
|
2019-07-29 05:52:45 +09:00
|
|
|
ast::ExprKind::Let(..) => None,
|
2017-11-16 16:42:07 +09:00
|
|
|
ast::ExprKind::If(..)
|
|
|
|
| ast::ExprKind::ForLoop(..)
|
|
|
|
| ast::ExprKind::Loop(..)
|
2019-07-29 05:52:45 +09:00
|
|
|
| ast::ExprKind::While(..) => to_control_flow(expr, expr_type)
|
2017-07-11 21:53:10 +09:00
|
|
|
.and_then(|control_flow| control_flow.rewrite(context, shape)),
|
2020-10-19 20:26:56 -05:00
|
|
|
ast::ExprKind::ConstBlock(ref anon_const) => {
|
|
|
|
Some(format!("const {}", anon_const.rewrite(context, shape)?))
|
|
|
|
}
|
2018-05-21 12:18:06 +08:00
|
|
|
ast::ExprKind::Block(ref block, opt_label) => {
|
2017-06-20 21:35:52 +09:00
|
|
|
match expr_type {
|
|
|
|
ExprType::Statement => {
|
|
|
|
if is_unsafe_block(block) {
|
2018-05-21 22:19:26 +08:00
|
|
|
rewrite_block(block, Some(&expr.attrs), opt_label, context, shape)
|
2017-10-20 22:09:45 -07:00
|
|
|
} else if let rw @ Some(_) =
|
2018-06-07 11:15:59 +08:00
|
|
|
rewrite_empty_block(context, block, Some(&expr.attrs), opt_label, "", shape)
|
2017-10-20 22:09:45 -07:00
|
|
|
{
|
2017-06-20 21:35:52 +09:00
|
|
|
// Rewrite block without trying to put it in a single line.
|
2017-08-30 19:27:36 +09:00
|
|
|
rw
|
|
|
|
} else {
|
2017-10-05 20:50:19 +09:00
|
|
|
let prefix = block_prefix(context, block, shape)?;
|
2018-05-21 12:18:06 +08:00
|
|
|
|
2017-10-20 22:09:45 -07:00
|
|
|
rewrite_block_with_visitor(
|
|
|
|
context,
|
2018-05-21 22:19:26 +08:00
|
|
|
&prefix,
|
2017-10-20 22:09:45 -07:00
|
|
|
block,
|
|
|
|
Some(&expr.attrs),
|
2018-06-07 11:15:59 +08:00
|
|
|
opt_label,
|
2017-10-20 22:09:45 -07:00
|
|
|
shape,
|
|
|
|
true,
|
|
|
|
)
|
2017-06-20 21:35:52 +09:00
|
|
|
}
|
|
|
|
}
|
2018-05-21 22:19:26 +08:00
|
|
|
ExprType::SubExpression => {
|
|
|
|
rewrite_block(block, Some(&expr.attrs), opt_label, context, shape)
|
|
|
|
}
|
2017-06-20 21:35:52 +09:00
|
|
|
}
|
|
|
|
}
|
2016-05-29 17:58:38 +02:00
|
|
|
ast::ExprKind::Match(ref cond, ref arms) => {
|
2017-08-05 15:24:12 +09:00
|
|
|
rewrite_match(context, cond, arms, shape, expr.span, &expr.attrs)
|
2016-05-29 17:58:38 +02:00
|
|
|
}
|
|
|
|
ast::ExprKind::Path(ref qself, ref path) => {
|
2022-09-08 10:52:51 +10:00
|
|
|
rewrite_path(context, PathContext::Expr, qself, path, shape)
|
2016-05-29 17:58:38 +02:00
|
|
|
}
|
2020-02-08 22:21:37 -06:00
|
|
|
ast::ExprKind::Assign(ref lhs, ref rhs, _) => {
|
2017-01-31 08:28:48 +13:00
|
|
|
rewrite_assignment(context, lhs, rhs, None, shape)
|
2016-05-29 17:58:38 +02:00
|
|
|
}
|
|
|
|
ast::ExprKind::AssignOp(ref op, ref lhs, ref rhs) => {
|
2017-01-31 08:28:48 +13:00
|
|
|
rewrite_assignment(context, lhs, rhs, Some(op), shape)
|
2016-05-29 17:58:38 +02:00
|
|
|
}
|
2018-01-29 21:44:26 +09:00
|
|
|
ast::ExprKind::Continue(ref opt_label) => {
|
|
|
|
let id_str = match *opt_label {
|
|
|
|
Some(label) => format!(" {}", label.ident),
|
2016-05-29 17:58:38 +02:00
|
|
|
None => String::new(),
|
|
|
|
};
|
2017-09-19 11:40:20 +09:00
|
|
|
Some(format!("continue{}", id_str))
|
2016-05-29 17:58:38 +02:00
|
|
|
}
|
2018-01-29 21:44:26 +09:00
|
|
|
ast::ExprKind::Break(ref opt_label, ref opt_expr) => {
|
|
|
|
let id_str = match *opt_label {
|
|
|
|
Some(label) => format!(" {}", label.ident),
|
2016-05-29 17:58:38 +02:00
|
|
|
None => String::new(),
|
|
|
|
};
|
2016-12-23 11:13:00 -08:00
|
|
|
|
|
|
|
if let Some(ref expr) = *opt_expr {
|
2017-05-15 22:55:01 +09:00
|
|
|
rewrite_unary_prefix(context, &format!("break{} ", id_str), &**expr, shape)
|
2016-12-23 11:13:00 -08:00
|
|
|
} else {
|
2017-09-19 11:40:20 +09:00
|
|
|
Some(format!("break{}", id_str))
|
2017-08-27 15:31:19 -07:00
|
|
|
}
|
|
|
|
}
|
2018-09-11 08:41:16 +03:00
|
|
|
ast::ExprKind::Yield(ref opt_expr) => {
|
|
|
|
if let Some(ref expr) = *opt_expr {
|
|
|
|
rewrite_unary_prefix(context, "yield ", &**expr, shape)
|
|
|
|
} else {
|
|
|
|
Some("yield".to_string())
|
|
|
|
}
|
|
|
|
}
|
2022-09-08 10:52:51 +10:00
|
|
|
ast::ExprKind::Closure(ref cl) => closures::rewrite_closure(
|
|
|
|
&cl.binder,
|
2022-12-20 16:15:55 +00:00
|
|
|
cl.constness,
|
2022-09-08 10:52:51 +10:00
|
|
|
cl.capture_clause,
|
|
|
|
&cl.asyncness,
|
|
|
|
cl.movability,
|
|
|
|
&cl.fn_decl,
|
|
|
|
&cl.body,
|
|
|
|
expr.span,
|
|
|
|
context,
|
|
|
|
shape,
|
2022-06-30 17:40:38 +04:00
|
|
|
),
|
2021-12-02 21:35:30 -06:00
|
|
|
ast::ExprKind::Try(..)
|
|
|
|
| ast::ExprKind::Field(..)
|
|
|
|
| ast::ExprKind::MethodCall(..)
|
|
|
|
| ast::ExprKind::Await(_) => rewrite_chain(expr, context, shape),
|
2020-03-26 23:18:16 -05:00
|
|
|
ast::ExprKind::MacCall(ref mac) => {
|
2017-11-11 23:14:24 +09:00
|
|
|
rewrite_macro(mac, None, context, shape, MacroPosition::Expression).or_else(|| {
|
|
|
|
wrap_str(
|
2017-12-08 13:07:42 +09:00
|
|
|
context.snippet(expr.span).to_owned(),
|
2017-11-11 23:14:24 +09:00
|
|
|
context.config.max_width(),
|
|
|
|
shape,
|
|
|
|
)
|
|
|
|
})
|
2016-05-29 17:58:38 +02:00
|
|
|
}
|
2017-09-19 11:40:20 +09:00
|
|
|
ast::ExprKind::Ret(None) => Some("return".to_owned()),
|
2016-05-29 17:58:38 +02:00
|
|
|
ast::ExprKind::Ret(Some(ref expr)) => {
|
2017-05-15 22:55:01 +09:00
|
|
|
rewrite_unary_prefix(context, "return ", &**expr, shape)
|
2016-05-29 17:58:38 +02:00
|
|
|
}
|
2022-04-24 19:25:30 -07:00
|
|
|
ast::ExprKind::Yeet(None) => Some("do yeet".to_owned()),
|
|
|
|
ast::ExprKind::Yeet(Some(ref expr)) => {
|
|
|
|
rewrite_unary_prefix(context, "do yeet ", &**expr, shape)
|
|
|
|
}
|
2017-05-15 22:55:01 +09:00
|
|
|
ast::ExprKind::Box(ref expr) => rewrite_unary_prefix(context, "box ", &**expr, shape),
|
2020-02-08 22:21:37 -06:00
|
|
|
ast::ExprKind::AddrOf(borrow_kind, mutability, ref expr) => {
|
|
|
|
rewrite_expr_addrof(context, borrow_kind, mutability, expr, shape)
|
2016-05-29 17:58:38 +02:00
|
|
|
}
|
2017-09-15 12:10:30 +09:00
|
|
|
ast::ExprKind::Cast(ref expr, ref ty) => rewrite_pair(
|
|
|
|
&**expr,
|
|
|
|
&**ty,
|
2018-06-28 11:50:03 +12:00
|
|
|
PairParts::infix(" as "),
|
2017-09-15 12:10:30 +09:00
|
|
|
context,
|
|
|
|
shape,
|
|
|
|
SeparatorPlace::Front,
|
|
|
|
),
|
|
|
|
ast::ExprKind::Type(ref expr, ref ty) => rewrite_pair(
|
|
|
|
&**expr,
|
|
|
|
&**ty,
|
2018-06-28 11:50:03 +12:00
|
|
|
PairParts::infix(": "),
|
2017-09-15 12:10:30 +09:00
|
|
|
context,
|
|
|
|
shape,
|
2017-09-15 15:04:30 +09:00
|
|
|
SeparatorPlace::Back,
|
2017-09-15 12:10:30 +09:00
|
|
|
),
|
2016-05-29 17:58:38 +02:00
|
|
|
ast::ExprKind::Index(ref expr, ref index) => {
|
2017-01-31 08:28:48 +13:00
|
|
|
rewrite_index(&**expr, &**index, context, shape)
|
2016-05-29 17:58:38 +02:00
|
|
|
}
|
2018-05-18 16:35:09 +12:00
|
|
|
ast::ExprKind::Repeat(ref expr, ref repeats) => rewrite_pair(
|
|
|
|
&**expr,
|
2018-05-23 06:04:14 +09:00
|
|
|
&*repeats.value,
|
2018-05-18 16:35:09 +12:00
|
|
|
PairParts::new("[", "; ", "]"),
|
|
|
|
context,
|
|
|
|
shape,
|
|
|
|
SeparatorPlace::Back,
|
|
|
|
),
|
2016-05-29 17:58:38 +02:00
|
|
|
ast::ExprKind::Range(ref lhs, ref rhs, limits) => {
|
|
|
|
let delim = match limits {
|
|
|
|
ast::RangeLimits::HalfOpen => "..",
|
2017-09-27 22:19:10 +02:00
|
|
|
ast::RangeLimits::Closed => "..=",
|
2016-05-29 17:58:38 +02:00
|
|
|
};
|
|
|
|
|
2019-02-09 16:14:30 +09:00
|
|
|
fn needs_space_before_range(context: &RewriteContext<'_>, lhs: &ast::Expr) -> bool {
|
2019-10-05 23:40:24 +09:00
|
|
|
match lhs.kind {
|
2022-10-10 13:40:56 +11:00
|
|
|
ast::ExprKind::Lit(token_lit) => match token_lit.kind {
|
|
|
|
token::LitKind::Float if token_lit.suffix.is_none() => {
|
|
|
|
context.snippet(lhs.span).ends_with('.')
|
2017-07-04 20:21:49 +09:00
|
|
|
}
|
2017-07-11 21:53:10 +09:00
|
|
|
_ => false,
|
|
|
|
},
|
2021-11-07 20:37:34 -06:00
|
|
|
ast::ExprKind::Unary(_, ref expr) => needs_space_before_range(context, expr),
|
2017-07-04 20:21:49 +09:00
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-16 17:11:50 +09:00
|
|
|
fn needs_space_after_range(rhs: &ast::Expr) -> bool {
|
2021-07-25 22:57:19 -05:00
|
|
|
// Don't format `.. ..` into `....`, which is invalid.
|
|
|
|
//
|
|
|
|
// This check is unnecessary for `lhs`, because a range
|
|
|
|
// starting from another range needs parentheses as `(x ..) ..`
|
|
|
|
// (`x .. ..` is a range from `x` to `..`).
|
|
|
|
matches!(rhs.kind, ast::ExprKind::Range(None, _, _))
|
2018-04-16 17:11:50 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
let default_sp_delim = |lhs: Option<&ast::Expr>, rhs: Option<&ast::Expr>| {
|
|
|
|
let space_if = |b: bool| if b { " " } else { "" };
|
|
|
|
|
|
|
|
format!(
|
|
|
|
"{}{}{}",
|
2018-10-12 20:21:22 -03:00
|
|
|
lhs.map_or("", |lhs| space_if(needs_space_before_range(context, lhs))),
|
2018-04-16 17:11:50 +09:00
|
|
|
delim,
|
2018-10-12 20:21:22 -03:00
|
|
|
rhs.map_or("", |rhs| space_if(needs_space_after_range(rhs))),
|
2018-04-16 17:11:50 +09:00
|
|
|
)
|
|
|
|
};
|
|
|
|
|
2016-05-29 17:58:38 +02:00
|
|
|
match (lhs.as_ref().map(|x| &**x), rhs.as_ref().map(|x| &**x)) {
|
2017-08-29 22:16:04 +09:00
|
|
|
(Some(lhs), Some(rhs)) => {
|
2017-05-16 15:47:09 +07:00
|
|
|
let sp_delim = if context.config.spaces_around_ranges() {
|
2016-09-17 01:44:51 +02:00
|
|
|
format!(" {} ", delim)
|
|
|
|
} else {
|
2018-04-16 17:11:50 +09:00
|
|
|
default_sp_delim(Some(lhs), Some(rhs))
|
2016-09-17 01:44:51 +02:00
|
|
|
};
|
2017-09-15 12:10:30 +09:00
|
|
|
rewrite_pair(
|
|
|
|
&*lhs,
|
|
|
|
&*rhs,
|
2018-06-28 11:50:03 +12:00
|
|
|
PairParts::infix(&sp_delim),
|
2017-09-15 12:10:30 +09:00
|
|
|
context,
|
|
|
|
shape,
|
2018-01-16 17:39:21 +13:00
|
|
|
context.config.binop_separator(),
|
2017-09-15 12:10:30 +09:00
|
|
|
)
|
2016-05-29 17:58:38 +02:00
|
|
|
}
|
2017-08-29 22:16:04 +09:00
|
|
|
(None, Some(rhs)) => {
|
2017-05-16 15:47:09 +07:00
|
|
|
let sp_delim = if context.config.spaces_around_ranges() {
|
2016-09-17 01:44:51 +02:00
|
|
|
format!("{} ", delim)
|
|
|
|
} else {
|
2018-04-16 17:11:50 +09:00
|
|
|
default_sp_delim(None, Some(rhs))
|
2016-09-17 01:44:51 +02:00
|
|
|
};
|
2017-08-29 22:16:04 +09:00
|
|
|
rewrite_unary_prefix(context, &sp_delim, &*rhs, shape)
|
2016-05-29 17:58:38 +02:00
|
|
|
}
|
2017-08-29 22:16:04 +09:00
|
|
|
(Some(lhs), None) => {
|
2017-05-16 15:47:09 +07:00
|
|
|
let sp_delim = if context.config.spaces_around_ranges() {
|
2016-09-17 01:44:51 +02:00
|
|
|
format!(" {}", delim)
|
|
|
|
} else {
|
2018-04-16 17:11:50 +09:00
|
|
|
default_sp_delim(Some(lhs), None)
|
2016-09-17 01:44:51 +02:00
|
|
|
};
|
2017-08-29 22:16:04 +09:00
|
|
|
rewrite_unary_suffix(context, &sp_delim, &*lhs, shape)
|
2016-05-29 17:58:38 +02:00
|
|
|
}
|
2017-12-08 13:07:42 +09:00
|
|
|
(None, None) => Some(delim.to_owned()),
|
2015-09-23 22:51:37 -07:00
|
|
|
}
|
2016-05-29 17:58:38 +02:00
|
|
|
}
|
|
|
|
// We do not format these expressions yet, but they should still
|
|
|
|
// satisfy our width restrictions.
|
2020-06-11 13:22:37 -05:00
|
|
|
// Style Guide RFC for InlineAsm variant pending
|
|
|
|
// https://github.com/rust-dev-tools/fmt-rfcs/issues/152
|
2022-01-12 00:00:00 +00:00
|
|
|
ast::ExprKind::InlineAsm(..) => Some(context.snippet(expr.span).to_owned()),
|
2018-08-25 21:02:24 -07:00
|
|
|
ast::ExprKind::TryBlock(ref block) => {
|
|
|
|
if let rw @ Some(_) =
|
|
|
|
rewrite_single_line_block(context, "try ", block, Some(&expr.attrs), None, shape)
|
|
|
|
{
|
2017-08-30 19:27:36 +09:00
|
|
|
rw
|
|
|
|
} else {
|
2018-08-25 21:02:24 -07:00
|
|
|
// 9 = `try `
|
2018-05-14 21:58:57 +09:00
|
|
|
let budget = shape.width.saturating_sub(9);
|
2017-08-30 19:27:36 +09:00
|
|
|
Some(format!(
|
|
|
|
"{}{}",
|
2018-08-25 21:02:24 -07:00
|
|
|
"try ",
|
2017-10-20 22:09:45 -07:00
|
|
|
rewrite_block(
|
|
|
|
block,
|
|
|
|
Some(&expr.attrs),
|
2018-05-21 22:19:26 +08:00
|
|
|
None,
|
2017-10-20 22:09:45 -07:00
|
|
|
context,
|
|
|
|
Shape::legacy(budget, shape.indent)
|
|
|
|
)?
|
2017-08-30 19:27:36 +09:00
|
|
|
))
|
2017-05-13 07:28:48 +09:00
|
|
|
}
|
|
|
|
}
|
2018-07-29 08:45:31 -07:00
|
|
|
ast::ExprKind::Async(capture_by, _node_id, ref block) => {
|
|
|
|
let mover = if capture_by == ast::CaptureBy::Value {
|
|
|
|
"move "
|
|
|
|
} else {
|
|
|
|
""
|
|
|
|
};
|
|
|
|
if let rw @ Some(_) = rewrite_single_line_block(
|
|
|
|
context,
|
|
|
|
format!("{}{}", "async ", mover).as_str(),
|
|
|
|
block,
|
|
|
|
Some(&expr.attrs),
|
|
|
|
None,
|
|
|
|
shape,
|
|
|
|
) {
|
2018-07-29 07:37:24 -07:00
|
|
|
rw
|
|
|
|
} else {
|
|
|
|
// 6 = `async `
|
|
|
|
let budget = shape.width.saturating_sub(6);
|
|
|
|
Some(format!(
|
2018-07-29 08:45:31 -07:00
|
|
|
"{}{}{}",
|
2018-07-29 07:37:24 -07:00
|
|
|
"async ",
|
2018-07-29 08:45:31 -07:00
|
|
|
mover,
|
2018-07-29 07:37:24 -07:00
|
|
|
rewrite_block(
|
|
|
|
block,
|
|
|
|
Some(&expr.attrs),
|
|
|
|
None,
|
|
|
|
context,
|
|
|
|
Shape::legacy(budget, shape.indent)
|
|
|
|
)?
|
|
|
|
))
|
|
|
|
}
|
|
|
|
}
|
2020-11-27 21:18:39 -06:00
|
|
|
ast::ExprKind::Underscore => Some("_".to_owned()),
|
2022-10-31 18:30:09 +00:00
|
|
|
ast::ExprKind::IncludedBytes(..) => unreachable!(),
|
2019-01-30 00:55:52 +09:00
|
|
|
ast::ExprKind::Err => None,
|
2016-05-29 17:58:38 +02:00
|
|
|
};
|
2017-07-20 23:58:00 +09:00
|
|
|
|
|
|
|
expr_rw
|
2017-11-29 17:37:51 +09:00
|
|
|
.and_then(|expr_str| recover_comment_removed(expr_str, expr.span, context))
|
2017-07-20 23:58:00 +09:00
|
|
|
.and_then(|expr_str| {
|
2017-08-11 17:52:13 +09:00
|
|
|
let attrs = outer_attributes(&expr.attrs);
|
2017-10-05 20:50:19 +09:00
|
|
|
let attrs_str = attrs.rewrite(context, shape)?;
|
2017-08-11 17:52:13 +09:00
|
|
|
let span = mk_sp(
|
2017-08-19 21:47:40 +03:00
|
|
|
attrs.last().map_or(expr.span.lo(), |attr| attr.span.hi()),
|
|
|
|
expr.span.lo(),
|
2017-08-11 17:52:13 +09:00
|
|
|
);
|
|
|
|
combine_strs_with_missing_comments(context, &attrs_str, &expr_str, span, shape, false)
|
2017-07-20 23:58:00 +09:00
|
|
|
})
|
2015-06-16 17:29:05 +02:00
|
|
|
}
|
2015-04-21 21:01:19 +12:00
|
|
|
|
2019-05-09 20:37:51 +02:00
|
|
|
pub(crate) fn rewrite_array<'a, T: 'a + IntoOverflowableItem<'a>>(
|
2018-09-29 14:33:00 +09:00
|
|
|
name: &'a str,
|
|
|
|
exprs: impl Iterator<Item = &'a T>,
|
2017-06-12 15:58:58 +12:00
|
|
|
span: Span,
|
2019-02-09 16:14:30 +09:00
|
|
|
context: &'a RewriteContext<'_>,
|
2017-06-12 15:58:58 +12:00
|
|
|
shape: Shape,
|
2018-03-26 07:36:44 +09:00
|
|
|
force_separator_tactic: Option<SeparatorTactic>,
|
2022-04-26 15:40:14 +03:00
|
|
|
delim_token: Option<Delimiter>,
|
2018-09-30 00:26:36 +09:00
|
|
|
) -> Option<String> {
|
2018-03-26 07:36:44 +09:00
|
|
|
overflow::rewrite_with_square_brackets(
|
|
|
|
context,
|
|
|
|
name,
|
|
|
|
exprs,
|
|
|
|
shape,
|
|
|
|
span,
|
|
|
|
force_separator_tactic,
|
|
|
|
delim_token,
|
|
|
|
)
|
2017-12-04 12:06:46 +09:00
|
|
|
}
|
|
|
|
|
2017-06-20 21:34:19 +09:00
|
|
|
fn rewrite_empty_block(
|
2019-02-09 16:14:30 +09:00
|
|
|
context: &RewriteContext<'_>,
|
2017-06-20 21:34:19 +09:00
|
|
|
block: &ast::Block,
|
2017-10-20 22:09:45 -07:00
|
|
|
attrs: Option<&[ast::Attribute]>,
|
2018-06-07 11:15:59 +08:00
|
|
|
label: Option<ast::Label>,
|
2017-10-20 22:09:45 -07:00
|
|
|
prefix: &str,
|
2017-06-20 21:34:19 +09:00
|
|
|
shape: Shape,
|
|
|
|
) -> Option<String> {
|
2021-11-07 20:37:34 -06:00
|
|
|
if block_has_statements(block) {
|
2018-11-28 22:49:09 +01:00
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
2018-06-07 11:15:59 +08:00
|
|
|
let label_str = rewrite_label(label);
|
2017-10-20 22:09:45 -07:00
|
|
|
if attrs.map_or(false, |a| !inner_attributes(a).is_empty()) {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
2020-03-26 21:25:34 -05:00
|
|
|
if !block_contains_comment(context, block) && shape.width >= 2 {
|
2018-06-07 11:15:59 +08:00
|
|
|
return Some(format!("{}{}{{}}", prefix, label_str));
|
2017-06-20 21:34:19 +09:00
|
|
|
}
|
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();
|
2018-05-06 15:22:29 +09:00
|
|
|
if block.stmts.is_empty()
|
|
|
|
&& !comment_str.contains('\n')
|
|
|
|
&& !comment_str.starts_with("//")
|
2017-09-15 12:10:58 +09:00
|
|
|
&& comment_str.len() + 4 <= shape.width
|
2017-06-12 15:58:58 +12:00
|
|
|
{
|
2018-06-07 11:15:59 +08:00
|
|
|
return Some(format!("{}{}{{ {} }}", prefix, label_str, comment_str));
|
2017-01-16 16:37:58 +13:00
|
|
|
}
|
2017-06-20 21:34:19 +09:00
|
|
|
}
|
2017-01-16 16:37:58 +13:00
|
|
|
|
2017-06-20 21:34:19 +09:00
|
|
|
None
|
|
|
|
}
|
|
|
|
|
2019-02-09 16:14:30 +09:00
|
|
|
fn block_prefix(context: &RewriteContext<'_>, block: &ast::Block, shape: Shape) -> Option<String> {
|
2017-06-20 21:34:19 +09:00
|
|
|
Some(match block.rules {
|
|
|
|
ast::BlockCheckMode::Unsafe(..) => {
|
|
|
|
let snippet = context.snippet(block.span);
|
2017-10-05 20:50:19 +09:00
|
|
|
let open_pos = snippet.find_uncommented("{")?;
|
2017-06-20 21:34:19 +09:00
|
|
|
// Extract comment between unsafe and block start.
|
|
|
|
let trimmed = &snippet[6..open_pos].trim();
|
|
|
|
|
|
|
|
if !trimmed.is_empty() {
|
|
|
|
// 9 = "unsafe {".len(), 7 = "unsafe ".len()
|
2017-10-05 20:50:19 +09:00
|
|
|
let budget = shape.width.checked_sub(9)?;
|
2017-06-20 21:34:19 +09:00
|
|
|
format!(
|
|
|
|
"unsafe {} ",
|
2017-10-05 20:50:19 +09:00
|
|
|
rewrite_comment(
|
2017-06-20 21:34:19 +09:00
|
|
|
trimmed,
|
|
|
|
true,
|
|
|
|
Shape::legacy(budget, shape.indent + 7),
|
|
|
|
context.config,
|
2017-10-05 20:50:19 +09:00
|
|
|
)?
|
2017-06-20 21:34:19 +09:00
|
|
|
)
|
|
|
|
} else {
|
|
|
|
"unsafe ".to_owned()
|
2017-01-16 16:37:58 +13:00
|
|
|
}
|
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(
|
2019-02-09 16:14:30 +09:00
|
|
|
context: &RewriteContext<'_>,
|
2017-06-20 21:34:19 +09:00
|
|
|
prefix: &str,
|
|
|
|
block: &ast::Block,
|
2017-10-20 22:09:45 -07:00
|
|
|
attrs: Option<&[ast::Attribute]>,
|
2018-06-07 11:15:59 +08:00
|
|
|
label: Option<ast::Label>,
|
2017-06-20 21:34:19 +09:00
|
|
|
shape: Shape,
|
|
|
|
) -> Option<String> {
|
2020-03-26 21:25:34 -05:00
|
|
|
if is_simple_block(context, block, attrs) {
|
2017-12-19 09:41:05 +09:00
|
|
|
let expr_shape = shape.offset_left(last_line_width(prefix))?;
|
2017-10-05 20:50:19 +09:00
|
|
|
let expr_str = block.stmts[0].rewrite(context, expr_shape)?;
|
2018-06-07 11:15:59 +08:00
|
|
|
let label_str = rewrite_label(label);
|
|
|
|
let result = format!("{}{}{{ {} }}", prefix, label_str, expr_str);
|
2017-06-20 21:34:19 +09:00
|
|
|
if result.len() <= shape.width && !result.contains('\n') {
|
|
|
|
return Some(result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None
|
|
|
|
}
|
2015-08-01 14:22:31 +02:00
|
|
|
|
2019-05-09 20:37:51 +02:00
|
|
|
pub(crate) fn rewrite_block_with_visitor(
|
2019-02-09 16:14:30 +09:00
|
|
|
context: &RewriteContext<'_>,
|
2017-06-20 21:34:19 +09:00
|
|
|
prefix: &str,
|
|
|
|
block: &ast::Block,
|
2017-10-20 22:09:45 -07:00
|
|
|
attrs: Option<&[ast::Attribute]>,
|
2018-06-07 11:15:59 +08:00
|
|
|
label: Option<ast::Label>,
|
2017-06-20 21:34:19 +09:00
|
|
|
shape: Shape,
|
2017-11-30 06:40:29 +09:00
|
|
|
has_braces: bool,
|
2017-06-20 21:34:19 +09:00
|
|
|
) -> Option<String> {
|
2018-06-07 11:15:59 +08:00
|
|
|
if let rw @ Some(_) = rewrite_empty_block(context, block, attrs, label, prefix, shape) {
|
2017-06-20 21:34:19 +09:00
|
|
|
return rw;
|
|
|
|
}
|
|
|
|
|
2017-12-07 13:53:10 +09:00
|
|
|
let mut visitor = FmtVisitor::from_context(context);
|
2017-06-20 21:34:19 +09:00
|
|
|
visitor.block_indent = shape.indent;
|
2018-03-25 20:20:50 +09:00
|
|
|
visitor.is_if_else_block = context.is_if_else_block();
|
2018-11-28 22:49:09 +01:00
|
|
|
match (block.rules, label) {
|
|
|
|
(ast::BlockCheckMode::Unsafe(..), _) | (ast::BlockCheckMode::Default, Some(_)) => {
|
2017-06-20 21:34:19 +09:00
|
|
|
let snippet = context.snippet(block.span);
|
2017-10-05 20:50:19 +09:00
|
|
|
let open_pos = snippet.find_uncommented("{")?;
|
2017-08-19 21:47:40 +03:00
|
|
|
visitor.last_pos = block.span.lo() + BytePos(open_pos as u32)
|
2017-06-20 21:34:19 +09:00
|
|
|
}
|
2020-08-15 13:34:06 -07:00
|
|
|
(ast::BlockCheckMode::Default, None) => visitor.last_pos = block.span.lo(),
|
2017-06-20 21:34:19 +09:00
|
|
|
}
|
|
|
|
|
2017-10-20 22:09:45 -07:00
|
|
|
let inner_attrs = attrs.map(inner_attributes);
|
2018-06-07 11:15:59 +08:00
|
|
|
let label_str = rewrite_label(label);
|
2021-07-25 22:57:19 -05:00
|
|
|
visitor.visit_block(block, inner_attrs.as_deref(), has_braces);
|
2019-09-15 23:45:46 +09:00
|
|
|
let visitor_context = visitor.get_context();
|
|
|
|
context
|
|
|
|
.skipped_range
|
|
|
|
.borrow_mut()
|
|
|
|
.append(&mut visitor_context.skipped_range.borrow_mut());
|
2018-06-07 11:15:59 +08:00
|
|
|
Some(format!("{}{}{}", prefix, label_str, visitor.buffer))
|
2017-06-20 21:34:19 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Rewrite for ast::Block {
|
2019-02-09 16:14:30 +09:00
|
|
|
fn rewrite(&self, context: &RewriteContext<'_>, shape: Shape) -> Option<String> {
|
2018-05-21 22:19:26 +08:00
|
|
|
rewrite_block(self, None, None, context, shape)
|
2017-10-20 22:09:45 -07:00
|
|
|
}
|
|
|
|
}
|
2017-06-20 21:34:19 +09:00
|
|
|
|
2017-10-20 22:09:45 -07:00
|
|
|
fn rewrite_block(
|
|
|
|
block: &ast::Block,
|
|
|
|
attrs: Option<&[ast::Attribute]>,
|
2018-05-21 22:19:26 +08:00
|
|
|
label: Option<ast::Label>,
|
2019-02-09 16:14:30 +09:00
|
|
|
context: &RewriteContext<'_>,
|
2017-10-20 22:09:45 -07:00
|
|
|
shape: Shape,
|
|
|
|
) -> Option<String> {
|
2018-06-07 11:15:59 +08:00
|
|
|
let prefix = block_prefix(context, block, shape)?;
|
2017-09-01 22:52:54 +09:00
|
|
|
|
2017-10-20 22:09:45 -07:00
|
|
|
// shape.width is used only for the single line case: either the empty block `{}`,
|
|
|
|
// or an unsafe expression `unsafe { e }`.
|
2018-06-07 11:15:59 +08:00
|
|
|
if let rw @ Some(_) = rewrite_empty_block(context, block, attrs, label, &prefix, shape) {
|
2017-10-20 22:09:45 -07:00
|
|
|
return rw;
|
|
|
|
}
|
|
|
|
|
2018-06-07 11:15:59 +08:00
|
|
|
let result = rewrite_block_with_visitor(context, &prefix, block, attrs, label, shape, true);
|
2017-10-20 22:09:45 -07:00
|
|
|
if let Some(ref result_str) = result {
|
|
|
|
if result_str.lines().count() <= 3 {
|
2018-06-07 11:15:59 +08:00
|
|
|
if let rw @ Some(_) =
|
|
|
|
rewrite_single_line_block(context, &prefix, block, attrs, label, shape)
|
|
|
|
{
|
2017-10-20 22:09:45 -07:00
|
|
|
return rw;
|
2017-09-01 22:52:54 +09:00
|
|
|
}
|
2017-06-20 21:34:19 +09:00
|
|
|
}
|
2015-07-13 21:51:56 +02:00
|
|
|
}
|
2017-10-20 22:09:45 -07:00
|
|
|
|
|
|
|
result
|
2015-07-13 21:51:56 +02:00
|
|
|
}
|
|
|
|
|
2017-06-15 23:26:32 +09:00
|
|
|
// Rewrite condition if the given expression has one.
|
2019-05-09 20:37:51 +02:00
|
|
|
pub(crate) fn rewrite_cond(
|
2019-02-09 16:20:38 +09:00
|
|
|
context: &RewriteContext<'_>,
|
|
|
|
expr: &ast::Expr,
|
|
|
|
shape: Shape,
|
|
|
|
) -> Option<String> {
|
2019-10-05 23:40:24 +09:00
|
|
|
match expr.kind {
|
2017-06-15 23:26:32 +09:00
|
|
|
ast::ExprKind::Match(ref cond, _) => {
|
|
|
|
// `match `cond` {`
|
2017-11-13 16:42:29 +09:00
|
|
|
let cond_shape = match context.config.indent_style() {
|
|
|
|
IndentStyle::Visual => shape.shrink_left(6).and_then(|s| s.sub_width(2))?,
|
|
|
|
IndentStyle::Block => shape.offset_left(8)?,
|
2017-06-15 23:26:32 +09:00
|
|
|
};
|
|
|
|
cond.rewrite(context, cond_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)
|
2021-07-25 22:57:19 -05:00
|
|
|
.map(|rw| rw.0)
|
2017-07-11 21:53:10 +09:00
|
|
|
}),
|
2017-06-15 23:26:32 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-11 14:34:42 +13:00
|
|
|
// Abstraction over control flow expressions
|
2017-01-27 09:14:26 +13:00
|
|
|
#[derive(Debug)]
|
2017-01-11 14:34:42 +13:00
|
|
|
struct ControlFlow<'a> {
|
2015-07-20 23:29:25 +02:00
|
|
|
cond: Option<&'a ast::Expr>,
|
|
|
|
block: &'a ast::Block,
|
2017-01-11 14:34:42 +13:00
|
|
|
else_block: Option<&'a ast::Expr>,
|
2018-01-29 21:44:26 +09:00
|
|
|
label: Option<ast::Label>,
|
2019-09-08 23:33:21 +09:00
|
|
|
pat: Option<&'a ast::Pat>,
|
2015-07-20 23:29:25 +02:00
|
|
|
keyword: &'a str,
|
|
|
|
matcher: &'a str,
|
|
|
|
connector: &'a str,
|
2017-01-11 14:34:42 +13:00
|
|
|
allow_single_line: bool,
|
2019-02-19 02:56:42 +00:00
|
|
|
// HACK: `true` if this is an `if` expression in an `else if`.
|
2017-01-11 14:34:42 +13:00
|
|
|
nested_if: bool,
|
|
|
|
span: Span,
|
2015-07-20 23:29:25 +02:00
|
|
|
}
|
|
|
|
|
2019-09-08 23:33:21 +09:00
|
|
|
fn extract_pats_and_cond(expr: &ast::Expr) -> (Option<&ast::Pat>, &ast::Expr) {
|
2019-10-05 23:40:24 +09:00
|
|
|
match expr.kind {
|
2021-08-08 11:49:13 -03:00
|
|
|
ast::ExprKind::Let(ref pat, ref cond, _) => (Some(pat), cond),
|
2019-09-08 23:33:21 +09:00
|
|
|
_ => (None, expr),
|
2019-07-29 05:52:45 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: Refactor this.
|
2019-02-09 16:14:30 +09:00
|
|
|
fn to_control_flow(expr: &ast::Expr, expr_type: ExprType) -> Option<ControlFlow<'_>> {
|
2019-10-05 23:40:24 +09:00
|
|
|
match expr.kind {
|
2019-07-29 05:52:45 +09:00
|
|
|
ast::ExprKind::If(ref cond, ref if_block, ref else_block) => {
|
2019-09-08 23:33:21 +09:00
|
|
|
let (pat, cond) = extract_pats_and_cond(cond);
|
2017-06-15 23:26:32 +09:00
|
|
|
Some(ControlFlow::new_if(
|
|
|
|
cond,
|
2019-09-08 23:33:21 +09:00
|
|
|
pat,
|
2017-06-15 23:26:32 +09:00
|
|
|
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))
|
|
|
|
}
|
2022-11-03 14:22:35 -07:00
|
|
|
ast::ExprKind::Loop(ref block, label, _) => {
|
2017-07-11 21:53:10 +09:00
|
|
|
Some(ControlFlow::new_loop(block, label, expr.span))
|
|
|
|
}
|
2019-07-29 05:52:45 +09:00
|
|
|
ast::ExprKind::While(ref cond, ref block, label) => {
|
2019-09-08 23:33:21 +09:00
|
|
|
let (pat, cond) = extract_pats_and_cond(cond);
|
|
|
|
Some(ControlFlow::new_while(pat, cond, block, label, expr.span))
|
2019-07-29 05:52:45 +09:00
|
|
|
}
|
2017-06-15 23:26:32 +09:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-08 23:33:21 +09:00
|
|
|
fn choose_matcher(pat: Option<&ast::Pat>) -> &'static str {
|
|
|
|
pat.map_or("", |_| "let")
|
2018-03-08 12:56:28 +09:00
|
|
|
}
|
|
|
|
|
2017-01-11 14:34:42 +13:00
|
|
|
impl<'a> ControlFlow<'a> {
|
2017-06-12 15:58:58 +12:00
|
|
|
fn new_if(
|
|
|
|
cond: &'a ast::Expr,
|
2019-09-08 23:33:21 +09:00
|
|
|
pat: Option<&'a ast::Pat>,
|
2017-06-12 15:58:58 +12:00
|
|
|
block: &'a ast::Block,
|
|
|
|
else_block: Option<&'a ast::Expr>,
|
|
|
|
allow_single_line: bool,
|
|
|
|
nested_if: bool,
|
|
|
|
span: Span,
|
|
|
|
) -> ControlFlow<'a> {
|
2019-09-08 23:33:21 +09:00
|
|
|
let matcher = choose_matcher(pat);
|
2017-01-11 14:34:42 +13:00
|
|
|
ControlFlow {
|
|
|
|
cond: Some(cond),
|
2018-01-22 13:05:18 +09:00
|
|
|
block,
|
|
|
|
else_block,
|
2017-01-11 14:34:42 +13:00
|
|
|
label: None,
|
2019-09-08 23:33:21 +09:00
|
|
|
pat,
|
2017-01-11 14:34:42 +13:00
|
|
|
keyword: "if",
|
2018-03-06 20:02:04 +09:00
|
|
|
matcher,
|
2017-01-11 14:34:42 +13:00
|
|
|
connector: " =",
|
2018-01-22 13:05:18 +09:00
|
|
|
allow_single_line,
|
|
|
|
nested_if,
|
|
|
|
span,
|
2017-01-11 14:34:42 +13:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-29 21:44:26 +09:00
|
|
|
fn new_loop(block: &'a ast::Block, label: Option<ast::Label>, span: Span) -> ControlFlow<'a> {
|
2017-01-11 14:34:42 +13:00
|
|
|
ControlFlow {
|
2015-07-20 23:29:25 +02:00
|
|
|
cond: None,
|
2018-01-22 13:05:18 +09:00
|
|
|
block,
|
2017-01-11 14:34:42 +13:00
|
|
|
else_block: None,
|
2018-01-22 13:05:18 +09:00
|
|
|
label,
|
2019-09-08 23:33:21 +09:00
|
|
|
pat: None,
|
2015-07-20 23:29:25 +02:00
|
|
|
keyword: "loop",
|
|
|
|
matcher: "",
|
|
|
|
connector: "",
|
2017-01-11 14:34:42 +13:00
|
|
|
allow_single_line: false,
|
|
|
|
nested_if: false,
|
2018-01-22 13:05:18 +09:00
|
|
|
span,
|
2015-07-20 23:29:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-12 15:58:58 +12:00
|
|
|
fn new_while(
|
2019-09-08 23:33:21 +09:00
|
|
|
pat: Option<&'a ast::Pat>,
|
2017-06-12 15:58:58 +12:00
|
|
|
cond: &'a ast::Expr,
|
|
|
|
block: &'a ast::Block,
|
2018-01-29 21:44:26 +09:00
|
|
|
label: Option<ast::Label>,
|
2017-06-12 15:58:58 +12:00
|
|
|
span: Span,
|
|
|
|
) -> ControlFlow<'a> {
|
2019-09-08 23:33:21 +09:00
|
|
|
let matcher = choose_matcher(pat);
|
2017-01-11 14:34:42 +13:00
|
|
|
ControlFlow {
|
2015-07-20 23:29:25 +02:00
|
|
|
cond: Some(cond),
|
2018-01-22 13:05:18 +09:00
|
|
|
block,
|
2017-01-11 14:34:42 +13:00
|
|
|
else_block: None,
|
2018-01-22 13:05:18 +09:00
|
|
|
label,
|
2019-09-08 23:33:21 +09:00
|
|
|
pat,
|
2017-01-11 14:34:42 +13:00
|
|
|
keyword: "while",
|
2018-03-06 20:02:04 +09:00
|
|
|
matcher,
|
2015-07-20 23:29:25 +02:00
|
|
|
connector: " =",
|
2017-01-11 14:34:42 +13:00
|
|
|
allow_single_line: false,
|
|
|
|
nested_if: false,
|
2018-01-22 13:05:18 +09:00
|
|
|
span,
|
2015-07-20 23:29:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-12 15:58:58 +12:00
|
|
|
fn new_for(
|
|
|
|
pat: &'a ast::Pat,
|
|
|
|
cond: &'a ast::Expr,
|
|
|
|
block: &'a ast::Block,
|
2018-01-29 21:44:26 +09:00
|
|
|
label: Option<ast::Label>,
|
2017-06-12 15:58:58 +12:00
|
|
|
span: Span,
|
|
|
|
) -> ControlFlow<'a> {
|
2017-01-11 14:34:42 +13:00
|
|
|
ControlFlow {
|
2015-07-20 23:29:25 +02:00
|
|
|
cond: Some(cond),
|
2018-01-22 13:05:18 +09:00
|
|
|
block,
|
2017-01-11 14:34:42 +13:00
|
|
|
else_block: None,
|
2018-01-22 13:05:18 +09:00
|
|
|
label,
|
2019-09-08 23:33:21 +09:00
|
|
|
pat: Some(pat),
|
2017-01-11 14:34:42 +13:00
|
|
|
keyword: "for",
|
2015-07-20 23:29:25 +02:00
|
|
|
matcher: "",
|
|
|
|
connector: " in",
|
2017-01-11 14:34:42 +13:00
|
|
|
allow_single_line: false,
|
|
|
|
nested_if: false,
|
2018-01-22 13:05:18 +09:00
|
|
|
span,
|
2015-07-20 23:29:25 +02:00
|
|
|
}
|
|
|
|
}
|
2017-01-11 14:34:42 +13:00
|
|
|
|
2017-06-12 15:58:58 +12:00
|
|
|
fn rewrite_single_line(
|
|
|
|
&self,
|
|
|
|
pat_expr_str: &str,
|
2019-02-09 16:14:30 +09:00
|
|
|
context: &RewriteContext<'_>,
|
2017-06-12 15:58:58 +12:00
|
|
|
width: usize,
|
|
|
|
) -> Option<String> {
|
2017-01-11 14:34:42 +13:00
|
|
|
assert!(self.allow_single_line);
|
2017-10-05 20:50:19 +09:00
|
|
|
let else_block = self.else_block?;
|
2017-01-11 14:34:42 +13:00
|
|
|
let fixed_cost = self.keyword.len() + " { } else { }".len();
|
|
|
|
|
2019-10-05 23:40:24 +09:00
|
|
|
if let ast::ExprKind::Block(ref else_node, _) = else_block.kind {
|
2020-03-26 21:25:34 -05:00
|
|
|
if !is_simple_block(context, self.block, None)
|
|
|
|
|| !is_simple_block(context, else_node, None)
|
2017-09-15 12:10:58 +09:00
|
|
|
|| pat_expr_str.contains('\n')
|
2017-06-12 15:58:58 +12:00
|
|
|
{
|
2017-01-11 14:34:42 +13:00
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
2017-10-05 20:50:19 +09:00
|
|
|
let new_width = width.checked_sub(pat_expr_str.len() + fixed_cost)?;
|
2017-01-11 14:34:42 +13:00
|
|
|
let expr = &self.block.stmts[0];
|
2017-10-05 20:50:19 +09:00
|
|
|
let if_str = expr.rewrite(context, Shape::legacy(new_width, Indent::empty()))?;
|
2017-01-11 14:34:42 +13:00
|
|
|
|
2017-10-05 20:50:19 +09:00
|
|
|
let new_width = new_width.checked_sub(if_str.len())?;
|
2017-01-11 14:34:42 +13:00
|
|
|
let else_expr = &else_node.stmts[0];
|
2017-10-05 20:50:19 +09:00
|
|
|
let else_str = else_expr.rewrite(context, Shape::legacy(new_width, Indent::empty()))?;
|
2017-01-11 14:34:42 +13:00
|
|
|
|
|
|
|
if if_str.contains('\n') || else_str.contains('\n') {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
2017-06-12 15:58:58 +12:00
|
|
|
let result = format!(
|
|
|
|
"{} {} {{ {} }} else {{ {} }}",
|
2017-12-01 13:30:21 +09:00
|
|
|
self.keyword, pat_expr_str, if_str, else_str
|
2017-06-12 15:58:58 +12:00
|
|
|
);
|
2017-01-11 14:34:42 +13:00
|
|
|
|
|
|
|
if result.len() <= width {
|
|
|
|
return Some(result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
None
|
|
|
|
}
|
2015-07-20 23:29:25 +02:00
|
|
|
}
|
|
|
|
|
2019-02-19 02:56:42 +00:00
|
|
|
/// Returns `true` if the last line of pat_str has leading whitespace and it is wider than the
|
2018-10-15 23:24:35 +02:00
|
|
|
/// shape's indent.
|
|
|
|
fn last_line_offsetted(start_column: usize, pat_str: &str) -> bool {
|
|
|
|
let mut leading_whitespaces = 0;
|
|
|
|
for c in pat_str.chars().rev() {
|
|
|
|
match c {
|
|
|
|
'\n' => break,
|
|
|
|
_ if c.is_whitespace() => leading_whitespaces += 1,
|
|
|
|
_ => leading_whitespaces = 0,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
leading_whitespaces > start_column
|
|
|
|
}
|
|
|
|
|
2017-06-15 23:26:32 +09:00
|
|
|
impl<'a> ControlFlow<'a> {
|
2018-03-06 20:02:04 +09:00
|
|
|
fn rewrite_pat_expr(
|
|
|
|
&self,
|
2019-02-09 16:14:30 +09:00
|
|
|
context: &RewriteContext<'_>,
|
2018-03-06 20:02:04 +09:00
|
|
|
expr: &ast::Expr,
|
|
|
|
shape: Shape,
|
|
|
|
offset: usize,
|
|
|
|
) -> Option<String> {
|
2019-09-08 23:33:21 +09:00
|
|
|
debug!("rewrite_pat_expr {:?} {:?} {:?}", shape, self.pat, expr);
|
2018-03-06 20:02:04 +09:00
|
|
|
|
|
|
|
let cond_shape = shape.offset_left(offset)?;
|
2019-10-17 20:04:05 -05:00
|
|
|
if let Some(pat) = self.pat {
|
2018-03-06 20:02:04 +09:00
|
|
|
let matcher = if self.matcher.is_empty() {
|
|
|
|
self.matcher.to_owned()
|
|
|
|
} else {
|
|
|
|
format!("{} ", self.matcher)
|
|
|
|
};
|
|
|
|
let pat_shape = cond_shape
|
|
|
|
.offset_left(matcher.len())?
|
|
|
|
.sub_width(self.connector.len())?;
|
2019-10-17 20:04:05 -05:00
|
|
|
let pat_string = pat.rewrite(context, pat_shape)?;
|
|
|
|
let comments_lo = context
|
|
|
|
.snippet_provider
|
2021-10-20 00:11:59 -05:00
|
|
|
.span_after(self.span.with_lo(pat.span.hi()), self.connector.trim());
|
2021-01-08 15:56:05 +02:00
|
|
|
let comments_span = mk_sp(comments_lo, expr.span.lo());
|
|
|
|
return rewrite_assign_rhs_with_comments(
|
|
|
|
context,
|
|
|
|
&format!("{}{}{}", matcher, pat_string, self.connector),
|
|
|
|
expr,
|
|
|
|
cond_shape,
|
2021-12-02 21:35:30 -06:00
|
|
|
&RhsAssignKind::Expr(&expr.kind, expr.span),
|
2021-01-08 15:56:05 +02:00
|
|
|
RhsTactics::Default,
|
|
|
|
comments_span,
|
|
|
|
true,
|
2019-10-17 20:04:05 -05:00
|
|
|
);
|
2018-03-06 20:02:04 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
let expr_rw = expr.rewrite(context, cond_shape);
|
|
|
|
// The expression may (partially) fit on the current line.
|
|
|
|
// We do not allow splitting between `if` and condition.
|
|
|
|
if self.keyword == "if" || expr_rw.is_some() {
|
|
|
|
return expr_rw;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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_with_newline(context.config);
|
|
|
|
expr.rewrite(context, nested_shape)
|
|
|
|
.map(|expr_rw| format!("{}{}", nested_indent_str, expr_rw))
|
|
|
|
}
|
|
|
|
|
2017-06-15 23:26:32 +09:00
|
|
|
fn rewrite_cond(
|
|
|
|
&self,
|
2019-02-09 16:14:30 +09:00
|
|
|
context: &RewriteContext<'_>,
|
2017-06-15 23:26:32 +09:00
|
|
|
shape: Shape,
|
|
|
|
alt_block_sep: &str,
|
|
|
|
) -> Option<(String, usize)> {
|
2017-07-26 17:41:45 +09:00
|
|
|
// Do not take the rhs overhead from the upper expressions into account
|
|
|
|
// when rewriting pattern.
|
2018-03-06 20:02:04 +09:00
|
|
|
let new_width = context.budget(shape.used_width());
|
2017-07-26 17:41:45 +09:00
|
|
|
let fresh_shape = Shape {
|
|
|
|
width: new_width,
|
|
|
|
..shape
|
|
|
|
};
|
2017-02-21 14:43:43 +13:00
|
|
|
let constr_shape = if self.nested_if {
|
2017-01-11 14:34:42 +13:00
|
|
|
// We are part of an if-elseif-else chain. Our constraints are tightened.
|
|
|
|
// 7 = "} else " .len()
|
2017-10-05 20:50:19 +09:00
|
|
|
fresh_shape.offset_left(7)?
|
2017-01-11 14:34:42 +13:00
|
|
|
} else {
|
2017-07-26 17:41:45 +09:00
|
|
|
fresh_shape
|
2017-01-11 14:34:42 +13:00
|
|
|
};
|
|
|
|
|
2015-07-20 23:29:25 +02:00
|
|
|
let label_string = rewrite_label(self.label);
|
2017-01-11 14:34:42 +13:00
|
|
|
// 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 {
|
2018-03-06 20:02:04 +09:00
|
|
|
Some(cond) => self.rewrite_pat_expr(context, cond, constr_shape, offset)?,
|
2015-08-16 15:58:17 +12:00
|
|
|
None => String::new(),
|
2015-07-20 23:29:25 +02:00
|
|
|
};
|
|
|
|
|
2017-07-26 16:28:55 +09:00
|
|
|
let brace_overhead =
|
|
|
|
if context.config.control_brace_style() != ControlBraceStyle::AlwaysNextLine {
|
|
|
|
// 2 = ` {`
|
|
|
|
2
|
|
|
|
} else {
|
|
|
|
0
|
|
|
|
};
|
|
|
|
let one_line_budget = context
|
|
|
|
.config
|
|
|
|
.max_width()
|
2018-05-14 21:58:57 +09:00
|
|
|
.saturating_sub(constr_shape.used_width() + offset + brace_overhead);
|
2017-12-10 23:54:34 +09:00
|
|
|
let force_newline_brace = (pat_expr_string.contains('\n')
|
|
|
|
|| pat_expr_string.len() > one_line_budget)
|
2018-10-15 23:24:35 +02:00
|
|
|
&& (!last_line_extendable(&pat_expr_string)
|
|
|
|
|| last_line_offsetted(shape.used_width(), &pat_expr_string));
|
2017-05-05 14:29:18 +12:00
|
|
|
|
2017-01-11 14:34:42 +13:00
|
|
|
// Try to format if-else on single line.
|
2020-02-22 22:07:50 -06:00
|
|
|
if self.allow_single_line && context.config.single_line_if_else_max_width() > 0 {
|
2017-01-31 08:28:48 +13:00
|
|
|
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 {
|
2020-02-22 22:07:50 -06:00
|
|
|
if cond_str.len() <= context.config.single_line_if_else_max_width() {
|
2017-06-15 23:26:32 +09:00
|
|
|
return Some((cond_str, 0));
|
|
|
|
}
|
2017-01-11 14:34:42 +13:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let cond_span = if let Some(cond) = self.cond {
|
|
|
|
cond.span
|
|
|
|
} else {
|
2017-08-19 21:47:40 +03:00
|
|
|
mk_sp(self.block.span.lo(), self.block.span.lo())
|
2017-01-11 14:34:42 +13:00
|
|
|
};
|
|
|
|
|
2017-08-28 00:13:42 +09:00
|
|
|
// `for event in event`
|
|
|
|
// Do not include label in the span.
|
2018-05-08 06:25:48 +09:00
|
|
|
let lo = self
|
|
|
|
.label
|
2018-04-08 22:18:18 +08:00
|
|
|
.map_or(self.span.lo(), |label| label.ident.span.hi());
|
2017-06-01 12:08:09 +09:00
|
|
|
let between_kwd_cond = mk_sp(
|
2017-08-28 00:13:42 +09:00
|
|
|
context
|
2018-02-19 12:41:43 +09:00
|
|
|
.snippet_provider
|
2017-08-31 14:11:52 +12:00
|
|
|
.span_after(mk_sp(lo, self.span.hi()), self.keyword.trim()),
|
2019-09-08 23:33:21 +09:00
|
|
|
if self.pat.is_none() {
|
2018-03-08 12:56:28 +09:00
|
|
|
cond_span.lo()
|
2018-03-08 16:29:00 +09:00
|
|
|
} else if self.matcher.is_empty() {
|
2019-09-08 23:33:21 +09:00
|
|
|
self.pat.unwrap().span.lo()
|
2018-03-08 12:56:28 +09:00
|
|
|
} else {
|
2018-03-08 16:29:00 +09:00
|
|
|
context
|
|
|
|
.snippet_provider
|
|
|
|
.span_before(self.span, self.matcher.trim())
|
2018-03-08 12:56:28 +09:00
|
|
|
},
|
2017-06-01 12:08:09 +09:00
|
|
|
);
|
2017-01-11 14:34:42 +13:00
|
|
|
|
2017-01-31 08:28:48 +13:00
|
|
|
let between_kwd_cond_comment = extract_comment(between_kwd_cond, context, shape);
|
2017-01-11 14:34:42 +13:00
|
|
|
|
2017-01-31 08:28:48 +13:00
|
|
|
let after_cond_comment =
|
2017-08-19 21:47:40 +03:00
|
|
|
extract_comment(mk_sp(cond_span.hi(), self.block.span.lo()), context, shape);
|
2017-01-11 14:34:42 +13:00
|
|
|
|
|
|
|
let block_sep = if self.cond.is_none() && between_kwd_cond_comment.is_some() {
|
|
|
|
""
|
2017-09-15 12:10:58 +09:00
|
|
|
} else if context.config.control_brace_style() == ControlBraceStyle::AlwaysNextLine
|
|
|
|
|| force_newline_brace
|
2017-06-12 15:58:58 +12:00
|
|
|
{
|
2017-06-15 23:26:32 +09:00
|
|
|
alt_block_sep
|
2017-01-11 14:34:42 +13:00
|
|
|
} 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> {
|
2019-02-09 16:14:30 +09:00
|
|
|
fn rewrite(&self, context: &RewriteContext<'_>, shape: Shape) -> Option<String> {
|
2017-06-15 23:26:32 +09:00
|
|
|
debug!("ControlFlow::rewrite {:?} {:?}", self, shape);
|
|
|
|
|
2018-02-19 12:47:54 +09:00
|
|
|
let alt_block_sep = &shape.indent.to_string_with_newline(context.config);
|
2018-02-23 09:07:35 +09:00
|
|
|
let (cond_str, used_width) = self.rewrite_cond(context, shape, alt_block_sep)?;
|
2017-06-15 23:26:32 +09:00
|
|
|
// 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);
|
|
|
|
}
|
|
|
|
|
2018-05-14 21:58:57 +09:00
|
|
|
let block_width = shape.width.saturating_sub(used_width);
|
2017-06-15 23:26:32 +09:00
|
|
|
// 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
|
|
|
|
};
|
2018-03-25 20:20:50 +09:00
|
|
|
let block_str = {
|
|
|
|
let old_val = context.is_if_else_block.replace(self.else_block.is_some());
|
|
|
|
let result =
|
2018-06-07 11:15:59 +08:00
|
|
|
rewrite_block_with_visitor(context, "", self.block, None, None, block_shape, true);
|
2018-03-25 20:20:50 +09:00
|
|
|
context.is_if_else_block.replace(old_val);
|
|
|
|
result?
|
|
|
|
};
|
2017-06-15 23:26:32 +09:00
|
|
|
|
|
|
|
let mut result = format!("{}{}", cond_str, block_str);
|
2017-01-11 14:34:42 +13:00
|
|
|
|
|
|
|
if let Some(else_block) = self.else_block {
|
2017-05-13 21:07:36 +09:00
|
|
|
let shape = Shape::indented(shape.indent, context.config);
|
2017-01-11 14:34:42 +13:00
|
|
|
let mut last_in_chain = false;
|
2019-10-05 23:40:24 +09:00
|
|
|
let rewrite = match else_block.kind {
|
2017-01-11 14:34:42 +13:00
|
|
|
// If the else expression is another if-else expression, prevent it
|
|
|
|
// from being formatted on a single line.
|
2017-01-31 08:28:48 +13:00
|
|
|
// Note how we're passing the original shape, as the
|
2017-01-11 14:34:42 +13:00
|
|
|
// cost of "else" should not cascade.
|
|
|
|
ast::ExprKind::If(ref cond, ref if_block, ref next_else_block) => {
|
2019-07-29 05:52:45 +09:00
|
|
|
let (pats, cond) = extract_pats_and_cond(cond);
|
2017-06-12 15:58:58 +12:00
|
|
|
ControlFlow::new_if(
|
|
|
|
cond,
|
2019-07-29 05:52:45 +09:00
|
|
|
pats,
|
2017-06-12 15:58:58 +12:00
|
|
|
if_block,
|
|
|
|
next_else_block.as_ref().map(|e| &**e),
|
|
|
|
false,
|
|
|
|
true,
|
2017-08-19 21:47:40 +03:00
|
|
|
mk_sp(else_block.span.lo(), self.span.hi()),
|
2018-09-19 23:22:26 +09:00
|
|
|
)
|
|
|
|
.rewrite(context, shape)
|
2017-01-11 14:34:42 +13:00
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
last_in_chain = true;
|
2017-01-16 16:37:58 +13:00
|
|
|
// 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
|
|
|
|
};
|
2017-06-20 21:35:52 +09:00
|
|
|
format_expr(else_block, ExprType::Statement, context, else_shape)
|
2017-01-11 14:34:42 +13:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-06-16 18:56:32 +09:00
|
|
|
let between_kwd_else_block = mk_sp(
|
2017-08-19 21:47:40 +03:00
|
|
|
self.block.span.hi(),
|
2017-06-17 16:56:54 +09:00
|
|
|
context
|
2018-02-19 12:41:43 +09:00
|
|
|
.snippet_provider
|
2017-08-19 21:47:40 +03:00
|
|
|
.span_before(mk_sp(self.block.span.hi(), else_block.span.lo()), "else"),
|
2017-06-16 18:56:32 +09:00
|
|
|
);
|
2017-01-11 14:34:42 +13:00
|
|
|
let between_kwd_else_block_comment =
|
2017-01-31 08:28:48 +13:00
|
|
|
extract_comment(between_kwd_else_block, context, shape);
|
2017-01-11 14:34:42 +13:00
|
|
|
|
2017-06-12 15:58:58 +12:00
|
|
|
let after_else = mk_sp(
|
2017-06-17 16:56:54 +09:00
|
|
|
context
|
2018-02-19 12:41:43 +09:00
|
|
|
.snippet_provider
|
2017-08-19 21:47:40 +03:00
|
|
|
.span_after(mk_sp(self.block.span.hi(), else_block.span.lo()), "else"),
|
|
|
|
else_block.span.lo(),
|
2017-06-12 15:58:58 +12:00
|
|
|
);
|
2017-01-31 08:28:48 +13:00
|
|
|
let after_else_comment = extract_comment(after_else, context, shape);
|
2017-01-11 14:34:42 +13:00
|
|
|
|
2017-05-16 15:47:09 +07:00
|
|
|
let between_sep = match context.config.control_brace_style() {
|
2017-07-10 02:24:59 +09:00
|
|
|
ControlBraceStyle::AlwaysNextLine | ControlBraceStyle::ClosingNextLine => {
|
|
|
|
&*alt_block_sep
|
|
|
|
}
|
2017-01-11 14:34:42 +13:00
|
|
|
ControlBraceStyle::AlwaysSameLine => " ",
|
|
|
|
};
|
2017-05-16 15:47:09 +07:00
|
|
|
let after_sep = match context.config.control_brace_style() {
|
2017-01-11 14:34:42 +13:00
|
|
|
ControlBraceStyle::AlwaysNextLine if last_in_chain => &*alt_block_sep,
|
|
|
|
_ => " ",
|
|
|
|
};
|
2017-10-05 21:05:28 +09:00
|
|
|
|
|
|
|
result.push_str(&format!(
|
2017-10-05 20:50:19 +09:00
|
|
|
"{}else{}",
|
|
|
|
between_kwd_else_block_comment
|
|
|
|
.as_ref()
|
|
|
|
.map_or(between_sep, |s| &**s),
|
2017-10-05 21:05:28 +09:00
|
|
|
after_else_comment.as_ref().map_or(after_sep, |s| &**s),
|
|
|
|
));
|
2017-10-05 20:50:19 +09:00
|
|
|
result.push_str(&rewrite?);
|
2017-01-11 14:34:42 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
Some(result)
|
2015-07-20 23:29:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-29 21:44:26 +09:00
|
|
|
fn rewrite_label(opt_label: Option<ast::Label>) -> Cow<'static, str> {
|
|
|
|
match opt_label {
|
|
|
|
Some(label) => Cow::from(format!("{}: ", label.ident)),
|
2017-09-15 18:11:24 +09:00
|
|
|
None => Cow::from(""),
|
2015-07-16 16:29:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-09 16:14:30 +09:00
|
|
|
fn extract_comment(span: Span, context: &RewriteContext<'_>, shape: Shape) -> Option<String> {
|
2017-08-28 00:13:42 +09:00
|
|
|
match rewrite_missing_comment(span, shape, context) {
|
|
|
|
Some(ref comment) if !comment.is_empty() => Some(format!(
|
2018-02-19 12:47:54 +09:00
|
|
|
"{indent}{}{indent}",
|
2017-06-12 15:58:58 +12:00
|
|
|
comment,
|
2018-02-19 12:47:54 +09:00
|
|
|
indent = shape.indent.to_string_with_newline(context.config)
|
2017-08-28 00:13:42 +09:00
|
|
|
)),
|
|
|
|
_ => None,
|
2016-01-12 01:09:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-26 21:25:34 -05:00
|
|
|
pub(crate) fn block_contains_comment(context: &RewriteContext<'_>, block: &ast::Block) -> bool {
|
|
|
|
contains_comment(context.snippet(block.span))
|
2015-11-19 20:11:32 -06:00
|
|
|
}
|
2015-08-25 21:46:58 +02:00
|
|
|
|
2017-10-20 22:09:45 -07:00
|
|
|
// Checks that a block contains no statements, an expression and no comments or
|
|
|
|
// attributes.
|
2015-11-20 21:05:10 +01:00
|
|
|
// FIXME: incorrectly returns false when comment is contained completely within
|
|
|
|
// the expression.
|
2019-05-09 20:37:51 +02:00
|
|
|
pub(crate) fn is_simple_block(
|
2020-03-26 21:25:34 -05:00
|
|
|
context: &RewriteContext<'_>,
|
2017-10-20 22:09:45 -07:00
|
|
|
block: &ast::Block,
|
|
|
|
attrs: Option<&[ast::Attribute]>,
|
|
|
|
) -> bool {
|
2020-02-08 22:54:37 -06:00
|
|
|
block.stmts.len() == 1
|
2018-05-06 15:22:29 +09:00
|
|
|
&& stmt_is_expr(&block.stmts[0])
|
2020-03-26 21:25:34 -05:00
|
|
|
&& !block_contains_comment(context, block)
|
2020-02-08 22:54:37 -06:00
|
|
|
&& attrs.map_or(true, |a| a.is_empty())
|
2015-08-25 21:46:58 +02:00
|
|
|
}
|
|
|
|
|
2017-10-20 22:09:45 -07:00
|
|
|
/// Checks whether a block contains at most one statement or expression, and no
|
|
|
|
/// comments or attributes.
|
2019-05-09 20:37:51 +02:00
|
|
|
pub(crate) fn is_simple_block_stmt(
|
2020-03-26 21:25:34 -05:00
|
|
|
context: &RewriteContext<'_>,
|
2017-10-20 22:09:45 -07:00
|
|
|
block: &ast::Block,
|
|
|
|
attrs: Option<&[ast::Attribute]>,
|
|
|
|
) -> bool {
|
2018-05-06 15:22:29 +09:00
|
|
|
block.stmts.len() <= 1
|
2020-03-26 21:25:34 -05:00
|
|
|
&& !block_contains_comment(context, block)
|
2017-10-20 22:09:45 -07:00
|
|
|
&& attrs.map_or(true, |a| a.is_empty())
|
2015-11-19 01:53:25 -06:00
|
|
|
}
|
|
|
|
|
2021-01-06 20:25:11 -06:00
|
|
|
fn block_has_statements(block: &ast::Block) -> bool {
|
|
|
|
block
|
|
|
|
.stmts
|
|
|
|
.iter()
|
|
|
|
.any(|stmt| !matches!(stmt.kind, ast::StmtKind::Empty))
|
|
|
|
}
|
|
|
|
|
2017-10-20 22:09:45 -07:00
|
|
|
/// Checks whether a block contains no statements, expressions, comments, or
|
|
|
|
/// inner attributes.
|
2019-05-09 20:37:51 +02:00
|
|
|
pub(crate) fn is_empty_block(
|
2020-03-26 21:25:34 -05:00
|
|
|
context: &RewriteContext<'_>,
|
2017-10-20 22:09:45 -07:00
|
|
|
block: &ast::Block,
|
|
|
|
attrs: Option<&[ast::Attribute]>,
|
|
|
|
) -> bool {
|
2021-11-07 20:37:34 -06:00
|
|
|
!block_has_statements(block)
|
2020-03-26 21:25:34 -05:00
|
|
|
&& !block_contains_comment(context, block)
|
2017-10-20 22:09:45 -07:00
|
|
|
&& attrs.map_or(true, |a| inner_attributes(a).is_empty())
|
2016-09-16 15:19:18 +12:00
|
|
|
}
|
|
|
|
|
2019-05-09 20:37:51 +02:00
|
|
|
pub(crate) fn stmt_is_expr(stmt: &ast::Stmt) -> bool {
|
2021-07-25 22:57:19 -05:00
|
|
|
matches!(stmt.kind, ast::StmtKind::Expr(..))
|
2015-11-19 01:53:25 -06:00
|
|
|
}
|
|
|
|
|
2019-05-09 20:37:51 +02:00
|
|
|
pub(crate) fn is_unsafe_block(block: &ast::Block) -> bool {
|
2021-07-25 22:57:19 -05:00
|
|
|
matches!(block.rules, ast::BlockCheckMode::Unsafe(..))
|
2015-11-14 21:57:31 +01:00
|
|
|
}
|
|
|
|
|
2019-05-09 20:37:51 +02:00
|
|
|
pub(crate) fn rewrite_literal(
|
|
|
|
context: &RewriteContext<'_>,
|
2022-10-10 13:40:56 +11:00
|
|
|
token_lit: token::Lit,
|
|
|
|
span: Span,
|
2019-05-09 20:37:51 +02:00
|
|
|
shape: Shape,
|
|
|
|
) -> Option<String> {
|
2022-10-10 13:40:56 +11:00
|
|
|
match token_lit.kind {
|
|
|
|
token::LitKind::Str => rewrite_string_lit(context, span, shape),
|
|
|
|
token::LitKind::Integer => rewrite_int_lit(context, token_lit, span, shape),
|
2017-12-06 22:52:43 +09:00
|
|
|
_ => wrap_str(
|
2022-10-10 13:40:56 +11:00
|
|
|
context.snippet(span).to_owned(),
|
2017-12-06 22:52:43 +09:00
|
|
|
context.config.max_width(),
|
|
|
|
shape,
|
|
|
|
),
|
2017-09-28 10:47:01 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-09 16:14:30 +09:00
|
|
|
fn rewrite_string_lit(context: &RewriteContext<'_>, span: Span, shape: Shape) -> Option<String> {
|
2016-01-28 19:14:08 +13:00
|
|
|
let string_lit = context.snippet(span);
|
|
|
|
|
2017-11-24 14:07:37 +13:00
|
|
|
if !context.config.format_strings() {
|
2017-06-18 22:44:56 +09:00
|
|
|
if string_lit
|
|
|
|
.lines()
|
2019-03-29 17:54:29 +09:00
|
|
|
.dropping_back(1)
|
2017-06-18 22:44:56 +09:00
|
|
|
.all(|line| line.ends_with('\\'))
|
2019-10-19 17:19:47 +08:00
|
|
|
&& context.config.version() == Version::Two
|
2017-06-18 22:44:56 +09:00
|
|
|
{
|
2019-10-19 17:19:47 +08:00
|
|
|
return Some(string_lit.to_owned());
|
2017-06-18 22:44:56 +09:00
|
|
|
} else {
|
2017-12-08 13:07:42 +09:00
|
|
|
return wrap_str(string_lit.to_owned(), context.config.max_width(), shape);
|
2017-06-18 22:44:56 +09:00
|
|
|
}
|
2016-01-28 19:14:08 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
// Remove the quote characters.
|
|
|
|
let str_lit = &string_lit[1..string_lit.len() - 1];
|
2015-09-03 23:38:12 -04:00
|
|
|
|
2017-10-31 15:04:50 +09:00
|
|
|
rewrite_string(
|
|
|
|
str_lit,
|
|
|
|
&StringFormat::new(shape.visual_indent(0), context.config),
|
2018-10-15 04:18:37 +02:00
|
|
|
shape.width.saturating_sub(2),
|
2017-10-31 15:04:50 +09:00
|
|
|
)
|
2015-06-16 17:29:05 +02:00
|
|
|
}
|
|
|
|
|
2022-10-10 13:40:56 +11:00
|
|
|
fn rewrite_int_lit(
|
|
|
|
context: &RewriteContext<'_>,
|
|
|
|
token_lit: token::Lit,
|
|
|
|
span: Span,
|
|
|
|
shape: Shape,
|
|
|
|
) -> Option<String> {
|
|
|
|
let symbol = token_lit.symbol.as_str();
|
2021-10-20 00:11:59 -05:00
|
|
|
|
2021-11-07 20:37:34 -06:00
|
|
|
if let Some(symbol_stripped) = symbol.strip_prefix("0x") {
|
2021-10-20 00:11:59 -05:00
|
|
|
let hex_lit = match context.config.hex_literal_case() {
|
|
|
|
HexLiteralCase::Preserve => None,
|
2021-11-07 20:37:34 -06:00
|
|
|
HexLiteralCase::Upper => Some(symbol_stripped.to_ascii_uppercase()),
|
|
|
|
HexLiteralCase::Lower => Some(symbol_stripped.to_ascii_lowercase()),
|
2021-10-20 00:11:59 -05:00
|
|
|
};
|
|
|
|
if let Some(hex_lit) = hex_lit {
|
|
|
|
return wrap_str(
|
|
|
|
format!(
|
|
|
|
"0x{}{}",
|
|
|
|
hex_lit,
|
2022-10-10 13:40:56 +11:00
|
|
|
token_lit.suffix.map_or(String::new(), |s| s.to_string())
|
2021-10-20 00:11:59 -05:00
|
|
|
),
|
|
|
|
context.config.max_width(),
|
|
|
|
shape,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
wrap_str(
|
|
|
|
context.snippet(span).to_owned(),
|
|
|
|
context.config.max_width(),
|
|
|
|
shape,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2019-02-09 16:14:30 +09:00
|
|
|
fn choose_separator_tactic(context: &RewriteContext<'_>, span: Span) -> Option<SeparatorTactic> {
|
2018-04-28 15:09:54 +09:00
|
|
|
if context.inside_macro() {
|
|
|
|
if span_ends_with_comma(context, span) {
|
|
|
|
Some(SeparatorTactic::Always)
|
|
|
|
} else {
|
|
|
|
Some(SeparatorTactic::Never)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-09 20:37:51 +02:00
|
|
|
pub(crate) fn rewrite_call(
|
2019-02-09 16:14:30 +09:00
|
|
|
context: &RewriteContext<'_>,
|
2017-06-12 15:58:58 +12:00
|
|
|
callee: &str,
|
|
|
|
args: &[ptr::P<ast::Expr>],
|
|
|
|
span: Span,
|
|
|
|
shape: Shape,
|
|
|
|
) -> Option<String> {
|
2018-03-07 15:40:52 +09:00
|
|
|
overflow::rewrite_with_parens(
|
2017-06-15 16:25:40 +09:00
|
|
|
context,
|
2017-08-29 22:16:04 +09:00
|
|
|
callee,
|
2018-09-29 14:33:00 +09:00
|
|
|
args.iter(),
|
2017-06-15 16:25:40 +09:00
|
|
|
shape,
|
2018-03-07 15:40:52 +09:00
|
|
|
span,
|
2020-02-22 22:07:50 -06:00
|
|
|
context.config.fn_call_width(),
|
2018-04-28 15:09:54 +09:00
|
|
|
choose_separator_tactic(context, span),
|
2018-03-07 15:40:52 +09:00
|
|
|
)
|
2017-06-03 22:49:29 +09:00
|
|
|
}
|
2015-10-08 23:07:19 +02:00
|
|
|
|
2019-05-09 20:37:51 +02:00
|
|
|
pub(crate) fn is_simple_expr(expr: &ast::Expr) -> bool {
|
2019-10-05 23:40:24 +09:00
|
|
|
match expr.kind {
|
2017-12-01 13:30:04 +09:00
|
|
|
ast::ExprKind::Lit(..) => true,
|
|
|
|
ast::ExprKind::Path(ref qself, ref path) => qself.is_none() && path.segments.len() <= 1,
|
2020-02-08 22:21:37 -06:00
|
|
|
ast::ExprKind::AddrOf(_, _, ref expr)
|
2017-12-01 13:30:04 +09:00
|
|
|
| ast::ExprKind::Box(ref expr)
|
|
|
|
| ast::ExprKind::Cast(ref expr, _)
|
|
|
|
| ast::ExprKind::Field(ref expr, _)
|
|
|
|
| ast::ExprKind::Try(ref expr)
|
2018-03-07 15:40:52 +09:00
|
|
|
| ast::ExprKind::Unary(_, ref expr) => is_simple_expr(expr),
|
2018-05-23 06:04:14 +09:00
|
|
|
ast::ExprKind::Index(ref lhs, ref rhs) => is_simple_expr(lhs) && is_simple_expr(rhs),
|
|
|
|
ast::ExprKind::Repeat(ref lhs, ref rhs) => {
|
|
|
|
is_simple_expr(lhs) && is_simple_expr(&*rhs.value)
|
2017-12-01 13:30:04 +09:00
|
|
|
}
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-09 20:37:51 +02:00
|
|
|
pub(crate) fn is_every_expr_simple(lists: &[OverflowableItem<'_>]) -> bool {
|
2018-09-30 07:10:31 +09:00
|
|
|
lists.iter().all(OverflowableItem::is_simple)
|
2017-05-23 11:20:29 +09:00
|
|
|
}
|
|
|
|
|
2019-05-09 20:37:51 +02:00
|
|
|
pub(crate) fn can_be_overflowed_expr(
|
2019-02-09 16:20:38 +09:00
|
|
|
context: &RewriteContext<'_>,
|
|
|
|
expr: &ast::Expr,
|
|
|
|
args_len: usize,
|
|
|
|
) -> bool {
|
2019-10-05 23:40:24 +09:00
|
|
|
match expr.kind {
|
2019-04-14 20:45:04 +09:00
|
|
|
_ if !expr.attrs.is_empty() => false,
|
2017-06-03 22:49:29 +09:00
|
|
|
ast::ExprKind::Match(..) => {
|
2017-09-15 12:10:58 +09:00
|
|
|
(context.use_block_indent() && args_len == 1)
|
2017-11-13 16:42:29 +09:00
|
|
|
|| (context.config.indent_style() == IndentStyle::Visual && args_len > 1)
|
2019-03-30 18:37:37 +01:00
|
|
|
|| context.config.overflow_delimited_expr()
|
2017-06-03 22:49:29 +09:00
|
|
|
}
|
2017-11-16 16:42:07 +09:00
|
|
|
ast::ExprKind::If(..)
|
|
|
|
| ast::ExprKind::ForLoop(..)
|
|
|
|
| ast::ExprKind::Loop(..)
|
2019-07-29 05:52:45 +09:00
|
|
|
| ast::ExprKind::While(..) => {
|
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
|
|
|
}
|
2018-11-08 19:26:12 -07:00
|
|
|
|
|
|
|
// Handle always block-like expressions
|
2019-03-20 18:18:02 +01:00
|
|
|
ast::ExprKind::Async(..) | ast::ExprKind::Block(..) | ast::ExprKind::Closure(..) => true,
|
2018-11-05 21:12:40 -07:00
|
|
|
|
|
|
|
// Handle `[]` and `{}`-like expressions
|
|
|
|
ast::ExprKind::Array(..) | ast::ExprKind::Struct(..) => {
|
2018-11-08 19:26:12 -07:00
|
|
|
context.config.overflow_delimited_expr()
|
|
|
|
|| (context.use_block_indent() && args_len == 1)
|
2018-11-05 21:12:40 -07:00
|
|
|
}
|
2020-03-26 23:18:16 -05:00
|
|
|
ast::ExprKind::MacCall(ref mac) => {
|
2020-02-08 22:21:37 -06:00
|
|
|
match (
|
2022-11-18 11:24:21 +11:00
|
|
|
rustc_ast::ast::MacDelimiter::from_token(mac.args.delim.to_token()),
|
2020-02-08 22:21:37 -06:00
|
|
|
context.config.overflow_delimited_expr(),
|
|
|
|
) {
|
|
|
|
(Some(ast::MacDelimiter::Bracket), true)
|
|
|
|
| (Some(ast::MacDelimiter::Brace), true) => true,
|
2018-11-05 21:12:40 -07:00
|
|
|
_ => context.use_block_indent() && args_len == 1,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handle parenthetical expressions
|
|
|
|
ast::ExprKind::Call(..) | ast::ExprKind::MethodCall(..) | ast::ExprKind::Tup(..) => {
|
|
|
|
context.use_block_indent() && args_len == 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handle unary-like expressions
|
2020-02-08 22:21:37 -06:00
|
|
|
ast::ExprKind::AddrOf(_, _, ref expr)
|
2017-11-16 16:42:07 +09:00
|
|
|
| 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),
|
2017-06-03 22:49:29 +09:00
|
|
|
_ => false,
|
2017-05-23 11:20:29 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-09 20:37:51 +02:00
|
|
|
pub(crate) fn is_nested_call(expr: &ast::Expr) -> bool {
|
2019-10-05 23:40:24 +09:00
|
|
|
match expr.kind {
|
2020-03-26 23:18:16 -05:00
|
|
|
ast::ExprKind::Call(..) | ast::ExprKind::MacCall(..) => true,
|
2020-02-08 22:21:37 -06:00
|
|
|
ast::ExprKind::AddrOf(_, _, ref expr)
|
2017-11-29 17:36:51 +09:00
|
|
|
| ast::ExprKind::Box(ref expr)
|
|
|
|
| ast::ExprKind::Try(ref expr)
|
|
|
|
| ast::ExprKind::Unary(_, ref expr)
|
|
|
|
| ast::ExprKind::Cast(ref expr, _) => is_nested_call(expr),
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-19 02:56:42 +00:00
|
|
|
/// Returns `true` if a function call or a method call represented by the given span ends with a
|
2017-10-27 16:41:31 +09:00
|
|
|
/// trailing comma. This function is used when rewriting macro, as adding or removing a trailing
|
|
|
|
/// comma from macro can potentially break the code.
|
2019-05-09 20:37:51 +02:00
|
|
|
pub(crate) fn span_ends_with_comma(context: &RewriteContext<'_>, span: Span) -> bool {
|
2018-03-08 17:05:39 +08:00
|
|
|
let mut result: bool = Default::default();
|
|
|
|
let mut prev_char: char = Default::default();
|
2018-04-28 15:09:54 +09:00
|
|
|
let closing_delimiters = &[')', '}', ']'];
|
2018-03-08 17:05:39 +08:00
|
|
|
|
|
|
|
for (kind, c) in CharClasses::new(context.snippet(span).chars()) {
|
2017-10-27 16:41:31 +09:00
|
|
|
match c {
|
2018-03-08 17:05:39 +08:00
|
|
|
_ if kind.is_comment() || c.is_whitespace() => continue,
|
2018-04-28 15:09:54 +09:00
|
|
|
c if closing_delimiters.contains(&c) => {
|
|
|
|
result &= !closing_delimiters.contains(&prev_char);
|
|
|
|
}
|
2018-03-08 17:05:39 +08:00
|
|
|
',' => result = true,
|
|
|
|
_ => result = false,
|
2017-10-27 16:41:31 +09:00
|
|
|
}
|
2018-03-08 17:05:39 +08:00
|
|
|
prev_char = c;
|
2017-10-27 16:41:31 +09:00
|
|
|
}
|
2018-03-08 17:05:39 +08:00
|
|
|
|
|
|
|
result
|
2017-06-23 13:40:30 +09:00
|
|
|
}
|
|
|
|
|
2018-03-08 20:25:18 +09:00
|
|
|
fn rewrite_paren(
|
2019-02-09 16:14:30 +09:00
|
|
|
context: &RewriteContext<'_>,
|
2018-03-08 20:25:18 +09:00
|
|
|
mut subexpr: &ast::Expr,
|
|
|
|
shape: Shape,
|
|
|
|
mut span: Span,
|
|
|
|
) -> Option<String> {
|
2017-01-31 08:28:48 +13:00
|
|
|
debug!("rewrite_paren, shape: {:?}", shape);
|
2018-03-08 20:25:18 +09:00
|
|
|
|
|
|
|
// Extract comments within parens.
|
2018-10-01 00:07:18 +09:00
|
|
|
let mut pre_span;
|
|
|
|
let mut post_span;
|
2018-03-08 20:25:18 +09:00
|
|
|
let mut pre_comment;
|
|
|
|
let mut post_comment;
|
2018-05-05 23:13:49 +08:00
|
|
|
let remove_nested_parens = context.config.remove_nested_parens();
|
2018-03-08 20:25:18 +09:00
|
|
|
loop {
|
|
|
|
// 1 = "(" or ")"
|
2018-10-01 00:07:18 +09:00
|
|
|
pre_span = mk_sp(span.lo() + BytePos(1), subexpr.span.lo());
|
|
|
|
post_span = mk_sp(subexpr.span.hi(), span.hi() - BytePos(1));
|
2018-03-08 20:25:18 +09:00
|
|
|
pre_comment = rewrite_missing_comment(pre_span, shape, context)?;
|
|
|
|
post_comment = rewrite_missing_comment(post_span, shape, context)?;
|
|
|
|
|
|
|
|
// Remove nested parens if there are no comments.
|
2019-10-05 23:40:24 +09:00
|
|
|
if let ast::ExprKind::Paren(ref subsubexpr) = subexpr.kind {
|
2018-05-05 23:13:49 +08:00
|
|
|
if remove_nested_parens && pre_comment.is_empty() && post_comment.is_empty() {
|
2018-03-08 20:25:18 +09:00
|
|
|
span = subexpr.span;
|
|
|
|
subexpr = subsubexpr;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-10-01 00:07:18 +09:00
|
|
|
// 1 = `(` and `)`
|
|
|
|
let sub_shape = shape.offset_left(1)?.sub_width(1)?;
|
2017-10-05 20:50:19 +09:00
|
|
|
let subexpr_str = subexpr.rewrite(context, sub_shape)?;
|
2018-10-01 00:07:18 +09:00
|
|
|
let fits_single_line = !pre_comment.contains("//") && !post_comment.contains("//");
|
|
|
|
if fits_single_line {
|
2019-03-29 19:17:50 +09:00
|
|
|
Some(format!("({}{}{})", pre_comment, subexpr_str, post_comment))
|
2017-06-14 20:37:54 +09:00
|
|
|
} else {
|
2018-10-01 00:07:18 +09:00
|
|
|
rewrite_paren_in_multi_line(context, subexpr, shape, pre_span, post_span)
|
2017-06-14 20:37:54 +09:00
|
|
|
}
|
2015-06-16 17:29:05 +02:00
|
|
|
}
|
2015-05-24 19:57:13 +02:00
|
|
|
|
2018-10-01 00:07:18 +09:00
|
|
|
fn rewrite_paren_in_multi_line(
|
2019-02-09 16:14:30 +09:00
|
|
|
context: &RewriteContext<'_>,
|
2018-10-01 00:07:18 +09:00
|
|
|
subexpr: &ast::Expr,
|
|
|
|
shape: Shape,
|
|
|
|
pre_span: Span,
|
|
|
|
post_span: Span,
|
|
|
|
) -> Option<String> {
|
|
|
|
let nested_indent = shape.indent.block_indent(context.config);
|
|
|
|
let nested_shape = Shape::indented(nested_indent, context.config);
|
|
|
|
let pre_comment = rewrite_missing_comment(pre_span, nested_shape, context)?;
|
|
|
|
let post_comment = rewrite_missing_comment(post_span, nested_shape, context)?;
|
|
|
|
let subexpr_str = subexpr.rewrite(context, nested_shape)?;
|
|
|
|
|
|
|
|
let mut result = String::with_capacity(subexpr_str.len() * 2);
|
|
|
|
result.push('(');
|
|
|
|
if !pre_comment.is_empty() {
|
|
|
|
result.push_str(&nested_indent.to_string_with_newline(context.config));
|
|
|
|
result.push_str(&pre_comment);
|
|
|
|
}
|
|
|
|
result.push_str(&nested_indent.to_string_with_newline(context.config));
|
|
|
|
result.push_str(&subexpr_str);
|
|
|
|
if !post_comment.is_empty() {
|
|
|
|
result.push_str(&nested_indent.to_string_with_newline(context.config));
|
|
|
|
result.push_str(&post_comment);
|
|
|
|
}
|
|
|
|
result.push_str(&shape.indent.to_string_with_newline(context.config));
|
|
|
|
result.push(')');
|
|
|
|
|
|
|
|
Some(result)
|
|
|
|
}
|
|
|
|
|
2017-06-12 15:58:58 +12:00
|
|
|
fn rewrite_index(
|
|
|
|
expr: &ast::Expr,
|
|
|
|
index: &ast::Expr,
|
2019-02-09 16:14:30 +09:00
|
|
|
context: &RewriteContext<'_>,
|
2017-06-12 15:58:58 +12:00
|
|
|
shape: Shape,
|
|
|
|
) -> Option<String> {
|
2017-10-05 20:50:19 +09:00
|
|
|
let expr_str = expr.rewrite(context, shape)?;
|
2017-01-11 12:06:23 +13:00
|
|
|
|
2018-05-18 16:35:09 +12:00
|
|
|
let offset = last_line_width(&expr_str) + 1;
|
2017-07-10 14:23:29 +09:00
|
|
|
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)
|
2018-05-18 16:35:09 +12:00
|
|
|
.and_then(|shape| shape.sub_width(1 + rhs_overhead))
|
2017-07-10 14:23:29 +09:00
|
|
|
} else {
|
2018-09-19 23:21:07 +09:00
|
|
|
match context.config.indent_style() {
|
|
|
|
IndentStyle::Block => shape
|
|
|
|
.offset_left(offset)
|
|
|
|
.and_then(|shape| shape.sub_width(1)),
|
|
|
|
IndentStyle::Visual => shape.visual_indent(offset).sub_width(offset + 1),
|
|
|
|
}
|
2017-07-10 14:23:29 +09:00
|
|
|
};
|
|
|
|
let orig_index_rw = index_shape.and_then(|s| index.rewrite(context, s));
|
2017-06-26 07:57:06 +09:00
|
|
|
|
2017-07-10 14:23:29 +09:00
|
|
|
// Return if index fits in a single line.
|
2017-06-26 07:57:06 +09:00
|
|
|
match orig_index_rw {
|
|
|
|
Some(ref index_str) if !index_str.contains('\n') => {
|
2018-05-18 16:35:09 +12:00
|
|
|
return Some(format!("{}[{}]", expr_str, index_str));
|
2017-05-25 23:01:41 +09:00
|
|
|
}
|
2017-06-26 07:57:06 +09:00
|
|
|
_ => (),
|
2017-01-11 12:06:23 +13:00
|
|
|
}
|
|
|
|
|
2017-06-26 07:57:06 +09:00
|
|
|
// Try putting index on the next line and see if it fits in a single line.
|
2017-07-10 02:16:57 +09:00
|
|
|
let indent = shape.indent.block_indent(context.config);
|
2018-05-18 16:35:09 +12:00
|
|
|
let index_shape = Shape::indented(indent, context.config).offset_left(1)?;
|
|
|
|
let index_shape = index_shape.sub_width(1 + rhs_overhead)?;
|
2017-06-26 07:57:06 +09:00
|
|
|
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!(
|
2018-05-18 16:35:09 +12:00
|
|
|
"{}{}[{}]",
|
2017-07-11 21:53:10 +09:00
|
|
|
expr_str,
|
2018-02-19 12:47:54 +09:00
|
|
|
indent.to_string_with_newline(context.config),
|
2017-07-11 21:53:10 +09:00
|
|
|
new_index_str,
|
|
|
|
)),
|
|
|
|
(None, Some(ref new_index_str)) => Some(format!(
|
2018-05-18 16:35:09 +12:00
|
|
|
"{}{}[{}]",
|
2017-07-11 21:53:10 +09:00
|
|
|
expr_str,
|
2018-02-19 12:47:54 +09:00
|
|
|
indent.to_string_with_newline(context.config),
|
2017-07-11 21:53:10 +09:00
|
|
|
new_index_str,
|
|
|
|
)),
|
2018-05-18 16:35:09 +12:00
|
|
|
(Some(ref index_str), _) => Some(format!("{}[{}]", expr_str, index_str)),
|
2017-06-26 07:57:06 +09:00
|
|
|
_ => None,
|
|
|
|
}
|
2017-01-11 12:06:23 +13:00
|
|
|
}
|
|
|
|
|
2021-03-27 12:19:05 -05:00
|
|
|
fn struct_lit_can_be_aligned(fields: &[ast::ExprField], has_base: bool) -> bool {
|
2020-11-27 21:09:33 -06:00
|
|
|
!has_base && fields.iter().all(|field| !field.is_shorthand)
|
2017-07-03 18:54:41 +09:00
|
|
|
}
|
|
|
|
|
2017-06-12 15:58:58 +12:00
|
|
|
fn rewrite_struct_lit<'a>(
|
2019-02-09 16:14:30 +09:00
|
|
|
context: &RewriteContext<'_>,
|
2017-06-12 15:58:58 +12:00
|
|
|
path: &ast::Path,
|
2022-09-08 10:52:51 +10:00
|
|
|
qself: &Option<ptr::P<ast::QSelf>>,
|
2021-03-27 12:19:05 -05:00
|
|
|
fields: &'a [ast::ExprField],
|
2020-11-27 21:09:33 -06:00
|
|
|
struct_rest: &ast::StructRest,
|
2019-05-30 07:31:48 +09:00
|
|
|
attrs: &[ast::Attribute],
|
2017-06-12 15:58:58 +12:00
|
|
|
span: Span,
|
|
|
|
shape: Shape,
|
|
|
|
) -> Option<String> {
|
2017-01-31 08:28:48 +13:00
|
|
|
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> {
|
2021-03-27 12:19:05 -05:00
|
|
|
Regular(&'a ast::ExprField),
|
2015-07-03 11:13:28 +02:00
|
|
|
Base(&'a ast::Expr),
|
2022-02-23 08:11:17 -05:00
|
|
|
Rest(Span),
|
2015-06-24 01:11:29 +02:00
|
|
|
}
|
|
|
|
|
2015-08-14 14:09:19 +02:00
|
|
|
// 2 = " {".len()
|
2017-10-05 20:50:19 +09:00
|
|
|
let path_shape = shape.sub_width(2)?;
|
2021-12-29 20:49:39 -06:00
|
|
|
let path_str = rewrite_path(context, PathContext::Expr, qself, path, path_shape)?;
|
2015-08-14 14:09:19 +02:00
|
|
|
|
2021-10-20 00:11:59 -05:00
|
|
|
let has_base_or_rest = match struct_rest {
|
2020-11-27 21:09:33 -06:00
|
|
|
ast::StructRest::None if fields.is_empty() => return Some(format!("{} {{}}", path_str)),
|
|
|
|
ast::StructRest::Rest(_) if fields.is_empty() => {
|
|
|
|
return Some(format!("{} {{ .. }}", path_str));
|
|
|
|
}
|
2021-10-20 00:11:59 -05:00
|
|
|
ast::StructRest::Rest(_) | ast::StructRest::Base(_) => true,
|
2020-11-27 21:09:33 -06:00
|
|
|
_ => false,
|
|
|
|
};
|
2015-05-25 19:11:53 +12:00
|
|
|
|
2017-03-21 11:23:59 +13:00
|
|
|
// Foo { a: Foo } - indent is +3, width is -5.
|
2017-10-05 20:50:19 +09:00
|
|
|
let (h_shape, v_shape) = struct_lit_shape(shape, context, path_str.len() + 3, 2)?;
|
2017-03-21 11:23:59 +13:00
|
|
|
|
2017-07-03 18:54:41 +09:00
|
|
|
let one_line_width = h_shape.map_or(0, |shape| shape.width);
|
2018-02-19 12:41:43 +09:00
|
|
|
let body_lo = context.snippet_provider.span_after(span, "{");
|
2021-10-20 00:11:59 -05:00
|
|
|
let fields_str = if struct_lit_can_be_aligned(fields, has_base_or_rest)
|
2017-09-15 12:10:58 +09:00
|
|
|
&& context.config.struct_field_align_threshold() > 0
|
2017-07-03 18:54:41 +09:00
|
|
|
{
|
2017-10-05 20:50:19 +09:00
|
|
|
rewrite_with_alignment(
|
2017-07-03 18:54:41 +09:00
|
|
|
fields,
|
|
|
|
context,
|
2018-11-04 10:51:38 +01:00
|
|
|
v_shape,
|
2017-08-19 21:47:40 +03:00
|
|
|
mk_sp(body_lo, span.hi()),
|
2017-07-03 18:54:41 +09:00
|
|
|
one_line_width,
|
2017-10-05 20:50:19 +09:00
|
|
|
)?
|
2017-07-03 18:54:41 +09:00
|
|
|
} else {
|
2020-11-27 21:09:33 -06:00
|
|
|
let field_iter = fields.iter().map(StructLitField::Regular).chain(
|
|
|
|
match struct_rest {
|
|
|
|
ast::StructRest::Base(expr) => Some(StructLitField::Base(&**expr)),
|
2022-02-23 08:11:17 -05:00
|
|
|
ast::StructRest::Rest(span) => Some(StructLitField::Rest(*span)),
|
2020-11-27 21:09:33 -06:00
|
|
|
ast::StructRest::None => None,
|
|
|
|
}
|
|
|
|
.into_iter(),
|
|
|
|
);
|
2017-07-03 18:54:41 +09:00
|
|
|
|
2019-02-09 16:14:30 +09:00
|
|
|
let span_lo = |item: &StructLitField<'_>| match *item {
|
2017-08-19 21:47:40 +03:00
|
|
|
StructLitField::Regular(field) => field.span().lo(),
|
2017-07-03 18:54:41 +09:00
|
|
|
StructLitField::Base(expr) => {
|
2017-08-19 21:47:40 +03:00
|
|
|
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()));
|
2017-07-03 18:54:41 +09:00
|
|
|
let pos = snippet.find_uncommented("..").unwrap();
|
|
|
|
last_field_hi + BytePos(pos as u32)
|
|
|
|
}
|
2020-11-27 21:09:33 -06:00
|
|
|
StructLitField::Rest(span) => span.lo(),
|
2017-07-03 18:54:41 +09:00
|
|
|
};
|
2019-02-09 16:14:30 +09:00
|
|
|
let span_hi = |item: &StructLitField<'_>| match *item {
|
2017-08-19 21:47:40 +03:00
|
|
|
StructLitField::Regular(field) => field.span().hi(),
|
|
|
|
StructLitField::Base(expr) => expr.span.hi(),
|
2020-11-27 21:09:33 -06:00
|
|
|
StructLitField::Rest(span) => span.hi(),
|
2017-07-03 18:54:41 +09:00
|
|
|
};
|
2019-02-09 16:14:30 +09:00
|
|
|
let rewrite = |item: &StructLitField<'_>| match *item {
|
2017-07-03 18:54:41 +09:00
|
|
|
StructLitField::Regular(field) => {
|
|
|
|
// The 1 taken from the v_budget is for the comma.
|
2017-10-05 20:50:19 +09:00
|
|
|
rewrite_field(context, field, v_shape.sub_width(1)?, 0)
|
2017-07-03 18:54:41 +09:00
|
|
|
}
|
|
|
|
StructLitField::Base(expr) => {
|
|
|
|
// 2 = ..
|
2017-10-05 20:50:19 +09:00
|
|
|
expr.rewrite(context, v_shape.offset_left(2)?)
|
2017-07-03 18:54:41 +09:00
|
|
|
.map(|s| format!("..{}", s))
|
|
|
|
}
|
2020-11-27 21:09:33 -06:00
|
|
|
StructLitField::Rest(_) => Some("..".to_owned()),
|
2017-07-03 18:54:41 +09:00
|
|
|
};
|
|
|
|
|
|
|
|
let items = itemize_list(
|
2018-02-19 12:41:43 +09:00
|
|
|
context.snippet_provider,
|
2017-07-03 18:54:41 +09:00
|
|
|
field_iter,
|
|
|
|
"}",
|
2017-11-16 17:38:12 +09:00
|
|
|
",",
|
2017-07-03 18:54:41 +09:00
|
|
|
span_lo,
|
|
|
|
span_hi,
|
|
|
|
rewrite,
|
|
|
|
body_lo,
|
2017-08-19 21:47:40 +03:00
|
|
|
span.hi(),
|
2017-08-07 17:29:55 +09:00
|
|
|
false,
|
2017-07-03 18:54:41 +09:00
|
|
|
);
|
|
|
|
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);
|
2018-03-08 17:05:39 +08:00
|
|
|
|
|
|
|
let ends_with_comma = span_ends_with_comma(context, span);
|
2018-04-25 07:21:23 +09:00
|
|
|
let force_no_trailing_comma = context.inside_macro() && !ends_with_comma;
|
2018-03-08 17:05:39 +08:00
|
|
|
|
|
|
|
let fmt = struct_lit_formatting(
|
|
|
|
nested_shape,
|
|
|
|
tactic,
|
|
|
|
context,
|
2021-10-20 00:11:59 -05:00
|
|
|
force_no_trailing_comma || has_base_or_rest || !context.use_block_indent(),
|
2018-03-08 17:05:39 +08:00
|
|
|
);
|
2017-07-03 18:54:41 +09:00
|
|
|
|
2017-10-05 20:50:19 +09:00
|
|
|
write_list(&item_vec, &fmt)?
|
2017-03-21 11:23:59 +13:00
|
|
|
};
|
|
|
|
|
2019-05-30 07:31:48 +09:00
|
|
|
let fields_str =
|
2021-11-07 20:37:34 -06:00
|
|
|
wrap_struct_field(context, attrs, &fields_str, shape, v_shape, one_line_width)?;
|
2017-07-03 18:53:47 +09:00
|
|
|
Some(format!("{} {{{}}}", path_str, fields_str))
|
2015-10-02 13:50:24 +02:00
|
|
|
|
2017-11-13 16:42:29 +09:00
|
|
|
// FIXME if context.config.indent_style() == Visual, but we run out
|
2017-07-03 18:53:47 +09:00
|
|
|
// of space, we should fall back to BlockIndent.
|
|
|
|
}
|
2015-06-24 01:11:29 +02:00
|
|
|
|
2019-05-09 20:37:51 +02:00
|
|
|
pub(crate) fn wrap_struct_field(
|
2019-02-09 16:14:30 +09:00
|
|
|
context: &RewriteContext<'_>,
|
2019-05-30 07:31:48 +09:00
|
|
|
attrs: &[ast::Attribute],
|
2017-07-03 18:53:47 +09:00
|
|
|
fields_str: &str,
|
|
|
|
shape: Shape,
|
|
|
|
nested_shape: Shape,
|
|
|
|
one_line_width: usize,
|
2019-05-30 07:31:48 +09:00
|
|
|
) -> Option<String> {
|
|
|
|
let should_vertical = context.config.indent_style() == IndentStyle::Block
|
2018-05-06 15:22:29 +09:00
|
|
|
&& (fields_str.contains('\n')
|
|
|
|
|| !context.config.struct_lit_single_line()
|
2019-05-30 07:31:48 +09:00
|
|
|
|| fields_str.len() > one_line_width);
|
|
|
|
|
|
|
|
let inner_attrs = &inner_attributes(attrs);
|
|
|
|
if inner_attrs.is_empty() {
|
|
|
|
if should_vertical {
|
|
|
|
Some(format!(
|
|
|
|
"{}{}{}",
|
|
|
|
nested_shape.indent.to_string_with_newline(context.config),
|
|
|
|
fields_str,
|
|
|
|
shape.indent.to_string_with_newline(context.config)
|
|
|
|
))
|
|
|
|
} else {
|
|
|
|
// One liner or visual indent.
|
|
|
|
Some(format!(" {} ", fields_str))
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Some(format!(
|
|
|
|
"{}{}{}{}{}",
|
|
|
|
nested_shape.indent.to_string_with_newline(context.config),
|
|
|
|
inner_attrs.rewrite(context, shape)?,
|
2018-02-19 12:47:54 +09:00
|
|
|
nested_shape.indent.to_string_with_newline(context.config),
|
2017-06-12 15:58:58 +12:00
|
|
|
fields_str,
|
2018-02-19 12:47:54 +09:00
|
|
|
shape.indent.to_string_with_newline(context.config)
|
2019-05-30 07:31:48 +09:00
|
|
|
))
|
2017-07-03 18:53:47 +09:00
|
|
|
}
|
2015-06-16 17:29:05 +02:00
|
|
|
}
|
2017-06-11 23:26:49 +09:00
|
|
|
|
2019-05-09 20:37:51 +02:00
|
|
|
pub(crate) fn struct_lit_field_separator(config: &Config) -> &str {
|
2019-04-03 11:16:54 +02:00
|
|
|
colon_spaces(config)
|
2016-08-04 00:17:47 -04:00
|
|
|
}
|
|
|
|
|
2019-05-09 20:37:51 +02:00
|
|
|
pub(crate) fn rewrite_field(
|
2019-02-09 16:14:30 +09:00
|
|
|
context: &RewriteContext<'_>,
|
2021-03-27 12:19:05 -05:00
|
|
|
field: &ast::ExprField,
|
2017-07-03 18:54:41 +09:00
|
|
|
shape: Shape,
|
|
|
|
prefix_max_width: usize,
|
|
|
|
) -> Option<String> {
|
|
|
|
if contains_skip(&field.attrs) {
|
2017-12-08 13:07:42 +09:00
|
|
|
return Some(context.snippet(field.span()).to_owned());
|
2017-07-03 18:54:41 +09:00
|
|
|
}
|
2018-01-22 13:04:20 +09:00
|
|
|
let mut attrs_str = field.attrs.rewrite(context, shape)?;
|
|
|
|
if !attrs_str.is_empty() {
|
2018-02-19 12:47:54 +09:00
|
|
|
attrs_str.push_str(&shape.indent.to_string_with_newline(context.config));
|
2018-01-22 13:04:20 +09:00
|
|
|
};
|
2018-07-28 19:38:14 -07:00
|
|
|
let name = context.snippet(field.ident.span);
|
2017-02-13 03:16:11 +09:00
|
|
|
if field.is_shorthand {
|
2018-09-01 16:26:47 -04:00
|
|
|
Some(attrs_str + name)
|
2017-02-13 03:16:11 +09:00
|
|
|
} else {
|
2017-07-03 18:54:41 +09:00
|
|
|
let mut separator = String::from(struct_lit_field_separator(context.config));
|
2018-05-14 21:58:57 +09:00
|
|
|
for _ in 0..prefix_max_width.saturating_sub(name.len()) {
|
2017-07-03 18:54:41 +09:00
|
|
|
separator.push(' ');
|
|
|
|
}
|
2017-02-13 03:16:11 +09:00
|
|
|
let overhead = name.len() + separator.len();
|
2017-10-05 20:50:19 +09:00
|
|
|
let expr_shape = shape.offset_left(overhead)?;
|
2017-02-21 14:43:43 +13:00
|
|
|
let expr = field.expr.rewrite(context, expr_shape);
|
2022-08-28 00:36:16 +01:00
|
|
|
let is_lit = matches!(field.expr.kind, ast::ExprKind::Lit(_));
|
2017-02-13 03:16:11 +09:00
|
|
|
match expr {
|
2022-08-28 00:36:16 +01:00
|
|
|
Some(ref e)
|
|
|
|
if !is_lit && e.as_str() == name && context.config.use_field_init_shorthand() =>
|
|
|
|
{
|
2018-09-01 16:26:47 -04:00
|
|
|
Some(attrs_str + name)
|
2018-01-29 22:14:25 +09:00
|
|
|
}
|
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| {
|
2017-06-12 15:58:58 +12:00
|
|
|
format!(
|
|
|
|
"{}{}:\n{}{}",
|
|
|
|
attrs_str,
|
|
|
|
name,
|
2017-08-29 22:16:04 +09:00
|
|
|
expr_offset.to_string(context.config),
|
2017-06-12 15:58:58 +12:00
|
|
|
s
|
|
|
|
)
|
|
|
|
})
|
2017-02-13 03:16:11 +09:00
|
|
|
}
|
2016-01-14 20:26:15 +13:00
|
|
|
}
|
|
|
|
}
|
2015-06-16 17:29:05 +02:00
|
|
|
}
|
2015-05-25 19:11:53 +12:00
|
|
|
|
2018-09-30 00:26:36 +09:00
|
|
|
fn rewrite_tuple_in_visual_indent_style<'a, T: 'a + IntoOverflowableItem<'a>>(
|
2019-02-09 16:14:30 +09:00
|
|
|
context: &RewriteContext<'_>,
|
2018-09-29 14:33:00 +09:00
|
|
|
mut items: impl Iterator<Item = &'a T>,
|
2017-06-12 15:58:58 +12:00
|
|
|
span: Span,
|
|
|
|
shape: Shape,
|
2018-09-29 14:33:00 +09:00
|
|
|
is_singleton_tuple: bool,
|
2018-09-30 00:26:36 +09:00
|
|
|
) -> Option<String> {
|
2015-07-15 00:38:54 +02:00
|
|
|
// In case of length 1, need a trailing comma
|
2017-06-14 09:29:39 +09:00
|
|
|
debug!("rewrite_tuple_in_visual_indent_style {:?}", shape);
|
2018-09-29 14:33:00 +09:00
|
|
|
if is_singleton_tuple {
|
2015-07-15 00:38:54 +02:00
|
|
|
// 3 = "(" + ",)"
|
2017-10-05 20:50:19 +09:00
|
|
|
let nested_shape = shape.sub_width(3)?.visual_indent(1);
|
2017-11-02 21:45:00 +09:00
|
|
|
return items
|
|
|
|
.next()
|
|
|
|
.unwrap()
|
|
|
|
.rewrite(context, nested_shape)
|
2018-05-18 16:35:09 +12:00
|
|
|
.map(|s| format!("({},)", s));
|
2015-07-15 00:38:54 +02:00
|
|
|
}
|
2015-06-23 15:58:58 +02:00
|
|
|
|
2018-02-19 12:41:43 +09:00
|
|
|
let list_lo = context.snippet_provider.span_after(span, "(");
|
2017-10-05 20:50:19 +09:00
|
|
|
let nested_shape = shape.sub_width(2)?.visual_indent(1);
|
2017-06-12 15:58:58 +12:00
|
|
|
let items = itemize_list(
|
2018-02-19 12:41:43 +09:00
|
|
|
context.snippet_provider,
|
2017-06-12 15:58:58 +12:00
|
|
|
items,
|
|
|
|
")",
|
2017-11-16 17:38:12 +09:00
|
|
|
",",
|
2017-08-19 21:47:40 +03:00
|
|
|
|item| item.span().lo(),
|
|
|
|
|item| item.span().hi(),
|
2017-06-12 15:58:58 +12:00
|
|
|
|item| item.rewrite(context, nested_shape),
|
|
|
|
list_lo,
|
2017-08-19 21:47:40 +03:00
|
|
|
span.hi() - BytePos(1),
|
2017-08-07 17:29:55 +09:00
|
|
|
false,
|
2017-06-12 15:58:58 +12:00
|
|
|
);
|
2017-06-24 19:46:36 +09:00
|
|
|
let item_vec: Vec<_> = items.collect();
|
|
|
|
let tactic = definitive_tactic(
|
|
|
|
&item_vec,
|
|
|
|
ListTactic::HorizontalVertical,
|
2017-07-31 16:23:42 +09:00
|
|
|
Separator::Comma,
|
2017-06-24 19:46:36 +09:00
|
|
|
nested_shape.width,
|
|
|
|
);
|
2018-08-31 15:50:41 +03:00
|
|
|
let fmt = ListFormatting::new(nested_shape, context.config)
|
2018-08-03 22:13:20 +09:00
|
|
|
.tactic(tactic)
|
|
|
|
.ends_with_newline(false);
|
2017-10-05 20:50:19 +09:00
|
|
|
let list_str = write_list(&item_vec, &fmt)?;
|
2015-06-23 15:58:58 +02:00
|
|
|
|
2018-05-18 16:35:09 +12:00
|
|
|
Some(format!("({})", list_str))
|
2015-06-23 15:58:58 +02:00
|
|
|
}
|
2015-07-02 22:40:20 +02:00
|
|
|
|
2019-05-09 20:37:51 +02:00
|
|
|
pub(crate) fn rewrite_tuple<'a, T: 'a + IntoOverflowableItem<'a>>(
|
2019-02-09 16:14:30 +09:00
|
|
|
context: &'a RewriteContext<'_>,
|
2018-09-29 14:33:00 +09:00
|
|
|
items: impl Iterator<Item = &'a T>,
|
2017-06-12 15:58:58 +12:00
|
|
|
span: Span,
|
|
|
|
shape: Shape,
|
2018-09-29 14:33:00 +09:00
|
|
|
is_singleton_tuple: bool,
|
2018-09-30 00:26:36 +09:00
|
|
|
) -> Option<String> {
|
2017-05-23 11:20:29 +09:00
|
|
|
debug!("rewrite_tuple {:?}", shape);
|
2017-06-14 09:29:39 +09:00
|
|
|
if context.use_block_indent() {
|
2017-08-18 17:10:50 -07:00
|
|
|
// We use the same rule as function calls for rewriting tuples.
|
2018-03-25 20:20:50 +09:00
|
|
|
let force_tactic = if context.inside_macro() {
|
2018-03-07 19:29:42 +09:00
|
|
|
if span_ends_with_comma(context, span) {
|
|
|
|
Some(SeparatorTactic::Always)
|
|
|
|
} else {
|
|
|
|
Some(SeparatorTactic::Never)
|
|
|
|
}
|
2018-09-29 14:33:00 +09:00
|
|
|
} else if is_singleton_tuple {
|
2018-04-25 07:21:23 +09:00
|
|
|
Some(SeparatorTactic::Always)
|
2017-06-23 13:40:30 +09:00
|
|
|
} else {
|
2018-04-25 07:21:23 +09:00
|
|
|
None
|
2017-06-23 13:40:30 +09:00
|
|
|
};
|
2018-03-07 15:40:52 +09:00
|
|
|
overflow::rewrite_with_parens(
|
2017-06-14 09:29:39 +09:00
|
|
|
context,
|
2018-03-07 15:40:52 +09:00
|
|
|
"",
|
2017-06-14 09:29:39 +09:00
|
|
|
items,
|
|
|
|
shape,
|
2018-03-07 15:40:52 +09:00
|
|
|
span,
|
2020-02-22 22:07:50 -06:00
|
|
|
context.config.fn_call_width(),
|
2018-03-07 19:29:42 +09:00
|
|
|
force_tactic,
|
2017-09-28 16:33:30 +09:00
|
|
|
)
|
2017-06-14 09:29:39 +09:00
|
|
|
} else {
|
2018-09-29 14:33:00 +09:00
|
|
|
rewrite_tuple_in_visual_indent_style(context, items, span, shape, is_singleton_tuple)
|
2017-05-23 11:20:29 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-09 20:37:51 +02:00
|
|
|
pub(crate) fn rewrite_unary_prefix<R: Rewrite>(
|
2019-02-09 16:14:30 +09:00
|
|
|
context: &RewriteContext<'_>,
|
2017-06-12 15:58:58 +12:00
|
|
|
prefix: &str,
|
|
|
|
rewrite: &R,
|
|
|
|
shape: Shape,
|
|
|
|
) -> Option<String> {
|
2017-03-28 11:14:47 +13:00
|
|
|
rewrite
|
2017-10-05 20:50:19 +09:00
|
|
|
.rewrite(context, shape.offset_left(prefix.len())?)
|
2017-03-28 11:14:47 +13:00
|
|
|
.map(|r| format!("{}{}", prefix, r))
|
2015-09-23 22:51:37 -07:00
|
|
|
}
|
|
|
|
|
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!
|
2019-05-09 20:37:51 +02:00
|
|
|
pub(crate) fn rewrite_unary_suffix<R: Rewrite>(
|
2019-02-09 16:14:30 +09:00
|
|
|
context: &RewriteContext<'_>,
|
2017-06-12 15:58:58 +12:00
|
|
|
suffix: &str,
|
|
|
|
rewrite: &R,
|
|
|
|
shape: Shape,
|
|
|
|
) -> Option<String> {
|
2017-03-28 11:14:47 +13:00
|
|
|
rewrite
|
2017-10-05 20:50:19 +09:00
|
|
|
.rewrite(context, shape.sub_width(suffix.len())?)
|
2017-03-28 11:14:47 +13:00
|
|
|
.map(|mut r| {
|
2017-06-12 15:58:58 +12:00
|
|
|
r.push_str(suffix);
|
|
|
|
r
|
|
|
|
})
|
2016-05-09 20:07:59 +02:00
|
|
|
}
|
|
|
|
|
2017-06-12 15:58:58 +12:00
|
|
|
fn rewrite_unary_op(
|
2019-02-09 16:14:30 +09:00
|
|
|
context: &RewriteContext<'_>,
|
2018-09-01 16:26:47 -04:00
|
|
|
op: ast::UnOp,
|
2017-06-12 15:58:58 +12:00
|
|
|
expr: &ast::Expr,
|
|
|
|
shape: Shape,
|
|
|
|
) -> Option<String> {
|
2015-07-02 22:40:20 +02:00
|
|
|
// For some reason, an UnOp is not spanned like BinOp!
|
2018-10-09 21:47:00 +09:00
|
|
|
rewrite_unary_prefix(context, ast::UnOp::to_string(op), expr, shape)
|
2015-07-02 22:40:20 +02:00
|
|
|
}
|
2015-08-21 13:31:09 +02:00
|
|
|
|
2021-12-02 21:35:30 -06:00
|
|
|
pub(crate) enum RhsAssignKind<'ast> {
|
|
|
|
Expr(&'ast ast::ExprKind, Span),
|
|
|
|
Bounds,
|
|
|
|
Ty,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'ast> RhsAssignKind<'ast> {
|
|
|
|
// TODO(calebcartwright)
|
|
|
|
// Preemptive addition for handling RHS with chains, not yet utilized.
|
|
|
|
// It may make more sense to construct the chain first and then check
|
|
|
|
// whether there are actually chain elements.
|
|
|
|
#[allow(dead_code)]
|
|
|
|
fn is_chain(&self) -> bool {
|
|
|
|
match self {
|
|
|
|
RhsAssignKind::Expr(kind, _) => {
|
|
|
|
matches!(
|
|
|
|
kind,
|
|
|
|
ast::ExprKind::Try(..)
|
|
|
|
| ast::ExprKind::Field(..)
|
|
|
|
| ast::ExprKind::MethodCall(..)
|
|
|
|
| ast::ExprKind::Await(_)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-12 15:58:58 +12:00
|
|
|
fn rewrite_assignment(
|
2019-02-09 16:14:30 +09:00
|
|
|
context: &RewriteContext<'_>,
|
2017-06-12 15:58:58 +12:00
|
|
|
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),
|
2017-12-06 22:52:43 +09:00
|
|
|
None => "=",
|
2015-08-21 13:31:09 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
// 1 = space between lhs and operator.
|
2017-10-05 20:50:19 +09:00
|
|
|
let lhs_shape = shape.sub_width(operator_str.len() + 1)?;
|
|
|
|
let lhs_str = format!("{} {}", lhs.rewrite(context, lhs_shape)?, operator_str);
|
2015-08-21 13:31:09 +02:00
|
|
|
|
2021-12-02 21:35:30 -06:00
|
|
|
rewrite_assign_rhs(
|
|
|
|
context,
|
|
|
|
lhs_str,
|
|
|
|
rhs,
|
|
|
|
&RhsAssignKind::Expr(&rhs.kind, rhs.span),
|
|
|
|
shape,
|
|
|
|
)
|
2015-08-21 13:31:09 +02:00
|
|
|
}
|
|
|
|
|
2018-03-10 14:35:53 +09:00
|
|
|
/// Controls where to put the rhs.
|
|
|
|
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
|
2019-05-09 20:37:51 +02:00
|
|
|
pub(crate) enum RhsTactics {
|
2018-03-10 14:35:53 +09:00
|
|
|
/// Use heuristics.
|
|
|
|
Default,
|
2018-06-25 15:24:00 +09:00
|
|
|
/// Put the rhs on the next line if it uses multiple line, without extra indentation.
|
|
|
|
ForceNextLineWithoutIndent,
|
2019-05-22 10:51:19 +09:00
|
|
|
/// Allow overflowing max width if neither `Default` nor `ForceNextLineWithoutIndent`
|
|
|
|
/// did not work.
|
|
|
|
AllowOverflow,
|
2018-03-10 14:35:53 +09:00
|
|
|
}
|
|
|
|
|
2015-08-21 13:31:09 +02:00
|
|
|
// The left hand side must contain everything up to, and including, the
|
|
|
|
// assignment operator.
|
2019-05-09 20:37:51 +02:00
|
|
|
pub(crate) fn rewrite_assign_rhs<S: Into<String>, R: Rewrite>(
|
2019-02-09 16:14:30 +09:00
|
|
|
context: &RewriteContext<'_>,
|
2017-06-12 15:58:58 +12:00
|
|
|
lhs: S,
|
2017-11-16 11:26:36 +09:00
|
|
|
ex: &R,
|
2021-12-02 21:35:30 -06:00
|
|
|
rhs_kind: &RhsAssignKind<'_>,
|
2017-06-12 15:58:58 +12:00
|
|
|
shape: Shape,
|
2018-03-10 14:35:53 +09:00
|
|
|
) -> Option<String> {
|
2021-12-02 21:35:30 -06:00
|
|
|
rewrite_assign_rhs_with(context, lhs, ex, shape, rhs_kind, RhsTactics::Default)
|
2018-03-10 14:35:53 +09:00
|
|
|
}
|
|
|
|
|
2021-01-08 15:56:05 +02:00
|
|
|
pub(crate) fn rewrite_assign_rhs_expr<R: Rewrite>(
|
2019-02-09 16:14:30 +09:00
|
|
|
context: &RewriteContext<'_>,
|
2021-01-08 15:56:05 +02:00
|
|
|
lhs: &str,
|
2018-03-10 14:35:53 +09:00
|
|
|
ex: &R,
|
|
|
|
shape: Shape,
|
2021-12-02 21:35:30 -06:00
|
|
|
rhs_kind: &RhsAssignKind<'_>,
|
2018-03-10 14:35:53 +09:00
|
|
|
rhs_tactics: RhsTactics,
|
2017-06-12 15:58:58 +12:00
|
|
|
) -> Option<String> {
|
2021-11-07 20:37:34 -06:00
|
|
|
let last_line_width = last_line_width(lhs).saturating_sub(if lhs.contains('\n') {
|
2018-05-14 21:58:57 +09:00
|
|
|
shape.indent.width()
|
|
|
|
} else {
|
|
|
|
0
|
|
|
|
});
|
2015-08-21 13:31:09 +02:00
|
|
|
// 1 = space between operator and rhs.
|
2017-11-21 08:52:11 +09:00
|
|
|
let orig_shape = shape.offset_left(last_line_width + 1).unwrap_or(Shape {
|
|
|
|
width: 0,
|
|
|
|
offset: shape.offset + last_line_width + 1,
|
|
|
|
..shape
|
|
|
|
});
|
2021-01-08 15:56:05 +02:00
|
|
|
let has_rhs_comment = if let Some(offset) = lhs.find_last_uncommented("=") {
|
|
|
|
lhs.trim_end().len() > offset + 1
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
};
|
|
|
|
|
|
|
|
choose_rhs(
|
2018-03-10 14:35:53 +09:00
|
|
|
context,
|
|
|
|
ex,
|
|
|
|
orig_shape,
|
|
|
|
ex.rewrite(context, orig_shape),
|
2021-12-02 21:35:30 -06:00
|
|
|
rhs_kind,
|
2018-03-10 14:35:53 +09:00
|
|
|
rhs_tactics,
|
2021-01-08 15:56:05 +02:00
|
|
|
has_rhs_comment,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn rewrite_assign_rhs_with<S: Into<String>, R: Rewrite>(
|
|
|
|
context: &RewriteContext<'_>,
|
|
|
|
lhs: S,
|
|
|
|
ex: &R,
|
|
|
|
shape: Shape,
|
2021-12-02 21:35:30 -06:00
|
|
|
rhs_kind: &RhsAssignKind<'_>,
|
2021-01-08 15:56:05 +02:00
|
|
|
rhs_tactics: RhsTactics,
|
|
|
|
) -> Option<String> {
|
|
|
|
let lhs = lhs.into();
|
2021-12-02 21:35:30 -06:00
|
|
|
let rhs = rewrite_assign_rhs_expr(context, &lhs, ex, shape, rhs_kind, rhs_tactics)?;
|
2017-07-10 02:22:59 +09:00
|
|
|
Some(lhs + &rhs)
|
|
|
|
}
|
2015-08-21 13:31:09 +02:00
|
|
|
|
2021-01-08 15:56:05 +02:00
|
|
|
pub(crate) fn rewrite_assign_rhs_with_comments<S: Into<String>, R: Rewrite>(
|
|
|
|
context: &RewriteContext<'_>,
|
|
|
|
lhs: S,
|
|
|
|
ex: &R,
|
|
|
|
shape: Shape,
|
2021-12-02 21:35:30 -06:00
|
|
|
rhs_kind: &RhsAssignKind<'_>,
|
2021-01-08 15:56:05 +02:00
|
|
|
rhs_tactics: RhsTactics,
|
|
|
|
between_span: Span,
|
|
|
|
allow_extend: bool,
|
|
|
|
) -> Option<String> {
|
|
|
|
let lhs = lhs.into();
|
|
|
|
let contains_comment = contains_comment(context.snippet(between_span));
|
|
|
|
let shape = if contains_comment {
|
|
|
|
shape.block_left(context.config.tab_spaces())?
|
|
|
|
} else {
|
|
|
|
shape
|
|
|
|
};
|
2021-12-02 21:35:30 -06:00
|
|
|
let rhs = rewrite_assign_rhs_expr(context, &lhs, ex, shape, rhs_kind, rhs_tactics)?;
|
2021-01-08 15:56:05 +02:00
|
|
|
|
|
|
|
if contains_comment {
|
|
|
|
let rhs = rhs.trim_start();
|
2021-11-07 20:37:34 -06:00
|
|
|
combine_strs_with_missing_comments(context, &lhs, rhs, between_span, shape, allow_extend)
|
2021-01-08 15:56:05 +02:00
|
|
|
} else {
|
|
|
|
Some(lhs + &rhs)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-10 14:35:53 +09:00
|
|
|
fn choose_rhs<R: Rewrite>(
|
2019-02-09 16:14:30 +09:00
|
|
|
context: &RewriteContext<'_>,
|
2017-11-16 11:26:36 +09:00
|
|
|
expr: &R,
|
2017-07-10 02:22:59 +09:00
|
|
|
shape: Shape,
|
|
|
|
orig_rhs: Option<String>,
|
2021-12-02 21:35:30 -06:00
|
|
|
_rhs_kind: &RhsAssignKind<'_>,
|
2018-03-10 14:35:53 +09:00
|
|
|
rhs_tactics: RhsTactics,
|
2021-01-08 15:56:05 +02:00
|
|
|
has_rhs_comment: bool,
|
2017-07-10 02:22:59 +09:00
|
|
|
) -> Option<String> {
|
|
|
|
match orig_rhs {
|
2021-12-29 20:49:39 -06:00
|
|
|
Some(ref new_str) if new_str.is_empty() => Some(String::new()),
|
2019-06-12 13:28:29 +02:00
|
|
|
Some(ref new_str)
|
|
|
|
if !new_str.contains('\n') && unicode_str_width(new_str) <= shape.width =>
|
|
|
|
{
|
2017-10-01 21:20:15 +09:00
|
|
|
Some(format!(" {}", new_str))
|
|
|
|
}
|
2016-05-09 20:11:25 +02:00
|
|
|
_ => {
|
2017-07-05 18:30:11 +09:00
|
|
|
// Expression did not fit on the same line as the identifier.
|
|
|
|
// Try splitting the line and see if that works better.
|
2018-06-25 15:24:00 +09:00
|
|
|
let new_shape = shape_from_rhs_tactic(context, shape, rhs_tactics)?;
|
2017-07-10 02:22:59 +09:00
|
|
|
let new_rhs = expr.rewrite(context, new_shape);
|
2018-06-25 15:24:00 +09:00
|
|
|
let new_indent_str = &shape
|
|
|
|
.indent
|
|
|
|
.block_indent(context.config)
|
|
|
|
.to_string_with_newline(context.config);
|
2021-01-08 15:56:05 +02:00
|
|
|
let before_space_str = if has_rhs_comment { "" } else { " " };
|
2017-07-10 02:22:59 +09:00
|
|
|
|
|
|
|
match (orig_rhs, new_rhs) {
|
2017-11-24 12:05:02 +09:00
|
|
|
(Some(ref orig_rhs), Some(ref new_rhs))
|
2022-07-03 22:09:42 -05:00
|
|
|
if !filtered_str_fits(&new_rhs, context.config.max_width(), new_shape) =>
|
2017-11-24 12:05:02 +09:00
|
|
|
{
|
2021-01-08 15:56:05 +02:00
|
|
|
Some(format!("{}{}", before_space_str, orig_rhs))
|
2017-11-24 12:05:02 +09:00
|
|
|
}
|
2018-03-10 14:35:53 +09:00
|
|
|
(Some(ref orig_rhs), Some(ref new_rhs))
|
|
|
|
if prefer_next_line(orig_rhs, new_rhs, rhs_tactics) =>
|
|
|
|
{
|
2018-02-19 12:47:54 +09:00
|
|
|
Some(format!("{}{}", new_indent_str, new_rhs))
|
2016-05-09 20:11:25 +02:00
|
|
|
}
|
2018-02-19 12:47:54 +09:00
|
|
|
(None, Some(ref new_rhs)) => Some(format!("{}{}", new_indent_str, new_rhs)),
|
2019-05-22 10:51:19 +09:00
|
|
|
(None, None) if rhs_tactics == RhsTactics::AllowOverflow => {
|
|
|
|
let shape = shape.infinite_width();
|
2021-01-08 15:56:05 +02:00
|
|
|
expr.rewrite(context, shape)
|
|
|
|
.map(|s| format!("{}{}", before_space_str, s))
|
2019-05-22 10:51:19 +09:00
|
|
|
}
|
2017-07-10 02:22:59 +09:00
|
|
|
(None, None) => None,
|
2021-01-08 15:56:05 +02:00
|
|
|
(Some(orig_rhs), _) => Some(format!("{}{}", before_space_str, orig_rhs)),
|
2016-05-09 20:11:25 +02:00
|
|
|
}
|
2015-08-21 13:31:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-09-24 01:13:57 -07:00
|
|
|
|
2018-06-25 15:24:00 +09:00
|
|
|
fn shape_from_rhs_tactic(
|
2019-02-09 16:14:30 +09:00
|
|
|
context: &RewriteContext<'_>,
|
2018-06-25 15:24:00 +09:00
|
|
|
shape: Shape,
|
|
|
|
rhs_tactic: RhsTactics,
|
|
|
|
) -> Option<Shape> {
|
|
|
|
match rhs_tactic {
|
2018-10-14 21:44:56 +09:00
|
|
|
RhsTactics::ForceNextLineWithoutIndent => shape
|
|
|
|
.with_max_width(context.config)
|
|
|
|
.sub_width(shape.indent.width()),
|
2019-05-22 10:51:19 +09:00
|
|
|
RhsTactics::Default | RhsTactics::AllowOverflow => {
|
2018-06-25 15:24:00 +09:00
|
|
|
Shape::indented(shape.indent.block_indent(context.config), context.config)
|
|
|
|
.sub_width(shape.rhs_overhead(context.config))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-17 01:53:17 +02:00
|
|
|
/// Returns true if formatting next_line_rhs is better on a new line when compared to the
|
|
|
|
/// original's line formatting.
|
|
|
|
///
|
|
|
|
/// It is considered better if:
|
|
|
|
/// 1. the tactic is ForceNextLineWithoutIndent
|
|
|
|
/// 2. next_line_rhs doesn't have newlines
|
|
|
|
/// 3. the original line has more newlines than next_line_rhs
|
|
|
|
/// 4. the original formatting of the first line ends with `(`, `{`, or `[` and next_line_rhs
|
|
|
|
/// doesn't
|
2019-05-09 20:37:51 +02:00
|
|
|
pub(crate) fn prefer_next_line(
|
|
|
|
orig_rhs: &str,
|
|
|
|
next_line_rhs: &str,
|
|
|
|
rhs_tactics: RhsTactics,
|
|
|
|
) -> bool {
|
2018-06-25 15:24:00 +09:00
|
|
|
rhs_tactics == RhsTactics::ForceNextLineWithoutIndent
|
2018-05-06 15:22:29 +09:00
|
|
|
|| !next_line_rhs.contains('\n')
|
2018-03-10 14:35:53 +09:00
|
|
|
|| count_newlines(orig_rhs) > count_newlines(next_line_rhs) + 1
|
chains: prefer to use the next line for an expression, if using the same line would introduce an open block or similar
This problem came to light due to the chains changes, but effects other code too. It only happens rarely, e.g.,
before this fix:
```
match foo {
MacroArgKind::Delimited(ref delim_tok, ref args) => rewrite_delimited_inner(
delim_tok,
args,
).map(|(lhs, inner, rhs)| format!("{}{}{}", lhs, inner, rhs)),
};
```
after:
```
match foo {
MacroArgKind::Delimited(ref delim_tok, ref args) => {
rewrite_delimited_inner(delim_tok, args)
.map(|(lhs, inner, rhs)| format!("{}{}{}", lhs, inner, rhs))
}
}
```
2018-07-11 21:01:40 +12:00
|
|
|
|| first_line_ends_with(orig_rhs, '(') && !first_line_ends_with(next_line_rhs, '(')
|
|
|
|
|| first_line_ends_with(orig_rhs, '{') && !first_line_ends_with(next_line_rhs, '{')
|
|
|
|
|| first_line_ends_with(orig_rhs, '[') && !first_line_ends_with(next_line_rhs, '[')
|
2017-07-05 18:30:11 +09:00
|
|
|
}
|
|
|
|
|
2017-06-12 15:58:58 +12:00
|
|
|
fn rewrite_expr_addrof(
|
2019-02-09 16:14:30 +09:00
|
|
|
context: &RewriteContext<'_>,
|
2020-03-31 01:28:01 -05:00
|
|
|
borrow_kind: ast::BorrowKind,
|
2017-06-12 15:58:58 +12:00
|
|
|
mutability: ast::Mutability,
|
|
|
|
expr: &ast::Expr,
|
|
|
|
shape: Shape,
|
|
|
|
) -> Option<String> {
|
2020-03-31 01:28:01 -05:00
|
|
|
let operator_str = match (mutability, borrow_kind) {
|
|
|
|
(ast::Mutability::Not, ast::BorrowKind::Ref) => "&",
|
|
|
|
(ast::Mutability::Not, ast::BorrowKind::Raw) => "&raw const ",
|
|
|
|
(ast::Mutability::Mut, ast::BorrowKind::Ref) => "&mut ",
|
|
|
|
(ast::Mutability::Mut, ast::BorrowKind::Raw) => "&raw mut ",
|
2015-09-24 01:13:57 -07:00
|
|
|
};
|
2017-05-15 22:55:01 +09:00
|
|
|
rewrite_unary_prefix(context, operator_str, expr, shape)
|
2015-09-24 01:13:57 -07:00
|
|
|
}
|
2017-06-14 09:29:39 +09:00
|
|
|
|
2019-05-09 20:37:51 +02:00
|
|
|
pub(crate) fn is_method_call(expr: &ast::Expr) -> bool {
|
2019-10-05 23:40:24 +09:00
|
|
|
match expr.kind {
|
2018-05-23 07:22:42 +09:00
|
|
|
ast::ExprKind::MethodCall(..) => true,
|
2020-02-08 22:21:37 -06:00
|
|
|
ast::ExprKind::AddrOf(_, _, ref expr)
|
2018-05-23 07:22:42 +09:00
|
|
|
| ast::ExprKind::Box(ref expr)
|
|
|
|
| ast::ExprKind::Cast(ref expr, _)
|
|
|
|
| ast::ExprKind::Try(ref expr)
|
|
|
|
| ast::ExprKind::Unary(_, ref expr) => is_method_call(expr),
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
2018-10-15 23:24:35 +02:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
|
|
|
use super::last_line_offsetted;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_last_line_offsetted() {
|
|
|
|
let lines = "one\n two";
|
|
|
|
assert_eq!(last_line_offsetted(2, lines), true);
|
|
|
|
assert_eq!(last_line_offsetted(4, lines), false);
|
|
|
|
assert_eq!(last_line_offsetted(6, lines), false);
|
|
|
|
|
|
|
|
let lines = "one two";
|
|
|
|
assert_eq!(last_line_offsetted(2, lines), false);
|
|
|
|
assert_eq!(last_line_offsetted(0, lines), false);
|
|
|
|
|
|
|
|
let lines = "\ntwo";
|
|
|
|
assert_eq!(last_line_offsetted(2, lines), false);
|
|
|
|
assert_eq!(last_line_offsetted(0, lines), false);
|
|
|
|
|
|
|
|
let lines = "one\n two three";
|
|
|
|
assert_eq!(last_line_offsetted(2, lines), true);
|
|
|
|
let lines = "one\n two three";
|
|
|
|
assert_eq!(last_line_offsetted(2, lines), false);
|
|
|
|
}
|
|
|
|
}
|