rust/src/items.rs

2712 lines
87 KiB
Rust
Raw Normal View History

// 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-05-24 18:03:26 -05:00
// Formatting top-level items - functions, structs, enums, traits, impls.
use {Indent, Shape};
use codemap::SpanUtils;
use utils::{format_mutability, format_visibility, contains_skip, end_typaram, wrap_str,
last_line_width, format_unsafety, trim_newlines, stmt_expr, semicolon_for_expr,
trimmed_last_line_width, colon_spaces, mk_sp};
use lists::{write_list, itemize_list, ListItem, ListFormatting, SeparatorTactic,
DefinitiveListTactic, ListTactic, definitive_tactic};
use expr::{format_expr, is_empty_block, is_simple_block_stmt, rewrite_assign_rhs,
rewrite_call_inner, ExprType};
use comment::{FindUncommented, contains_comment, rewrite_comment, recover_comment_removed};
2015-04-21 04:01:19 -05:00
use visitor::FmtVisitor;
2015-09-08 13:56:33 -05:00
use rewrite::{Rewrite, RewriteContext};
use config::{Config, IndentStyle, Density, ReturnIndent, BraceStyle, Style};
use types::join_bounds;
use vertical::rewrite_with_alignment;
2015-06-23 08:58:58 -05:00
use syntax::{ast, abi, ptr, symbol};
use syntax::codemap::{Span, BytePos};
use syntax::ast::ImplItem;
fn type_annotation_separator(config: &Config) -> &str {
colon_spaces(
config.space_before_type_annotation(),
config.space_after_type_annotation_colon(),
)
}
// Statements of the form
// let pat: ty = init;
impl Rewrite for ast::Local {
fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
debug!(
"Local::rewrite {:?} {} {:?}",
self,
shape.width,
shape.indent
);
let mut result = "let ".to_owned();
2017-04-19 08:48:45 -05:00
// 4 = "let ".len()
let pat_shape = try_opt!(shape.offset_left(4));
// 1 = ;
let pat_shape = try_opt!(pat_shape.sub_width(1));
let pat_str = try_opt!(self.pat.rewrite(&context, pat_shape));
result.push_str(&pat_str);
// String that is placed within the assignment pattern and expression.
let infix = {
let mut infix = String::new();
if let Some(ref ty) = self.ty {
let separator = type_annotation_separator(context.config);
let indent = shape.indent + last_line_width(&result) + separator.len();
// 1 = ;
let budget = try_opt!(shape.width.checked_sub(indent.width() + 1));
let rewrite = try_opt!(ty.rewrite(context, Shape::legacy(budget, indent)));
infix.push_str(separator);
infix.push_str(&rewrite);
2015-08-21 06:31:09 -05:00
}
if self.init.is_some() {
infix.push_str(" =");
2015-08-21 06:31:09 -05:00
}
infix
2015-08-21 06:31:09 -05:00
};
result.push_str(&infix);
if let Some(ref ex) = self.init {
2017-01-26 14:14:26 -06:00
// 1 = trailing semicolon;
let nested_shape = try_opt!(shape.sub_width(1));
2017-03-21 15:05:50 -05:00
result = try_opt!(rewrite_assign_rhs(&context, result, ex, nested_shape));
}
result.push(';');
Some(result)
2015-08-21 06:31:09 -05:00
}
}
2015-08-21 06:31:09 -05:00
2017-01-12 19:07:42 -06:00
// TODO convert to using rewrite style rather than visitor
// TODO format modules in this style
2017-01-26 12:42:34 -06:00
#[allow(dead_code)]
2017-01-12 19:07:42 -06:00
struct Item<'a> {
keyword: &'static str,
abi: String,
vis: Option<&'a ast::Visibility>,
body: Vec<BodyElement<'a>>,
span: Span,
}
impl<'a> Item<'a> {
fn from_foreign_mod(fm: &'a ast::ForeignMod, span: Span, config: &Config) -> Item<'a> {
let abi = if fm.abi == abi::Abi::C && !config.force_explicit_abi() {
2017-01-12 19:07:42 -06:00
"extern".into()
} else {
format!("extern {}", fm.abi)
};
Item {
keyword: "",
abi: abi,
vis: None,
body: fm.items
.iter()
.map(|i| BodyElement::ForeignItem(i))
.collect(),
2017-01-12 19:07:42 -06:00
span: span,
}
}
}
enum BodyElement<'a> {
// Stmt(&'a ast::Stmt),
// Field(&'a ast::Field),
// Variant(&'a ast::Variant),
// Item(&'a ast::Item),
ForeignItem(&'a ast::ForeignItem),
}
impl<'a> FmtVisitor<'a> {
2017-01-12 19:07:42 -06:00
fn format_item(&mut self, item: Item) {
self.buffer.push_str(&item.abi);
self.buffer.push_str(" ");
2015-09-21 13:02:45 -05:00
2017-01-12 19:07:42 -06:00
let snippet = self.snippet(item.span);
let brace_pos = snippet.find_uncommented("{").unwrap();
2016-08-23 07:00:43 -05:00
self.buffer.push_str("{");
2017-01-12 19:07:42 -06:00
if !item.body.is_empty() || contains_comment(&snippet[brace_pos..]) {
// FIXME: this skips comments between the extern keyword and the opening
// brace.
2017-01-12 19:07:42 -06:00
self.last_pos = item.span.lo + BytePos(brace_pos as u32 + 1);
self.block_indent = self.block_indent.block_indent(self.config);
2017-01-12 19:07:42 -06:00
if item.body.is_empty() {
self.format_missing_no_indent(item.span.hi - BytePos(1));
2016-08-23 07:00:43 -05:00
self.block_indent = self.block_indent.block_unindent(self.config);
2017-06-15 18:49:49 -05:00
self.buffer
.push_str(&self.block_indent.to_string(self.config));
2016-08-23 07:00:43 -05:00
} else {
2017-01-12 19:07:42 -06:00
for item in &item.body {
self.format_body_element(item);
2016-08-23 07:00:43 -05:00
}
2015-09-21 13:02:45 -05:00
2016-08-23 07:00:43 -05:00
self.block_indent = self.block_indent.block_unindent(self.config);
2017-01-12 19:07:42 -06:00
self.format_missing_with_indent(item.span.hi - BytePos(1));
2016-08-23 07:00:43 -05:00
}
2015-09-21 13:02:45 -05:00
}
self.buffer.push_str("}");
2017-01-12 19:07:42 -06:00
self.last_pos = item.span.hi;
}
fn format_body_element(&mut self, element: &BodyElement) {
match *element {
BodyElement::ForeignItem(ref item) => self.format_foreign_item(item),
}
}
pub fn format_foreign_mod(&mut self, fm: &ast::ForeignMod, span: Span) {
let item = Item::from_foreign_mod(fm, span, self.config);
self.format_item(item);
2015-09-21 13:02:45 -05:00
}
fn format_foreign_item(&mut self, item: &ast::ForeignItem) {
self.format_missing_with_indent(item.span.lo);
// Drop semicolon or it will be interpreted as comment.
// FIXME: this may be a faulty span from libsyntax.
2015-10-18 17:25:38 -05:00
let span = mk_sp(item.span.lo, item.span.hi - BytePos(1));
2015-09-21 13:02:45 -05:00
match item.node {
2016-03-01 16:27:19 -06:00
ast::ForeignItemKind::Fn(ref fn_decl, ref generics) => {
2015-09-21 13:02:45 -05:00
let indent = self.block_indent;
let rewrite = rewrite_fn_base(
&self.get_context(),
indent,
item.ident,
fn_decl,
generics,
ast::Unsafety::Normal,
ast::Constness::NotConst,
ast::Defaultness::Final,
// These are not actually rust functions,
// but we format them as such.
abi::Abi::Rust,
&item.vis,
span,
false,
false,
false,
);
2015-09-21 13:02:45 -05:00
match rewrite {
Some((new_fn, _)) => {
2015-09-21 13:02:45 -05:00
self.buffer.push_str(&new_fn);
self.buffer.push_str(";");
}
None => self.format_missing(item.span.hi),
}
}
2016-03-01 16:27:19 -06:00
ast::ForeignItemKind::Static(ref ty, is_mutable) => {
2015-09-21 13:02:45 -05:00
// FIXME(#21): we're dropping potential comments in between the
// function keywords here.
let vis = format_visibility(&item.vis);
let mut_str = if is_mutable { "mut " } else { "" };
let prefix = format!("{}static {}{}: ", vis, mut_str, item.ident);
2015-09-21 13:02:45 -05:00
let offset = self.block_indent + prefix.len();
// 1 = ;
2017-05-07 17:24:12 -05:00
let shape = Shape::indented(offset, self.config).sub_width(1).unwrap();
let rewrite = ty.rewrite(&self.get_context(), shape);
2015-09-21 13:02:45 -05:00
match rewrite {
Some(result) => {
self.buffer.push_str(&prefix);
self.buffer.push_str(&result);
self.buffer.push_str(";");
}
None => self.format_missing(item.span.hi),
}
}
}
self.last_pos = item.span.hi;
}
pub fn rewrite_fn(
&mut self,
indent: Indent,
ident: ast::Ident,
fd: &ast::FnDecl,
generics: &ast::Generics,
unsafety: ast::Unsafety,
constness: ast::Constness,
defaultness: ast::Defaultness,
abi: abi::Abi,
vis: &ast::Visibility,
span: Span,
block: &ast::Block,
) -> Option<String> {
let mut newline_brace = newline_for_brace(self.config, &generics.where_clause);
let context = self.get_context();
let block_snippet = self.snippet(mk_sp(block.span.lo, block.span.hi));
2017-04-24 02:50:11 -05:00
let has_body = !block_snippet[1..block_snippet.len() - 1].trim().is_empty() ||
!context.config.fn_empty_single_line();
let (mut result, force_newline_brace) = try_opt!(rewrite_fn_base(
&context,
indent,
ident,
fd,
generics,
unsafety,
constness,
defaultness,
abi,
vis,
span,
newline_brace,
has_body,
true,
));
2015-05-03 17:12:39 -05:00
if force_newline_brace {
newline_brace = true;
} else if self.config.fn_brace_style() != BraceStyle::AlwaysNextLine &&
!result.contains('\n')
{
newline_brace = false;
}
2015-08-21 06:31:09 -05:00
// Prepare for the function body by possibly adding a newline and
// indent.
// FIXME we'll miss anything between the end of the signature and the
// start of the body, but we need more spans from the compiler to solve
// this.
2015-05-03 17:12:39 -05:00
if newline_brace {
result.push('\n');
result.push_str(&indent.to_string(self.config));
2015-05-03 17:12:39 -05:00
} else {
result.push(' ');
}
2017-05-02 21:26:25 -05:00
self.single_line_fn(&result, block).or_else(|| Some(result))
2015-05-03 17:12:39 -05:00
}
pub fn rewrite_required_fn(
&mut self,
indent: Indent,
ident: ast::Ident,
sig: &ast::MethodSig,
span: Span,
) -> Option<String> {
// Drop semicolon or it will be interpreted as comment.
2015-10-18 17:25:38 -05:00
let span = mk_sp(span.lo, span.hi - BytePos(1));
let context = self.get_context();
2015-05-03 17:12:39 -05:00
let (mut result, _) = try_opt!(rewrite_fn_base(
&context,
indent,
ident,
&sig.decl,
&sig.generics,
sig.unsafety,
sig.constness.node,
ast::Defaultness::Final,
sig.abi,
&ast::Visibility::Inherited,
span,
false,
false,
false,
));
2015-05-03 17:12:39 -05:00
// Re-attach semicolon
result.push(';');
2015-09-04 11:09:05 -05:00
Some(result)
2015-05-03 17:12:39 -05:00
}
fn single_line_fn(&self, fn_str: &str, block: &ast::Block) -> Option<String> {
if fn_str.contains('\n') {
return None;
}
let codemap = self.get_context().codemap;
if self.config.fn_empty_single_line() && is_empty_block(block, codemap) &&
self.block_indent.width() + fn_str.len() + 2 <= self.config.max_width()
{
return Some(format!("{}{{}}", fn_str));
}
if self.config.fn_single_line() && is_simple_block_stmt(block, codemap) {
let rewrite = {
if let Some(ref stmt) = block.stmts.first() {
match stmt_expr(stmt) {
Some(e) => {
let suffix = if semicolon_for_expr(e) { ";" } else { "" };
format_expr(
&e,
ExprType::Statement,
&self.get_context(),
Shape::indented(self.block_indent, self.config),
).map(|s| s + suffix)
.or_else(|| Some(self.snippet(e.span)))
}
None => {
stmt.rewrite(
&self.get_context(),
Shape::indented(self.block_indent, self.config),
)
}
}
} else {
None
}
};
if let Some(res) = rewrite {
let width = self.block_indent.width() + fn_str.len() + res.len() + 4;
if !res.contains('\n') && width <= self.config.max_width() {
return Some(format!("{}{{ {} }}", fn_str, res));
}
}
}
None
}
pub fn visit_enum(
&mut self,
ident: ast::Ident,
vis: &ast::Visibility,
enum_def: &ast::EnumDef,
generics: &ast::Generics,
span: Span,
) {
2017-06-24 05:45:22 -05:00
let enum_header = format_header("enum ", ident, vis);
self.buffer.push_str(&enum_header);
2015-05-29 05:41:26 -05:00
let enum_snippet = self.snippet(span);
2016-08-23 07:00:43 -05:00
let brace_pos = enum_snippet.find_uncommented("{").unwrap();
let body_start = span.lo + BytePos(brace_pos as u32 + 1);
let generics_str = format_generics(
&self.get_context(),
generics,
"{",
"{",
self.config.item_brace_style(),
enum_def.variants.is_empty(),
self.block_indent,
mk_sp(span.lo, body_start),
2017-06-24 05:45:22 -05:00
last_line_width(&enum_header),
).unwrap();
2015-07-26 07:05:43 -05:00
self.buffer.push_str(&generics_str);
2015-05-29 05:41:26 -05:00
self.last_pos = body_start;
self.block_indent = self.block_indent.block_indent(self.config);
let variant_list = self.format_variant_list(enum_def, body_start, span.hi - BytePos(1));
match variant_list {
2016-08-23 09:14:45 -05:00
Some(ref body_str) => self.buffer.push_str(body_str),
2016-08-23 07:00:43 -05:00
None => {
if contains_comment(&enum_snippet[brace_pos..]) {
self.format_missing_no_indent(span.hi - BytePos(1))
} else {
self.format_missing(span.hi - BytePos(1))
}
}
2015-05-29 05:41:26 -05:00
}
self.block_indent = self.block_indent.block_unindent(self.config);
2015-05-29 05:41:26 -05:00
2016-08-23 07:00:43 -05:00
if variant_list.is_some() || contains_comment(&enum_snippet[brace_pos..]) {
2017-06-15 18:49:49 -05:00
self.buffer
.push_str(&self.block_indent.to_string(self.config));
}
2015-07-26 07:05:43 -05:00
self.buffer.push_str("}");
self.last_pos = span.hi;
}
// Format the body of an enum definition
fn format_variant_list(
&self,
enum_def: &ast::EnumDef,
body_lo: BytePos,
body_hi: BytePos,
) -> Option<String> {
if enum_def.variants.is_empty() {
return None;
}
let mut result = String::with_capacity(1024);
result.push('\n');
let indentation = self.block_indent.to_string(self.config);
result.push_str(&indentation);
let items = itemize_list(
self.codemap,
enum_def.variants.iter(),
"}",
|f| if !f.node.attrs.is_empty() {
f.node.attrs[0].span.lo
} else {
f.span.lo
},
|f| f.span.hi,
|f| self.format_variant(f),
body_lo,
body_hi,
);
2017-05-07 17:24:12 -05:00
let shape = Shape::indented(self.block_indent, self.config)
.sub_width(2)
.unwrap();
let fmt = ListFormatting {
tactic: DefinitiveListTactic::Vertical,
separator: ",",
trailing_separator: self.config.trailing_comma(),
2017-05-07 17:24:12 -05:00
shape: shape,
ends_with_newline: true,
config: self.config,
};
2017-07-05 09:12:58 -05:00
let list = try_opt!(write_list(&items.collect::<Vec<_>>(), &fmt));
result.push_str(&list);
result.push('\n');
Some(result)
2015-05-29 05:41:26 -05:00
}
2015-09-21 13:02:45 -05:00
// Variant of an enum.
fn format_variant(&self, field: &ast::Variant) -> Option<String> {
if contains_skip(&field.node.attrs) {
let lo = field.node.attrs[0].span.lo;
2015-10-18 17:25:38 -05:00
let span = mk_sp(lo, field.span.hi);
return Some(self.snippet(span));
2015-05-29 05:41:26 -05:00
}
let context = self.get_context();
let indent = self.block_indent;
2017-06-17 02:56:54 -05:00
let mut result = try_opt!(
field
.node
.attrs
.rewrite(&context, Shape::indented(indent, self.config))
);
if !result.is_empty() {
let shape = Shape {
width: context.config.max_width(),
indent: self.block_indent,
offset: self.block_indent.alignment,
};
let missing_comment = rewrite_missing_comment_on_field(
&context,
shape,
field.node.attrs[field.node.attrs.len() - 1].span.hi,
field.span.lo,
&mut result,
).unwrap_or(String::new());
result.push_str(&missing_comment);
}
2015-05-29 05:41:26 -05:00
2015-11-12 14:38:41 -06:00
let variant_body = match field.node.data {
2017-07-09 12:24:59 -05:00
ast::VariantData::Tuple(..) | ast::VariantData::Struct(..) => {
// FIXME: Should limit the width, as we have a trailing comma
format_struct(
&context,
"",
field.node.name,
&ast::Visibility::Inherited,
&field.node.data,
None,
field.span,
indent,
Some(self.config.struct_variant_width()),
)
2015-05-29 05:41:26 -05:00
}
ast::VariantData::Unit(..) => {
let tag = if let Some(ref expr) = field.node.disr_expr {
format!("{} = {}", field.node.name, self.snippet(expr.span))
} else {
field.node.name.to_string()
};
wrap_str(
tag,
self.config.max_width(),
Shape::indented(indent, self.config),
)
}
};
if let Some(variant_str) = variant_body {
result.push_str(&variant_str);
Some(result)
} else {
None
2015-06-23 08:58:58 -05:00
}
}
}
2015-05-29 05:41:26 -05:00
2017-06-12 21:49:47 -05:00
pub fn format_impl(
context: &RewriteContext,
item: &ast::Item,
offset: Indent,
where_span_end: Option<BytePos>,
) -> Option<String> {
2017-06-11 00:32:44 -05:00
if let ast::ItemKind::Impl(_, _, _, ref generics, _, _, ref items) = item.node {
let mut result = String::new();
2017-06-11 00:32:44 -05:00
let ref_and_type = try_opt!(format_impl_ref_and_type(context, item, offset));
result.push_str(&ref_and_type);
let where_budget = if result.contains('\n') {
context.config.max_width()
} else {
context
.config
.max_width()
.checked_sub(last_line_width(&result))
.unwrap_or(0)
};
2017-06-12 21:49:47 -05:00
let where_clause_str = try_opt!(rewrite_where_clause(
context,
&generics.where_clause,
context.config.item_brace_style(),
Shape::legacy(where_budget, offset.block_only()),
context.config.where_density(),
"{",
false,
last_line_width(&ref_and_type) == 1,
where_span_end,
));
if try_opt!(is_impl_single_line(
context,
&items,
&result,
&where_clause_str,
&item,
2017-06-17 07:17:20 -05:00
)) {
result.push_str(&where_clause_str);
if where_clause_str.contains('\n') {
let white_space = offset.to_string(context.config);
result.push_str(&format!("\n{}{{\n{}}}", &white_space, &white_space));
} else {
result.push_str(" {}");
}
return Some(result);
}
if !where_clause_str.is_empty() && !where_clause_str.contains('\n') {
result.push('\n');
let width = offset.block_indent + context.config.tab_spaces() - 1;
let where_indent = Indent::new(0, width);
result.push_str(&where_indent.to_string(context.config));
}
result.push_str(&where_clause_str);
match context.config.item_brace_style() {
BraceStyle::AlwaysNextLine => {
result.push('\n');
result.push_str(&offset.to_string(context.config));
}
BraceStyle::PreferSameLine => result.push(' '),
BraceStyle::SameLineWhere => {
2015-11-25 00:39:15 -06:00
if !where_clause_str.is_empty() {
result.push('\n');
result.push_str(&offset.to_string(context.config));
} else {
result.push(' ');
}
}
}
result.push('{');
2015-11-23 22:54:44 -06:00
let snippet = context.snippet(item.span);
let open_pos = try_opt!(snippet.find_uncommented("{")) + 1;
if !items.is_empty() || contains_comment(&snippet[open_pos..]) {
let mut visitor = FmtVisitor::from_codemap(context.parse_session, context.config);
2017-03-27 17:25:59 -05:00
visitor.block_indent = offset.block_only().block_indent(context.config);
visitor.last_pos = item.span.lo + BytePos(open_pos as u32);
for item in items {
2016-08-23 09:14:45 -05:00
visitor.visit_impl_item(item);
}
2015-11-23 22:54:44 -06:00
visitor.format_missing(item.span.hi - BytePos(1));
let inner_indent_str = visitor.block_indent.to_string(context.config);
2017-02-20 19:43:43 -06:00
let outer_indent_str = offset.block_only().to_string(context.config);
2015-11-23 22:54:44 -06:00
2015-11-22 20:49:21 -06:00
result.push('\n');
2015-11-23 22:54:44 -06:00
result.push_str(&inner_indent_str);
2016-08-23 09:14:45 -05:00
result.push_str(trim_newlines(visitor.buffer.to_string().trim()));
result.push('\n');
2015-11-23 22:54:44 -06:00
result.push_str(&outer_indent_str);
}
if result.chars().last().unwrap() == '{' {
result.push('\n');
result.push_str(&offset.to_string(context.config));
}
2015-11-23 22:54:44 -06:00
result.push('}');
Some(result)
} else {
unreachable!();
}
}
fn is_impl_single_line(
context: &RewriteContext,
items: &[ImplItem],
result: &str,
where_clause_str: &str,
item: &ast::Item,
) -> Option<bool> {
let snippet = context.snippet(item.span);
let open_pos = try_opt!(snippet.find_uncommented("{")) + 1;
Some(
context.config.impl_empty_single_line() && items.is_empty() &&
result.len() + where_clause_str.len() <= context.config.max_width() &&
!contains_comment(&snippet[open_pos..]),
)
}
2017-06-12 21:49:47 -05:00
fn format_impl_ref_and_type(
context: &RewriteContext,
item: &ast::Item,
offset: Indent,
) -> Option<String> {
2017-06-15 02:26:41 -05:00
if let ast::ItemKind::Impl(
unsafety,
polarity,
_,
ref generics,
ref trait_ref,
ref self_ty,
_,
) = item.node
{
let mut result = String::new();
result.push_str(&format_visibility(&item.vis));
result.push_str(format_unsafety(unsafety));
result.push_str("impl");
let lo = context.codemap.span_after(item.span, "impl");
let hi = match *trait_ref {
Some(ref tr) => tr.path.span.lo,
None => self_ty.span.lo,
};
let shape = try_opt!(generics_shape_from_config(
2017-06-12 21:49:47 -05:00
context.config,
Shape::indented(offset + last_line_width(&result), context.config),
0,
));
let one_line_budget = try_opt!(shape.width.checked_sub(last_line_width(&result) + 2));
2017-06-12 21:49:47 -05:00
let generics_str = try_opt!(rewrite_generics_inner(
context,
generics,
shape,
one_line_budget,
2017-06-12 21:49:47 -05:00
mk_sp(lo, hi),
));
2017-06-11 00:32:44 -05:00
let polarity_str = if polarity == ast::ImplPolarity::Negative {
"!"
} else {
""
};
if let Some(ref trait_ref) = *trait_ref {
let result_len = result.len();
2017-07-09 12:24:59 -05:00
if let Some(trait_ref_str) = rewrite_trait_ref(
context,
&trait_ref,
offset,
&generics_str,
true,
polarity_str,
result_len,
) {
result.push_str(&trait_ref_str);
} else {
2017-06-12 21:49:47 -05:00
let generics_str = try_opt!(rewrite_generics_inner(
context,
generics,
shape,
0,
mk_sp(lo, hi),
));
result.push_str(&try_opt!(rewrite_trait_ref(
context,
&trait_ref,
offset,
&generics_str,
false,
polarity_str,
result_len,
)));
}
} else {
result.push_str(&generics_str);
}
2017-06-11 00:32:44 -05:00
// Try to put the self type in a single line.
// ` for`
let trait_ref_overhead = if trait_ref.is_some() { 4 } else { 0 };
let curly_brace_overhead = if generics.where_clause.predicates.is_empty() {
// If there is no where clause adapt budget for type formatting to take space and curly
// brace into account.
match context.config.item_brace_style() {
2017-06-11 00:32:44 -05:00
BraceStyle::AlwaysNextLine => 0,
_ => 2,
}
2017-06-11 00:32:44 -05:00
} else {
0
};
let used_space = last_line_width(&result) + trait_ref_overhead + curly_brace_overhead;
// 1 = space before the type.
2017-06-11 00:32:44 -05:00
let budget = context
.config
.max_width()
.checked_sub(used_space + 1)
.unwrap_or(0);
if let Some(self_ty_str) = self_ty.rewrite(context, Shape::legacy(budget, offset)) {
if !self_ty_str.contains('\n') {
if trait_ref.is_some() {
result.push_str(" for ");
} else {
result.push(' ');
}
result.push_str(&self_ty_str);
return Some(result);
}
}
2017-06-11 00:32:44 -05:00
// Couldn't fit the self type on a single line, put it on a new line.
result.push('\n');
// Add indentation of one additional tab.
let new_line_offset = offset.block_indent(context.config);
result.push_str(&new_line_offset.to_string(context.config));
if trait_ref.is_some() {
result.push_str("for ");
}
let budget = context.config.max_width() - last_line_width(&result);
let type_offset = match context.config.where_style() {
Style::Legacy => new_line_offset + trait_ref_overhead,
Style::Rfc => new_line_offset,
};
2017-06-16 04:56:32 -05:00
result.push_str(&*try_opt!(
self_ty.rewrite(context, Shape::legacy(budget, type_offset))
));
Some(result)
} else {
unreachable!();
}
}
2017-06-12 21:49:47 -05:00
fn rewrite_trait_ref(
context: &RewriteContext,
trait_ref: &ast::TraitRef,
offset: Indent,
generics_str: &str,
retry: bool,
polarity_str: &str,
result_len: usize,
) -> Option<String> {
2017-06-11 00:32:44 -05:00
// 1 = space between generics and trait_ref
let used_space = 1 + polarity_str.len() +
2017-06-12 21:49:47 -05:00
if generics_str.contains('\n') {
last_line_width(&generics_str)
} else {
result_len + generics_str.len()
};
2017-06-11 00:32:44 -05:00
let shape = Shape::indented(offset + used_space, context.config);
if let Some(trait_ref_str) = trait_ref.rewrite(context, shape) {
if !(retry && trait_ref_str.contains('\n')) {
2017-06-12 21:49:47 -05:00
return Some(format!(
"{} {}{}",
generics_str,
polarity_str,
&trait_ref_str
));
}
}
2017-06-11 00:32:44 -05:00
// We could not make enough space for trait_ref, so put it on new line.
if !retry {
let offset = offset.block_indent(context.config);
let shape = Shape::indented(offset, context.config);
let trait_ref_str = try_opt!(trait_ref.rewrite(context, shape));
2017-06-12 21:49:47 -05:00
Some(format!(
"{}\n{}{}{}",
generics_str,
&offset.to_string(context.config),
polarity_str,
&trait_ref_str
))
} else {
None
}
}
2017-06-12 21:49:47 -05:00
pub fn format_struct(
context: &RewriteContext,
item_name: &str,
ident: ast::Ident,
vis: &ast::Visibility,
struct_def: &ast::VariantData,
generics: Option<&ast::Generics>,
span: Span,
offset: Indent,
one_line_width: Option<usize>,
) -> Option<String> {
match *struct_def {
ast::VariantData::Unit(..) => Some(format_unit_struct(item_name, ident, vis)),
ast::VariantData::Tuple(ref fields, _) => {
format_tuple_struct(
context,
item_name,
ident,
vis,
fields,
generics,
span,
offset,
)
}
ast::VariantData::Struct(ref fields, _) => {
format_struct_struct(
context,
item_name,
ident,
vis,
fields,
generics,
span,
offset,
one_line_width,
)
2015-10-18 17:25:38 -05:00
}
}
}
pub fn format_trait(context: &RewriteContext, item: &ast::Item, offset: Indent) -> Option<String> {
2016-03-12 12:09:27 -06:00
if let ast::ItemKind::Trait(unsafety, ref generics, ref type_param_bounds, ref trait_items) =
item.node
{
let mut result = String::new();
let header = format!(
"{}{}trait {}",
format_visibility(&item.vis),
format_unsafety(unsafety),
item.ident
);
result.push_str(&header);
2016-03-14 21:51:41 -05:00
let body_lo = context.codemap.span_after(item.span, "{");
let shape = Shape::indented(offset + last_line_width(&result), context.config);
2017-06-12 21:49:47 -05:00
let generics_str = try_opt!(rewrite_generics(
context,
generics,
shape,
mk_sp(item.span.lo, body_lo),
));
result.push_str(&generics_str);
let trait_bound_str = try_opt!(rewrite_trait_bounds(
context,
type_param_bounds,
Shape::indented(offset, context.config),
));
// If the trait, generics, and trait bound cannot fit on the same line,
// put the trait bounds on an indented new line
if offset.width() + last_line_width(&result) + trait_bound_str.len() >
context.config.comment_width()
{
result.push('\n');
2017-03-27 17:25:59 -05:00
let trait_indent = offset.block_only().block_indent(context.config);
result.push_str(&trait_indent.to_string(context.config));
}
result.push_str(&trait_bound_str);
let has_body = !trait_items.is_empty();
let where_density = if (context.config.where_density() == Density::Compressed &&
2017-06-14 06:39:07 -05:00
(!result.contains('\n') ||
context.config.fn_args_layout() == IndentStyle::Block)) ||
(context.config.fn_args_layout() == IndentStyle::Block && result.is_empty()) ||
(context.config.where_density() == Density::CompressedIfEmpty && !has_body &&
!result.contains('\n'))
{
Density::Compressed
} else {
Density::Tall
};
2017-06-15 18:49:49 -05:00
let where_budget = try_opt!(
context
.config
.max_width()
.checked_sub(last_line_width(&result))
);
let where_clause_str = try_opt!(rewrite_where_clause(
context,
&generics.where_clause,
context.config.item_brace_style(),
Shape::legacy(where_budget, offset.block_only()),
where_density,
"{",
!has_body,
2017-06-16 04:56:32 -05:00
trait_bound_str.is_empty() && last_line_width(&generics_str) == 1,
None,
));
// If the where clause cannot fit on the same line,
// put the where clause on a new line
2016-03-11 15:49:11 -06:00
if !where_clause_str.contains('\n') &&
last_line_width(&result) + where_clause_str.len() + offset.width() >
context.config.comment_width()
{
2016-03-11 15:49:11 -06:00
result.push('\n');
let width = offset.block_indent + context.config.tab_spaces() - 1;
2016-03-11 15:49:11 -06:00
let where_indent = Indent::new(0, width);
result.push_str(&where_indent.to_string(context.config));
}
result.push_str(&where_clause_str);
match context.config.item_brace_style() {
BraceStyle::AlwaysNextLine => {
result.push('\n');
result.push_str(&offset.to_string(context.config));
2016-03-11 23:41:22 -06:00
}
BraceStyle::PreferSameLine => result.push(' '),
BraceStyle::SameLineWhere => {
if !where_clause_str.is_empty() &&
(!trait_items.is_empty() || result.contains('\n'))
{
result.push('\n');
result.push_str(&offset.to_string(context.config));
} else {
result.push(' ');
}
}
}
result.push('{');
let snippet = context.snippet(item.span);
let open_pos = try_opt!(snippet.find_uncommented("{")) + 1;
if !trait_items.is_empty() || contains_comment(&snippet[open_pos..]) {
2016-03-12 12:09:27 -06:00
let mut visitor = FmtVisitor::from_codemap(context.parse_session, context.config);
2017-03-27 17:25:59 -05:00
visitor.block_indent = offset.block_only().block_indent(context.config);
visitor.last_pos = item.span.lo + BytePos(open_pos as u32);
for item in trait_items {
2016-08-23 09:14:45 -05:00
visitor.visit_trait_item(item);
}
visitor.format_missing(item.span.hi - BytePos(1));
let inner_indent_str = visitor.block_indent.to_string(context.config);
2017-02-20 19:43:43 -06:00
let outer_indent_str = offset.block_only().to_string(context.config);
result.push('\n');
result.push_str(&inner_indent_str);
2016-08-23 09:14:45 -05:00
result.push_str(trim_newlines(visitor.buffer.to_string().trim()));
result.push('\n');
result.push_str(&outer_indent_str);
} else if result.contains('\n') {
result.push('\n');
}
result.push('}');
Some(result)
} else {
unreachable!();
}
}
fn format_unit_struct(item_name: &str, ident: ast::Ident, vis: &ast::Visibility) -> String {
format!("{};", format_header(item_name, ident, vis))
}
2015-10-18 17:25:38 -05:00
fn format_struct_struct(
context: &RewriteContext,
item_name: &str,
ident: ast::Ident,
vis: &ast::Visibility,
fields: &[ast::StructField],
generics: Option<&ast::Generics>,
span: Span,
offset: Indent,
one_line_width: Option<usize>,
) -> Option<String> {
let mut result = String::with_capacity(1024);
let header_str = format_header(item_name, ident, vis);
result.push_str(&header_str);
let body_lo = context.codemap.span_after(span, "{");
let generics_str = match generics {
Some(g) => {
try_opt!(format_generics(
context,
g,
"{",
"{",
context.config.item_brace_style(),
fields.is_empty(),
offset,
mk_sp(span.lo, body_lo),
2017-06-24 05:45:22 -05:00
last_line_width(&result),
))
2015-06-23 08:58:58 -05:00
}
None => {
2017-06-24 05:45:22 -05:00
// 3 = ` {}`, 2 = ` {`.
let overhead = if fields.is_empty() { 3 } else { 2 };
if (context.config.item_brace_style() == BraceStyle::AlwaysNextLine &&
!fields.is_empty()) ||
context
.config
.max_width()
.checked_sub(result.len())
.unwrap_or(0) < overhead
{
2017-02-20 19:43:43 -06:00
format!("\n{}{{", offset.block_only().to_string(context.config))
2015-11-19 00:34:14 -06:00
} else {
" {".to_owned()
2015-11-19 00:34:14 -06:00
}
2015-05-29 05:41:26 -05:00
}
};
2017-06-24 05:45:22 -05:00
// 1 = `}`
let overhead = if fields.is_empty() { 1 } else { 0 };
let max_len = context.config.max_width() - offset.width();
if !generics_str.contains('\n') && result.len() + generics_str.len() + overhead > max_len {
result.push('\n');
result.push_str(&offset
.block_indent(context.config)
.to_string(context.config));
result.push_str(&generics_str.trim_left());
} else {
result.push_str(&generics_str);
}
2015-05-24 18:03:26 -05:00
if fields.is_empty() {
let snippet = context.snippet(mk_sp(body_lo, span.hi - BytePos(1)));
if snippet.trim().is_empty() {
// `struct S {}`
2017-05-02 21:26:25 -05:00
} else if snippet.trim_right_matches(&[' ', '\t'][..]).ends_with('\n') {
// fix indent
result.push_str(&snippet.trim_right());
result.push('\n');
result.push_str(&offset.to_string(context.config));
} else {
result.push_str(&snippet);
}
result.push('}');
return Some(result);
2015-04-21 05:50:43 -05:00
}
let items_str = try_opt!(rewrite_with_alignment(
fields,
context,
Shape::indented(offset, context.config),
mk_sp(body_lo, span.hi),
one_line_width.unwrap_or(0),
));
if one_line_width.is_some() && !items_str.contains('\n') {
Some(format!("{} {} }}", result, items_str))
} else {
Some(format!(
"{}\n{}{}\n{}}}",
result,
2017-06-15 18:49:49 -05:00
offset
.block_indent(context.config)
.to_string(context.config),
items_str,
offset.to_string(context.config)
))
}
}
fn format_tuple_struct(
context: &RewriteContext,
item_name: &str,
ident: ast::Ident,
vis: &ast::Visibility,
fields: &[ast::StructField],
generics: Option<&ast::Generics>,
span: Span,
offset: Indent,
) -> Option<String> {
let mut result = String::with_capacity(1024);
let header_str = format_header(item_name, ident, vis);
result.push_str(&header_str);
let body_lo = if fields.is_empty() {
2017-04-14 06:25:47 -05:00
context.codemap.span_after(span, "(")
} else {
fields[0].span.lo
};
let where_clause_str = match generics {
2016-08-23 09:14:45 -05:00
Some(generics) => {
2017-06-24 05:45:22 -05:00
let budget = context.budget(last_line_width(&header_str));
let shape = Shape::legacy(budget, offset);
let g_span = mk_sp(span.lo, body_lo);
let generics_str = try_opt!(rewrite_generics(context, generics, shape, g_span));
result.push_str(&generics_str);
2017-06-24 05:45:22 -05:00
let where_budget = context.budget(last_line_width(&result));
try_opt!(rewrite_where_clause(
context,
&generics.where_clause,
context.config.item_brace_style(),
Shape::legacy(where_budget, offset.block_only()),
Density::Compressed,
";",
true,
false,
None,
))
}
None => "".to_owned(),
};
2017-04-14 06:25:47 -05:00
if fields.is_empty() {
2017-06-24 05:45:22 -05:00
// 3 = `();`
let used_width = if result.contains('\n') {
last_line_width(&result) + 3
} else {
offset.width() + result.len() + 3
};
if used_width > context.config.max_width() {
result.push('\n');
result.push_str(&offset
.block_indent(context.config)
.to_string(context.config))
}
result.push('(');
2017-04-14 06:25:47 -05:00
let snippet = context.snippet(mk_sp(body_lo, context.codemap.span_before(span, ")")));
if snippet.is_empty() {
// `struct S ()`
2017-05-02 21:26:25 -05:00
} else if snippet.trim_right_matches(&[' ', '\t'][..]).ends_with('\n') {
2017-04-14 06:25:47 -05:00
result.push_str(&snippet.trim_right());
result.push('\n');
result.push_str(&offset.to_string(context.config));
} else {
result.push_str(&snippet);
}
2017-04-14 06:25:47 -05:00
result.push(')');
} else {
// 3 = `();`
let body = try_opt!(
rewrite_call_inner(
context,
"",
&fields.iter().map(|field| field).collect::<Vec<_>>()[..],
span,
Shape::legacy(context.budget(last_line_width(&result) + 3), offset),
context.config.fn_call_width(),
false,
).ok()
2017-06-16 04:56:32 -05:00
);
result.push_str(&body);
}
2015-11-25 00:39:15 -06:00
if !where_clause_str.is_empty() && !where_clause_str.contains('\n') &&
(result.contains('\n') ||
offset.block_indent + result.len() + where_clause_str.len() + 1 >
context.config.max_width())
{
// We need to put the where clause on a new line, but we didn't
// know that earlier, so the where clause will not be indented properly.
result.push('\n');
result.push_str(&(offset.block_only() + (context.config.tab_spaces() - 1))
.to_string(context.config));
2015-04-21 02:59:48 -05:00
}
result.push_str(&where_clause_str);
Some(result)
2015-09-08 13:56:33 -05:00
}
2015-04-21 02:59:48 -05:00
pub fn rewrite_type_alias(
context: &RewriteContext,
indent: Indent,
ident: ast::Ident,
ty: &ast::Ty,
generics: &ast::Generics,
vis: &ast::Visibility,
span: Span,
) -> Option<String> {
2015-11-22 12:21:01 -06:00
let mut result = String::new();
2016-08-23 09:14:45 -05:00
result.push_str(&format_visibility(vis));
2015-11-22 12:21:01 -06:00
result.push_str("type ");
result.push_str(&ident.to_string());
// 2 = `= `
let shape = try_opt!(Shape::indented(indent + result.len(), context.config).sub_width(2));
let g_span = mk_sp(context.codemap.span_after(span, "type"), ty.span.lo);
let generics_str = try_opt!(rewrite_generics(context, generics, shape, g_span));
2015-11-22 12:21:01 -06:00
result.push_str(&generics_str);
2017-06-15 18:49:49 -05:00
let where_budget = try_opt!(
context
.config
.max_width()
.checked_sub(last_line_width(&result))
);
let where_clause_str = try_opt!(rewrite_where_clause(
context,
&generics.where_clause,
context.config.item_brace_style(),
Shape::legacy(where_budget, indent),
context.config.where_density(),
"=",
true,
true,
Some(span.hi),
));
result.push_str(&where_clause_str);
2015-11-22 12:21:01 -06:00
result.push_str(" = ");
let line_width = last_line_width(&result);
// This checked_sub may fail as the extra space after '=' is not taken into account
// In that case the budget is set to 0 which will make ty.rewrite retry on a new line
2017-03-27 16:58:41 -05:00
let budget = context
.config
.max_width()
.checked_sub(indent.width() + line_width + ";".len())
.unwrap_or(0);
let type_indent = indent + line_width;
2015-11-22 12:21:01 -06:00
// Try to fit the type on the same line
2017-06-04 01:25:07 -05:00
let ty_str = try_opt!(
2017-02-21 21:20:50 -06:00
ty.rewrite(context, Shape::legacy(budget, type_indent))
2017-06-04 01:25:07 -05:00
.or_else(|| {
// The line was too short, try to put the type on the next line
// Remove the space after '='
result.pop();
let type_indent = indent.block_indent(context.config);
result.push('\n');
result.push_str(&type_indent.to_string(context.config));
2017-06-15 18:49:49 -05:00
let budget = try_opt!(
context
.config
.max_width()
.checked_sub(type_indent.width() + ";".len())
);
2017-06-04 01:25:07 -05:00
ty.rewrite(context, Shape::legacy(budget, type_indent))
})
);
2015-11-22 12:21:01 -06:00
result.push_str(&ty_str);
result.push_str(";");
Some(result)
}
2016-09-16 18:44:51 -05:00
fn type_annotation_spacing(config: &Config) -> (&str, &str) {
(
if config.space_before_type_annotation() {
" "
} else {
""
},
if config.space_after_type_annotation_colon() {
" "
} else {
""
},
)
}
fn rewrite_missing_comment_on_field(
context: &RewriteContext,
shape: Shape,
lo: BytePos,
hi: BytePos,
result: &mut String,
) -> Option<String> {
let possibly_comment_snippet = context.snippet(mk_sp(lo, hi));
let newline_index = possibly_comment_snippet.find('\n');
let comment_index = possibly_comment_snippet.find('/');
match (newline_index, comment_index) {
(Some(i), Some(j)) if i > j => result.push(' '),
_ => {
result.push('\n');
result.push_str(&shape.indent.to_string(context.config));
}
}
let trimmed = possibly_comment_snippet.trim();
if trimmed.is_empty() {
None
} else {
rewrite_comment(trimmed, false, shape, context.config).map(|s| {
format!("{}\n{}", s, shape.indent.to_string(context.config))
})
}
}
pub fn rewrite_struct_field_prefix(
context: &RewriteContext,
field: &ast::StructField,
shape: Shape,
) -> Option<String> {
let vis = format_visibility(&field.vis);
let mut attr_str = try_opt!(
field
.attrs
.rewrite(context, Shape::indented(shape.indent, context.config))
);
// Try format missing comments after attributes
let missing_comment = if !field.attrs.is_empty() {
rewrite_missing_comment_on_field(
context,
shape,
field.attrs[field.attrs.len() - 1].span.hi,
field.span.lo,
&mut attr_str,
).unwrap_or(String::new())
} else {
String::new()
};
let type_annotation_spacing = type_annotation_spacing(context.config);
Some(match field.ident {
Some(name) => {
format!(
"{}{}{}{}{}:",
attr_str,
missing_comment,
vis,
name,
type_annotation_spacing.0
)
2015-10-18 17:25:38 -05:00
}
None => format!("{}{}{}", attr_str, missing_comment, vis),
})
}
2015-10-18 17:25:38 -05:00
fn rewrite_struct_field_type(
context: &RewriteContext,
last_line_width: usize,
field: &ast::StructField,
spacing: &str,
shape: Shape,
) -> Option<String> {
let ty_shape = try_opt!(shape.offset_left(last_line_width + spacing.len()));
field
.ty
.rewrite(context, ty_shape)
.map(|ty| format!("{}{}", spacing, ty))
}
2015-10-18 17:25:38 -05:00
2017-06-24 05:49:01 -05:00
impl Rewrite for ast::StructField {
fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
rewrite_struct_field(context, self, shape, 0)
}
}
2015-10-18 17:25:38 -05:00
pub fn rewrite_struct_field(
context: &RewriteContext,
field: &ast::StructField,
shape: Shape,
lhs_max_width: usize,
) -> Option<String> {
if contains_skip(&field.attrs) {
let span = context.snippet(mk_sp(field.attrs[0].span.lo, field.span.hi));
return wrap_str(span, context.config.max_width(), shape);
}
let type_annotation_spacing = type_annotation_spacing(context.config);
let prefix = try_opt!(rewrite_struct_field_prefix(context, field, shape));
// Try to put everything on a single line.
let last_line_width = last_line_width(&prefix);
let mut spacing = String::from(if field.ident.is_some() {
type_annotation_spacing.1
} else {
""
});
let lhs_offset = lhs_max_width.checked_sub(last_line_width).unwrap_or(0);
for _ in 0..lhs_offset {
spacing.push(' ');
}
let ty_rewritten = rewrite_struct_field_type(context, last_line_width, field, &spacing, shape);
if let Some(ref ty) = ty_rewritten {
if !ty.contains('\n') {
return Some(prefix + &ty);
}
}
// We must use multiline.
let type_offset = shape.indent.block_indent(context.config);
let rewrite_type_in_next_line = || {
field
.ty
.rewrite(context, Shape::indented(type_offset, context.config))
};
match ty_rewritten {
// If we start from the next line and type fits in a single line, then do so.
Some(ref ty) => {
match rewrite_type_in_next_line() {
Some(ref new_ty) if !new_ty.contains('\n') => {
Some(format!(
"{}\n{}{}",
prefix,
type_offset.to_string(&context.config),
&new_ty
))
}
_ => Some(prefix + &ty),
}
}
_ => {
let ty = try_opt!(rewrite_type_in_next_line());
Some(format!(
"{}\n{}{}",
prefix,
type_offset.to_string(&context.config),
&ty
))
}
2015-10-18 17:25:38 -05:00
}
}
pub fn rewrite_static(
prefix: &str,
vis: &ast::Visibility,
ident: ast::Ident,
ty: &ast::Ty,
mutability: ast::Mutability,
expr_opt: Option<&ptr::P<ast::Expr>>,
offset: Indent,
span: Span,
context: &RewriteContext,
) -> Option<String> {
2017-07-05 04:25:50 -05:00
let colon = colon_spaces(
context.config.space_before_type_annotation(),
context.config.space_after_type_annotation_colon(),
);
let prefix = format!(
2017-07-05 04:25:50 -05:00
"{}{} {}{}{}",
format_visibility(vis),
prefix,
format_mutability(mutability),
ident,
2017-07-05 04:25:50 -05:00
colon,
);
2015-10-18 14:25:30 -05:00
// 2 = " =".len()
let ty_str = try_opt!(ty.rewrite(
context,
2017-07-05 04:25:50 -05:00
try_opt!(
Shape::indented(offset.block_only(), context.config).offset_left(prefix.len() + 2)
),
));
2015-10-18 14:25:30 -05:00
2016-08-23 09:14:45 -05:00
if let Some(expr) = expr_opt {
let lhs = format!("{}{} =", prefix, ty_str);
// 1 = ;
let remaining_width = context.config.max_width() - offset.block_indent - 1;
rewrite_assign_rhs(
context,
lhs,
expr,
Shape::legacy(remaining_width, offset.block_only()),
).and_then(|res| {
2017-07-05 04:25:50 -05:00
recover_comment_removed(res, span, context, Shape::indented(offset, context.config))
})
.map(|s| if s.ends_with(';') { s } else { s + ";" })
} else {
2017-07-05 04:25:50 -05:00
Some(format!("{}{};", prefix, ty_str))
}
2015-10-18 14:25:30 -05:00
}
pub fn rewrite_associated_type(
ident: ast::Ident,
ty_opt: Option<&ptr::P<ast::Ty>>,
ty_param_bounds_opt: Option<&ast::TyParamBounds>,
context: &RewriteContext,
indent: Indent,
) -> Option<String> {
let prefix = format!("type {}", ident);
2017-05-23 08:13:29 -05:00
let type_bounds_str = if let Some(ty_param_bounds) = ty_param_bounds_opt {
let shape = Shape::indented(indent, context.config);
2017-05-23 08:13:29 -05:00
let bounds: &[_] = ty_param_bounds;
2017-06-12 21:49:47 -05:00
let bound_str = try_opt!(
bounds
.iter()
.map(|ty_bound| ty_bound.rewrite(context, shape))
.collect::<Option<Vec<_>>>()
);
2017-05-23 08:13:29 -05:00
if bounds.len() > 0 {
format!(": {}", join_bounds(context, shape, &bound_str))
} else {
String::new()
2017-05-23 08:13:29 -05:00
}
} else {
String::new()
};
if let Some(ty) = ty_opt {
let ty_str = try_opt!(ty.rewrite(
context,
Shape::legacy(
2017-06-16 04:56:32 -05:00
context.config.max_width() - indent.block_indent - prefix.len() - 2,
indent.block_only(),
),
));
Some(format!("{} = {};", prefix, ty_str))
} else {
Some(format!("{}{};", prefix, type_bounds_str))
}
}
pub fn rewrite_associated_impl_type(
ident: ast::Ident,
defaultness: ast::Defaultness,
ty_opt: Option<&ptr::P<ast::Ty>>,
ty_param_bounds_opt: Option<&ast::TyParamBounds>,
context: &RewriteContext,
indent: Indent,
) -> Option<String> {
let result = try_opt!(rewrite_associated_type(
ident,
ty_opt,
ty_param_bounds_opt,
context,
indent,
));
match defaultness {
ast::Defaultness::Default => Some(format!("default {}", result)),
_ => Some(result),
}
}
2015-09-08 13:56:33 -05:00
impl Rewrite for ast::FunctionRetTy {
fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
2015-09-08 13:56:33 -05:00
match *self {
2016-03-01 16:27:19 -06:00
ast::FunctionRetTy::Default(_) => Some(String::new()),
ast::FunctionRetTy::Ty(ref ty) => {
let inner_width = try_opt!(shape.width.checked_sub(3));
2017-03-27 17:14:47 -05:00
ty.rewrite(context, Shape::legacy(inner_width, shape.indent + 3))
.map(|r| format!("-> {}", r))
2015-09-02 15:57:22 -05:00
}
2015-04-23 01:10:43 -05:00
}
2015-04-21 02:59:48 -05:00
}
2015-08-19 15:39:45 -05:00
}
2015-04-21 02:59:48 -05:00
fn is_empty_infer(context: &RewriteContext, ty: &ast::Ty) -> bool {
match ty.node {
ast::TyKind::Infer => {
let original = context.snippet(ty.span);
original != "_"
}
_ => false,
}
}
2015-09-11 05:24:13 -05:00
impl Rewrite for ast::Arg {
fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
2015-09-11 05:24:13 -05:00
if is_named_arg(self) {
2017-06-17 02:56:54 -05:00
let mut result = try_opt!(
self.pat
.rewrite(context, Shape::legacy(shape.width, shape.indent))
);
2015-12-25 13:59:46 -06:00
if !is_empty_infer(context, &*self.ty) {
if context.config.space_before_type_annotation() {
result.push_str(" ");
}
2016-09-16 18:44:51 -05:00
result.push_str(":");
if context.config.space_after_type_annotation_colon() {
2016-09-16 18:44:51 -05:00
result.push_str(" ");
}
let max_width = try_opt!(shape.width.checked_sub(result.len()));
let ty_str = try_opt!(self.ty.rewrite(
context,
Shape::legacy(max_width, shape.indent + result.len()),
));
2015-09-11 05:24:13 -05:00
result.push_str(&ty_str);
}
2015-12-25 13:59:46 -06:00
Some(result)
2015-07-19 07:33:02 -05:00
} else {
self.ty.rewrite(context, shape)
2015-07-19 07:33:02 -05:00
}
}
}
fn rewrite_explicit_self(
explicit_self: &ast::ExplicitSelf,
args: &[ast::Arg],
context: &RewriteContext,
) -> Option<String> {
match explicit_self.node {
ast::SelfKind::Region(lt, m) => {
let mut_str = format_mutability(m);
match lt {
2015-12-25 13:59:46 -06:00
Some(ref l) => {
let lifetime_str = try_opt!(l.rewrite(
context,
2017-06-13 10:06:48 -05:00
Shape::legacy(context.config.max_width(), Indent::empty()),
));
2015-12-25 13:59:46 -06:00
Some(format!("&{} {}self", lifetime_str, mut_str))
}
None => Some(format!("&{}self", mut_str)),
}
}
2016-03-01 16:27:19 -06:00
ast::SelfKind::Explicit(ref ty, _) => {
assert!(!args.is_empty(), "&[ast::Arg] shouldn't be empty.");
let mutability = explicit_self_mutability(&args[0]);
let type_str = try_opt!(ty.rewrite(
context,
2017-06-13 10:06:48 -05:00
Shape::legacy(context.config.max_width(), Indent::empty()),
));
Some(format!(
"{}self: {}",
format_mutability(mutability),
type_str
))
}
2016-03-01 16:27:19 -06:00
ast::SelfKind::Value(_) => {
assert!(!args.is_empty(), "&[ast::Arg] shouldn't be empty.");
let mutability = explicit_self_mutability(&args[0]);
Some(format!("{}self", format_mutability(mutability)))
}
}
}
// Hacky solution caused by absence of `Mutability` in `SelfValue` and
// `SelfExplicit` variants of `ast::ExplicitSelf_`.
fn explicit_self_mutability(arg: &ast::Arg) -> ast::Mutability {
2016-03-01 16:27:19 -06:00
if let ast::PatKind::Ident(ast::BindingMode::ByValue(mutability), _, _) = arg.pat.node {
mutability
} else {
unreachable!()
}
}
2015-08-19 15:39:45 -05:00
pub fn span_lo_for_arg(arg: &ast::Arg) -> BytePos {
2015-07-19 07:33:02 -05:00
if is_named_arg(arg) {
arg.pat.span.lo
} else {
arg.ty.span.lo
}
}
pub fn span_hi_for_arg(context: &RewriteContext, arg: &ast::Arg) -> BytePos {
2015-08-19 15:39:45 -05:00
match arg.ty.node {
ast::TyKind::Infer if context.snippet(arg.ty.span) == "_" => arg.ty.span.hi,
2016-03-01 16:27:19 -06:00
ast::TyKind::Infer if is_named_arg(arg) => arg.pat.span.hi,
2015-08-19 15:39:45 -05:00
_ => arg.ty.span.hi,
}
}
pub fn is_named_arg(arg: &ast::Arg) -> bool {
2016-03-01 16:27:19 -06:00
if let ast::PatKind::Ident(_, ident, _) = arg.pat.node {
ident.node != symbol::keywords::Invalid.ident()
2015-07-19 07:33:02 -05:00
} else {
true
}
}
2015-04-21 05:50:43 -05:00
fn span_for_return(ret: &ast::FunctionRetTy) -> Span {
match *ret {
2016-03-01 16:27:19 -06:00
ast::FunctionRetTy::Default(ref span) => span.clone(),
ast::FunctionRetTy::Ty(ref ty) => ty.span,
2015-04-21 05:50:43 -05:00
}
}
fn span_for_ty_param(ty: &ast::TyParam) -> Span {
// Note that ty.span is the span for ty.ident, not the whole item.
2017-05-27 09:59:29 -05:00
let lo = if ty.attrs.is_empty() {
ty.span.lo
} else {
ty.attrs[0].span.lo
};
if let Some(ref def) = ty.default {
2015-10-18 17:25:38 -05:00
return mk_sp(lo, def.span.hi);
}
if ty.bounds.is_empty() {
2017-05-27 09:59:29 -05:00
return mk_sp(lo, ty.span.hi);
}
let hi = match ty.bounds[ty.bounds.len() - 1] {
ast::TyParamBound::TraitTyParamBound(ref ptr, _) => ptr.span.hi,
ast::TyParamBound::RegionTyParamBound(ref l) => l.span.hi,
};
2015-10-18 17:25:38 -05:00
mk_sp(lo, hi)
}
fn span_for_where_pred(pred: &ast::WherePredicate) -> Span {
match *pred {
ast::WherePredicate::BoundPredicate(ref p) => p.span,
ast::WherePredicate::RegionPredicate(ref p) => p.span,
ast::WherePredicate::EqPredicate(ref p) => p.span,
}
}
// Return type is (result, force_new_line_for_brace)
fn rewrite_fn_base(
context: &RewriteContext,
indent: Indent,
ident: ast::Ident,
fd: &ast::FnDecl,
generics: &ast::Generics,
unsafety: ast::Unsafety,
constness: ast::Constness,
defaultness: ast::Defaultness,
abi: abi::Abi,
vis: &ast::Visibility,
span: Span,
newline_brace: bool,
has_body: bool,
has_braces: bool,
) -> Option<(String, bool)> {
let mut force_new_line_for_brace = false;
let where_clause = &generics.where_clause;
let mut result = String::with_capacity(1024);
// Vis unsafety abi.
result.push_str(&*format_visibility(vis));
if let ast::Defaultness::Default = defaultness {
result.push_str("default ");
}
if let ast::Constness::Const = constness {
result.push_str("const ");
}
2016-03-02 09:37:20 -06:00
result.push_str(::utils::format_unsafety(unsafety));
2016-03-01 16:27:19 -06:00
if abi != abi::Abi::Rust {
result.push_str(&::utils::format_abi(
abi,
context.config.force_explicit_abi(),
));
}
// fn foo
result.push_str("fn ");
result.push_str(&ident.to_string());
// Generics.
2017-06-14 06:37:54 -05:00
let overhead = if has_braces && !newline_brace {
// 4 = `() {`
4
} else {
// 2 = `()`
2
};
let shape = try_opt!(
2017-06-16 04:56:32 -05:00
Shape::indented(indent + last_line_width(&result), context.config).sub_width(overhead)
2017-06-14 06:37:54 -05:00
);
let g_span = mk_sp(span.lo, span_for_return(&fd.output).lo);
let generics_str = try_opt!(rewrite_generics(context, generics, shape, g_span));
result.push_str(&generics_str);
2017-06-17 02:56:54 -05:00
let snuggle_angle_bracket = generics_str
.lines()
.last()
.map_or(false, |l| l.trim_left().len() == 1);
// Note that the width and indent don't really matter, we'll re-layout the
// return type later anyway.
2017-06-17 02:56:54 -05:00
let ret_str = try_opt!(
fd.output
.rewrite(&context, Shape::indented(indent, context.config))
);
let multi_line_ret_str = ret_str.contains('\n');
let ret_str_len = if multi_line_ret_str { 0 } else { ret_str.len() };
// Args.
2016-04-07 14:24:30 -05:00
let (mut one_line_budget, mut multi_line_budget, mut arg_indent) =
try_opt!(compute_budgets_for_args(
context,
&result,
indent,
ret_str_len,
newline_brace,
has_braces,
));
if context.config.fn_args_layout() == IndentStyle::Block {
arg_indent = indent.block_indent(context.config);
// 1 = ","
multi_line_budget = context.config.max_width() - (arg_indent.width() + 1);
}
debug!(
"rewrite_fn_base: one_line_budget: {}, multi_line_budget: {}, arg_indent: {:?}",
one_line_budget,
multi_line_budget,
arg_indent
);
2017-01-25 20:44:54 -06:00
// Check if vertical layout was forced.
if one_line_budget == 0 {
if snuggle_angle_bracket {
result.push('(');
} else {
if context.config.fn_args_paren_newline() {
result.push('\n');
result.push_str(&arg_indent.to_string(context.config));
if context.config.fn_args_layout() == IndentStyle::Visual {
arg_indent = arg_indent + 1; // extra space for `(`
}
result.push('(');
} else {
result.push_str("(");
if context.config.fn_args_layout() == IndentStyle::Visual {
result.push('\n');
result.push_str(&arg_indent.to_string(context.config));
}
}
}
} else {
result.push('(');
}
if context.config.spaces_within_parens() && fd.inputs.len() > 0 && result.ends_with('(') {
result.push(' ')
}
if multi_line_ret_str {
one_line_budget = 0;
}
// A conservative estimation, to goal is to be over all parens in generics
2017-06-17 02:56:54 -05:00
let args_start = generics
.ty_params
.last()
.map_or(span.lo, |tp| end_typaram(tp));
let args_span = mk_sp(
context.codemap.span_after(mk_sp(args_start, span.hi), "("),
span_for_return(&fd.output).lo,
);
let arg_str = try_opt!(rewrite_args(
context,
&fd.inputs,
fd.get_self().as_ref(),
one_line_budget,
multi_line_budget,
indent,
arg_indent,
args_span,
fd.variadic,
generics_str.contains('\n'),
));
2017-07-05 04:31:37 -05:00
let multi_line_arg_str =
arg_str.contains('\n') || arg_str.chars().last().map_or(false, |c| c == ',');
let put_args_in_block = match context.config.fn_args_layout() {
IndentStyle::Block => multi_line_arg_str || generics_str.contains('\n'),
_ => false,
} && !fd.inputs.is_empty();
let mut args_last_line_contains_comment = false;
2016-04-07 14:01:16 -05:00
if put_args_in_block {
arg_indent = indent.block_indent(context.config);
result.push('\n');
result.push_str(&arg_indent.to_string(context.config));
result.push_str(&arg_str);
result.push('\n');
result.push_str(&indent.to_string(context.config));
result.push(')');
} else {
result.push_str(&arg_str);
if context.config.spaces_within_parens() && fd.inputs.len() > 0 {
result.push(' ')
}
// If the last line of args contains comment, we cannot put the closing paren
// on the same line.
2017-06-17 02:56:54 -05:00
if arg_str
.lines()
.last()
.map_or(false, |last_line| last_line.contains("//"))
{
args_last_line_contains_comment = true;
result.push('\n');
result.push_str(&arg_indent.to_string(context.config));
}
result.push(')');
}
// Return type.
if !ret_str.is_empty() {
let ret_should_indent = match context.config.fn_args_layout() {
2016-04-07 14:47:43 -05:00
// If our args are block layout then we surely must have space.
IndentStyle::Block if put_args_in_block => false,
2016-04-07 14:01:16 -05:00
_ => {
// If we've already gone multi-line, or the return type would push over the max
// width, then put the return type on a new line. With the +1 for the signature
// length an additional space between the closing parenthesis of the argument and
// the arrow '->' is considered.
let mut sig_length = result.len() + indent.width() + ret_str_len + 1;
// If there is no where clause, take into account the space after the return type
// and the brace.
if where_clause.predicates.is_empty() {
sig_length += 2;
}
let overlong_sig = sig_length > context.config.max_width();
(!args_last_line_contains_comment) &&
(result.contains('\n') || multi_line_ret_str || overlong_sig)
2016-04-07 14:01:16 -05:00
}
};
let ret_indent = if ret_should_indent {
let indent = match context.config.fn_return_indent() {
ReturnIndent::WithWhereClause => indent + 4,
// Aligning with non-existent args looks silly.
2015-11-25 00:39:15 -06:00
_ if arg_str.is_empty() => {
force_new_line_for_brace = true;
indent + 4
}
// FIXME: we might want to check that using the arg indent
// doesn't blow our budget, and if it does, then fallback to
// the where clause indent.
_ => arg_indent,
};
result.push('\n');
result.push_str(&indent.to_string(context.config));
indent
} else {
result.push(' ');
Indent::new(indent.block_indent, last_line_width(&result))
};
if multi_line_ret_str || ret_should_indent {
// Now that we know the proper indent and width, we need to
// re-layout the return type.
2017-06-17 02:56:54 -05:00
let ret_str = try_opt!(
fd.output
.rewrite(context, Shape::indented(ret_indent, context.config))
);
result.push_str(&ret_str);
} else {
result.push_str(&ret_str);
}
// Comment between return type and the end of the decl.
let snippet_lo = fd.output.span().hi;
if where_clause.predicates.is_empty() {
let snippet_hi = span.hi;
let snippet = context.snippet(mk_sp(snippet_lo, snippet_hi));
// Try to preserve the layout of the original snippet.
2017-06-17 02:56:54 -05:00
let original_starts_with_newline = snippet
.find(|c| c != ' ')
.map_or(false, |i| snippet[i..].starts_with('\n'));
let original_ends_with_newline = snippet
.rfind(|c| c != ' ')
.map_or(false, |i| snippet[i..].ends_with('\n'));
let snippet = snippet.trim();
if !snippet.is_empty() {
2017-06-11 23:01:41 -05:00
result.push(if original_starts_with_newline {
'\n'
} else {
' '
});
result.push_str(snippet);
if original_ends_with_newline {
force_new_line_for_brace = true;
}
}
} else {
// FIXME it would be nice to catch comments between the return type
// and the where clause, but we don't have a span for the where
// clause.
}
}
let should_compress_where = match context.config.where_density() {
2016-04-07 14:01:16 -05:00
Density::Compressed => !result.contains('\n') || put_args_in_block,
Density::CompressedIfEmpty => !has_body && !result.contains('\n'),
_ => false,
} || (put_args_in_block && ret_str.is_empty());
if where_clause.predicates.len() == 1 && should_compress_where {
2017-06-15 18:49:49 -05:00
let budget = try_opt!(
context
.config
.max_width()
.checked_sub(last_line_width(&result))
);
2017-07-09 12:24:59 -05:00
if let Some(where_clause_str) = rewrite_where_clause(
context,
where_clause,
context.config.fn_brace_style(),
Shape::legacy(budget, indent),
Density::Compressed,
"{",
!has_braces,
put_args_in_block && ret_str.is_empty(),
Some(span.hi),
) {
if !where_clause_str.contains('\n') {
if last_line_width(&result) + where_clause_str.len() > context.config.max_width() {
result.push('\n');
}
result.push_str(&where_clause_str);
force_new_line_for_brace |= last_line_contains_single_line_comment(&result);
return Some((result, force_new_line_for_brace));
}
}
}
let where_clause_str = try_opt!(rewrite_where_clause(
context,
where_clause,
context.config.fn_brace_style(),
Shape::indented(indent, context.config),
Density::Tall,
"{",
!has_braces,
put_args_in_block && ret_str.is_empty(),
Some(span.hi),
));
result.push_str(&where_clause_str);
force_new_line_for_brace |= last_line_contains_single_line_comment(&result);
return Some((result, force_new_line_for_brace));
}
fn last_line_contains_single_line_comment(s: &str) -> bool {
s.lines().last().map_or(false, |l| l.contains("//"))
}
fn rewrite_args(
context: &RewriteContext,
args: &[ast::Arg],
explicit_self: Option<&ast::ExplicitSelf>,
one_line_budget: usize,
multi_line_budget: usize,
indent: Indent,
arg_indent: Indent,
span: Span,
variadic: bool,
generics_str_contains_newline: bool,
) -> Option<String> {
let mut arg_item_strs = try_opt!(
args.iter()
.map(|arg| {
arg.rewrite(&context, Shape::legacy(multi_line_budget, arg_indent))
})
.collect::<Option<Vec<_>>>()
);
// Account for sugary self.
// FIXME: the comment for the self argument is dropped. This is blocked
// on rust issue #27522.
2017-03-27 16:58:41 -05:00
let min_args = explicit_self
.and_then(|explicit_self| {
rewrite_explicit_self(explicit_self, args, context)
})
2017-03-27 16:58:41 -05:00
.map_or(1, |self_str| {
arg_item_strs[0] = self_str;
2
});
// Comments between args.
let mut arg_items = Vec::new();
if min_args == 2 {
arg_items.push(ListItem::from_str(""));
}
// FIXME(#21): if there are no args, there might still be a comment, but
// without spans for the comment or parens, there is no chance of
// getting it right. You also don't get to put a comment on self, unless
// it is explicit.
if args.len() >= min_args || variadic {
let comment_span_start = if min_args == 2 {
2016-03-27 06:07:28 -05:00
let second_arg_start = if arg_has_pattern(&args[1]) {
args[1].pat.span.lo
} else {
args[1].ty.span.lo
};
let reduced_span = mk_sp(span.lo, second_arg_start);
2017-03-27 17:25:59 -05:00
context.codemap.span_after_last(reduced_span, ",")
} else {
span.lo
};
enum ArgumentKind<'a> {
Regular(&'a ast::Arg),
Variadic(BytePos),
}
let variadic_arg = if variadic {
2017-03-27 17:14:47 -05:00
let variadic_span = mk_sp(args.last().unwrap().ty.span.hi, span.hi);
2017-03-27 17:25:59 -05:00
let variadic_start = context.codemap.span_after(variadic_span, "...") - BytePos(3);
Some(ArgumentKind::Variadic(variadic_start))
} else {
None
};
let more_items = itemize_list(
context.codemap,
args[min_args - 1..]
.iter()
.map(ArgumentKind::Regular)
.chain(variadic_arg),
")",
|arg| match *arg {
ArgumentKind::Regular(arg) => span_lo_for_arg(arg),
ArgumentKind::Variadic(start) => start,
},
|arg| match *arg {
ArgumentKind::Regular(arg) => arg.ty.span.hi,
ArgumentKind::Variadic(start) => start + BytePos(3),
},
|arg| match *arg {
ArgumentKind::Regular(..) => None,
ArgumentKind::Variadic(..) => Some("...".to_owned()),
},
comment_span_start,
span.hi,
);
arg_items.extend(more_items);
}
let fits_in_one_line = !generics_str_contains_newline &&
(arg_items.len() == 0 || arg_items.len() == 1 && arg_item_strs[0].len() <= one_line_budget);
for (item, arg) in arg_items.iter_mut().zip(arg_item_strs) {
item.item = Some(arg);
}
let last_line_ends_with_comment = arg_items
.iter()
.last()
.and_then(|item| item.post_comment.as_ref())
.map_or(false, |s| s.trim().starts_with("//"));
let (indent, trailing_comma, end_with_newline) = match context.config.fn_args_layout() {
IndentStyle::Block if fits_in_one_line => {
(
indent.block_indent(context.config),
SeparatorTactic::Never,
true,
)
}
IndentStyle::Block => {
(
indent.block_indent(context.config),
context.config.trailing_comma(),
true,
)
}
IndentStyle::Visual if last_line_ends_with_comment => {
(arg_indent, context.config.trailing_comma(), true)
}
IndentStyle::Visual => (arg_indent, SeparatorTactic::Never, false),
};
let tactic = definitive_tactic(
&arg_items,
context.config.fn_args_density().to_list_tactic(),
one_line_budget,
);
let budget = match tactic {
DefinitiveListTactic::Horizontal => one_line_budget,
_ => multi_line_budget,
};
2016-04-07 14:24:30 -05:00
debug!("rewrite_args: budget: {}, tactic: {:?}", budget, tactic);
let fmt = ListFormatting {
tactic: tactic,
separator: ",",
trailing_separator: if variadic {
SeparatorTactic::Never
} else {
trailing_comma
},
shape: Shape::legacy(budget, indent),
ends_with_newline: end_with_newline,
config: context.config,
};
write_list(&arg_items, &fmt)
}
2016-03-27 06:07:28 -05:00
fn arg_has_pattern(arg: &ast::Arg) -> bool {
if let ast::PatKind::Ident(_, ident, _) = arg.pat.node {
ident.node != symbol::keywords::Invalid.ident()
2016-03-27 06:07:28 -05:00
} else {
true
}
}
fn compute_budgets_for_args(
context: &RewriteContext,
result: &str,
indent: Indent,
ret_str_len: usize,
newline_brace: bool,
has_braces: bool,
) -> Option<((usize, usize, Indent))> {
debug!(
"compute_budgets_for_args {} {:?}, {}, {}",
result.len(),
indent,
ret_str_len,
newline_brace
);
// Try keeping everything on the same line.
2016-08-23 09:14:45 -05:00
if !result.contains('\n') {
// 2 = `()`, 3 = `() `, space is before ret_string.
let overhead = if ret_str_len == 0 { 2 } else { 3 };
let mut used_space = indent.width() + result.len() + ret_str_len + overhead;
if has_braces {
if !newline_brace {
// 2 = `{}`
used_space += 2;
}
} else {
// 1 = `;`
used_space += 1;
}
2017-03-27 16:58:41 -05:00
let one_line_budget = context
.config
.max_width()
.checked_sub(used_space)
.unwrap_or(0);
if one_line_budget > 0 {
// 4 = "() {".len()
2017-07-05 04:31:37 -05:00
let multi_line_overhead =
indent.width() + result.len() + if newline_brace { 2 } else { 4 };
2017-06-12 21:49:47 -05:00
let multi_line_budget =
try_opt!(context.config.max_width().checked_sub(multi_line_overhead));
return Some((
one_line_budget,
multi_line_budget,
indent + result.len() + 1,
));
}
}
// Didn't work. we must force vertical layout and put args on a newline.
let new_indent = indent.block_indent(context.config);
2017-06-03 09:17:30 -05:00
// Account for `)` and possibly ` {`.
let used_space = new_indent.width() + if ret_str_len == 0 { 1 } else { 3 };
let max_space = try_opt!(context.config.max_width().checked_sub(used_space));
Some((0, max_space, new_indent))
}
fn newline_for_brace(config: &Config, where_clause: &ast::WhereClause) -> bool {
match config.fn_brace_style() {
BraceStyle::AlwaysNextLine => true,
BraceStyle::SameLineWhere if !where_clause.predicates.is_empty() => true,
_ => false,
}
}
2017-06-12 21:49:47 -05:00
fn rewrite_generics(
context: &RewriteContext,
generics: &ast::Generics,
shape: Shape,
span: Span,
) -> Option<String> {
let g_shape = try_opt!(generics_shape_from_config(context.config, shape, 0));
let one_line_width = shape.width.checked_sub(2).unwrap_or(0);
rewrite_generics_inner(context, generics, g_shape, one_line_width, span).or_else(|| {
rewrite_generics_inner(context, generics, g_shape, 0, span)
})
}
2017-06-12 21:49:47 -05:00
fn rewrite_generics_inner(
context: &RewriteContext,
generics: &ast::Generics,
shape: Shape,
one_line_width: usize,
span: Span,
) -> Option<String> {
// FIXME: convert bounds to where clauses where they get too big or if
// there is a where clause at all.
let lifetimes: &[_] = &generics.lifetimes;
let tys: &[_] = &generics.ty_params;
if lifetimes.is_empty() && tys.is_empty() {
return Some(String::new());
}
// Strings for the generics.
let lt_strs = lifetimes.iter().map(|lt| lt.rewrite(context, shape));
let ty_strs = tys.iter().map(|ty_param| ty_param.rewrite(context, shape));
// Extract comments between generics.
2017-05-16 09:24:38 -05:00
let lt_spans = lifetimes.iter().map(|l| {
let hi = if l.bounds.is_empty() {
l.lifetime.span.hi
} else {
l.bounds[l.bounds.len() - 1].span.hi
};
mk_sp(l.lifetime.span.lo, hi)
});
let ty_spans = tys.iter().map(span_for_ty_param);
2017-06-12 21:49:47 -05:00
let items = itemize_list(
context.codemap,
lt_spans.chain(ty_spans).zip(lt_strs.chain(ty_strs)),
">",
|&(sp, _)| sp.lo,
|&(sp, _)| sp.hi,
// FIXME: don't clone
|&(_, ref str)| str.clone(),
context.codemap.span_after(span, "<"),
span.hi,
);
format_generics_item_list(context, items, shape, one_line_width)
2017-06-10 04:24:23 -05:00
}
pub fn generics_shape_from_config(config: &Config, shape: Shape, offset: usize) -> Option<Shape> {
match config.generics_indent() {
IndentStyle::Visual => shape.visual_indent(1 + offset).sub_width(offset + 2),
IndentStyle::Block => {
// 1 = ","
shape
.block()
.block_indent(config.tab_spaces())
.with_max_width(config)
.sub_width(1)
}
2017-06-10 04:24:23 -05:00
}
}
2017-06-12 21:49:47 -05:00
pub fn format_generics_item_list<I>(
context: &RewriteContext,
items: I,
shape: Shape,
one_line_budget: usize,
) -> Option<String>
where
I: Iterator<Item = ListItem>,
2017-06-10 04:24:23 -05:00
{
let item_vec = items.collect::<Vec<_>>();
let tactic = definitive_tactic(&item_vec, ListTactic::HorizontalVertical, one_line_budget);
let ends_with_newline = context.config.generics_indent() == IndentStyle::Block &&
tactic == DefinitiveListTactic::Vertical;
2017-06-10 04:24:23 -05:00
let fmt = ListFormatting {
tactic: tactic,
2017-06-10 04:24:23 -05:00
separator: ",",
trailing_separator: if context.config.generics_indent() == IndentStyle::Visual {
SeparatorTactic::Never
} else {
context.config.trailing_comma()
},
shape: shape,
ends_with_newline: ends_with_newline,
2017-06-10 04:24:23 -05:00
config: context.config,
};
let list_str = try_opt!(write_list(&item_vec, &fmt));
2017-06-12 21:49:47 -05:00
Some(wrap_generics_with_angle_brackets(
context,
&list_str,
shape.indent,
))
2017-06-10 04:24:23 -05:00
}
2017-06-12 21:49:47 -05:00
pub fn wrap_generics_with_angle_brackets(
context: &RewriteContext,
list_str: &str,
list_offset: Indent,
) -> String {
2017-06-10 04:24:23 -05:00
if context.config.generics_indent() == IndentStyle::Block &&
2017-06-12 21:49:47 -05:00
(list_str.contains('\n') || list_str.ends_with(','))
{
format!(
"<\n{}{}\n{}>",
list_offset.to_string(context.config),
list_str,
2017-06-15 18:49:49 -05:00
list_offset
.block_unindent(context.config)
.to_string(context.config)
2017-06-12 21:49:47 -05:00
)
} else if context.config.spaces_within_angle_brackets() {
format!("< {} >", list_str)
} else {
format!("<{}>", list_str)
2017-06-10 04:24:23 -05:00
}
}
fn rewrite_trait_bounds(
context: &RewriteContext,
type_param_bounds: &ast::TyParamBounds,
shape: Shape,
) -> Option<String> {
2016-08-23 09:14:45 -05:00
let bounds: &[_] = type_param_bounds;
if bounds.is_empty() {
return Some(String::new());
}
2017-06-12 21:49:47 -05:00
let bound_str = try_opt!(
bounds
.iter()
.map(|ty_bound| ty_bound.rewrite(&context, shape))
.collect::<Option<Vec<_>>>()
);
Some(format!(": {}", join_bounds(context, shape, &bound_str)))
}
fn rewrite_where_clause_rfc_style(
context: &RewriteContext,
where_clause: &ast::WhereClause,
shape: Shape,
terminator: &str,
suppress_comma: bool,
// where clause can be kept on the current line.
snuggle: bool,
span_end: Option<BytePos>,
) -> Option<String> {
let block_shape = shape.block().with_max_width(context.config);
2017-03-08 19:21:20 -06:00
let starting_newline = if snuggle {
" ".to_owned()
} else {
"\n".to_owned() + &block_shape.indent.to_string(context.config)
};
let clause_shape = block_shape.block_indent(context.config.tab_spaces());
2017-03-08 19:21:20 -06:00
// each clause on one line, trailing comma (except if suppress_comma)
let span_start = span_for_where_pred(&where_clause.predicates[0]).lo;
// If we don't have the start of the next span, then use the end of the
// predicates, but that means we miss comments.
let len = where_clause.predicates.len();
let end_of_preds = span_for_where_pred(&where_clause.predicates[len - 1]).hi;
let span_end = span_end.unwrap_or(end_of_preds);
2017-06-12 21:49:47 -05:00
let items = itemize_list(
context.codemap,
where_clause.predicates.iter(),
terminator,
|pred| span_for_where_pred(pred).lo,
|pred| span_for_where_pred(pred).hi,
|pred| pred.rewrite(context, block_shape),
2017-06-12 21:49:47 -05:00
span_start,
span_end,
);
2017-03-08 19:21:20 -06:00
let comma_tactic = if suppress_comma {
SeparatorTactic::Never
} else {
context.config.trailing_comma()
2017-03-08 19:21:20 -06:00
};
let fmt = ListFormatting {
tactic: DefinitiveListTactic::Vertical,
separator: ",",
trailing_separator: comma_tactic,
shape: clause_shape,
ends_with_newline: true,
config: context.config,
};
2017-07-05 09:12:58 -05:00
let preds_str = try_opt!(write_list(&items.collect::<Vec<_>>(), &fmt));
2017-03-08 19:21:20 -06:00
Some(format!(
"{}where\n{}{}",
starting_newline,
clause_shape.indent.to_string(context.config),
preds_str
))
2017-03-08 19:21:20 -06:00
}
fn rewrite_where_clause(
context: &RewriteContext,
where_clause: &ast::WhereClause,
brace_style: BraceStyle,
shape: Shape,
density: Density,
terminator: &str,
suppress_comma: bool,
snuggle: bool,
span_end: Option<BytePos>,
) -> Option<String> {
if where_clause.predicates.is_empty() {
return Some(String::new());
}
if context.config.where_style() == Style::Rfc {
return rewrite_where_clause_rfc_style(
context,
where_clause,
shape,
terminator,
suppress_comma,
snuggle,
span_end,
);
2017-03-08 19:21:20 -06:00
}
let extra_indent = Indent::new(context.config.tab_spaces(), 0);
let offset = match context.config.where_pred_indent() {
IndentStyle::Block => shape.indent + extra_indent.block_indent(context.config),
// 6 = "where ".len()
IndentStyle::Visual => shape.indent + extra_indent + 6,
};
// FIXME: if where_pred_indent != Visual, then the budgets below might
// be out by a char or two.
let budget = context.config.max_width() - offset.width();
let span_start = span_for_where_pred(&where_clause.predicates[0]).lo;
// If we don't have the start of the next span, then use the end of the
// predicates, but that means we miss comments.
let len = where_clause.predicates.len();
let end_of_preds = span_for_where_pred(&where_clause.predicates[len - 1]).hi;
let span_end = span_end.unwrap_or(end_of_preds);
let items = itemize_list(
context.codemap,
where_clause.predicates.iter(),
terminator,
|pred| span_for_where_pred(pred).lo,
|pred| span_for_where_pred(pred).hi,
|pred| pred.rewrite(context, Shape::legacy(budget, offset)),
span_start,
span_end,
);
let item_vec = items.collect::<Vec<_>>();
// FIXME: we don't need to collect here if the where_layout isn't
// HorizontalVertical.
let tactic = definitive_tactic(&item_vec, context.config.where_layout(), budget);
2017-02-23 15:31:23 -06:00
let mut comma_tactic = context.config.trailing_comma();
2017-02-23 15:31:23 -06:00
// Kind of a hack because we don't usually have trailing commas in where clauses.
2017-03-01 19:25:57 -06:00
if comma_tactic == SeparatorTactic::Vertical || suppress_comma {
2017-02-23 15:31:23 -06:00
comma_tactic = SeparatorTactic::Never;
}
let fmt = ListFormatting {
tactic: tactic,
separator: ",",
2017-02-23 15:31:23 -06:00
trailing_separator: comma_tactic,
shape: Shape::legacy(budget, offset),
ends_with_newline: true,
config: context.config,
};
let preds_str = try_opt!(write_list(&item_vec, &fmt));
let end_length = if terminator == "{" {
// If the brace is on the next line we don't need to count it otherwise it needs two
// characters " {"
match brace_style {
2017-07-09 12:24:59 -05:00
BraceStyle::AlwaysNextLine | BraceStyle::SameLineWhere => 0,
2016-08-23 09:14:45 -05:00
BraceStyle::PreferSameLine => 2,
}
} else if terminator == "=" {
2
} else {
terminator.len()
};
if density == Density::Tall || preds_str.contains('\n') ||
shape.indent.width() + " where ".len() + preds_str.len() + end_length > shape.width
{
Some(format!(
"\n{}where {}",
(shape.indent + extra_indent).to_string(context.config),
preds_str
))
} else {
Some(format!(" where {}", preds_str))
}
}
fn format_header(item_name: &str, ident: ast::Ident, vis: &ast::Visibility) -> String {
format!("{}{}{}", format_visibility(vis), item_name, ident)
}
fn format_generics(
context: &RewriteContext,
generics: &ast::Generics,
opener: &str,
terminator: &str,
brace_style: BraceStyle,
force_same_line_brace: bool,
offset: Indent,
span: Span,
used_width: usize,
) -> Option<String> {
let shape = Shape::legacy(context.budget(used_width + offset.width()), offset);
2017-04-19 08:48:45 -05:00
let mut result = try_opt!(rewrite_generics(context, generics, shape, span));
if !generics.where_clause.predicates.is_empty() || result.contains('\n') {
2017-06-15 18:49:49 -05:00
let budget = try_opt!(
context
.config
.max_width()
.checked_sub(last_line_width(&result))
);
let where_clause_str = try_opt!(rewrite_where_clause(
context,
&generics.where_clause,
brace_style,
Shape::legacy(budget, offset.block_only()),
Density::Tall,
terminator,
false,
trimmed_last_line_width(&result) == 1,
Some(span.hi),
));
result.push_str(&where_clause_str);
2017-03-09 21:06:05 -06:00
let same_line_brace = force_same_line_brace ||
(generics.where_clause.predicates.is_empty() && trimmed_last_line_width(&result) == 1);
if !same_line_brace &&
2017-06-14 06:39:07 -05:00
(brace_style == BraceStyle::SameLineWhere ||
brace_style == BraceStyle::AlwaysNextLine)
{
result.push('\n');
2017-02-20 19:43:43 -06:00
result.push_str(&offset.block_only().to_string(context.config));
} else {
result.push(' ');
}
result.push_str(opener);
} else {
2017-03-09 21:06:05 -06:00
if force_same_line_brace || trimmed_last_line_width(&result) == 1 ||
brace_style != BraceStyle::AlwaysNextLine
{
result.push(' ');
} else {
result.push('\n');
2017-02-20 19:43:43 -06:00
result.push_str(&offset.block_only().to_string(context.config));
}
result.push_str(opener);
}
Some(result)
}