rust/src/expr.rs

1267 lines
49 KiB
Rust
Raw Normal View History

2015-04-21 21:01:19 +12:00
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
2015-09-04 18:09:05 +02:00
use std::cmp::Ordering;
2015-06-16 17:29:05 +02:00
use rewrite::{Rewrite, RewriteContext};
2015-06-24 01:11:29 +02:00
use lists::{write_list, itemize_list, ListFormatting, SeparatorTactic, ListTactic};
2015-06-23 15:58:58 +02:00
use string::{StringFormat, rewrite_string};
use StructLitStyle;
2015-09-07 21:34:37 +02:00
use utils::{span_after, make_indent, extra_offset, first_line_width, last_line_width, wrap_str,
binary_search};
2015-07-13 21:51:56 +02:00
use visitor::FmtVisitor;
use config::{BlockIndentStyle, MultilineStyle};
use comment::{FindUncommented, rewrite_comment, contains_comment};
2015-08-14 14:09:19 +02:00
use types::rewrite_path;
2015-08-19 22:39:45 +02:00
use items::{span_lo_for_arg, span_hi_for_arg, rewrite_fn_input};
2015-04-21 21:01:19 +12:00
use syntax::{ast, ptr};
use syntax::codemap::{CodeMap, Span, BytePos, mk_sp};
2015-07-13 21:51:56 +02:00
use syntax::visit::Visitor;
2015-04-21 21:01:19 +12:00
2015-06-16 17:29:05 +02:00
impl Rewrite for ast::Expr {
fn rewrite(&self, context: &RewriteContext, width: usize, offset: usize) -> Option<String> {
match self.node {
ast::Expr_::ExprLit(ref l) => {
match l.node {
2015-09-03 23:38:12 -04:00
ast::Lit_::LitStr(_, ast::StrStyle::CookedStr) => {
rewrite_string_lit(context, l.span, width, offset)
2015-06-16 17:29:05 +02:00
}
2015-07-17 23:10:15 +02:00
_ => Some(context.snippet(self.span)),
2015-06-16 17:29:05 +02:00
}
}
ast::Expr_::ExprCall(ref callee, ref args) => {
rewrite_call(context, callee, args, self.span, width, offset)
2015-06-16 17:29:05 +02:00
}
ast::Expr_::ExprParen(ref subexpr) => {
rewrite_paren(context, subexpr, width, offset)
}
ast::Expr_::ExprBinary(ref op, ref lhs, ref rhs) => {
rewrite_binary_op(context, op, lhs, rhs, width, offset)
}
ast::Expr_::ExprUnary(ref op, ref subexpr) => {
rewrite_unary_op(context, op, subexpr, width, offset)
2015-06-16 17:29:05 +02:00
}
ast::Expr_::ExprStruct(ref path, ref fields, ref base) => {
rewrite_struct_lit(context,
path,
fields,
base.as_ref().map(|e| &**e),
self.span,
width,
offset)
2015-06-16 17:29:05 +02:00
}
ast::Expr_::ExprTup(ref items) => {
rewrite_tuple_lit(context, items, self.span, width, offset)
2015-06-16 17:29:05 +02:00
}
2015-07-19 23:39:48 +02:00
ast::Expr_::ExprWhile(ref cond, ref block, label) => {
2015-07-20 23:29:25 +02:00
Loop::new_while(None, cond, block, label).rewrite(context, width, offset)
2015-07-19 23:39:48 +02:00
}
ast::Expr_::ExprWhileLet(ref pat, ref cond, ref block, label) => {
2015-07-20 23:29:25 +02:00
Loop::new_while(Some(pat), cond, block, label).rewrite(context, width, offset)
2015-07-19 23:39:48 +02:00
}
ast::Expr_::ExprForLoop(ref pat, ref cond, ref block, label) => {
2015-07-20 23:29:25 +02:00
Loop::new_for(pat, cond, block, label).rewrite(context, width, offset)
2015-07-16 16:29:28 +02:00
}
ast::Expr_::ExprLoop(ref block, label) => {
2015-07-20 23:29:25 +02:00
Loop::new_loop(block, label).rewrite(context, width, offset)
2015-07-13 21:51:56 +02:00
}
2015-07-19 23:42:54 +02:00
ast::Expr_::ExprBlock(ref block) => {
block.rewrite(context, width, offset)
}
ast::Expr_::ExprIf(ref cond, ref if_block, ref else_block) => {
rewrite_if_else(context,
cond,
if_block,
else_block.as_ref().map(|e| &**e),
2015-07-19 22:25:44 +02:00
None,
width,
offset,
true)
2015-07-19 22:25:44 +02:00
}
ast::Expr_::ExprIfLet(ref pat, ref cond, ref if_block, ref else_block) => {
rewrite_if_else(context,
cond,
if_block,
else_block.as_ref().map(|e| &**e),
Some(pat),
2015-07-19 23:42:54 +02:00
width,
offset,
true)
2015-07-19 23:42:54 +02:00
}
2015-07-20 23:29:25 +02:00
// We reformat it ourselves because rustc gives us a bad span
// for ranges, see rust#27162
2015-07-19 23:39:48 +02:00
ast::Expr_::ExprRange(ref left, ref right) => {
rewrite_range(context,
left.as_ref().map(|e| &**e),
right.as_ref().map(|e| &**e),
width,
offset)
2015-07-13 21:51:56 +02:00
}
2015-08-14 20:00:22 +12:00
ast::Expr_::ExprMatch(ref cond, ref arms, _) => {
rewrite_match(context, cond, arms, width, offset)
}
2015-08-14 14:09:19 +02:00
ast::Expr_::ExprPath(ref qself, ref path) => {
rewrite_path(context, qself.as_ref(), path, width, offset)
}
2015-08-21 13:31:09 +02:00
ast::Expr_::ExprAssign(ref lhs, ref rhs) => {
rewrite_assignment(context, lhs, rhs, None, width, offset)
}
ast::Expr_::ExprAssignOp(ref op, ref lhs, ref rhs) => {
rewrite_assignment(context, lhs, rhs, Some(op), width, offset)
}
// FIXME #184 Note that this formatting is broken due to a bad span
// from the parser.
// `continue`
ast::Expr_::ExprAgain(ref opt_ident) => {
let id_str = match *opt_ident {
Some(ident) => format!(" {}", ident.node),
None => String::new(),
};
Some(format!("continue{}", id_str))
}
2015-08-21 13:31:09 +02:00
ast::Expr_::ExprBreak(ref opt_ident) => {
let id_str = match *opt_ident {
Some(ident) => format!(" {}", ident.node),
2015-08-21 13:31:09 +02:00
None => String::new(),
};
Some(format!("break{}", id_str))
}
2015-08-19 22:39:45 +02:00
ast::Expr_::ExprClosure(capture, ref fn_decl, ref body) => {
rewrite_closure(capture, fn_decl, body, self.span, context, width, offset)
}
2015-09-04 18:09:05 +02:00
// We do not format these expressions yet, but they should still
// satisfy our width restrictions.
_ => wrap_str(context.snippet(self.span), context.config.max_width, width, offset),
2015-04-21 21:01:19 +12:00
}
2015-06-16 17:29:05 +02:00
}
}
2015-04-21 21:01:19 +12:00
2015-08-19 22:39:45 +02:00
// This functions is pretty messy because of the wrapping and unwrapping of
// expressions into and from blocks. See rust issue #27872.
fn rewrite_closure(capture: ast::CaptureClause,
fn_decl: &ast::FnDecl,
body: &ast::Block,
span: Span,
context: &RewriteContext,
width: usize,
offset: usize)
-> Option<String> {
let mover = if capture == ast::CaptureClause::CaptureByValue {
"move "
} else {
""
};
let offset = offset + mover.len();
// 4 = "|| {".len(), which is overconservative when the closure consists of
// a single expression.
2015-09-08 20:56:33 +02:00
let budget = try_opt!(width.checked_sub(4 + mover.len()));
2015-08-19 22:39:45 +02:00
// 1 = |
let argument_offset = offset + 1;
2015-09-08 20:56:33 +02:00
let ret_str = try_opt!(fn_decl.output.rewrite(context, budget, argument_offset));
// 1 = space between arguments and return type.
let horizontal_budget = budget.checked_sub(ret_str.len() + 1).unwrap_or(0);
2015-08-19 22:39:45 +02:00
let arg_items = itemize_list(context.codemap,
fn_decl.inputs.iter(),
"|",
|arg| span_lo_for_arg(arg),
|arg| span_hi_for_arg(arg),
|arg| rewrite_fn_input(arg),
span_after(span, "|", context.codemap),
body.span.lo);
2015-09-08 20:56:33 +02:00
let fmt = ListFormatting {
tactic: ListTactic::HorizontalVertical,
separator: ",",
trailing_separator: SeparatorTactic::Never,
indent: argument_offset,
h_width: horizontal_budget,
v_width: budget,
ends_with_newline: false,
};
2015-09-04 18:09:05 +02:00
let list_str = try_opt!(write_list(&arg_items.collect::<Vec<_>>(), &fmt));
2015-09-08 20:56:33 +02:00
let mut prefix = format!("{}|{}|", mover, list_str);
if !ret_str.is_empty() {
if prefix.contains('\n') {
prefix.push('\n');
prefix.push_str(&make_indent(argument_offset));
} else {
prefix.push(' ');
}
prefix.push_str(&ret_str);
}
let closure_indent = closure_indent(context, offset);
2015-08-19 22:39:45 +02:00
2015-08-20 23:05:41 +02:00
// Try to format closure body as a single line expression without braces.
2015-09-08 20:56:33 +02:00
if is_simple_block(body, context.codemap) && !prefix.contains('\n') {
let (spacer, closer) = if ret_str.is_empty() {
(" ", "")
} else {
(" { ", " }")
};
2015-08-19 22:39:45 +02:00
let expr = body.expr.as_ref().unwrap();
// All closure bodies are blocks in the eyes of the AST, but we may not
// want to unwrap them when they only contain a single expression.
let inner_expr = match expr.node {
ast::Expr_::ExprBlock(ref inner) if inner.stmts.is_empty() && inner.expr.is_some() => {
inner.expr.as_ref().unwrap()
}
_ => expr,
};
2015-09-08 20:56:33 +02:00
let extra_offset = extra_offset(&prefix, offset) + spacer.len();
let budget = try_opt!(width.checked_sub(extra_offset + closer.len()));
let rewrite = inner_expr.rewrite(context, budget, offset + extra_offset);
2015-08-19 22:39:45 +02:00
// Checks if rewrite succeeded and fits on a single line.
let accept_rewrite = rewrite.as_ref().map(|result| !result.contains('\n')).unwrap_or(false);
if accept_rewrite {
2015-09-08 20:56:33 +02:00
return Some(format!("{}{}{}{}", prefix, spacer, rewrite.unwrap(), closer));
2015-08-19 22:39:45 +02:00
}
2015-08-20 23:05:41 +02:00
}
// We couldn't format the closure body as a single line expression; fall
// back to block formatting.
let inner_context = context.overflow_context(closure_indent - context.block_indent);
2015-09-08 20:56:33 +02:00
let body_rewrite = body.expr
.as_ref()
.and_then(|body_expr| {
if let ast::Expr_::ExprBlock(ref inner) = body_expr.node {
Some(inner.rewrite(&inner_context, 2, 0))
} else {
None
}
})
.unwrap_or_else(|| body.rewrite(&inner_context, 2, 0));
2015-08-19 22:39:45 +02:00
Some(format!("{} {}", prefix, try_opt!(body_rewrite)))
}
2015-07-13 21:51:56 +02:00
impl Rewrite for ast::Block {
2015-08-01 14:22:31 +02:00
fn rewrite(&self, context: &RewriteContext, width: usize, offset: usize) -> Option<String> {
2015-07-17 23:10:15 +02:00
let user_str = context.snippet(self.span);
2015-08-17 09:41:45 +12:00
if user_str == "{}" && width >= 2 {
2015-08-16 16:13:55 +12:00
return Some(user_str);
}
2015-07-13 21:51:56 +02:00
let mut visitor = FmtVisitor::from_codemap(context.codemap, context.config);
visitor.block_indent = context.block_indent + context.overflow_indent;
2015-07-13 21:51:56 +02:00
2015-08-01 14:22:31 +02:00
let prefix = match self.rules {
ast::BlockCheckMode::PushUnsafeBlock(..) |
ast::BlockCheckMode::UnsafeBlock(..) => {
2015-07-17 23:10:15 +02:00
let snippet = context.snippet(self.span);
2015-08-01 14:22:31 +02:00
let open_pos = try_opt!(snippet.find_uncommented("{"));
visitor.last_pos = self.span.lo + BytePos(open_pos as u32);
// Extract comment between unsafe and block start.
let trimmed = &snippet[6..open_pos].trim();
2015-09-05 18:26:28 +12:00
let prefix = if !trimmed.is_empty() {
2015-08-01 14:22:31 +02:00
// 9 = "unsafe {".len(), 7 = "unsafe ".len()
let budget = try_opt!(width.checked_sub(9));
format!("unsafe {} ", rewrite_comment(trimmed, true, budget, offset + 7))
2015-08-01 14:22:31 +02:00
} else {
"unsafe ".to_owned()
2015-09-05 18:26:28 +12:00
};
if is_simple_block(self, context.codemap) && prefix.len() < width {
let body =
self.expr.as_ref().unwrap().rewrite(context, width - prefix.len(), offset);
if let Some(ref expr_str) = body {
let result = format!("{}{{ {} }}", prefix, expr_str);
if result.len() <= width && !result.contains('\n') {
return Some(result);
}
}
2015-08-01 14:22:31 +02:00
}
2015-09-05 18:26:28 +12:00
prefix
2015-08-01 14:22:31 +02:00
}
ast::BlockCheckMode::PopUnsafeBlock(..) |
ast::BlockCheckMode::DefaultBlock => {
visitor.last_pos = self.span.lo;
String::new()
}
};
2015-07-13 21:51:56 +02:00
visitor.visit_block(self);
// Push text between last block item and end of block
let snippet = visitor.snippet(mk_sp(visitor.last_pos, self.span.hi));
2015-07-26 14:05:43 +02:00
visitor.buffer.push_str(&snippet);
2015-07-13 21:51:56 +02:00
2015-07-26 14:05:43 +02:00
Some(format!("{}{}", prefix, visitor.buffer))
2015-07-13 21:51:56 +02:00
}
}
// FIXME(#18): implement pattern formatting
2015-07-19 22:25:44 +02:00
impl Rewrite for ast::Pat {
fn rewrite(&self, context: &RewriteContext, _: usize, _: usize) -> Option<String> {
2015-07-17 23:10:15 +02:00
Some(context.snippet(self.span))
2015-07-19 22:25:44 +02:00
}
}
2015-07-20 23:29:25 +02:00
// Abstraction over for, while and loop expressions
struct Loop<'a> {
cond: Option<&'a ast::Expr>,
block: &'a ast::Block,
label: Option<ast::Ident>,
pat: Option<&'a ast::Pat>,
keyword: &'a str,
matcher: &'a str,
connector: &'a str,
}
impl<'a> Loop<'a> {
fn new_loop(block: &'a ast::Block, label: Option<ast::Ident>) -> Loop<'a> {
Loop {
cond: None,
block: block,
label: label,
pat: None,
keyword: "loop",
matcher: "",
connector: "",
}
}
fn new_while(pat: Option<&'a ast::Pat>,
cond: &'a ast::Expr,
block: &'a ast::Block,
label: Option<ast::Ident>)
-> Loop<'a> {
Loop {
cond: Some(cond),
block: block,
label: label,
pat: pat,
keyword: "while ",
matcher: match pat {
Some(..) => "let ",
2015-08-16 15:58:17 +12:00
None => "",
2015-07-20 23:29:25 +02:00
},
connector: " =",
}
}
fn new_for(pat: &'a ast::Pat,
cond: &'a ast::Expr,
block: &'a ast::Block,
label: Option<ast::Ident>)
-> Loop<'a> {
Loop {
cond: Some(cond),
block: block,
label: label,
pat: Some(pat),
keyword: "for ",
matcher: "",
connector: " in",
}
}
}
impl<'a> Rewrite for Loop<'a> {
fn rewrite(&self, context: &RewriteContext, width: usize, offset: usize) -> Option<String> {
let label_string = rewrite_label(self.label);
// 2 = " {".len()
let inner_width = try_opt!(width.checked_sub(self.keyword.len() + 2 + label_string.len()));
2015-07-20 23:29:25 +02:00
let inner_offset = offset + self.keyword.len() + label_string.len();
let pat_expr_string = match self.cond {
Some(cond) => try_opt!(rewrite_pat_expr(context,
self.pat,
cond,
self.matcher,
self.connector,
inner_width,
inner_offset)),
2015-08-16 15:58:17 +12:00
None => String::new(),
2015-07-20 23:29:25 +02:00
};
// FIXME: this drops any comment between "loop" and the block.
self.block.rewrite(context, width, offset).map(|result| {
format!("{}{}{} {}", label_string, self.keyword, pat_expr_string, result)
})
}
}
2015-07-16 16:29:28 +02:00
fn rewrite_label(label: Option<ast::Ident>) -> String {
match label {
2015-07-19 22:25:44 +02:00
Some(ident) => format!("{}: ", ident),
2015-08-16 15:58:17 +12:00
None => "".to_owned(),
2015-07-16 16:29:28 +02:00
}
}
2015-07-19 23:39:48 +02:00
// FIXME: this doesn't play well with line breaks
fn rewrite_range(context: &RewriteContext,
left: Option<&ast::Expr>,
right: Option<&ast::Expr>,
width: usize,
offset: usize)
-> Option<String> {
let left_string = match left {
Some(expr) => {
// 2 = ..
let max_width = try_opt!(width.checked_sub(2));
try_opt!(expr.rewrite(context, max_width, offset))
}
2015-08-16 15:58:17 +12:00
None => String::new(),
2015-07-19 23:39:48 +02:00
};
let right_string = match right {
Some(expr) => {
let max_width = try_opt!(width.checked_sub(left_string.len() + 2));
2015-07-19 23:39:48 +02:00
try_opt!(expr.rewrite(context, max_width, offset + 2 + left_string.len()))
}
2015-08-16 15:58:17 +12:00
None => String::new(),
2015-07-19 23:39:48 +02:00
};
Some(format!("{}..{}", left_string, right_string))
}
2015-07-20 23:29:25 +02:00
// Rewrites if-else blocks. If let Some(_) = pat, the expression is
// treated as an if-let-else expression.
2015-07-19 23:42:54 +02:00
fn rewrite_if_else(context: &RewriteContext,
cond: &ast::Expr,
if_block: &ast::Block,
else_block_opt: Option<&ast::Expr>,
2015-07-19 22:25:44 +02:00
pat: Option<&ast::Pat>,
2015-07-19 23:42:54 +02:00
width: usize,
offset: usize,
allow_single_line: bool)
2015-07-19 23:42:54 +02:00
-> Option<String> {
2015-07-19 22:25:44 +02:00
// 3 = "if ", 2 = " {"
2015-07-19 23:39:48 +02:00
let pat_expr_string = try_opt!(rewrite_pat_expr(context,
pat,
cond,
"let ",
2015-07-20 23:29:25 +02:00
" =",
try_opt!(width.checked_sub(3 + 2)),
2015-07-19 23:39:48 +02:00
offset + 3));
// Try to format if-else on single line.
if allow_single_line && context.config.single_line_if_else {
let trial = single_line_if_else(context, &pat_expr_string, if_block, else_block_opt, width);
if trial.is_some() {
return trial;
}
}
2015-07-19 23:39:48 +02:00
let if_block_string = try_opt!(if_block.rewrite(context, width, offset));
let mut result = format!("if {} {}", pat_expr_string, if_block_string);
if let Some(else_block) = else_block_opt {
let rewrite = match else_block.node {
// If the else expression is another if-else expression, prevent it
// from being formatted on a single line.
ast::Expr_::ExprIfLet(ref pat, ref cond, ref if_block, ref else_block) => {
rewrite_if_else(context,
cond,
if_block,
else_block.as_ref().map(|e| &**e),
Some(pat),
width,
offset,
false)
}
ast::Expr_::ExprIf(ref cond, ref if_block, ref else_block) => {
rewrite_if_else(context,
cond,
if_block,
else_block.as_ref().map(|e| &**e),
None,
width,
offset,
false)
}
_ => else_block.rewrite(context, width, offset),
};
2015-07-19 23:39:48 +02:00
result.push_str(" else ");
result.push_str(&&try_opt!(rewrite));
2015-07-19 23:39:48 +02:00
}
Some(result)
}
fn single_line_if_else(context: &RewriteContext,
pat_expr_str: &str,
if_node: &ast::Block,
else_block_opt: Option<&ast::Expr>,
width: usize)
-> Option<String> {
let else_block = try_opt!(else_block_opt);
let fixed_cost = "if { } else { }".len();
if let ast::ExprBlock(ref else_node) = else_block.node {
if !is_simple_block(if_node, context.codemap) ||
!is_simple_block(else_node, context.codemap) || pat_expr_str.contains('\n') {
return None;
}
let new_width = try_opt!(width.checked_sub(pat_expr_str.len() + fixed_cost));
let if_expr = if_node.expr.as_ref().unwrap();
let if_str = try_opt!(if_expr.rewrite(context, new_width, 0));
let new_width = try_opt!(new_width.checked_sub(if_str.len()));
let else_expr = else_node.expr.as_ref().unwrap();
let else_str = try_opt!(else_expr.rewrite(context, new_width, 0));
// FIXME: this check shouldn't be necessary. Rewrites should either fail
// or wrap to a newline when the object does not fit the width.
let fits_line = fixed_cost + pat_expr_str.len() + if_str.len() + else_str.len() <= width;
if fits_line && !if_str.contains('\n') && !else_str.contains('\n') {
return Some(format!("if {} {{ {} }} else {{ {} }}", pat_expr_str, if_str, else_str));
}
}
None
}
// Checks that a block contains no statements, an expression and no comments.
fn is_simple_block(block: &ast::Block, codemap: &CodeMap) -> bool {
if !block.stmts.is_empty() || block.expr.is_none() {
return false;
}
let snippet = codemap.span_to_snippet(block.span).unwrap();
!contains_comment(&snippet)
}
2015-08-14 20:00:22 +12:00
fn rewrite_match(context: &RewriteContext,
cond: &ast::Expr,
arms: &[ast::Arm],
width: usize,
offset: usize)
-> Option<String> {
2015-08-21 13:31:09 +02:00
if arms.is_empty() {
2015-08-17 09:41:45 +12:00
return None;
}
2015-08-14 20:00:22 +12:00
// `match `cond` {`
let cond_budget = try_opt!(width.checked_sub(8));
let cond_str = try_opt!(cond.rewrite(context, cond_budget, offset + 6));
2015-08-14 20:00:22 +12:00
let mut result = format!("match {} {{", cond_str);
let nested_context = context.nested_context();
let arm_indent = nested_context.block_indent + context.overflow_indent;
let arm_indent_str = make_indent(arm_indent);
2015-08-14 20:00:22 +12:00
2015-08-17 09:41:45 +12:00
let open_brace_pos = span_after(mk_sp(cond.span.hi, arm_start_pos(&arms[0])),
"{",
context.codemap);
for (i, arm) in arms.iter().enumerate() {
// Make sure we get the stuff between arms.
let missed_str = if i == 0 {
2015-07-17 23:10:15 +02:00
context.snippet(mk_sp(open_brace_pos + BytePos(1), arm_start_pos(arm)))
2015-08-17 09:41:45 +12:00
} else {
2015-07-17 23:10:15 +02:00
context.snippet(mk_sp(arm_end_pos(&arms[i-1]), arm_start_pos(arm)))
2015-08-17 09:41:45 +12:00
};
let missed_str = match missed_str.find_uncommented(",") {
Some(n) => &missed_str[n+1..],
None => &missed_str[..],
};
// first = first non-whitespace byte index.
let first = missed_str.find(|c: char| !c.is_whitespace()).unwrap_or(missed_str.len());
if missed_str[..first].chars().filter(|c| c == &'\n').count() >= 2 {
// There were multiple line breaks which got trimmed to nothing
// that means there should be some vertical white space. Lets
// replace that with just one blank line.
result.push('\n');
}
let missed_str = missed_str.trim();
2015-08-21 13:31:09 +02:00
if !missed_str.is_empty() {
2015-08-17 09:41:45 +12:00
result.push('\n');
result.push_str(&arm_indent_str);
result.push_str(missed_str);
}
2015-08-14 20:00:22 +12:00
result.push('\n');
result.push_str(&arm_indent_str);
2015-08-17 09:41:45 +12:00
let arm_str = arm.rewrite(&nested_context,
context.config.max_width - arm_indent,
arm_indent);
2015-08-17 09:41:45 +12:00
if let Some(ref arm_str) = arm_str {
result.push_str(arm_str);
} else {
// We couldn't format the arm, just reproduce the source.
2015-07-17 23:10:15 +02:00
let snippet = context.snippet(mk_sp(arm_start_pos(arm), arm_end_pos(arm)));
2015-08-17 09:41:45 +12:00
result.push_str(&snippet);
}
2015-08-14 20:00:22 +12:00
}
2015-08-17 09:41:45 +12:00
// We'll miss any comments etc. between the last arm and the end of the
// match expression, but meh.
2015-08-14 20:00:22 +12:00
result.push('\n');
result.push_str(&make_indent(context.block_indent + context.overflow_indent));
2015-08-14 20:00:22 +12:00
result.push('}');
Some(result)
}
2015-08-17 09:41:45 +12:00
fn arm_start_pos(arm: &ast::Arm) -> BytePos {
let &ast::Arm { ref attrs, ref pats, .. } = arm;
2015-08-21 13:31:09 +02:00
if !attrs.is_empty() {
2015-08-17 09:41:45 +12:00
return attrs[0].span.lo
}
pats[0].span.lo
}
fn arm_end_pos(arm: &ast::Arm) -> BytePos {
arm.body.span.hi
}
2015-08-14 20:00:22 +12:00
// Match arms.
impl Rewrite for ast::Arm {
fn rewrite(&self, context: &RewriteContext, width: usize, offset: usize) -> Option<String> {
let &ast::Arm { ref attrs, ref pats, ref guard, ref body } = self;
let indent_str = make_indent(offset);
2015-08-17 09:41:45 +12:00
// FIXME this is all a bit grotty, would be nice to abstract out the
// treatment of attributes.
2015-08-21 13:31:09 +02:00
let attr_str = if !attrs.is_empty() {
2015-08-17 09:41:45 +12:00
// We only use this visitor for the attributes, should we use it for
// more?
let mut attr_visitor = FmtVisitor::from_codemap(context.codemap, context.config);
attr_visitor.block_indent = context.block_indent;
attr_visitor.last_pos = attrs[0].span.lo;
if attr_visitor.visit_attrs(attrs) {
// Attributes included a skip instruction.
2015-07-17 23:10:15 +02:00
let snippet = context.snippet(mk_sp(attrs[0].span.lo, body.span.hi));
2015-08-17 09:41:45 +12:00
return Some(snippet);
}
attr_visitor.format_missing(pats[0].span.lo);
attr_visitor.buffer.to_string()
} else {
String::new()
};
2015-08-14 20:00:22 +12:00
// Patterns
// 5 = ` => {`
let pat_budget = try_opt!(width.checked_sub(5));
let pat_strs = try_opt!(pats.iter().map(|p| {
p.rewrite(context,
pat_budget,
offset + context.config.tab_spaces)
})
.collect::<Option<Vec<_>>>());
2015-08-16 15:58:17 +12:00
2015-08-14 20:00:22 +12:00
let mut total_width = pat_strs.iter().fold(0, |a, p| a + p.len());
// Add ` | `.len().
total_width += (pat_strs.len() - 1) * 3;
let mut vertical = total_width > pat_budget || pat_strs.iter().any(|p| p.contains('\n'));
2015-08-14 20:00:22 +12:00
if !vertical {
// If the patterns were previously stacked, keep them stacked.
// FIXME should be an option.
let pat_span = mk_sp(pats[0].span.lo, pats[pats.len() - 1].span.hi);
2015-07-17 23:10:15 +02:00
let pat_str = context.snippet(pat_span);
2015-08-14 20:00:22 +12:00
vertical = pat_str.find('\n').is_some();
}
let pats_width = if vertical {
pat_strs[pat_strs.len() - 1].len()
} else {
total_width
};
let mut pats_str = String::new();
for p in pat_strs {
2015-08-21 13:31:09 +02:00
if !pats_str.is_empty() {
2015-08-14 20:00:22 +12:00
if vertical {
pats_str.push_str(" |\n");
pats_str.push_str(&indent_str);
} else {
pats_str.push_str(" | ");
}
}
pats_str.push_str(&p);
}
let guard_str = try_opt!(rewrite_guard(context, guard, width, offset, pats_width));
let pats_str = format!("{}{}", pats_str, guard_str);
// Where the next text can start.
let mut line_start = last_line_width(&pats_str);
if pats_str.find('\n').is_none() {
line_start += offset;
}
let comma = if let ast::ExprBlock(_) = body.node {
""
2015-08-14 20:00:22 +12:00
} else {
","
2015-08-14 20:00:22 +12:00
};
// Let's try and get the arm body on the same line as the condition.
// 4 = ` => `.len()
if context.config.max_width > line_start + comma.len() + 4 {
let budget = context.config.max_width - line_start - comma.len() - 4;
if let Some(ref body_str) = body.rewrite(context,
budget,
line_start + 4) {
2015-08-14 20:00:22 +12:00
if first_line_width(body_str) <= budget {
2015-08-17 09:41:45 +12:00
return Some(format!("{}{} => {}{}",
attr_str.trim_left(),
pats_str,
body_str,
comma));
2015-08-14 20:00:22 +12:00
}
}
}
// We have to push the body to the next line.
2015-08-21 13:31:09 +02:00
if comma.is_empty() {
2015-08-14 20:00:22 +12:00
// We're trying to fit a block in, but it still failed, give up.
return None;
}
let body_budget = try_opt!(width.checked_sub(context.config.tab_spaces));
let body_str = try_opt!(body.rewrite(context,
body_budget,
context.block_indent));
2015-08-17 09:41:45 +12:00
Some(format!("{}{} =>\n{}{},",
attr_str.trim_left(),
2015-08-14 20:00:22 +12:00
pats_str,
make_indent(offset + context.config.tab_spaces),
body_str))
}
}
// The `if ...` guard on a match arm.
fn rewrite_guard(context: &RewriteContext,
guard: &Option<ptr::P<ast::Expr>>,
width: usize,
offset: usize,
// The amount of space used up on this line for the pattern in
// the arm (excludes offset).
2015-08-14 20:00:22 +12:00
pattern_width: usize)
-> Option<String> {
if let &Some(ref guard) = guard {
// First try to fit the guard string on the same line as the pattern.
2015-08-14 20:00:22 +12:00
// 4 = ` if `, 5 = ` => {`
let overhead = pattern_width + 4 + 5;
if overhead < width {
let cond_str = guard.rewrite(context,
width - overhead,
offset + pattern_width + 4);
2015-08-14 20:00:22 +12:00
if let Some(cond_str) = cond_str {
return Some(format!(" if {}", cond_str));
}
}
// Not enough space to put the guard after the pattern, try a newline.
let overhead = context.config.tab_spaces + 4 + 5;
if overhead < width {
let cond_str = guard.rewrite(context,
width - overhead,
offset + context.config.tab_spaces);
if let Some(cond_str) = cond_str {
return Some(format!("\n{}if {}",
make_indent(offset + context.config.tab_spaces),
cond_str));
}
}
None
} else {
Some(String::new())
}
}
2015-07-19 23:39:48 +02:00
fn rewrite_pat_expr(context: &RewriteContext,
pat: Option<&ast::Pat>,
expr: &ast::Expr,
matcher: &str,
2015-08-21 13:31:09 +02:00
// Connecting piece between pattern and expression,
// *without* trailing space.
2015-07-19 23:39:48 +02:00
connector: &str,
width: usize,
offset: usize)
-> Option<String> {
2015-07-20 23:29:25 +02:00
let pat_offset = offset + matcher.len();
2015-07-19 23:39:48 +02:00
let mut result = match pat {
2015-07-19 22:25:44 +02:00
Some(pat) => {
let pat_budget = try_opt!(width.checked_sub(connector.len() + matcher.len()));
let pat_string = try_opt!(pat.rewrite(context, pat_budget, pat_offset));
2015-07-19 23:39:48 +02:00
format!("{}{}{}", matcher, pat_string, connector)
2015-07-19 22:25:44 +02:00
}
2015-08-16 15:58:17 +12:00
None => String::new(),
2015-07-19 22:25:44 +02:00
};
2015-07-20 23:29:25 +02:00
// Consider only the last line of the pat string.
2015-08-14 14:09:19 +02:00
let extra_offset = extra_offset(&result, offset);
2015-07-19 22:25:44 +02:00
2015-07-20 23:29:25 +02:00
// The expression may (partionally) fit on the current line.
if width > extra_offset + 1 {
2015-08-21 13:31:09 +02:00
let spacer = if pat.is_some() {
" "
} else {
""
};
2015-07-20 23:29:25 +02:00
let expr_rewrite = expr.rewrite(context,
2015-08-21 13:31:09 +02:00
width - extra_offset - spacer.len(),
offset + extra_offset + spacer.len());
2015-07-20 23:29:25 +02:00
if let Some(expr_string) = expr_rewrite {
2015-08-21 13:31:09 +02:00
result.push_str(spacer);
2015-07-20 23:29:25 +02:00
result.push_str(&expr_string);
return Some(result);
}
}
// The expression won't fit on the current line, jump to next.
result.push('\n');
result.push_str(&make_indent(pat_offset));
let expr_rewrite = expr.rewrite(context, context.config.max_width - pat_offset, pat_offset);
result.push_str(&&try_opt!(expr_rewrite));
2015-07-19 22:25:44 +02:00
Some(result)
2015-07-19 23:42:54 +02:00
}
2015-06-23 15:58:58 +02:00
fn rewrite_string_lit(context: &RewriteContext,
span: Span,
width: usize,
offset: usize)
2015-07-03 11:13:28 +02:00
-> Option<String> {
if context.config.format_strings == false {
return Some(context.snippet(span));
}
2015-07-16 13:31:20 +12:00
let fmt = StringFormat {
opener: "\"",
closer: "\"",
line_start: " ",
line_end: "\\",
width: width,
offset: offset,
trim_end: false,
};
2015-04-21 21:01:19 +12:00
2015-09-03 23:38:12 -04:00
let string_lit = context.snippet(span);
let str_lit = &string_lit[1..string_lit.len() - 1]; // Remove the quote characters.
Some(rewrite_string(str_lit, &fmt))
2015-06-16 17:29:05 +02:00
}
fn rewrite_call(context: &RewriteContext,
callee: &ast::Expr,
args: &[ptr::P<ast::Expr>],
2015-06-23 15:58:58 +02:00
span: Span,
width: usize,
offset: usize)
2015-07-03 11:13:28 +02:00
-> Option<String> {
2015-09-07 21:34:37 +02:00
let callback = |callee_max_width| {
rewrite_call_inner(context,
callee,
callee_max_width,
args,
span,
width,
offset)
};
2015-04-21 21:01:19 +12:00
2015-08-14 14:09:19 +02:00
// 2 is for parens
2015-09-07 21:34:37 +02:00
let max_width = try_opt!(width.checked_sub(2));
binary_search(1, max_width, callback)
2015-09-04 18:09:05 +02:00
}
fn rewrite_call_inner(context: &RewriteContext,
callee: &ast::Expr,
max_callee_width: usize,
args: &[ptr::P<ast::Expr>],
span: Span,
width: usize,
offset: usize)
-> Result<String, Ordering> {
2015-09-07 21:34:37 +02:00
// FIXME using byte lens instead of char lens (and probably all over the
// place too)
2015-09-04 18:09:05 +02:00
let callee_str = match callee.rewrite(context, max_callee_width, offset) {
Some(string) => {
if !string.contains('\n') && string.len() > max_callee_width {
panic!("{:?} {}", string, max_callee_width);
} else {
string
}
}
2015-09-07 21:34:37 +02:00
None => return Err(Ordering::Greater),
2015-09-04 18:09:05 +02:00
};
2015-06-23 15:58:58 +02:00
2015-08-14 14:09:19 +02:00
let extra_offset = extra_offset(&callee_str, offset);
2015-06-16 17:29:05 +02:00
// 2 is for parens.
2015-09-04 18:09:05 +02:00
let remaining_width = match width.checked_sub(extra_offset + 2) {
Some(str) => str,
None => return Err(Ordering::Greater),
};
2015-08-14 14:09:19 +02:00
let offset = offset + extra_offset + 1;
let inner_indent = expr_indent(context, offset);
let inner_context = context.overflow_context(inner_indent - context.block_indent);
2015-04-21 21:01:19 +12:00
2015-06-23 15:58:58 +02:00
let items = itemize_list(context.codemap,
args.iter(),
")",
|item| item.span.lo,
|item| item.span.hi,
2015-06-24 01:11:29 +02:00
// Take old span when rewrite fails.
2015-08-19 22:39:45 +02:00
|item| {
item.rewrite(&inner_context, remaining_width, offset)
2015-07-17 23:10:15 +02:00
.unwrap_or(context.snippet(item.span))
2015-08-19 22:39:45 +02:00
},
2015-06-23 15:58:58 +02:00
callee.span.hi + BytePos(1),
span.hi);
2015-08-19 22:39:45 +02:00
let fmt = ListFormatting::for_fn(remaining_width, offset);
2015-09-04 18:09:05 +02:00
let list_str = match write_list(&items.collect::<Vec<_>>(), &fmt) {
Some(str) => str,
2015-09-07 21:34:37 +02:00
None => return Err(Ordering::Less),
2015-09-04 18:09:05 +02:00
};
2015-04-21 21:01:19 +12:00
2015-09-04 18:09:05 +02:00
Ok(format!("{}({})", callee_str, list_str))
2015-06-16 17:29:05 +02:00
}
2015-04-21 21:01:19 +12:00
macro_rules! block_indent_helper {
($name:ident, $option:ident) => (
fn $name(context: &RewriteContext, offset: usize) -> usize {
match context.config.$option {
BlockIndentStyle::Inherit => context.block_indent,
BlockIndentStyle::Tabbed => context.block_indent + context.config.tab_spaces,
BlockIndentStyle::Visual => offset,
}
}
);
2015-07-20 23:29:25 +02:00
}
block_indent_helper!(expr_indent, expr_indent_style);
block_indent_helper!(closure_indent, closure_indent_style);
2015-08-19 22:39:45 +02:00
2015-07-03 11:13:28 +02:00
fn rewrite_paren(context: &RewriteContext,
subexpr: &ast::Expr,
width: usize,
offset: usize)
-> Option<String> {
2015-06-16 17:29:05 +02:00
debug!("rewrite_paren, width: {}, offset: {}", width, offset);
// 1 is for opening paren, 2 is for opening+closing, we want to keep the closing
// paren on the same line as the subexpr.
let subexpr_str = subexpr.rewrite(context, try_opt!(width.checked_sub(2)), offset + 1);
2015-06-16 17:29:05 +02:00
debug!("rewrite_paren, subexpr_str: `{:?}`", subexpr_str);
subexpr_str.map(|s| format!("({})", s))
}
2015-05-24 19:57:13 +02:00
2015-06-24 01:11:29 +02:00
fn rewrite_struct_lit<'a>(context: &RewriteContext,
path: &ast::Path,
fields: &'a [ast::Field],
base: Option<&'a ast::Expr>,
span: Span,
width: usize,
offset: usize)
2015-07-03 11:13:28 +02:00
-> Option<String> {
2015-06-16 17:29:05 +02:00
debug!("rewrite_struct_lit: width {}, offset {}", width, offset);
assert!(!fields.is_empty() || base.is_some());
2015-05-25 19:11:53 +12:00
2015-06-24 01:11:29 +02:00
enum StructLitField<'a> {
Regular(&'a ast::Field),
2015-07-03 11:13:28 +02:00
Base(&'a ast::Expr),
2015-06-24 01:11:29 +02:00
}
2015-08-14 14:09:19 +02:00
// 2 = " {".len()
let path_budget = try_opt!(width.checked_sub(2));
let path_str = try_opt!(path.rewrite(context, path_budget, offset));
2015-08-14 14:09:19 +02:00
2015-07-20 23:29:25 +02:00
// Foo { a: Foo } - indent is +3, width is -5.
2015-08-21 13:31:09 +02:00
let h_budget = try_opt!(width.checked_sub(path_str.len() + 5));
2015-07-20 23:29:25 +02:00
let (indent, v_budget) = match context.config.struct_lit_style {
StructLitStyle::Visual => {
2015-07-20 23:29:25 +02:00
(offset + path_str.len() + 3, h_budget)
}
StructLitStyle::Block => {
2015-07-16 14:03:52 +12:00
// If we are all on one line, then we'll ignore the indent, and we
// have a smaller budget.
let indent = context.block_indent + context.config.tab_spaces;
2015-07-20 23:29:25 +02:00
let v_budget = context.config.max_width.checked_sub(indent).unwrap_or(0);
(indent, v_budget)
}
};
2015-05-25 19:11:53 +12:00
2015-06-24 01:11:29 +02:00
let field_iter = fields.into_iter().map(StructLitField::Regular)
.chain(base.into_iter().map(StructLitField::Base));
2015-07-19 23:42:54 +02:00
let inner_context = &RewriteContext { block_indent: indent, ..*context };
2015-06-24 01:11:29 +02:00
let items = itemize_list(context.codemap,
field_iter,
"}",
|item| {
match *item {
StructLitField::Regular(ref field) => field.span.lo,
2015-08-27 23:15:21 -04:00
StructLitField::Base(ref expr) => {
let last_field_hi =
fields.last().map_or(span.lo, |field| field.span.hi);
let snippet =
context.snippet(mk_sp(last_field_hi, expr.span.lo));
let pos = snippet.find_uncommented("..").unwrap();
last_field_hi + BytePos(pos as u32)
}
2015-06-24 01:11:29 +02:00
}
},
|item| {
match *item {
StructLitField::Regular(ref field) => field.span.hi,
2015-08-19 22:39:45 +02:00
StructLitField::Base(ref expr) => expr.span.hi,
2015-06-24 01:11:29 +02:00
}
},
|item| {
match *item {
StructLitField::Regular(ref field) => {
2015-07-19 23:42:54 +02:00
rewrite_field(inner_context, &field, h_budget, indent)
2015-07-17 23:10:15 +02:00
.unwrap_or(context.snippet(field.span))
2015-08-19 22:39:45 +02:00
}
2015-06-24 01:11:29 +02:00
StructLitField::Base(ref expr) => {
// 2 = ..
2015-07-19 23:42:54 +02:00
expr.rewrite(inner_context, h_budget - 2, indent + 2)
2015-06-24 01:11:29 +02:00
.map(|s| format!("..{}", s))
2015-07-17 23:10:15 +02:00
.unwrap_or(context.snippet(expr.span))
2015-06-24 01:11:29 +02:00
}
}
},
span_after(span, "{", context.codemap),
span.hi);
2015-07-16 13:31:20 +12:00
let fmt = ListFormatting {
tactic: match (context.config.struct_lit_style, fields.len()) {
(StructLitStyle::Visual, 1) => ListTactic::HorizontalVertical,
_ => context.config.struct_lit_multiline_style.to_list_tactic(),
},
2015-07-16 13:31:20 +12:00
separator: ",",
trailing_separator: if base.is_some() {
2015-06-16 17:29:05 +02:00
SeparatorTactic::Never
} else {
context.config.struct_lit_trailing_comma
2015-06-16 17:29:05 +02:00
},
2015-07-16 13:31:20 +12:00
indent: indent,
2015-07-16 14:03:52 +12:00
h_width: h_budget,
v_width: v_budget,
2015-08-14 14:09:19 +02:00
ends_with_newline: false,
2015-07-16 13:31:20 +12:00
};
2015-09-04 18:09:05 +02:00
let fields_str = try_opt!(write_list(&items.collect::<Vec<_>>(), &fmt));
2015-05-25 19:11:53 +12:00
let format_on_newline = || {
let inner_indent = make_indent(context.block_indent +
context.config.tab_spaces);
let outer_indent = make_indent(context.block_indent);
Some(format!("{} {{\n{}{}\n{}}}", path_str, inner_indent, fields_str, outer_indent))
};
match (context.config.struct_lit_style, context.config.struct_lit_multiline_style) {
(StructLitStyle::Block, _) if fields_str.contains('\n') => format_on_newline(),
(StructLitStyle::Block, MultilineStyle::ForceMulti) => format_on_newline(),
_ => Some(format!("{} {{ {} }}", path_str, fields_str)),
}
// FIXME if context.config.struct_lit_style == Visual, but we run out
// of space, we should fall back to BlockIndent.
2015-06-16 17:29:05 +02:00
}
2015-05-25 19:11:53 +12:00
2015-07-03 11:13:28 +02:00
fn rewrite_field(context: &RewriteContext,
field: &ast::Field,
width: usize,
offset: usize)
-> Option<String> {
let name = &field.ident.node.to_string();
2015-06-16 17:29:05 +02:00
let overhead = name.len() + 2;
2015-09-04 18:09:05 +02:00
let expr =
field.expr.rewrite(context, try_opt!(width.checked_sub(overhead)), offset + overhead);
2015-06-16 17:29:05 +02:00
expr.map(|s| format!("{}: {}", name, s))
}
2015-05-25 19:11:53 +12:00
fn rewrite_tuple_lit(context: &RewriteContext,
items: &[ptr::P<ast::Expr>],
2015-06-23 15:58:58 +02:00
span: Span,
width: usize,
offset: usize)
-> Option<String> {
debug!("rewrite_tuple_lit: width: {}, offset: {}", width, offset);
2015-06-23 15:58:58 +02:00
let indent = offset + 1;
// In case of length 1, need a trailing comma
if items.len() == 1 {
// 3 = "(" + ",)"
let budget = try_opt!(width.checked_sub(3));
return items[0].rewrite(context, budget, indent).map(|s| format!("({},)", s));
}
2015-06-23 15:58:58 +02:00
let items = itemize_list(context.codemap,
items.iter(),
2015-06-23 15:58:58 +02:00
")",
|item| item.span.lo,
|item| item.span.hi,
2015-08-19 22:39:45 +02:00
|item| {
let inner_width = context.config.max_width - indent - 1;
item.rewrite(context, inner_width, indent)
2015-07-17 23:10:15 +02:00
.unwrap_or(context.snippet(item.span))
2015-08-19 22:39:45 +02:00
},
2015-06-23 15:58:58 +02:00
span.lo + BytePos(1), // Remove parens
span.hi - BytePos(1));
let budget = try_opt!(width.checked_sub(2));
let fmt = ListFormatting::for_fn(budget, indent);
2015-09-04 18:09:05 +02:00
let list_str = try_opt!(write_list(&items.collect::<Vec<_>>(), &fmt));
2015-06-23 15:58:58 +02:00
2015-09-04 18:09:05 +02:00
Some(format!("({})", list_str))
2015-06-23 15:58:58 +02:00
}
fn rewrite_binary_op(context: &RewriteContext,
op: &ast::BinOp,
lhs: &ast::Expr,
rhs: &ast::Expr,
width: usize,
offset: usize)
-> Option<String> {
// FIXME: format comments between operands and operator
2015-07-17 23:10:15 +02:00
let operator_str = context.snippet(op.span);
// Get "full width" rhs and see if it fits on the current line. This
// usually works fairly well since it tends to place operands of
// operations with high precendence close together.
let rhs_result = try_opt!(rhs.rewrite(context, width, offset));
2015-07-03 00:50:55 +02:00
// Second condition is needed in case of line break not caused by a
// shortage of space, but by end-of-line comments, for example.
// Note that this is non-conservative, but its just to see if it's even
// worth trying to put everything on one line.
if rhs_result.len() + 2 + operator_str.len() < width && !rhs_result.contains('\n') {
// 1 = space between lhs expr and operator
if let Some(mut result) = lhs.rewrite(context,
width - 1 - operator_str.len(),
offset) {
result.push(' ');
result.push_str(&operator_str);
result.push(' ');
let remaining_width = width.checked_sub(last_line_width(&result)).unwrap_or(0);
if rhs_result.len() <= remaining_width {
result.push_str(&rhs_result);
return Some(result);
}
if let Some(rhs_result) = rhs.rewrite(context,
remaining_width,
offset + result.len()) {
if rhs_result.len() <= remaining_width {
result.push_str(&rhs_result);
return Some(result);
}
}
}
}
// We have to use multiple lines.
// Re-evaluate the lhs because we have more space now:
let budget = try_opt!(context.config.max_width.checked_sub(offset + 1 + operator_str.len()));
Some(format!("{} {}\n{}{}",
try_opt!(lhs.rewrite(context, budget, offset)),
operator_str,
make_indent(offset),
rhs_result))
}
fn rewrite_unary_op(context: &RewriteContext,
op: &ast::UnOp,
expr: &ast::Expr,
width: usize,
offset: usize)
-> Option<String> {
// For some reason, an UnOp is not spanned like BinOp!
let operator_str = match *op {
2015-07-23 23:08:41 +02:00
ast::UnOp::UnUniq => "box ",
ast::UnOp::UnDeref => "*",
ast::UnOp::UnNot => "!",
2015-08-16 15:58:17 +12:00
ast::UnOp::UnNeg => "-",
};
let operator_len = operator_str.len();
expr.rewrite(context, try_opt!(width.checked_sub(operator_len)), offset + operator_len)
.map(|r| format!("{}{}", operator_str, r))
}
2015-08-21 13:31:09 +02:00
fn rewrite_assignment(context: &RewriteContext,
lhs: &ast::Expr,
rhs: &ast::Expr,
op: Option<&ast::BinOp>,
width: usize,
offset: usize)
-> Option<String> {
let operator_str = match op {
2015-07-17 23:10:15 +02:00
Some(op) => context.snippet(op.span),
2015-08-21 13:31:09 +02:00
None => "=".to_owned(),
};
// 1 = space between lhs and operator.
let max_width = try_opt!(width.checked_sub(operator_str.len() + 1));
let lhs_str = format!("{} {}", try_opt!(lhs.rewrite(context, max_width, offset)), operator_str);
rewrite_assign_rhs(&context, lhs_str, rhs, width, offset)
}
// The left hand side must contain everything up to, and including, the
// assignment operator.
pub fn rewrite_assign_rhs<S: Into<String>>(context: &RewriteContext,
lhs: S,
ex: &ast::Expr,
width: usize,
offset: usize)
-> Option<String> {
let mut result = lhs.into();
// 1 = space between operator and rhs.
let max_width = try_opt!(width.checked_sub(result.len() + 1));
let rhs = ex.rewrite(&context, max_width, offset + result.len() + 1);
match rhs {
Some(new_str) => {
result.push(' ');
result.push_str(&new_str)
}
None => {
// Expression did not fit on the same line as the identifier. Retry
// on the next line.
let new_offset = offset + context.config.tab_spaces;
result.push_str(&format!("\n{}", make_indent(new_offset)));
2015-09-04 18:09:05 +02:00
// FIXME: we probably should related max_width to width instead of config.max_width
// where is the 1 coming from anyway?
2015-08-21 13:31:09 +02:00
let max_width = try_opt!(context.config.max_width.checked_sub(new_offset + 1));
2015-09-04 18:09:05 +02:00
let overflow_context = context.overflow_context(context.config.tab_spaces);
let rhs = ex.rewrite(&overflow_context, max_width, new_offset);
2015-08-21 13:31:09 +02:00
2015-09-04 18:09:05 +02:00
result.push_str(&&try_opt!(rhs));
2015-08-21 13:31:09 +02:00
}
}
Some(result)
}