// 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 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. use rewrite::{Rewrite, RewriteContext}; use lists::{write_list, itemize_list, ListFormatting, SeparatorTactic, ListTactic}; use string::{StringFormat, rewrite_string}; use StructLitStyle; use utils::{span_after, make_indent, extra_offset}; use visitor::FmtVisitor; use config::BlockIndentStyle; use comment::{FindUncommented, rewrite_comment}; use types::rewrite_path; use syntax::{ast, ptr}; use syntax::codemap::{Pos, Span, BytePos, mk_sp}; use syntax::visit::Visitor; impl Rewrite for ast::Expr { fn rewrite(&self, context: &RewriteContext, width: usize, offset: usize) -> Option { match self.node { ast::Expr_::ExprLit(ref l) => { match l.node { ast::Lit_::LitStr(ref is, _) => { rewrite_string_lit(context, &is, l.span, width, offset) } _ => context.codemap.span_to_snippet(self.span).ok() } } ast::Expr_::ExprCall(ref callee, ref args) => { rewrite_call(context, callee, args, self.span, width, offset) } 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) } 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) } ast::Expr_::ExprTup(ref items) => { rewrite_tuple_lit(context, items, self.span, width, offset) } ast::Expr_::ExprWhile(ref cond, ref block, label) => { Loop::new_while(None, cond, block, label).rewrite(context, width, offset) } ast::Expr_::ExprWhileLet(ref pat, ref cond, ref block, label) => { Loop::new_while(Some(pat), cond, block, label).rewrite(context, width, offset) } ast::Expr_::ExprForLoop(ref pat, ref cond, ref block, label) => { Loop::new_for(pat, cond, block, label).rewrite(context, width, offset) } ast::Expr_::ExprLoop(ref block, label) => { Loop::new_loop(block, label).rewrite(context, width, offset) } 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), None, width, offset) } 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) } // We reformat it ourselves because rustc gives us a bad span // for ranges, see rust#27162 ast::Expr_::ExprRange(ref left, ref right) => { rewrite_range(context, left.as_ref().map(|e| &**e), right.as_ref().map(|e| &**e), width, offset) } ast::Expr_::ExprPath(ref qself, ref path) => { rewrite_path(context, qself.as_ref(), path, width, offset) } _ => context.codemap.span_to_snippet(self.span).ok() } } } impl Rewrite for ast::Block { fn rewrite(&self, context: &RewriteContext, width: usize, offset: usize) -> Option { let mut visitor = FmtVisitor::from_codemap(context.codemap, context.config); visitor.block_indent = context.block_indent; let prefix = match self.rules { ast::BlockCheckMode::PushUnsafeBlock(..) | ast::BlockCheckMode::UnsafeBlock(..) => { let snippet = try_opt!(context.codemap.span_to_snippet(self.span).ok()); 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(); if trimmed.len() > 0 { // 9 = "unsafe {".len(), 7 = "unsafe ".len() format!("unsafe {} ", rewrite_comment(trimmed, true, width - 9, offset + 7)) } else { "unsafe ".to_owned() } } ast::BlockCheckMode::PopUnsafeBlock(..) | ast::BlockCheckMode::DefaultBlock => { visitor.last_pos = self.span.lo; String::new() } }; 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)); visitor.buffer.push_str(&snippet); Some(format!("{}{}", prefix, visitor.buffer)) } } // TODO(#18): implement pattern formatting impl Rewrite for ast::Pat { fn rewrite(&self, context: &RewriteContext, _: usize, _: usize) -> Option { context.codemap.span_to_snippet(self.span).ok() } } // Abstraction over for, while and loop expressions struct Loop<'a> { cond: Option<&'a ast::Expr>, block: &'a ast::Block, label: Option, 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) -> 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) -> Loop<'a> { Loop { cond: Some(cond), block: block, label: label, pat: pat, keyword: "while ", matcher: match pat { Some(..) => "let ", None => "" }, connector: " =", } } fn new_for(pat: &'a ast::Pat, cond: &'a ast::Expr, block: &'a ast::Block, label: Option) -> 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 { let label_string = rewrite_label(self.label); // 2 = " {".len() let inner_width = width - self.keyword.len() - 2 - label_string.len(); 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)), None => String::new() }; // 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) }) } } fn rewrite_label(label: Option) -> String { match label { Some(ident) => format!("{}: ", ident), None => "".to_owned() } } // 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 { let left_string = match left { // 2 = .. Some(expr) => try_opt!(expr.rewrite(context, width - 2, offset)), None => String::new() }; let right_string = match right { Some(expr) => { // 2 = .. let max_width = (width - 2).checked_sub(left_string.len()).unwrap_or(0); try_opt!(expr.rewrite(context, max_width, offset + 2 + left_string.len())) } None => String::new() }; Some(format!("{}..{}", left_string, right_string)) } // Rewrites if-else blocks. If let Some(_) = pat, the expression is // treated as an if-let-else expression. fn rewrite_if_else(context: &RewriteContext, cond: &ast::Expr, if_block: &ast::Block, else_block: Option<&ast::Expr>, pat: Option<&ast::Pat>, width: usize, offset: usize) -> Option { // 3 = "if ", 2 = " {" let pat_expr_string = try_opt!(rewrite_pat_expr(context, pat, cond, "let ", " =", width - 3 - 2, offset + 3)); 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 { let else_block_string = try_opt!(else_block.rewrite(context, width, offset)); result.push_str(" else "); result.push_str(&else_block_string); } Some(result) } fn rewrite_pat_expr(context: &RewriteContext, pat: Option<&ast::Pat>, expr: &ast::Expr, matcher: &str, connector: &str, width: usize, offset: usize) -> Option { let pat_offset = offset + matcher.len(); let mut result = match pat { Some(pat) => { let pat_string = try_opt!(pat.rewrite(context, width - connector.len() - matcher.len(), pat_offset)); format!("{}{}{}", matcher, pat_string, connector) } None => String::new() }; // Consider only the last line of the pat string. let extra_offset = extra_offset(&result, offset); // The expression may (partionally) fit on the current line. if width > extra_offset + 1 { let mut corrected_offset = extra_offset; if pat.is_some() { result.push(' '); corrected_offset += 1; } let expr_rewrite = expr.rewrite(context, width - corrected_offset, offset + corrected_offset); if let Some(expr_string) = expr_rewrite { 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)); Some(result) } fn rewrite_string_lit(context: &RewriteContext, s: &str, span: Span, width: usize, offset: usize) -> Option { // Check if there is anything to fix: we always try to fixup multi-line // strings, or if the string is too long for the line. let l_loc = context.codemap.lookup_char_pos(span.lo); let r_loc = context.codemap.lookup_char_pos(span.hi); if l_loc.line == r_loc.line && r_loc.col.to_usize() <= context.config.max_width { return context.codemap.span_to_snippet(span).ok(); } let fmt = StringFormat { opener: "\"", closer: "\"", line_start: " ", line_end: "\\", width: width, offset: offset, trim_end: false, }; Some(rewrite_string(&s.escape_default(), &fmt)) } fn rewrite_call(context: &RewriteContext, callee: &ast::Expr, args: &[ptr::P], span: Span, width: usize, offset: usize) -> Option { debug!("rewrite_call, width: {}, offset: {}", width, offset); // TODO using byte lens instead of char lens (and probably all over the place too) // 2 is for parens let max_callee_width = try_opt!(width.checked_sub(2)); let callee_str = try_opt!(callee.rewrite(context, max_callee_width, offset)); debug!("rewrite_call, callee_str: `{}`", callee_str); if args.len() == 0 { return Some(format!("{}()", callee_str)); } let extra_offset = extra_offset(&callee_str, offset); // 2 is for parens. let remaining_width = try_opt!(width.checked_sub(extra_offset + 2)); let offset = offset + extra_offset + 1; let block_indent = expr_block_indent(context, offset); let inner_context = &RewriteContext { block_indent: block_indent, ..*context }; let items = itemize_list(context.codemap, args.iter(), ")", |item| item.span.lo, |item| item.span.hi, // Take old span when rewrite fails. |item| item.rewrite(inner_context, remaining_width, offset) .unwrap_or(context.codemap.span_to_snippet(item.span) .unwrap()), callee.span.hi + BytePos(1), span.hi); let fmt = ListFormatting { tactic: ListTactic::HorizontalVertical, separator: ",", trailing_separator: SeparatorTactic::Never, indent: offset, h_width: remaining_width, v_width: remaining_width, ends_with_newline: false, }; Some(format!("{}({})", callee_str, write_list(&items.collect::>(), &fmt))) } fn expr_block_indent(context: &RewriteContext, offset: usize) -> usize { match context.config.expr_indent_style { BlockIndentStyle::Inherit => context.block_indent, BlockIndentStyle::Tabbed => context.block_indent + context.config.tab_spaces, BlockIndentStyle::Visual => offset, } } fn rewrite_paren(context: &RewriteContext, subexpr: &ast::Expr, width: usize, offset: usize) -> Option { 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, width-2, offset+1); debug!("rewrite_paren, subexpr_str: `{:?}`", subexpr_str); subexpr_str.map(|s| format!("({})", s)) } 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) -> Option { debug!("rewrite_struct_lit: width {}, offset {}", width, offset); assert!(fields.len() > 0 || base.is_some()); enum StructLitField<'a> { Regular(&'a ast::Field), Base(&'a ast::Expr), } // 2 = " {".len() let path_str = try_opt!(path.rewrite(context, width - 2, offset)); // Foo { a: Foo } - indent is +3, width is -5. let h_budget = width.checked_sub(path_str.len() + 5).unwrap_or(0); let (indent, v_budget) = match context.config.struct_lit_style { StructLitStyle::VisualIndent => { (offset + path_str.len() + 3, h_budget) } StructLitStyle::BlockIndent => { // 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; let v_budget = context.config.max_width.checked_sub(indent).unwrap_or(0); (indent, v_budget) } }; let field_iter = fields.into_iter().map(StructLitField::Regular) .chain(base.into_iter().map(StructLitField::Base)); let inner_context = &RewriteContext { block_indent: indent, ..*context }; let items = itemize_list(context.codemap, field_iter, "}", |item| { match *item { StructLitField::Regular(ref field) => field.span.lo, // 2 = .. StructLitField::Base(ref expr) => expr.span.lo - BytePos(2) } }, |item| { match *item { StructLitField::Regular(ref field) => field.span.hi, StructLitField::Base(ref expr) => expr.span.hi } }, |item| { match *item { StructLitField::Regular(ref field) => { rewrite_field(inner_context, &field, h_budget, indent) .unwrap_or(context.codemap.span_to_snippet(field.span) .unwrap()) }, StructLitField::Base(ref expr) => { // 2 = .. expr.rewrite(inner_context, h_budget - 2, indent + 2) .map(|s| format!("..{}", s)) .unwrap_or(context.codemap.span_to_snippet(expr.span) .unwrap()) } } }, span_after(span, "{", context.codemap), span.hi); let fmt = ListFormatting { tactic: ListTactic::HorizontalVertical, separator: ",", trailing_separator: if base.is_some() { SeparatorTactic::Never } else { context.config.struct_lit_trailing_comma }, indent: indent, h_width: h_budget, v_width: v_budget, ends_with_newline: false, }; let fields_str = write_list(&items.collect::>(), &fmt); match context.config.struct_lit_style { StructLitStyle::BlockIndent if fields_str.contains('\n') => { 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)) } _ => Some(format!("{} {{ {} }}", path_str, fields_str)), } // FIXME if context.config.struct_lit_style == VisualIndent, but we run out // of space, we should fall back to BlockIndent. } fn rewrite_field(context: &RewriteContext, field: &ast::Field, width: usize, offset: usize) -> Option { let name = &field.ident.node.to_string(); let overhead = name.len() + 2; let expr = field.expr.rewrite(context, width - overhead, offset + overhead); expr.map(|s| format!("{}: {}", name, s)) } fn rewrite_tuple_lit(context: &RewriteContext, items: &[ptr::P], span: Span, width: usize, offset: usize) -> Option { debug!("rewrite_tuple_lit: width: {}, offset: {}", width, offset); let indent = offset + 1; // In case of length 1, need a trailing comma if items.len() == 1 { // 3 = "(" + ",)" return items[0].rewrite(context, width - 3, indent).map(|s| format!("({},)", s)); } let items = itemize_list(context.codemap, items.iter(), ")", |item| item.span.lo, |item| item.span.hi, |item| item.rewrite(context, context.config.max_width - indent - 1, indent) .unwrap_or(context.codemap.span_to_snippet(item.span) .unwrap()), span.lo + BytePos(1), // Remove parens span.hi - BytePos(1)); let fmt = ListFormatting { tactic: ListTactic::HorizontalVertical, separator: ",", trailing_separator: SeparatorTactic::Never, indent: indent, h_width: width - 2, v_width: width - 2, ends_with_newline: false, }; Some(format!("({})", write_list(&items.collect::>(), &fmt))) } fn rewrite_binary_op(context: &RewriteContext, op: &ast::BinOp, lhs: &ast::Expr, rhs: &ast::Expr, width: usize, offset: usize) -> Option { // FIXME: format comments between operands and operator let operator_str = context.codemap.span_to_snippet(op.span).unwrap(); // 1 = space between lhs expr and operator let mut result = try_opt!(lhs.rewrite(context, context.config.max_width - offset - 1 - operator_str.len(), offset)); result.push(' '); result.push_str(&operator_str); // 1 = space between operator and rhs let used_width = result.len() + 1; let remaining_width = match result.rfind('\n') { Some(idx) => (offset + width + idx).checked_sub(used_width).unwrap_or(0), None => width.checked_sub(used_width).unwrap_or(0) }; // 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)); // Second condition is needed in case of line break not caused by a // shortage of space, but by end-of-line comments, for example. if rhs_result.len() > remaining_width || rhs_result.contains('\n') { result.push('\n'); result.push_str(&make_indent(offset)); } else { result.push(' '); }; result.push_str(&rhs_result); Some(result) } fn rewrite_unary_op(context: &RewriteContext, op: &ast::UnOp, expr: &ast::Expr, width: usize, offset: usize) -> Option { // For some reason, an UnOp is not spanned like BinOp! let operator_str = match *op { ast::UnOp::UnUniq => "box ", ast::UnOp::UnDeref => "*", ast::UnOp::UnNot => "!", ast::UnOp::UnNeg => "-" }; let subexpr = try_opt!(expr.rewrite(context, width - operator_str.len(), offset)); Some(format!("{}{}", operator_str, subexpr)) }