2015-04-21 04:01:19 -05:00
|
|
|
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2017-05-17 05:32:18 -05:00
|
|
|
use std::cmp;
|
|
|
|
|
2017-07-13 04:42:14 -05:00
|
|
|
use strings::string_buffer::StringBuffer;
|
2017-09-15 08:31:52 -05:00
|
|
|
use syntax::{ast, visit};
|
2017-08-11 08:16:24 -05:00
|
|
|
use syntax::attr::HasAttrs;
|
|
|
|
use syntax::codemap::{self, BytePos, CodeMap, Pos, Span};
|
2015-10-28 01:41:32 -05:00
|
|
|
use syntax::parse::ParseSess;
|
2015-04-21 04:01:19 -05:00
|
|
|
|
2017-09-27 20:47:01 -05:00
|
|
|
use expr::rewrite_literal;
|
2017-09-17 01:32:00 -05:00
|
|
|
use spanned::Spanned;
|
2016-03-11 18:19:16 -06:00
|
|
|
use codemap::{LineRangeUtils, SpanUtils};
|
2017-08-27 10:17:38 -05:00
|
|
|
use comment::{contains_comment, recover_missing_comment_in_span, CodeCharKind, CommentCodeSlices,
|
|
|
|
FindUncommented};
|
2015-07-17 16:10:15 -05:00
|
|
|
use comment::rewrite_comment;
|
2017-07-20 23:55:15 -05:00
|
|
|
use config::{BraceStyle, Config};
|
2017-09-06 05:30:51 -05:00
|
|
|
use items::{format_impl, format_struct, format_struct_struct, format_trait,
|
|
|
|
rewrite_associated_impl_type, rewrite_associated_type, rewrite_static,
|
|
|
|
rewrite_type_alias};
|
2017-08-18 09:19:47 -05:00
|
|
|
use lists::{itemize_list, write_list, DefinitiveListTactic, ListFormatting, SeparatorPlace,
|
|
|
|
SeparatorTactic};
|
2017-07-13 04:42:14 -05:00
|
|
|
use macros::{rewrite_macro, MacroPosition};
|
2017-07-25 12:46:09 -05:00
|
|
|
use regex::Regex;
|
2017-07-13 04:42:14 -05:00
|
|
|
use rewrite::{Rewrite, RewriteContext};
|
2017-09-17 01:23:25 -05:00
|
|
|
use shape::{Indent, Shape};
|
2017-09-15 08:31:52 -05:00
|
|
|
use utils::{self, contains_skip, inner_attributes, mk_sp, ptr_vec_to_ref_vec};
|
2015-04-21 04:01:19 -05:00
|
|
|
|
2016-07-26 00:20:01 -05:00
|
|
|
fn is_use_item(item: &ast::Item) -> bool {
|
|
|
|
match item.node {
|
|
|
|
ast::ItemKind::Use(_) => true,
|
|
|
|
_ => false,
|
2016-05-05 20:02:42 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-08 10:16:18 -05:00
|
|
|
fn is_extern_crate(item: &ast::Item) -> bool {
|
|
|
|
match item.node {
|
|
|
|
ast::ItemKind::ExternCrate(..) => true,
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-21 04:01:19 -05:00
|
|
|
pub struct FmtVisitor<'a> {
|
2015-10-28 01:41:32 -05:00
|
|
|
pub parse_session: &'a ParseSess,
|
2015-04-21 04:01:19 -05:00
|
|
|
pub codemap: &'a CodeMap,
|
2015-07-26 07:05:43 -05:00
|
|
|
pub buffer: StringBuffer,
|
2015-04-21 04:01:19 -05:00
|
|
|
pub last_pos: BytePos,
|
2015-11-22 14:20:53 -06:00
|
|
|
// FIXME: use an RAII util or closure for indenting
|
2015-09-06 00:39:28 -05:00
|
|
|
pub block_indent: Indent,
|
2015-06-23 06:26:04 -05:00
|
|
|
pub config: &'a Config,
|
2017-06-01 21:58:19 -05:00
|
|
|
pub is_if_else_block: bool,
|
2015-04-21 04:01:19 -05:00
|
|
|
}
|
|
|
|
|
2015-10-21 15:21:14 -05:00
|
|
|
impl<'a> FmtVisitor<'a> {
|
2017-08-30 05:26:45 -05:00
|
|
|
pub fn shape(&self) -> Shape {
|
|
|
|
Shape::indented(self.block_indent, self.config)
|
|
|
|
}
|
|
|
|
|
2015-10-21 15:21:14 -05:00
|
|
|
fn visit_stmt(&mut self, stmt: &ast::Stmt) {
|
2017-06-11 22:58:58 -05:00
|
|
|
debug!(
|
|
|
|
"visit_stmt: {:?} {:?}",
|
2017-08-19 13:47:40 -05:00
|
|
|
self.codemap.lookup_char_pos(stmt.span.lo()),
|
|
|
|
self.codemap.lookup_char_pos(stmt.span.hi())
|
2017-06-11 22:58:58 -05:00
|
|
|
);
|
2016-05-25 13:41:26 -05:00
|
|
|
|
2015-08-21 06:31:09 -05:00
|
|
|
match stmt.node {
|
2016-09-15 22:19:18 -05:00
|
|
|
ast::StmtKind::Item(ref item) => {
|
|
|
|
self.visit_item(item);
|
2015-08-21 06:31:09 -05:00
|
|
|
}
|
2017-09-05 02:50:55 -05:00
|
|
|
ast::StmtKind::Local(..) | ast::StmtKind::Expr(..) | ast::StmtKind::Semi(..) => {
|
2017-08-30 05:27:36 -05:00
|
|
|
let rewrite = stmt.rewrite(&self.get_context(), self.shape());
|
|
|
|
self.push_rewrite(stmt.span(), rewrite)
|
2017-06-13 10:08:31 -05:00
|
|
|
}
|
2016-09-15 22:19:18 -05:00
|
|
|
ast::StmtKind::Mac(ref mac) => {
|
2017-07-21 21:18:47 -05:00
|
|
|
let (ref mac, _macro_style, ref attrs) = **mac;
|
2017-08-30 05:27:36 -05:00
|
|
|
if self.visit_attrs(attrs, ast::AttrStyle::Outer) {
|
|
|
|
self.push_rewrite(stmt.span(), None);
|
2017-07-21 21:18:47 -05:00
|
|
|
} else {
|
|
|
|
self.visit_mac(mac, None, MacroPosition::Statement);
|
|
|
|
}
|
2017-08-19 13:47:40 -05:00
|
|
|
self.format_missing(stmt.span.hi());
|
2015-08-21 06:31:09 -05:00
|
|
|
}
|
2015-04-28 22:00:58 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-24 10:55:55 -05:00
|
|
|
pub fn visit_block(&mut self, b: &ast::Block, inner_attrs: Option<&[ast::Attribute]>) {
|
2017-06-11 22:58:58 -05:00
|
|
|
debug!(
|
|
|
|
"visit_block: {:?} {:?}",
|
2017-08-19 13:47:40 -05:00
|
|
|
self.codemap.lookup_char_pos(b.span.lo()),
|
|
|
|
self.codemap.lookup_char_pos(b.span.hi())
|
2017-06-11 22:58:58 -05:00
|
|
|
);
|
2015-04-21 04:01:19 -05:00
|
|
|
|
2015-08-20 16:05:41 -05:00
|
|
|
// Check if this block has braces.
|
|
|
|
let snippet = self.snippet(b.span);
|
2016-08-23 09:14:45 -05:00
|
|
|
let has_braces = snippet.starts_with('{') || snippet.starts_with("unsafe");
|
2016-05-29 10:58:38 -05:00
|
|
|
let brace_compensation = if has_braces { BytePos(1) } else { BytePos(0) };
|
2015-08-20 16:05:41 -05:00
|
|
|
|
|
|
|
self.last_pos = self.last_pos + brace_compensation;
|
2015-09-18 23:50:44 -05:00
|
|
|
self.block_indent = self.block_indent.block_indent(self.config);
|
2015-08-20 16:05:41 -05:00
|
|
|
self.buffer.push_str("{");
|
2015-04-21 04:01:19 -05:00
|
|
|
|
2017-08-11 02:15:28 -05:00
|
|
|
if self.config.remove_blank_lines_at_start_or_end_of_block() {
|
2017-08-11 08:16:24 -05:00
|
|
|
if let Some(first_stmt) = b.stmts.first() {
|
|
|
|
let attr_lo = inner_attrs
|
|
|
|
.and_then(|attrs| {
|
2017-08-19 13:47:40 -05:00
|
|
|
inner_attributes(attrs).first().map(|attr| attr.span.lo())
|
2017-08-11 08:16:24 -05:00
|
|
|
})
|
|
|
|
.or_else(|| {
|
|
|
|
// Attributes for an item in a statement position
|
|
|
|
// do not belong to the statement. (rust-lang/rust#34459)
|
|
|
|
if let ast::StmtKind::Item(ref item) = first_stmt.node {
|
|
|
|
item.attrs.first()
|
2017-08-11 02:15:28 -05:00
|
|
|
} else {
|
2017-08-11 08:16:24 -05:00
|
|
|
first_stmt.attrs().first()
|
|
|
|
}.and_then(|attr| {
|
|
|
|
// Some stmts can have embedded attributes.
|
|
|
|
// e.g. `match { #![attr] ... }`
|
2017-08-19 13:47:40 -05:00
|
|
|
let attr_lo = attr.span.lo();
|
|
|
|
if attr_lo < first_stmt.span.lo() {
|
2017-08-11 08:16:24 -05:00
|
|
|
Some(attr_lo)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
})
|
2017-08-11 02:15:28 -05:00
|
|
|
});
|
2017-08-11 08:16:24 -05:00
|
|
|
|
2017-08-19 13:47:40 -05:00
|
|
|
let snippet = self.snippet(mk_sp(
|
|
|
|
self.last_pos,
|
|
|
|
attr_lo.unwrap_or(first_stmt.span.lo()),
|
|
|
|
));
|
2017-08-11 08:16:24 -05:00
|
|
|
let len = CommentCodeSlices::new(&snippet).nth(0).and_then(
|
|
|
|
|(kind, _, s)| if kind == CodeCharKind::Normal {
|
|
|
|
s.rfind('\n')
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
},
|
|
|
|
);
|
2017-08-11 02:15:28 -05:00
|
|
|
if let Some(len) = len {
|
2017-08-11 08:16:24 -05:00
|
|
|
self.last_pos = self.last_pos + BytePos::from_usize(len);
|
2017-08-11 02:15:28 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-24 10:55:55 -05:00
|
|
|
// Format inner attributes if available.
|
|
|
|
if let Some(attrs) = inner_attrs {
|
|
|
|
self.visit_attrs(attrs, ast::AttrStyle::Inner);
|
|
|
|
}
|
|
|
|
|
2017-09-15 08:31:52 -05:00
|
|
|
self.walk_block_stmts(b);
|
2015-08-01 07:22:31 -05:00
|
|
|
|
2016-09-15 22:19:18 -05:00
|
|
|
if !b.stmts.is_empty() {
|
|
|
|
if let Some(expr) = utils::stmt_expr(&b.stmts[b.stmts.len() - 1]) {
|
2017-07-11 08:41:38 -05:00
|
|
|
if utils::semicolon_for_expr(&self.get_context(), expr) {
|
2016-09-15 22:19:18 -05:00
|
|
|
self.buffer.push_str(";");
|
|
|
|
}
|
2015-04-21 04:01:19 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-11 02:15:28 -05:00
|
|
|
let mut remove_len = BytePos(0);
|
|
|
|
if self.config.remove_blank_lines_at_start_or_end_of_block() {
|
|
|
|
if let Some(stmt) = b.stmts.last() {
|
|
|
|
let snippet = self.snippet(mk_sp(
|
2017-08-19 13:47:40 -05:00
|
|
|
stmt.span.hi(),
|
|
|
|
source!(self, b.span).hi() - brace_compensation,
|
2017-08-11 02:15:28 -05:00
|
|
|
));
|
|
|
|
let len = CommentCodeSlices::new(&snippet)
|
|
|
|
.last()
|
|
|
|
.and_then(|(kind, _, s)| {
|
|
|
|
if kind == CodeCharKind::Normal && s.trim().is_empty() {
|
|
|
|
Some(s.len())
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if let Some(len) = len {
|
2017-08-11 08:16:24 -05:00
|
|
|
remove_len = BytePos::from_usize(len);
|
2017-08-11 02:15:28 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-01 21:58:19 -05:00
|
|
|
let mut unindent_comment = self.is_if_else_block && !b.stmts.is_empty();
|
|
|
|
if unindent_comment {
|
2017-08-30 21:11:52 -05:00
|
|
|
let end_pos = source!(self, b.span).hi() - brace_compensation - remove_len;
|
2017-08-30 05:26:45 -05:00
|
|
|
let snippet = self.snippet(mk_sp(self.last_pos, end_pos));
|
2017-06-01 21:58:19 -05:00
|
|
|
unindent_comment = snippet.contains("//") || snippet.contains("/*");
|
|
|
|
}
|
2015-11-22 14:20:53 -06:00
|
|
|
// FIXME: we should compress any newlines here to just one
|
2017-06-01 21:58:19 -05:00
|
|
|
if unindent_comment {
|
|
|
|
self.block_indent = self.block_indent.block_unindent(self.config);
|
|
|
|
}
|
2017-08-19 13:47:40 -05:00
|
|
|
self.format_missing_with_indent(
|
|
|
|
source!(self, b.span).hi() - brace_compensation - remove_len,
|
|
|
|
);
|
2017-06-01 21:58:19 -05:00
|
|
|
if unindent_comment {
|
|
|
|
self.block_indent = self.block_indent.block_indent(self.config);
|
|
|
|
}
|
|
|
|
self.close_block(unindent_comment);
|
2017-08-19 13:47:40 -05:00
|
|
|
self.last_pos = source!(self, b.span).hi();
|
2015-11-20 15:44:15 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: this is a terrible hack to indent the comments between the last
|
|
|
|
// item in the block and the closing brace to the block's level.
|
|
|
|
// The closing brace itself, however, should be indented at a shallower
|
|
|
|
// level.
|
2017-06-01 21:58:19 -05:00
|
|
|
fn close_block(&mut self, unindent_comment: bool) {
|
2015-10-19 14:41:47 -05:00
|
|
|
let total_len = self.buffer.len;
|
2017-06-01 21:58:19 -05:00
|
|
|
let chars_too_many = if unindent_comment {
|
|
|
|
0
|
|
|
|
} else if self.config.hard_tabs() {
|
2015-10-19 14:41:47 -05:00
|
|
|
1
|
|
|
|
} else {
|
2017-05-16 03:47:09 -05:00
|
|
|
self.config.tab_spaces()
|
2015-10-19 14:41:47 -05:00
|
|
|
};
|
2017-03-27 17:25:59 -05:00
|
|
|
self.buffer.truncate(total_len - chars_too_many);
|
2015-07-26 07:05:43 -05:00
|
|
|
self.buffer.push_str("}");
|
2015-10-19 14:41:47 -05:00
|
|
|
self.block_indent = self.block_indent.block_unindent(self.config);
|
2015-04-21 04:01:19 -05:00
|
|
|
}
|
|
|
|
|
2015-05-11 08:05:12 -05:00
|
|
|
// Note that this only gets called for function definitions. Required methods
|
2015-04-21 04:01:19 -05:00
|
|
|
// on traits do not get handled here.
|
2017-06-11 22:58:58 -05:00
|
|
|
fn visit_fn(
|
|
|
|
&mut self,
|
|
|
|
fk: visit::FnKind,
|
|
|
|
fd: &ast::FnDecl,
|
|
|
|
s: Span,
|
|
|
|
_: ast::NodeId,
|
|
|
|
defaultness: ast::Defaultness,
|
2017-07-24 10:55:55 -05:00
|
|
|
inner_attrs: Option<&[ast::Attribute]>,
|
2017-06-11 22:58:58 -05:00
|
|
|
) {
|
2015-04-28 03:56:01 -05:00
|
|
|
let indent = self.block_indent;
|
2016-11-20 13:37:35 -06:00
|
|
|
let block;
|
2015-09-04 11:09:05 -05:00
|
|
|
let rewrite = match fk {
|
2016-11-20 13:37:35 -06:00
|
|
|
visit::FnKind::ItemFn(ident, generics, unsafety, constness, abi, vis, b) => {
|
|
|
|
block = b;
|
2017-06-11 22:58:58 -05:00
|
|
|
self.rewrite_fn(
|
|
|
|
indent,
|
|
|
|
ident,
|
|
|
|
fd,
|
|
|
|
generics,
|
|
|
|
unsafety,
|
|
|
|
constness.node,
|
|
|
|
defaultness,
|
|
|
|
abi,
|
|
|
|
vis,
|
2017-08-19 13:47:40 -05:00
|
|
|
mk_sp(s.lo(), b.span.lo()),
|
2017-08-29 08:16:04 -05:00
|
|
|
b,
|
2017-06-11 22:58:58 -05:00
|
|
|
)
|
2015-04-21 04:01:19 -05:00
|
|
|
}
|
2016-11-20 13:37:35 -06:00
|
|
|
visit::FnKind::Method(ident, sig, vis, b) => {
|
|
|
|
block = b;
|
2017-06-11 22:58:58 -05:00
|
|
|
self.rewrite_fn(
|
|
|
|
indent,
|
|
|
|
ident,
|
|
|
|
fd,
|
|
|
|
&sig.generics,
|
|
|
|
sig.unsafety,
|
|
|
|
sig.constness.node,
|
|
|
|
defaultness,
|
|
|
|
sig.abi,
|
|
|
|
vis.unwrap_or(&ast::Visibility::Inherited),
|
2017-08-19 13:47:40 -05:00
|
|
|
mk_sp(s.lo(), b.span.lo()),
|
2017-08-29 08:16:04 -05:00
|
|
|
b,
|
2017-06-11 22:58:58 -05:00
|
|
|
)
|
2015-04-21 04:01:19 -05:00
|
|
|
}
|
2016-11-20 13:37:35 -06:00
|
|
|
visit::FnKind::Closure(_) => unreachable!(),
|
2015-09-04 11:09:05 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
if let Some(fn_str) = rewrite {
|
2017-08-19 13:47:40 -05:00
|
|
|
self.format_missing_with_indent(source!(self, s).lo());
|
2015-11-19 20:49:24 -06:00
|
|
|
self.buffer.push_str(&fn_str);
|
|
|
|
if let Some(c) = fn_str.chars().last() {
|
|
|
|
if c == '}' {
|
2017-08-19 13:47:40 -05:00
|
|
|
self.last_pos = source!(self, block.span).hi();
|
2015-11-19 20:49:24 -06:00
|
|
|
return;
|
|
|
|
}
|
2015-11-19 20:11:32 -06:00
|
|
|
}
|
2015-09-04 11:09:05 -05:00
|
|
|
} else {
|
2017-08-19 13:47:40 -05:00
|
|
|
self.format_missing(source!(self, block.span).lo());
|
2015-04-21 04:01:19 -05:00
|
|
|
}
|
|
|
|
|
2017-08-19 13:47:40 -05:00
|
|
|
self.last_pos = source!(self, block.span).lo();
|
2017-07-24 10:55:55 -05:00
|
|
|
self.visit_block(block, inner_attrs)
|
2015-04-21 04:01:19 -05:00
|
|
|
}
|
|
|
|
|
2016-07-26 00:20:01 -05:00
|
|
|
pub fn visit_item(&mut self, item: &ast::Item) {
|
2017-07-28 22:51:45 -05:00
|
|
|
skip_out_of_file_lines_range_visitor!(self, item.span);
|
|
|
|
|
2016-05-18 15:36:59 -05:00
|
|
|
// This is where we bail out if there is a skip attribute. This is only
|
|
|
|
// complex in the module case. It is complex because the module could be
|
2016-11-02 23:22:16 -05:00
|
|
|
// in a separate file and there might be attributes in both files, but
|
2016-05-18 15:36:59 -05:00
|
|
|
// the AST lumps them all together.
|
2017-09-06 05:24:14 -05:00
|
|
|
let filterd_attrs;
|
|
|
|
let mut attrs = &item.attrs;
|
2015-04-28 05:19:25 -05:00
|
|
|
match item.node {
|
2016-05-02 03:54:25 -05:00
|
|
|
ast::ItemKind::Mod(ref m) => {
|
2017-08-19 13:47:40 -05:00
|
|
|
let outer_file = self.codemap.lookup_char_pos(item.span.lo()).file;
|
|
|
|
let inner_file = self.codemap.lookup_char_pos(m.inner.lo()).file;
|
2016-05-02 03:54:25 -05:00
|
|
|
if outer_file.name == inner_file.name {
|
2016-05-18 15:36:59 -05:00
|
|
|
// Module is inline, in this case we treat modules like any
|
|
|
|
// other item.
|
2017-07-24 10:55:55 -05:00
|
|
|
if self.visit_attrs(&item.attrs, ast::AttrStyle::Outer) {
|
2016-05-02 03:54:25 -05:00
|
|
|
self.push_rewrite(item.span, None);
|
|
|
|
return;
|
|
|
|
}
|
2017-08-30 05:26:45 -05:00
|
|
|
} else if contains_skip(&item.attrs) {
|
2016-05-18 15:36:59 -05:00
|
|
|
// Module is not inline, but should be skipped.
|
2015-11-22 14:20:53 -06:00
|
|
|
return;
|
2016-05-18 15:36:59 -05:00
|
|
|
} else {
|
|
|
|
// Module is not inline and should not be skipped. We want
|
|
|
|
// to process only the attributes in the current file.
|
2017-09-06 05:24:14 -05:00
|
|
|
filterd_attrs = item.attrs
|
2016-05-18 15:36:59 -05:00
|
|
|
.iter()
|
|
|
|
.filter_map(|a| {
|
2017-08-19 13:47:40 -05:00
|
|
|
let attr_file = self.codemap.lookup_char_pos(a.span.lo()).file;
|
2016-05-18 15:36:59 -05:00
|
|
|
if attr_file.name == outer_file.name {
|
|
|
|
Some(a.clone())
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
// Assert because if we should skip it should be caught by
|
|
|
|
// the above case.
|
2017-07-24 10:55:55 -05:00
|
|
|
assert!(!self.visit_attrs(&filterd_attrs, ast::AttrStyle::Outer));
|
2017-09-06 05:24:14 -05:00
|
|
|
attrs = &filterd_attrs;
|
2015-11-22 14:20:53 -06:00
|
|
|
}
|
|
|
|
}
|
2017-07-24 10:55:55 -05:00
|
|
|
_ => if self.visit_attrs(&item.attrs, ast::AttrStyle::Outer) {
|
2017-07-11 07:53:10 -05:00
|
|
|
self.push_rewrite(item.span, None);
|
|
|
|
return;
|
|
|
|
},
|
2015-04-22 23:22:48 -05:00
|
|
|
}
|
|
|
|
|
2015-04-21 04:01:19 -05:00
|
|
|
match item.node {
|
2017-09-15 03:09:30 -05:00
|
|
|
ast::ItemKind::Use(ref vp) => self.format_import(item, vp),
|
2016-03-01 16:27:19 -06:00
|
|
|
ast::ItemKind::Impl(..) => {
|
2017-08-30 05:26:45 -05:00
|
|
|
let snippet = self.snippet(item.span);
|
2017-06-17 02:56:54 -05:00
|
|
|
let where_span_end = snippet
|
|
|
|
.find_uncommented("{")
|
2017-08-19 13:47:40 -05:00
|
|
|
.map(|x| (BytePos(x as u32)) + source!(self, item.span).lo());
|
2017-09-06 05:24:23 -05:00
|
|
|
let rw = format_impl(&self.get_context(), item, self.block_indent, where_span_end);
|
|
|
|
self.push_rewrite(item.span, rw);
|
2015-10-21 15:21:14 -05:00
|
|
|
}
|
2016-03-12 12:09:27 -06:00
|
|
|
ast::ItemKind::Trait(..) => {
|
2017-09-06 05:24:23 -05:00
|
|
|
let rw = format_trait(&self.get_context(), item, self.block_indent);
|
|
|
|
self.push_rewrite(item.span, rw);
|
2015-04-23 01:43:46 -05:00
|
|
|
}
|
2016-03-01 16:27:19 -06:00
|
|
|
ast::ItemKind::ExternCrate(_) => {
|
2017-09-06 04:44:33 -05:00
|
|
|
let rw = rewrite_extern_crate(&self.get_context(), item);
|
|
|
|
self.push_rewrite(item.span, rw);
|
2015-04-28 22:00:58 -05:00
|
|
|
}
|
2016-03-01 16:27:19 -06:00
|
|
|
ast::ItemKind::Struct(ref def, ref generics) => {
|
2017-09-06 05:30:51 -05:00
|
|
|
let rewrite = format_struct(
|
|
|
|
&self.get_context(),
|
|
|
|
"struct ",
|
|
|
|
item.ident,
|
|
|
|
&item.vis,
|
|
|
|
def,
|
|
|
|
Some(generics),
|
|
|
|
item.span,
|
|
|
|
self.block_indent,
|
|
|
|
None,
|
|
|
|
).map(|s| match *def {
|
|
|
|
ast::VariantData::Tuple(..) => s + ";",
|
|
|
|
_ => s,
|
|
|
|
});
|
2015-10-18 15:59:39 -05:00
|
|
|
self.push_rewrite(item.span, rewrite);
|
2015-05-24 18:03:26 -05:00
|
|
|
}
|
2016-03-01 16:27:19 -06:00
|
|
|
ast::ItemKind::Enum(ref def, ref generics) => {
|
2017-08-19 13:47:40 -05:00
|
|
|
self.format_missing_with_indent(source!(self, item.span).lo());
|
2016-05-01 22:01:46 -05:00
|
|
|
self.visit_enum(item.ident, &item.vis, def, generics, item.span);
|
2017-08-19 13:47:40 -05:00
|
|
|
self.last_pos = source!(self, item.span).hi();
|
2015-05-29 05:41:26 -05:00
|
|
|
}
|
2016-03-01 16:27:19 -06:00
|
|
|
ast::ItemKind::Mod(ref module) => {
|
2017-08-19 13:47:40 -05:00
|
|
|
self.format_missing_with_indent(source!(self, item.span).lo());
|
2017-09-15 03:09:30 -05:00
|
|
|
self.format_mod(module, &item.vis, item.span, item.ident, attrs);
|
2015-07-01 14:13:10 -05:00
|
|
|
}
|
2016-03-01 16:27:19 -06:00
|
|
|
ast::ItemKind::Mac(ref mac) => {
|
2016-11-20 13:37:35 -06:00
|
|
|
self.visit_mac(mac, Some(item.ident), MacroPosition::Item);
|
2015-09-14 15:53:30 -05:00
|
|
|
}
|
2016-03-01 16:27:19 -06:00
|
|
|
ast::ItemKind::ForeignMod(ref foreign_mod) => {
|
2017-08-19 13:47:40 -05:00
|
|
|
self.format_missing_with_indent(source!(self, item.span).lo());
|
2015-09-21 13:02:45 -05:00
|
|
|
self.format_foreign_mod(foreign_mod, item.span);
|
|
|
|
}
|
2016-03-01 16:27:19 -06:00
|
|
|
ast::ItemKind::Static(ref ty, mutability, ref expr) => {
|
2017-06-11 22:58:58 -05:00
|
|
|
let rewrite = rewrite_static(
|
|
|
|
"static",
|
|
|
|
&item.vis,
|
|
|
|
item.ident,
|
|
|
|
ty,
|
|
|
|
mutability,
|
|
|
|
Some(expr),
|
|
|
|
self.block_indent,
|
|
|
|
item.span,
|
|
|
|
&self.get_context(),
|
|
|
|
);
|
2015-10-18 15:59:39 -05:00
|
|
|
self.push_rewrite(item.span, rewrite);
|
2015-10-18 14:25:30 -05:00
|
|
|
}
|
2016-03-01 16:27:19 -06:00
|
|
|
ast::ItemKind::Const(ref ty, ref expr) => {
|
2017-06-11 22:58:58 -05:00
|
|
|
let rewrite = rewrite_static(
|
|
|
|
"const",
|
|
|
|
&item.vis,
|
|
|
|
item.ident,
|
|
|
|
ty,
|
|
|
|
ast::Mutability::Immutable,
|
|
|
|
Some(expr),
|
|
|
|
self.block_indent,
|
|
|
|
item.span,
|
|
|
|
&self.get_context(),
|
|
|
|
);
|
2015-10-18 15:59:39 -05:00
|
|
|
self.push_rewrite(item.span, rewrite);
|
2015-10-18 14:25:30 -05:00
|
|
|
}
|
2016-03-01 16:27:19 -06:00
|
|
|
ast::ItemKind::DefaultImpl(..) => {
|
2015-10-21 15:21:14 -05:00
|
|
|
// FIXME(#78): format impl definitions.
|
|
|
|
}
|
2016-03-01 16:27:19 -06:00
|
|
|
ast::ItemKind::Fn(ref decl, unsafety, constness, abi, ref generics, ref body) => {
|
2017-06-11 22:58:58 -05:00
|
|
|
self.visit_fn(
|
|
|
|
visit::FnKind::ItemFn(
|
|
|
|
item.ident,
|
|
|
|
generics,
|
|
|
|
unsafety,
|
|
|
|
constness,
|
|
|
|
abi,
|
|
|
|
&item.vis,
|
|
|
|
body,
|
|
|
|
),
|
|
|
|
decl,
|
|
|
|
item.span,
|
|
|
|
item.id,
|
|
|
|
ast::Defaultness::Final,
|
2017-07-24 10:55:55 -05:00
|
|
|
Some(&item.attrs),
|
2017-06-11 22:58:58 -05:00
|
|
|
)
|
2015-10-21 15:21:14 -05:00
|
|
|
}
|
2016-03-01 16:27:19 -06:00
|
|
|
ast::ItemKind::Ty(ref ty, ref generics) => {
|
2017-06-11 22:58:58 -05:00
|
|
|
let rewrite = rewrite_type_alias(
|
|
|
|
&self.get_context(),
|
|
|
|
self.block_indent,
|
|
|
|
item.ident,
|
|
|
|
ty,
|
|
|
|
generics,
|
|
|
|
&item.vis,
|
|
|
|
item.span,
|
|
|
|
);
|
2015-11-22 12:21:01 -06:00
|
|
|
self.push_rewrite(item.span, rewrite);
|
2015-04-21 04:01:19 -05:00
|
|
|
}
|
2017-07-10 03:26:55 -05:00
|
|
|
ast::ItemKind::Union(ref def, ref generics) => {
|
2017-09-06 05:30:51 -05:00
|
|
|
let rewrite = format_struct_struct(
|
2017-07-10 03:26:55 -05:00
|
|
|
&self.get_context(),
|
|
|
|
"union ",
|
|
|
|
item.ident,
|
|
|
|
&item.vis,
|
|
|
|
def.fields(),
|
|
|
|
Some(generics),
|
|
|
|
item.span,
|
|
|
|
self.block_indent,
|
|
|
|
None,
|
|
|
|
);
|
|
|
|
self.push_rewrite(item.span, rewrite);
|
2016-09-15 22:19:18 -05:00
|
|
|
}
|
2017-06-05 23:54:22 -05:00
|
|
|
ast::ItemKind::GlobalAsm(..) => {
|
2017-05-12 17:28:26 -05:00
|
|
|
let snippet = Some(self.snippet(item.span));
|
|
|
|
self.push_rewrite(item.span, snippet);
|
2017-06-05 23:54:22 -05:00
|
|
|
}
|
|
|
|
ast::ItemKind::MacroDef(..) => {
|
|
|
|
// FIXME(#1539): macros 2.0
|
2017-08-29 08:16:04 -05:00
|
|
|
let mac_snippet = Some(self.snippet(item.span));
|
|
|
|
self.push_rewrite(item.span, mac_snippet);
|
2017-06-05 23:54:22 -05:00
|
|
|
}
|
2015-04-21 04:01:19 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-11 23:32:08 -06:00
|
|
|
pub fn visit_trait_item(&mut self, ti: &ast::TraitItem) {
|
2017-07-28 22:51:45 -05:00
|
|
|
skip_out_of_file_lines_range_visitor!(self, ti.span);
|
|
|
|
|
2017-07-24 10:55:55 -05:00
|
|
|
if self.visit_attrs(&ti.attrs, ast::AttrStyle::Outer) {
|
2016-09-09 23:08:32 -05:00
|
|
|
self.push_rewrite(ti.span, None);
|
2015-04-22 23:22:48 -05:00
|
|
|
return;
|
|
|
|
}
|
2015-05-03 17:12:39 -05:00
|
|
|
|
2015-10-21 15:21:14 -05:00
|
|
|
match ti.node {
|
2016-03-15 15:08:12 -05:00
|
|
|
ast::TraitItemKind::Const(ref ty, ref expr_opt) => {
|
2017-06-11 22:58:58 -05:00
|
|
|
let rewrite = rewrite_static(
|
|
|
|
"const",
|
|
|
|
&ast::Visibility::Inherited,
|
|
|
|
ti.ident,
|
|
|
|
ty,
|
|
|
|
ast::Mutability::Immutable,
|
|
|
|
expr_opt.as_ref(),
|
|
|
|
self.block_indent,
|
|
|
|
ti.span,
|
|
|
|
&self.get_context(),
|
|
|
|
);
|
2016-03-14 20:52:07 -05:00
|
|
|
self.push_rewrite(ti.span, rewrite);
|
2015-10-21 15:21:14 -05:00
|
|
|
}
|
2016-03-01 16:27:19 -06:00
|
|
|
ast::TraitItemKind::Method(ref sig, None) => {
|
2015-10-21 15:21:14 -05:00
|
|
|
let indent = self.block_indent;
|
|
|
|
let rewrite = self.rewrite_required_fn(indent, ti.ident, sig, ti.span);
|
|
|
|
self.push_rewrite(ti.span, rewrite);
|
|
|
|
}
|
2016-03-01 16:27:19 -06:00
|
|
|
ast::TraitItemKind::Method(ref sig, Some(ref body)) => {
|
2017-06-11 22:58:58 -05:00
|
|
|
self.visit_fn(
|
|
|
|
visit::FnKind::Method(ti.ident, sig, None, body),
|
|
|
|
&sig.decl,
|
|
|
|
ti.span,
|
|
|
|
ti.id,
|
|
|
|
ast::Defaultness::Final,
|
2017-07-24 10:55:55 -05:00
|
|
|
Some(&ti.attrs),
|
2017-06-11 22:58:58 -05:00
|
|
|
);
|
2015-10-21 15:21:14 -05:00
|
|
|
}
|
2017-05-26 03:17:12 -05:00
|
|
|
ast::TraitItemKind::Type(ref type_param_bounds, ref type_default) => {
|
2017-06-11 22:58:58 -05:00
|
|
|
let rewrite = rewrite_associated_type(
|
|
|
|
ti.ident,
|
|
|
|
type_default.as_ref(),
|
|
|
|
Some(type_param_bounds),
|
|
|
|
&self.get_context(),
|
|
|
|
self.block_indent,
|
|
|
|
);
|
2016-03-14 20:52:07 -05:00
|
|
|
self.push_rewrite(ti.span, rewrite);
|
2015-10-21 15:21:14 -05:00
|
|
|
}
|
2017-05-03 11:10:03 -05:00
|
|
|
ast::TraitItemKind::Macro(ref mac) => {
|
|
|
|
self.visit_mac(mac, Some(ti.ident), MacroPosition::Item);
|
2016-09-15 22:19:18 -05:00
|
|
|
}
|
2015-05-03 17:12:39 -05:00
|
|
|
}
|
2015-04-22 23:22:48 -05:00
|
|
|
}
|
|
|
|
|
2015-11-22 17:00:22 -06:00
|
|
|
pub fn visit_impl_item(&mut self, ii: &ast::ImplItem) {
|
2017-07-28 22:51:45 -05:00
|
|
|
skip_out_of_file_lines_range_visitor!(self, ii.span);
|
|
|
|
|
2017-07-24 10:55:55 -05:00
|
|
|
if self.visit_attrs(&ii.attrs, ast::AttrStyle::Outer) {
|
2016-09-09 23:08:32 -05:00
|
|
|
self.push_rewrite(ii.span, None);
|
2015-04-22 23:22:48 -05:00
|
|
|
return;
|
|
|
|
}
|
2015-10-21 15:21:14 -05:00
|
|
|
|
|
|
|
match ii.node {
|
2015-11-23 12:54:33 -06:00
|
|
|
ast::ImplItemKind::Method(ref sig, ref body) => {
|
2017-06-11 22:58:58 -05:00
|
|
|
self.visit_fn(
|
|
|
|
visit::FnKind::Method(ii.ident, sig, Some(&ii.vis), body),
|
|
|
|
&sig.decl,
|
|
|
|
ii.span,
|
|
|
|
ii.id,
|
|
|
|
ii.defaultness,
|
2017-07-24 10:55:55 -05:00
|
|
|
Some(&ii.attrs),
|
2017-06-11 22:58:58 -05:00
|
|
|
);
|
2015-10-21 15:21:14 -05:00
|
|
|
}
|
2016-03-14 20:52:07 -05:00
|
|
|
ast::ImplItemKind::Const(ref ty, ref expr) => {
|
2017-06-11 22:58:58 -05:00
|
|
|
let rewrite = rewrite_static(
|
|
|
|
"const",
|
|
|
|
&ii.vis,
|
|
|
|
ii.ident,
|
|
|
|
ty,
|
|
|
|
ast::Mutability::Immutable,
|
|
|
|
Some(expr),
|
|
|
|
self.block_indent,
|
|
|
|
ii.span,
|
|
|
|
&self.get_context(),
|
|
|
|
);
|
2016-03-14 20:52:07 -05:00
|
|
|
self.push_rewrite(ii.span, rewrite);
|
2015-10-21 15:21:14 -05:00
|
|
|
}
|
2016-03-14 20:52:07 -05:00
|
|
|
ast::ImplItemKind::Type(ref ty) => {
|
2017-06-11 22:58:58 -05:00
|
|
|
let rewrite = rewrite_associated_impl_type(
|
|
|
|
ii.ident,
|
|
|
|
ii.defaultness,
|
|
|
|
Some(ty),
|
|
|
|
None,
|
|
|
|
&self.get_context(),
|
|
|
|
self.block_indent,
|
|
|
|
);
|
2016-03-14 20:52:07 -05:00
|
|
|
self.push_rewrite(ii.span, rewrite);
|
2015-10-21 15:21:14 -05:00
|
|
|
}
|
2015-11-23 12:54:33 -06:00
|
|
|
ast::ImplItemKind::Macro(ref mac) => {
|
2016-11-20 13:37:35 -06:00
|
|
|
self.visit_mac(mac, Some(ii.ident), MacroPosition::Item);
|
2015-10-21 15:21:14 -05:00
|
|
|
}
|
|
|
|
}
|
2015-04-22 23:22:48 -05:00
|
|
|
}
|
|
|
|
|
2016-11-20 13:37:35 -06:00
|
|
|
fn visit_mac(&mut self, mac: &ast::Mac, ident: Option<ast::Ident>, pos: MacroPosition) {
|
2017-07-28 22:51:45 -05:00
|
|
|
skip_out_of_file_lines_range_visitor!(self, mac.span);
|
|
|
|
|
2015-09-14 15:53:30 -05:00
|
|
|
// 1 = ;
|
2017-08-30 05:26:45 -05:00
|
|
|
let shape = self.shape().sub_width(1).unwrap();
|
2017-05-07 18:07:18 -05:00
|
|
|
let rewrite = rewrite_macro(mac, ident, &self.get_context(), shape, pos);
|
2016-10-02 23:11:49 -05:00
|
|
|
self.push_rewrite(mac.span, rewrite);
|
2015-04-21 04:01:19 -05:00
|
|
|
}
|
|
|
|
|
2017-08-24 18:19:51 -05:00
|
|
|
pub fn push_rewrite(&mut self, span: Span, rewrite: Option<String>) {
|
2017-08-19 13:47:40 -05:00
|
|
|
self.format_missing_with_indent(source!(self, span).lo());
|
2015-11-30 16:12:50 -06:00
|
|
|
let result = rewrite.unwrap_or_else(|| self.snippet(span));
|
|
|
|
self.buffer.push_str(&result);
|
2017-08-19 13:47:40 -05:00
|
|
|
self.last_pos = source!(self, span).hi();
|
2015-10-18 15:59:39 -05:00
|
|
|
}
|
|
|
|
|
2016-02-05 14:59:41 -06:00
|
|
|
pub fn from_codemap(parse_session: &'a ParseSess, config: &'a Config) -> FmtVisitor<'a> {
|
2015-07-15 20:31:20 -05:00
|
|
|
FmtVisitor {
|
2015-10-28 01:41:32 -05:00
|
|
|
parse_session: parse_session,
|
|
|
|
codemap: parse_session.codemap(),
|
2015-07-26 07:05:43 -05:00
|
|
|
buffer: StringBuffer::new(),
|
2015-07-15 20:31:20 -05:00
|
|
|
last_pos: BytePos(0),
|
2017-05-07 17:24:32 -05:00
|
|
|
block_indent: Indent::empty(),
|
2015-07-15 20:31:20 -05:00
|
|
|
config: config,
|
2017-06-01 21:58:19 -05:00
|
|
|
is_if_else_block: false,
|
2015-07-15 20:31:20 -05:00
|
|
|
}
|
2015-04-21 04:01:19 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn snippet(&self, span: Span) -> String {
|
|
|
|
match self.codemap.span_to_snippet(span) {
|
|
|
|
Ok(s) => s,
|
|
|
|
Err(_) => {
|
2017-06-11 22:58:58 -05:00
|
|
|
println!(
|
|
|
|
"Couldn't make snippet for span {:?}->{:?}",
|
2017-08-19 13:47:40 -05:00
|
|
|
self.codemap.lookup_char_pos(span.lo()),
|
|
|
|
self.codemap.lookup_char_pos(span.hi())
|
2017-06-11 22:58:58 -05:00
|
|
|
);
|
2015-04-30 03:31:42 -05:00
|
|
|
"".to_owned()
|
2015-04-21 04:01:19 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-04-28 03:56:01 -05:00
|
|
|
|
|
|
|
// Returns true if we should skip the following item.
|
2017-07-24 10:55:29 -05:00
|
|
|
pub fn visit_attrs(&mut self, attrs: &[ast::Attribute], style: ast::AttrStyle) -> bool {
|
2017-08-30 05:26:45 -05:00
|
|
|
if contains_skip(attrs) {
|
2015-10-07 23:20:19 -05:00
|
|
|
return true;
|
2015-04-28 22:00:58 -05:00
|
|
|
}
|
2015-10-07 23:20:19 -05:00
|
|
|
|
2017-07-24 10:55:29 -05:00
|
|
|
let attrs: Vec<_> = attrs.iter().filter(|a| a.style == style).cloned().collect();
|
|
|
|
if attrs.is_empty() {
|
2015-10-07 23:20:19 -05:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-08-30 05:26:45 -05:00
|
|
|
let rewrite = attrs.rewrite(&self.get_context(), self.shape());
|
2017-08-30 21:11:52 -05:00
|
|
|
let span = mk_sp(attrs[0].span.lo(), attrs[attrs.len() - 1].span.hi());
|
2017-08-15 10:11:20 -05:00
|
|
|
self.push_rewrite(span, rewrite);
|
|
|
|
|
2015-10-07 23:20:19 -05:00
|
|
|
false
|
2015-04-28 22:00:58 -05:00
|
|
|
}
|
|
|
|
|
2017-09-15 08:31:52 -05:00
|
|
|
fn reorder_items<F>(&mut self, items_left: &[&ast::Item], is_item: &F, in_group: bool) -> usize
|
2017-08-08 10:16:18 -05:00
|
|
|
where
|
|
|
|
F: Fn(&ast::Item) -> bool,
|
|
|
|
{
|
|
|
|
let mut last = self.codemap.lookup_line_range(items_left[0].span());
|
|
|
|
let item_length = items_left
|
|
|
|
.iter()
|
|
|
|
.take_while(|ppi| {
|
|
|
|
is_item(&***ppi) && (!in_group || {
|
|
|
|
let current = self.codemap.lookup_line_range(ppi.span());
|
|
|
|
let in_same_group = current.lo < last.hi + 2;
|
|
|
|
last = current;
|
|
|
|
in_same_group
|
|
|
|
})
|
|
|
|
})
|
|
|
|
.count();
|
|
|
|
let items = &items_left[..item_length];
|
|
|
|
|
|
|
|
let at_least_one_in_file_lines = items
|
|
|
|
.iter()
|
|
|
|
.any(|item| !out_of_file_lines_range!(self, item.span));
|
|
|
|
|
|
|
|
if at_least_one_in_file_lines {
|
|
|
|
self.format_imports(items);
|
|
|
|
} else {
|
|
|
|
for item in items {
|
|
|
|
self.push_rewrite(item.span, None);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
item_length
|
|
|
|
}
|
|
|
|
|
2017-09-15 08:31:52 -05:00
|
|
|
fn walk_items(&mut self, mut items_left: &[&ast::Item]) {
|
2016-07-26 00:20:01 -05:00
|
|
|
while !items_left.is_empty() {
|
|
|
|
// If the next item is a `use` declaration, then extract it and any subsequent `use`s
|
|
|
|
// to be potentially reordered within `format_imports`. Otherwise, just format the
|
|
|
|
// next item for output.
|
2017-05-16 03:47:09 -05:00
|
|
|
if self.config.reorder_imports() && is_use_item(&*items_left[0]) {
|
2017-08-08 10:16:18 -05:00
|
|
|
let used_items_len = self.reorder_items(
|
2017-08-29 08:16:04 -05:00
|
|
|
items_left,
|
2017-08-08 10:16:18 -05:00
|
|
|
&is_use_item,
|
|
|
|
self.config.reorder_imports_in_group(),
|
|
|
|
);
|
|
|
|
let (_, rest) = items_left.split_at(used_items_len);
|
|
|
|
items_left = rest;
|
|
|
|
} else if self.config.reorder_extern_crates() && is_extern_crate(&*items_left[0]) {
|
|
|
|
let used_items_len = self.reorder_items(
|
2017-08-29 08:16:04 -05:00
|
|
|
items_left,
|
2017-08-08 10:16:18 -05:00
|
|
|
&is_extern_crate,
|
|
|
|
self.config.reorder_extern_crates_in_group(),
|
|
|
|
);
|
|
|
|
let (_, rest) = items_left.split_at(used_items_len);
|
2016-07-26 00:20:01 -05:00
|
|
|
items_left = rest;
|
|
|
|
} else {
|
|
|
|
// `unwrap()` is safe here because we know `items_left`
|
|
|
|
// has elements from the loop condition
|
|
|
|
let (item, rest) = items_left.split_first().unwrap();
|
2016-08-23 09:14:45 -05:00
|
|
|
self.visit_item(item);
|
2016-07-26 00:20:01 -05:00
|
|
|
items_left = rest;
|
|
|
|
}
|
2015-10-21 15:21:14 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-15 08:31:52 -05:00
|
|
|
fn walk_mod_items(&mut self, m: &ast::Mod) {
|
|
|
|
self.walk_items(&ptr_vec_to_ref_vec(&m.items));
|
|
|
|
}
|
|
|
|
|
|
|
|
fn walk_stmts(&mut self, stmts: &[ast::Stmt]) {
|
|
|
|
fn to_stmt_item(stmt: &ast::Stmt) -> Option<&ast::Item> {
|
|
|
|
match stmt.node {
|
|
|
|
ast::StmtKind::Item(ref item) => Some(&**item),
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if stmts.is_empty() {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Extract leading `use ...;`.
|
|
|
|
let items: Vec<_> = stmts
|
|
|
|
.iter()
|
|
|
|
.take_while(|stmt| to_stmt_item(stmt).is_some())
|
|
|
|
.filter_map(|stmt| to_stmt_item(stmt))
|
|
|
|
.take_while(|item| is_use_item(item))
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
if items.is_empty() {
|
|
|
|
self.visit_stmt(&stmts[0]);
|
|
|
|
self.walk_stmts(&stmts[1..]);
|
|
|
|
} else {
|
|
|
|
self.walk_items(&items);
|
|
|
|
self.walk_stmts(&stmts[items.len()..]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn walk_block_stmts(&mut self, b: &ast::Block) {
|
|
|
|
self.walk_stmts(&b.stmts)
|
|
|
|
}
|
|
|
|
|
2017-07-24 10:55:55 -05:00
|
|
|
fn format_mod(
|
|
|
|
&mut self,
|
|
|
|
m: &ast::Mod,
|
|
|
|
vis: &ast::Visibility,
|
|
|
|
s: Span,
|
|
|
|
ident: ast::Ident,
|
|
|
|
attrs: &[ast::Attribute],
|
|
|
|
) {
|
2015-07-01 14:13:10 -05:00
|
|
|
// Decide whether this is an inline mod or an external mod.
|
2015-07-24 08:29:04 -05:00
|
|
|
let local_file_name = self.codemap.span_to_filename(s);
|
2016-11-20 13:37:35 -06:00
|
|
|
let inner_span = source!(self, m.inner);
|
2017-09-14 22:10:58 -05:00
|
|
|
let is_internal = !(inner_span.lo().0 == 0 && inner_span.hi().0 == 0)
|
|
|
|
&& local_file_name == self.codemap.span_to_filename(inner_span);
|
2015-07-24 08:29:04 -05:00
|
|
|
|
2017-03-27 17:25:59 -05:00
|
|
|
self.buffer.push_str(&*utils::format_visibility(vis));
|
2015-11-20 15:44:15 -06:00
|
|
|
self.buffer.push_str("mod ");
|
|
|
|
self.buffer.push_str(&ident.to_string());
|
2015-07-24 08:29:04 -05:00
|
|
|
|
|
|
|
if is_internal {
|
2017-07-20 23:55:15 -05:00
|
|
|
match self.config.item_brace_style() {
|
|
|
|
BraceStyle::AlwaysNextLine => self.buffer
|
|
|
|
.push_str(&format!("\n{}{{", self.block_indent.to_string(self.config))),
|
|
|
|
_ => self.buffer.push_str(" {"),
|
|
|
|
}
|
2016-01-28 00:53:41 -06:00
|
|
|
// Hackery to account for the closing }.
|
2016-05-05 20:02:42 -05:00
|
|
|
let mod_lo = self.codemap.span_after(source!(self, s), "{");
|
2017-08-19 13:47:40 -05:00
|
|
|
let body_snippet =
|
|
|
|
self.snippet(mk_sp(mod_lo, source!(self, m.inner).hi() - BytePos(1)));
|
2016-01-28 00:53:41 -06:00
|
|
|
let body_snippet = body_snippet.trim();
|
|
|
|
if body_snippet.is_empty() {
|
|
|
|
self.buffer.push_str("}");
|
|
|
|
} else {
|
|
|
|
self.last_pos = mod_lo;
|
|
|
|
self.block_indent = self.block_indent.block_indent(self.config);
|
2017-07-24 10:55:55 -05:00
|
|
|
self.visit_attrs(attrs, ast::AttrStyle::Inner);
|
2016-01-28 00:53:41 -06:00
|
|
|
self.walk_mod_items(m);
|
2017-08-19 13:47:40 -05:00
|
|
|
self.format_missing_with_indent(source!(self, m.inner).hi() - BytePos(1));
|
2017-06-01 21:58:19 -05:00
|
|
|
self.close_block(false);
|
2016-01-28 00:53:41 -06:00
|
|
|
}
|
2017-08-19 13:47:40 -05:00
|
|
|
self.last_pos = source!(self, m.inner).hi();
|
2015-11-20 15:44:15 -06:00
|
|
|
} else {
|
|
|
|
self.buffer.push_str(";");
|
2017-08-19 13:47:40 -05:00
|
|
|
self.last_pos = source!(self, s).hi();
|
2015-07-01 14:13:10 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-24 10:55:55 -05:00
|
|
|
pub fn format_separate_mod(&mut self, m: &ast::Mod, filemap: &codemap::FileMap) {
|
2015-09-18 23:50:44 -05:00
|
|
|
self.block_indent = Indent::empty();
|
2015-10-21 15:21:14 -05:00
|
|
|
self.walk_mod_items(m);
|
2016-08-24 15:32:04 -05:00
|
|
|
self.format_missing_with_indent(filemap.end_pos);
|
2015-07-01 14:13:10 -05:00
|
|
|
}
|
2015-07-20 14:33:23 -05:00
|
|
|
|
2015-08-14 07:09:19 -05:00
|
|
|
pub fn get_context(&self) -> RewriteContext {
|
|
|
|
RewriteContext {
|
2015-10-28 01:41:32 -05:00
|
|
|
parse_session: self.parse_session,
|
2015-08-14 07:09:19 -05:00
|
|
|
codemap: self.codemap,
|
|
|
|
config: self.config,
|
2017-05-13 04:20:18 -05:00
|
|
|
inside_macro: false,
|
2017-05-31 22:07:10 -05:00
|
|
|
use_block: false,
|
2017-06-01 21:58:19 -05:00
|
|
|
is_if_else_block: false,
|
2017-06-04 01:23:00 -05:00
|
|
|
force_one_line_chain: false,
|
2015-08-14 07:09:19 -05:00
|
|
|
}
|
|
|
|
}
|
2015-04-22 23:22:48 -05:00
|
|
|
}
|
2015-07-17 16:10:15 -05:00
|
|
|
|
2017-06-05 09:21:39 -05:00
|
|
|
impl Rewrite for ast::NestedMetaItem {
|
|
|
|
fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
|
|
|
|
match self.node {
|
|
|
|
ast::NestedMetaItemKind::MetaItem(ref meta_item) => meta_item.rewrite(context, shape),
|
2017-09-27 20:47:01 -05:00
|
|
|
ast::NestedMetaItemKind::Literal(ref l) => rewrite_literal(context, l, shape),
|
2017-06-05 09:21:39 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Rewrite for ast::MetaItem {
|
|
|
|
fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
|
|
|
|
Some(match self.node {
|
2017-06-11 22:58:58 -05:00
|
|
|
ast::MetaItemKind::Word => String::from(&*self.name.as_str()),
|
|
|
|
ast::MetaItemKind::List(ref list) => {
|
|
|
|
let name = self.name.as_str();
|
|
|
|
// 3 = `#[` and `(`, 2 = `]` and `)`
|
2017-06-15 18:49:49 -05:00
|
|
|
let item_shape = try_opt!(
|
|
|
|
shape
|
|
|
|
.shrink_left(name.len() + 3)
|
|
|
|
.and_then(|s| s.sub_width(2))
|
|
|
|
);
|
2017-06-11 22:58:58 -05:00
|
|
|
let items = itemize_list(
|
|
|
|
context.codemap,
|
|
|
|
list.iter(),
|
|
|
|
")",
|
2017-08-19 13:47:40 -05:00
|
|
|
|nested_meta_item| nested_meta_item.span.lo(),
|
|
|
|
|nested_meta_item| nested_meta_item.span.hi(),
|
2017-06-11 22:58:58 -05:00
|
|
|
|nested_meta_item| nested_meta_item.rewrite(context, item_shape),
|
2017-08-19 13:47:40 -05:00
|
|
|
self.span.lo(),
|
|
|
|
self.span.hi(),
|
2017-08-07 03:29:55 -05:00
|
|
|
false,
|
2017-06-11 22:58:58 -05:00
|
|
|
);
|
|
|
|
let item_vec = items.collect::<Vec<_>>();
|
|
|
|
let fmt = ListFormatting {
|
|
|
|
tactic: DefinitiveListTactic::Mixed,
|
|
|
|
separator: ",",
|
|
|
|
trailing_separator: SeparatorTactic::Never,
|
2017-08-18 09:19:47 -05:00
|
|
|
separator_place: SeparatorPlace::Back,
|
2017-06-11 22:58:58 -05:00
|
|
|
shape: item_shape,
|
|
|
|
ends_with_newline: false,
|
2017-07-26 08:43:36 -05:00
|
|
|
preserve_newline: false,
|
2017-06-11 22:58:58 -05:00
|
|
|
config: context.config,
|
|
|
|
};
|
|
|
|
format!("{}({})", name, try_opt!(write_list(&item_vec, &fmt)))
|
|
|
|
}
|
|
|
|
ast::MetaItemKind::NameValue(ref literal) => {
|
|
|
|
let name = self.name.as_str();
|
|
|
|
let value = context.snippet(literal.span);
|
2017-06-16 15:44:54 -05:00
|
|
|
if &*name == "doc" && contains_comment(&value) {
|
2017-06-11 22:58:58 -05:00
|
|
|
let doc_shape = Shape {
|
|
|
|
width: cmp::min(shape.width, context.config.comment_width())
|
|
|
|
.checked_sub(shape.indent.width())
|
|
|
|
.unwrap_or(0),
|
|
|
|
..shape
|
|
|
|
};
|
2017-08-29 08:16:04 -05:00
|
|
|
try_opt!(rewrite_comment(&value, false, doc_shape, context.config))
|
2017-06-11 22:58:58 -05:00
|
|
|
} else {
|
|
|
|
format!("{} = {}", name, value)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
2017-06-05 09:21:39 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Rewrite for ast::Attribute {
|
|
|
|
fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
|
2017-08-07 01:17:57 -05:00
|
|
|
try_opt!(self.meta())
|
|
|
|
.rewrite(context, shape)
|
|
|
|
.map(|rw| if self.is_sugared_doc {
|
2017-06-11 22:58:58 -05:00
|
|
|
rw
|
|
|
|
} else {
|
2017-06-16 15:44:54 -05:00
|
|
|
let original = context.snippet(self.span);
|
2017-07-24 10:55:29 -05:00
|
|
|
let prefix = match self.style {
|
|
|
|
ast::AttrStyle::Inner => "#!",
|
|
|
|
ast::AttrStyle::Outer => "#",
|
|
|
|
};
|
2017-06-16 15:44:54 -05:00
|
|
|
if contains_comment(&original) {
|
|
|
|
original
|
|
|
|
} else {
|
2017-07-24 10:55:29 -05:00
|
|
|
format!("{}[{}]", prefix, rw)
|
2017-06-16 15:44:54 -05:00
|
|
|
}
|
2017-08-07 01:17:57 -05:00
|
|
|
})
|
2017-06-05 09:21:39 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-17 16:10:15 -05:00
|
|
|
impl<'a> Rewrite for [ast::Attribute] {
|
2017-01-30 13:28:48 -06:00
|
|
|
fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
|
2015-07-17 16:10:15 -05:00
|
|
|
if self.is_empty() {
|
2017-08-27 10:24:10 -05:00
|
|
|
return Some(String::new());
|
2015-07-17 16:10:15 -05:00
|
|
|
}
|
2017-08-27 10:24:10 -05:00
|
|
|
let mut result = String::with_capacity(128);
|
2017-01-30 13:28:48 -06:00
|
|
|
let indent = shape.indent.to_string(context.config);
|
2015-07-17 16:10:15 -05:00
|
|
|
|
2017-08-23 09:20:32 -05:00
|
|
|
let mut derive_args = Vec::new();
|
|
|
|
|
2017-08-24 09:46:22 -05:00
|
|
|
let mut iter = self.iter().enumerate().peekable();
|
2017-08-27 10:17:38 -05:00
|
|
|
let mut insert_new_line = true;
|
|
|
|
let mut is_prev_sugared_doc = false;
|
2017-08-24 09:46:22 -05:00
|
|
|
while let Some((i, a)) = iter.next() {
|
2017-06-05 09:21:39 -05:00
|
|
|
let a_str = try_opt!(a.rewrite(context, shape));
|
2015-07-17 16:10:15 -05:00
|
|
|
|
2015-12-07 22:04:40 -06:00
|
|
|
// Write comments and blank lines between attributes.
|
2015-07-17 16:10:15 -05:00
|
|
|
if i > 0 {
|
2017-08-19 13:47:40 -05:00
|
|
|
let comment = context.snippet(mk_sp(self[i - 1].span.hi(), a.span.lo()));
|
2015-07-17 16:10:15 -05:00
|
|
|
// This particular horror show is to preserve line breaks in between doc
|
|
|
|
// comments. An alternative would be to force such line breaks to start
|
|
|
|
// with the usual doc comment token.
|
2017-09-14 22:10:58 -05:00
|
|
|
let (multi_line_before, multi_line_after) = if a.is_sugared_doc
|
|
|
|
|| is_prev_sugared_doc
|
2017-08-27 10:17:38 -05:00
|
|
|
{
|
|
|
|
// Look at before and after comment and see if there are any empty lines.
|
|
|
|
let comment_begin = comment.chars().position(|c| c == '/');
|
2017-08-29 08:16:04 -05:00
|
|
|
let len = comment_begin.unwrap_or_else(|| comment.len());
|
2017-08-27 10:17:38 -05:00
|
|
|
let mlb = comment.chars().take(len).filter(|c| *c == '\n').count() > 1;
|
|
|
|
let mla = if comment_begin.is_none() {
|
|
|
|
mlb
|
|
|
|
} else {
|
|
|
|
let comment_end = comment.chars().rev().position(|c| !c.is_whitespace());
|
|
|
|
let len = comment_end.unwrap();
|
|
|
|
comment
|
|
|
|
.chars()
|
|
|
|
.rev()
|
|
|
|
.take(len)
|
|
|
|
.filter(|c| *c == '\n')
|
|
|
|
.count() > 1
|
|
|
|
};
|
|
|
|
(mlb, mla)
|
|
|
|
} else {
|
|
|
|
(false, false)
|
|
|
|
};
|
|
|
|
|
|
|
|
let comment = try_opt!(recover_missing_comment_in_span(
|
2017-08-30 21:11:52 -05:00
|
|
|
mk_sp(self[i - 1].span.hi(), a.span.lo()),
|
2017-08-27 10:17:38 -05:00
|
|
|
shape.with_max_width(context.config),
|
|
|
|
context,
|
|
|
|
0,
|
|
|
|
));
|
|
|
|
|
2015-07-17 16:10:15 -05:00
|
|
|
if !comment.is_empty() {
|
2017-08-27 10:17:38 -05:00
|
|
|
if multi_line_before {
|
|
|
|
result.push('\n');
|
|
|
|
}
|
2015-07-17 16:10:15 -05:00
|
|
|
result.push_str(&comment);
|
|
|
|
result.push('\n');
|
2017-08-27 10:17:38 -05:00
|
|
|
if multi_line_after {
|
|
|
|
result.push('\n')
|
|
|
|
}
|
|
|
|
} else if insert_new_line {
|
2015-07-17 16:10:15 -05:00
|
|
|
result.push('\n');
|
2017-08-27 10:17:38 -05:00
|
|
|
if multi_line_after {
|
|
|
|
result.push('\n')
|
|
|
|
}
|
2015-07-17 16:10:15 -05:00
|
|
|
}
|
2017-08-27 10:17:38 -05:00
|
|
|
|
2017-08-24 09:46:22 -05:00
|
|
|
if derive_args.is_empty() {
|
|
|
|
result.push_str(&indent);
|
|
|
|
}
|
2017-08-27 10:17:38 -05:00
|
|
|
|
|
|
|
insert_new_line = true;
|
2015-07-17 16:10:15 -05:00
|
|
|
}
|
|
|
|
|
2015-12-07 22:04:40 -06:00
|
|
|
// Write the attribute itself.
|
2017-08-23 09:20:32 -05:00
|
|
|
if context.config.merge_derives() {
|
2017-08-24 09:46:22 -05:00
|
|
|
// If the attribute is `#[derive(...)]`, take the arguments.
|
2017-08-23 09:20:32 -05:00
|
|
|
if let Some(mut args) = get_derive_args(context, a) {
|
|
|
|
derive_args.append(&mut args);
|
2017-08-24 09:46:22 -05:00
|
|
|
match iter.peek() {
|
|
|
|
// If the next attribute is `#[derive(...)]` as well, skip rewriting.
|
|
|
|
Some(&(_, next_attr)) if is_derive(next_attr) => insert_new_line = false,
|
|
|
|
// If not, rewrite the merged derives.
|
|
|
|
_ => {
|
2017-09-02 18:14:00 -05:00
|
|
|
result.push_str(&try_opt!(format_derive(context, &derive_args, shape)));
|
2017-08-24 09:46:22 -05:00
|
|
|
derive_args.clear();
|
|
|
|
}
|
|
|
|
}
|
2017-08-23 09:20:32 -05:00
|
|
|
} else {
|
|
|
|
result.push_str(&a_str);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
result.push_str(&a_str);
|
|
|
|
}
|
|
|
|
|
2017-08-27 10:17:38 -05:00
|
|
|
is_prev_sugared_doc = a.is_sugared_doc;
|
2015-07-17 16:10:15 -05:00
|
|
|
}
|
|
|
|
Some(result)
|
|
|
|
}
|
|
|
|
}
|
2017-08-23 09:20:32 -05:00
|
|
|
|
2017-09-02 18:14:00 -05:00
|
|
|
// Format `#[derive(..)]`, using visual indent & mixed style when we need to go multiline.
|
|
|
|
fn format_derive(context: &RewriteContext, derive_args: &[String], shape: Shape) -> Option<String> {
|
|
|
|
let mut result = String::with_capacity(128);
|
|
|
|
result.push_str("#[derive(");
|
|
|
|
// 11 = `#[derive()]`
|
|
|
|
let initial_budget = try_opt!(shape.width.checked_sub(11));
|
|
|
|
let mut budget = initial_budget;
|
|
|
|
let num = derive_args.len();
|
|
|
|
for (i, a) in derive_args.iter().enumerate() {
|
|
|
|
// 2 = `, ` or `)]`
|
|
|
|
let width = a.len() + 2;
|
|
|
|
if width > budget {
|
|
|
|
if i > 0 {
|
|
|
|
// Remove trailing whitespace.
|
|
|
|
result.pop();
|
|
|
|
}
|
|
|
|
result.push('\n');
|
|
|
|
// 9 = `#[derive(`
|
|
|
|
result.push_str(&(shape.indent + 9).to_string(context.config));
|
|
|
|
budget = initial_budget;
|
|
|
|
} else {
|
|
|
|
budget = budget.checked_sub(width).unwrap_or(0);
|
|
|
|
}
|
|
|
|
result.push_str(a);
|
|
|
|
if i != num - 1 {
|
|
|
|
result.push_str(", ")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
result.push_str(")]");
|
|
|
|
Some(result)
|
|
|
|
}
|
|
|
|
|
2017-08-24 09:46:22 -05:00
|
|
|
fn is_derive(attr: &ast::Attribute) -> bool {
|
|
|
|
match attr.meta() {
|
|
|
|
Some(meta_item) => match meta_item.node {
|
|
|
|
ast::MetaItemKind::List(..) => meta_item.name.as_str() == "derive",
|
|
|
|
_ => false,
|
|
|
|
},
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-23 09:20:32 -05:00
|
|
|
/// Returns the arguments of `#[derive(...)]`.
|
|
|
|
fn get_derive_args(context: &RewriteContext, attr: &ast::Attribute) -> Option<Vec<String>> {
|
|
|
|
attr.meta().and_then(|meta_item| match meta_item.node {
|
|
|
|
ast::MetaItemKind::List(ref args) if meta_item.name.as_str() == "derive" => {
|
|
|
|
// Every argument of `derive` should be `NestedMetaItemKind::Literal`.
|
|
|
|
Some(
|
|
|
|
args.iter()
|
|
|
|
.map(|a| context.snippet(a.span))
|
|
|
|
.collect::<Vec<_>>(),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
_ => None,
|
|
|
|
})
|
|
|
|
}
|
2017-09-06 04:44:33 -05:00
|
|
|
|
|
|
|
// Rewrite `extern crate foo;` WITHOUT attributes.
|
|
|
|
pub fn rewrite_extern_crate(context: &RewriteContext, item: &ast::Item) -> Option<String> {
|
|
|
|
assert!(is_extern_crate(item));
|
|
|
|
let new_str = context.snippet(item.span);
|
|
|
|
Some(if contains_comment(&new_str) {
|
|
|
|
new_str
|
|
|
|
} else {
|
|
|
|
let no_whitespace = &new_str.split_whitespace().collect::<Vec<&str>>().join(" ");
|
|
|
|
String::from(&*Regex::new(r"\s;").unwrap().replace(no_whitespace, ";"))
|
|
|
|
})
|
|
|
|
}
|