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.
|
|
|
|
|
2016-03-27 07:45:55 -05:00
|
|
|
use syntax::{ast, visit};
|
2015-04-28 22:00:58 -05:00
|
|
|
use syntax::codemap::{self, CodeMap, Span, BytePos};
|
2015-10-28 01:41:32 -05:00
|
|
|
use syntax::parse::ParseSess;
|
2015-04-21 04:01:19 -05:00
|
|
|
|
2015-07-26 07:05:43 -05:00
|
|
|
use strings::string_buffer::StringBuffer;
|
|
|
|
|
2016-01-12 17:12:48 -06:00
|
|
|
use Indent;
|
2016-05-25 13:41:26 -05:00
|
|
|
use utils;
|
2016-03-11 18:19:16 -06:00
|
|
|
use codemap::{LineRangeUtils, SpanUtils};
|
2015-06-23 06:26:04 -05:00
|
|
|
use config::Config;
|
2015-06-16 10:29:05 -05:00
|
|
|
use rewrite::{Rewrite, RewriteContext};
|
2015-07-17 16:10:15 -05:00
|
|
|
use comment::rewrite_comment;
|
2015-09-14 15:53:30 -05:00
|
|
|
use macros::rewrite_macro;
|
2016-03-15 15:08:12 -05:00
|
|
|
use items::{rewrite_static, rewrite_associated_type, rewrite_type_alias, format_impl, format_trait};
|
2015-04-21 04:01:19 -05:00
|
|
|
|
2016-05-05 20:02:42 -05:00
|
|
|
// For format_missing and last_pos, need to use the source callsite (if applicable).
|
|
|
|
// Required as generated code spans aren't guaranteed to follow on from the last span.
|
|
|
|
macro_rules! source {
|
|
|
|
($this:ident, $sp: expr) => {
|
|
|
|
$this.codemap.source_callsite($sp)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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,
|
2015-04-21 04:01:19 -05:00
|
|
|
}
|
|
|
|
|
2015-10-21 15:21:14 -05:00
|
|
|
impl<'a> FmtVisitor<'a> {
|
|
|
|
fn visit_stmt(&mut self, stmt: &ast::Stmt) {
|
2016-05-25 13:41:26 -05:00
|
|
|
debug!("visit_stmt: {:?} {:?}",
|
|
|
|
self.codemap.lookup_char_pos(stmt.span.lo),
|
|
|
|
self.codemap.lookup_char_pos(stmt.span.hi));
|
|
|
|
|
2016-03-11 18:19:16 -06:00
|
|
|
// FIXME(#434): Move this check to somewhere more central, eg Rewrite.
|
|
|
|
if !self.config.file_lines.contains(&self.codemap.lookup_line_range(stmt.span)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-08-21 06:31:09 -05:00
|
|
|
match stmt.node {
|
2016-03-01 16:27:19 -06:00
|
|
|
ast::StmtKind::Decl(ref decl, _) => {
|
|
|
|
if let ast::DeclKind::Item(ref item) = decl.node {
|
2015-11-17 22:53:06 -06:00
|
|
|
self.visit_item(item);
|
|
|
|
} else {
|
2015-11-19 02:08:17 -06:00
|
|
|
let rewrite = stmt.rewrite(&self.get_context(),
|
|
|
|
self.config.max_width - self.block_indent.width(),
|
|
|
|
self.block_indent);
|
|
|
|
|
2015-11-17 22:53:06 -06:00
|
|
|
self.push_rewrite(stmt.span, rewrite);
|
2015-09-04 16:39:33 -05:00
|
|
|
}
|
2015-08-21 06:31:09 -05:00
|
|
|
}
|
2016-04-09 01:40:00 -05:00
|
|
|
ast::StmtKind::Expr(..) |
|
|
|
|
ast::StmtKind::Semi(..) => {
|
2015-11-19 02:08:17 -06:00
|
|
|
let rewrite = stmt.rewrite(&self.get_context(),
|
|
|
|
self.config.max_width - self.block_indent.width(),
|
|
|
|
self.block_indent);
|
|
|
|
|
2015-10-18 15:59:39 -05:00
|
|
|
self.push_rewrite(stmt.span, rewrite);
|
2015-04-28 22:00:58 -05:00
|
|
|
}
|
2016-03-01 16:27:19 -06:00
|
|
|
ast::StmtKind::Mac(ref mac, _macro_style, _) => {
|
2016-05-05 20:02:42 -05:00
|
|
|
self.format_missing_with_indent(source!(self, stmt.span).lo);
|
2016-03-27 07:45:55 -05:00
|
|
|
self.visit_mac(mac, None);
|
2015-08-21 06:31:09 -05:00
|
|
|
}
|
2015-04-28 22:00:58 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-21 15:21:14 -05:00
|
|
|
pub fn visit_block(&mut self, b: &ast::Block) {
|
2015-04-21 04:01:19 -05:00
|
|
|
debug!("visit_block: {:?} {:?}",
|
|
|
|
self.codemap.lookup_char_pos(b.span.lo),
|
|
|
|
self.codemap.lookup_char_pos(b.span.hi));
|
|
|
|
|
2015-08-20 16:05:41 -05:00
|
|
|
// Check if this block has braces.
|
|
|
|
let snippet = self.snippet(b.span);
|
2015-12-04 09:10:14 -06: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
|
|
|
|
|
|
|
for stmt in &b.stmts {
|
|
|
|
self.visit_stmt(&stmt)
|
|
|
|
}
|
2015-08-01 07:22:31 -05:00
|
|
|
|
2015-10-18 14:25:30 -05:00
|
|
|
if let Some(ref e) = b.expr {
|
2016-05-05 20:02:42 -05:00
|
|
|
self.format_missing_with_indent(source!(self, e.span).lo);
|
2015-10-18 14:25:30 -05:00
|
|
|
let rewrite = e.rewrite(&self.get_context(),
|
2016-04-22 02:03:36 -05:00
|
|
|
self.config.max_width - self.block_indent.width(),
|
|
|
|
self.block_indent)
|
|
|
|
.unwrap_or_else(|| self.snippet(e.span));
|
2015-10-14 15:28:17 -05:00
|
|
|
|
2015-10-18 14:25:30 -05:00
|
|
|
self.buffer.push_str(&rewrite);
|
2016-05-05 20:02:42 -05:00
|
|
|
self.last_pos = source!(self, e.span).hi;
|
2015-10-18 14:25:30 -05:00
|
|
|
|
2015-11-17 22:53:06 -06:00
|
|
|
if utils::semicolon_for_expr(e) {
|
2015-10-18 14:25:30 -05:00
|
|
|
self.buffer.push_str(";");
|
2015-04-21 04:01:19 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-22 14:20:53 -06:00
|
|
|
// FIXME: we should compress any newlines here to just one
|
2016-05-05 20:02:42 -05:00
|
|
|
self.format_missing_with_indent(source!(self, b.span).hi - brace_compensation);
|
2015-11-20 15:44:15 -06:00
|
|
|
self.close_block();
|
2016-05-05 20:02:42 -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.
|
|
|
|
fn close_block(&mut self) {
|
2015-10-19 14:41:47 -05:00
|
|
|
let total_len = self.buffer.len;
|
|
|
|
let chars_too_many = if self.config.hard_tabs {
|
|
|
|
1
|
|
|
|
} else {
|
|
|
|
self.config.tab_spaces
|
|
|
|
};
|
|
|
|
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.
|
|
|
|
fn visit_fn(&mut self,
|
2015-10-21 15:21:14 -05:00
|
|
|
fk: visit::FnKind,
|
|
|
|
fd: &ast::FnDecl,
|
|
|
|
b: &ast::Block,
|
2015-04-21 04:01:19 -05:00
|
|
|
s: Span,
|
2016-05-31 12:48:49 -05:00
|
|
|
_: ast::NodeId,
|
|
|
|
defaultness: ast::Defaultness) {
|
2015-04-28 03:56:01 -05:00
|
|
|
let indent = self.block_indent;
|
2015-09-04 11:09:05 -05:00
|
|
|
let rewrite = match fk {
|
2015-09-21 13:02:45 -05:00
|
|
|
visit::FnKind::ItemFn(ident, ref generics, unsafety, constness, abi, vis) => {
|
2015-09-04 11:09:05 -05:00
|
|
|
self.rewrite_fn(indent,
|
|
|
|
ident,
|
|
|
|
fd,
|
|
|
|
generics,
|
|
|
|
unsafety,
|
|
|
|
constness,
|
2016-05-31 12:48:49 -05:00
|
|
|
defaultness,
|
2015-09-04 11:09:05 -05:00
|
|
|
abi,
|
|
|
|
vis,
|
2015-11-19 20:49:24 -06:00
|
|
|
codemap::mk_sp(s.lo, b.span.lo),
|
|
|
|
&b)
|
2015-04-21 04:01:19 -05:00
|
|
|
}
|
2015-09-01 13:28:38 -05:00
|
|
|
visit::FnKind::Method(ident, ref sig, vis) => {
|
2015-09-04 11:09:05 -05:00
|
|
|
self.rewrite_fn(indent,
|
|
|
|
ident,
|
|
|
|
fd,
|
|
|
|
&sig.generics,
|
2015-09-21 13:02:45 -05:00
|
|
|
sig.unsafety,
|
|
|
|
sig.constness,
|
2016-05-31 12:48:49 -05:00
|
|
|
defaultness,
|
2015-09-21 13:02:45 -05:00
|
|
|
sig.abi,
|
2016-05-01 22:01:46 -05:00
|
|
|
vis.unwrap_or(&ast::Visibility::Inherited),
|
2015-11-19 20:49:24 -06:00
|
|
|
codemap::mk_sp(s.lo, b.span.lo),
|
|
|
|
&b)
|
2015-04-21 04:01:19 -05:00
|
|
|
}
|
2015-09-04 11:09:05 -05:00
|
|
|
visit::FnKind::Closure => None,
|
|
|
|
};
|
|
|
|
|
|
|
|
if let Some(fn_str) = rewrite {
|
2016-05-05 20:02:42 -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 == '}' {
|
2016-05-05 20:02:42 -05:00
|
|
|
self.last_pos = source!(self, b.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 {
|
2016-05-05 20:02:42 -05:00
|
|
|
self.format_missing(source!(self, b.span).lo);
|
2015-04-21 04:01:19 -05:00
|
|
|
}
|
|
|
|
|
2016-05-05 20:02:42 -05:00
|
|
|
self.last_pos = source!(self, b.span).lo;
|
2015-04-21 04:01:19 -05:00
|
|
|
self.visit_block(b)
|
|
|
|
}
|
|
|
|
|
2015-10-21 15:21:14 -05:00
|
|
|
fn visit_item(&mut self, item: &ast::Item) {
|
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
|
|
|
|
// in a seperate file and there might be attributes in both files, but
|
|
|
|
// the AST lumps them all together.
|
2015-04-28 05:19:25 -05:00
|
|
|
match item.node {
|
2016-05-02 03:54:25 -05:00
|
|
|
ast::ItemKind::Mod(ref m) => {
|
|
|
|
let outer_file = self.codemap.lookup_char_pos(item.span.lo).file;
|
|
|
|
let inner_file = self.codemap.lookup_char_pos(m.inner.lo).file;
|
|
|
|
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.
|
2016-05-02 03:54:25 -05:00
|
|
|
if self.visit_attrs(&item.attrs) {
|
|
|
|
self.push_rewrite(item.span, None);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else if utils::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.
|
|
|
|
let attrs = item.attrs
|
|
|
|
.iter()
|
|
|
|
.filter_map(|a| {
|
|
|
|
let attr_file = self.codemap.lookup_char_pos(a.span.lo).file;
|
|
|
|
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.
|
|
|
|
assert!(!self.visit_attrs(&attrs));
|
2015-11-22 14:20:53 -06:00
|
|
|
}
|
|
|
|
}
|
2015-04-28 05:19:25 -05:00
|
|
|
_ => {
|
|
|
|
if self.visit_attrs(&item.attrs) {
|
2015-11-30 16:12:50 -06:00
|
|
|
self.push_rewrite(item.span, None);
|
2015-04-28 05:19:25 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2015-04-22 23:22:48 -05:00
|
|
|
}
|
|
|
|
|
2015-04-21 04:01:19 -05:00
|
|
|
match item.node {
|
2016-03-01 16:27:19 -06:00
|
|
|
ast::ItemKind::Use(ref vp) => {
|
2016-05-01 22:01:46 -05:00
|
|
|
self.format_import(&item.vis, vp, item.span);
|
2015-04-21 04:01:19 -05:00
|
|
|
}
|
2016-03-01 16:27:19 -06:00
|
|
|
ast::ItemKind::Impl(..) => {
|
2016-05-05 20:02:42 -05:00
|
|
|
self.format_missing_with_indent(source!(self, item.span).lo);
|
2015-11-22 17:00:22 -06:00
|
|
|
if let Some(impl_str) = format_impl(&self.get_context(), item, self.block_indent) {
|
|
|
|
self.buffer.push_str(&impl_str);
|
2016-05-05 20:02:42 -05:00
|
|
|
self.last_pos = source!(self, item.span).hi;
|
2015-10-21 15:21:14 -05:00
|
|
|
}
|
|
|
|
}
|
2016-03-12 12:09:27 -06:00
|
|
|
ast::ItemKind::Trait(..) => {
|
2015-10-19 14:41:47 -05:00
|
|
|
self.format_missing_with_indent(item.span.lo);
|
2016-03-11 15:18:30 -06:00
|
|
|
if let Some(trait_str) = format_trait(&self.get_context(),
|
|
|
|
item,
|
|
|
|
self.block_indent) {
|
|
|
|
self.buffer.push_str(&trait_str);
|
2016-05-05 20:02:42 -05:00
|
|
|
self.last_pos = source!(self, item.span).hi;
|
2016-03-11 15:18:30 -06:00
|
|
|
}
|
2015-04-23 01:43:46 -05:00
|
|
|
}
|
2016-03-01 16:27:19 -06:00
|
|
|
ast::ItemKind::ExternCrate(_) => {
|
2016-05-05 20:02:42 -05:00
|
|
|
self.format_missing_with_indent(source!(self, item.span).lo);
|
2015-04-28 22:00:58 -05:00
|
|
|
let new_str = self.snippet(item.span);
|
2015-07-26 07:05:43 -05:00
|
|
|
self.buffer.push_str(&new_str);
|
2016-05-05 20:02:42 -05:00
|
|
|
self.last_pos = source!(self, item.span).hi;
|
2015-04-28 22:00:58 -05:00
|
|
|
}
|
2016-03-01 16:27:19 -06:00
|
|
|
ast::ItemKind::Struct(ref def, ref generics) => {
|
2015-11-22 06:45:51 -06:00
|
|
|
let rewrite = {
|
|
|
|
let indent = self.block_indent;
|
|
|
|
let context = self.get_context();
|
|
|
|
::items::format_struct(&context,
|
|
|
|
"struct ",
|
|
|
|
item.ident,
|
2016-05-01 22:01:46 -05:00
|
|
|
&item.vis,
|
2015-11-22 06:45:51 -06:00
|
|
|
def,
|
|
|
|
Some(generics),
|
|
|
|
item.span,
|
2016-05-18 15:38:49 -05:00
|
|
|
indent,
|
|
|
|
None)
|
2015-11-22 06:45:51 -06:00
|
|
|
.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) => {
|
2016-05-05 20:02:42 -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);
|
2016-05-05 20:02:42 -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) => {
|
2016-05-05 20:02:42 -05:00
|
|
|
self.format_missing_with_indent(source!(self, item.span).lo);
|
2016-05-01 22:01:46 -05:00
|
|
|
self.format_mod(module, &item.vis, item.span, item.ident);
|
2015-07-01 14:13:10 -05:00
|
|
|
}
|
2016-03-01 16:27:19 -06:00
|
|
|
ast::ItemKind::Mac(ref mac) => {
|
2016-05-05 20:02:42 -05:00
|
|
|
self.format_missing_with_indent(source!(self, item.span).lo);
|
2016-03-27 07:45:55 -05:00
|
|
|
self.visit_mac(mac, Some(item.ident));
|
2015-09-14 15:53:30 -05:00
|
|
|
}
|
2016-03-01 16:27:19 -06:00
|
|
|
ast::ItemKind::ForeignMod(ref foreign_mod) => {
|
2016-05-05 20:02:42 -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) => {
|
2015-10-18 14:25:30 -05:00
|
|
|
let rewrite = rewrite_static("static",
|
2016-05-01 22:01:46 -05:00
|
|
|
&item.vis,
|
2015-10-18 14:25:30 -05:00
|
|
|
item.ident,
|
|
|
|
ty,
|
|
|
|
mutability,
|
2016-03-15 15:08:12 -05:00
|
|
|
Some(expr),
|
2015-10-18 14:25:30 -05:00
|
|
|
&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) => {
|
2015-10-18 14:25:30 -05:00
|
|
|
let rewrite = rewrite_static("const",
|
2016-05-01 22:01:46 -05:00
|
|
|
&item.vis,
|
2015-10-18 14:25:30 -05:00
|
|
|
item.ident,
|
|
|
|
ty,
|
2016-03-01 16:27:19 -06:00
|
|
|
ast::Mutability::Immutable,
|
2016-03-15 15:08:12 -05:00
|
|
|
Some(expr),
|
2015-10-18 14:25:30 -05:00
|
|
|
&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) => {
|
2015-10-21 15:21:14 -05:00
|
|
|
self.visit_fn(visit::FnKind::ItemFn(item.ident,
|
|
|
|
generics,
|
|
|
|
unsafety,
|
|
|
|
constness,
|
|
|
|
abi,
|
2016-05-01 22:01:46 -05:00
|
|
|
&item.vis),
|
2016-03-01 16:27:19 -06:00
|
|
|
decl,
|
2015-10-21 15:21:14 -05:00
|
|
|
body,
|
|
|
|
item.span,
|
2016-05-31 12:48:49 -05:00
|
|
|
item.id,
|
|
|
|
ast::Defaultness::Final)
|
2015-10-21 15:21:14 -05:00
|
|
|
}
|
2016-03-01 16:27:19 -06:00
|
|
|
ast::ItemKind::Ty(ref ty, ref generics) => {
|
2015-11-22 12:21:01 -06:00
|
|
|
let rewrite = rewrite_type_alias(&self.get_context(),
|
|
|
|
self.block_indent,
|
|
|
|
item.ident,
|
|
|
|
ty,
|
|
|
|
generics,
|
2016-05-01 22:01:46 -05:00
|
|
|
&item.vis,
|
2015-11-22 12:21:01 -06:00
|
|
|
item.span);
|
|
|
|
self.push_rewrite(item.span, rewrite);
|
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) {
|
2015-04-28 03:56:01 -05:00
|
|
|
if self.visit_attrs(&ti.attrs) {
|
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) => {
|
|
|
|
let rewrite = rewrite_static("const",
|
2016-05-01 22:01:46 -05:00
|
|
|
&ast::Visibility::Inherited,
|
2016-03-15 15:08:12 -05:00
|
|
|
ti.ident,
|
|
|
|
ty,
|
|
|
|
ast::Mutability::Immutable,
|
|
|
|
expr_opt.as_ref(),
|
|
|
|
&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)) => {
|
2015-10-21 15:21:14 -05:00
|
|
|
self.visit_fn(visit::FnKind::Method(ti.ident, sig, None),
|
|
|
|
&sig.decl,
|
|
|
|
&body,
|
|
|
|
ti.span,
|
2016-05-31 12:48:49 -05:00
|
|
|
ti.id,
|
|
|
|
ast::Defaultness::Final);
|
2015-10-21 15:21:14 -05:00
|
|
|
}
|
2016-03-12 12:09:27 -06:00
|
|
|
ast::TraitItemKind::Type(ref type_param_bounds, _) => {
|
2016-03-15 15:08:12 -05:00
|
|
|
let rewrite = rewrite_associated_type(ti.ident,
|
2016-03-14 20:52:07 -05:00
|
|
|
None,
|
|
|
|
Some(type_param_bounds),
|
|
|
|
&self.get_context(),
|
|
|
|
self.block_indent);
|
|
|
|
self.push_rewrite(ti.span, rewrite);
|
2015-10-21 15:21:14 -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) {
|
2015-04-28 03:56:01 -05:00
|
|
|
if self.visit_attrs(&ii.attrs) {
|
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) => {
|
2016-05-01 22:01:46 -05:00
|
|
|
self.visit_fn(visit::FnKind::Method(ii.ident, sig, Some(&ii.vis)),
|
2015-10-21 15:21:14 -05:00
|
|
|
&sig.decl,
|
|
|
|
body,
|
|
|
|
ii.span,
|
2016-05-31 12:48:49 -05:00
|
|
|
ii.id,
|
|
|
|
ii.defaultness);
|
2015-10-21 15:21:14 -05:00
|
|
|
}
|
2016-03-14 20:52:07 -05:00
|
|
|
ast::ImplItemKind::Const(ref ty, ref expr) => {
|
|
|
|
let rewrite = rewrite_static("const",
|
2016-05-01 22:01:46 -05:00
|
|
|
&ii.vis,
|
2016-03-14 20:52:07 -05:00
|
|
|
ii.ident,
|
|
|
|
ty,
|
|
|
|
ast::Mutability::Immutable,
|
2016-03-15 15:08:12 -05:00
|
|
|
Some(expr),
|
2016-03-14 20:52:07 -05:00
|
|
|
&self.get_context());
|
|
|
|
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) => {
|
2016-03-15 15:08:12 -05:00
|
|
|
let rewrite = rewrite_associated_type(ii.ident,
|
2016-03-14 20:52:07 -05:00
|
|
|
Some(ty),
|
|
|
|
None,
|
|
|
|
&self.get_context(),
|
|
|
|
self.block_indent);
|
|
|
|
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-05-05 20:02:42 -05:00
|
|
|
self.format_missing_with_indent(source!(self, ii.span).lo);
|
2016-03-27 07:45:55 -05:00
|
|
|
self.visit_mac(mac, Some(ii.ident));
|
2015-10-21 15:21:14 -05:00
|
|
|
}
|
|
|
|
}
|
2015-04-22 23:22:48 -05:00
|
|
|
}
|
|
|
|
|
2016-03-27 07:45:55 -05:00
|
|
|
fn visit_mac(&mut self, mac: &ast::Mac, ident: Option<ast::Ident>) {
|
2015-09-14 15:53:30 -05:00
|
|
|
// 1 = ;
|
2015-09-06 00:39:28 -05:00
|
|
|
let width = self.config.max_width - self.block_indent.width() - 1;
|
2016-03-27 07:45:55 -05:00
|
|
|
let rewrite = rewrite_macro(mac, ident, &self.get_context(), width, self.block_indent);
|
2015-09-14 15:53:30 -05:00
|
|
|
|
|
|
|
if let Some(res) = rewrite {
|
|
|
|
self.buffer.push_str(&res);
|
2016-05-05 20:02:42 -05:00
|
|
|
self.last_pos = source!(self, mac.span).hi;
|
2015-09-14 15:53:30 -05:00
|
|
|
}
|
2015-04-21 04:01:19 -05:00
|
|
|
}
|
|
|
|
|
2015-10-18 15:59:39 -05:00
|
|
|
fn push_rewrite(&mut self, span: Span, rewrite: Option<String>) {
|
2016-05-05 20:02:42 -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);
|
2016-05-05 20:02:42 -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),
|
2015-09-26 01:29:48 -05:00
|
|
|
block_indent: Indent {
|
|
|
|
block_indent: 0,
|
|
|
|
alignment: 0,
|
|
|
|
},
|
2015-07-15 20:31:20 -05:00
|
|
|
config: config,
|
|
|
|
}
|
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(_) => {
|
|
|
|
println!("Couldn't make snippet for span {:?}->{:?}",
|
|
|
|
self.codemap.lookup_char_pos(span.lo),
|
|
|
|
self.codemap.lookup_char_pos(span.hi));
|
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.
|
2015-05-24 18:03:26 -05:00
|
|
|
pub fn visit_attrs(&mut self, attrs: &[ast::Attribute]) -> bool {
|
2015-06-23 08:58:58 -05:00
|
|
|
if utils::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
|
|
|
|
|
|
|
let outers: Vec<_> = attrs.iter()
|
2016-04-22 02:03:36 -05:00
|
|
|
.filter(|a| a.node.style == ast::AttrStyle::Outer)
|
|
|
|
.cloned()
|
|
|
|
.collect();
|
2015-10-07 23:20:19 -05:00
|
|
|
if outers.is_empty() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
let first = &outers[0];
|
2016-05-05 20:02:42 -05:00
|
|
|
self.format_missing_with_indent(source!(self, first.span).lo);
|
2015-10-07 23:20:19 -05:00
|
|
|
|
|
|
|
let rewrite = outers.rewrite(&self.get_context(),
|
2016-04-22 02:03:36 -05:00
|
|
|
self.config.max_width - self.block_indent.width(),
|
|
|
|
self.block_indent)
|
|
|
|
.unwrap();
|
2015-10-07 23:20:19 -05:00
|
|
|
self.buffer.push_str(&rewrite);
|
|
|
|
let last = outers.last().unwrap();
|
2016-05-05 20:02:42 -05:00
|
|
|
self.last_pos = source!(self, last.span).hi;
|
2015-10-07 23:20:19 -05:00
|
|
|
false
|
2015-04-28 22:00:58 -05:00
|
|
|
}
|
|
|
|
|
2015-10-21 15:21:14 -05:00
|
|
|
fn walk_mod_items(&mut self, m: &ast::Mod) {
|
|
|
|
for item in &m.items {
|
|
|
|
self.visit_item(&item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-01 22:01:46 -05:00
|
|
|
fn format_mod(&mut self, m: &ast::Mod, vis: &ast::Visibility, s: Span, ident: ast::Ident) {
|
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-05-05 20:02:42 -05:00
|
|
|
let is_internal = local_file_name == self.codemap.span_to_filename(source!(self, m.inner));
|
2015-07-24 08:29:04 -05:00
|
|
|
|
2016-05-27 17:58:25 -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 {
|
2015-11-20 15:44:15 -06:00
|
|
|
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), "{");
|
|
|
|
let body_snippet =
|
|
|
|
self.snippet(codemap::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);
|
|
|
|
self.walk_mod_items(m);
|
2016-05-05 20:02:42 -05:00
|
|
|
self.format_missing_with_indent(source!(self, m.inner).hi - BytePos(1));
|
2016-01-28 00:53:41 -06:00
|
|
|
self.close_block();
|
|
|
|
}
|
2016-05-05 20:02:42 -05:00
|
|
|
self.last_pos = source!(self, m.inner).hi;
|
2015-11-20 15:44:15 -06:00
|
|
|
} else {
|
|
|
|
self.buffer.push_str(";");
|
2016-05-05 20:02:42 -05:00
|
|
|
self.last_pos = source!(self, s).hi;
|
2015-07-01 14:13:10 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-22 20:22:00 -06:00
|
|
|
pub fn format_separate_mod(&mut self, m: &ast::Mod) {
|
2016-05-05 20:02:42 -05:00
|
|
|
let filemap = self.codemap.lookup_char_pos(source!(self, m.inner).lo).file;
|
2015-07-01 14:13:10 -05:00
|
|
|
self.last_pos = filemap.start_pos;
|
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);
|
2015-07-01 14:13:10 -05:00
|
|
|
self.format_missing(filemap.end_pos);
|
|
|
|
}
|
2015-07-20 14:33:23 -05:00
|
|
|
|
2016-05-01 22:01:46 -05:00
|
|
|
fn format_import(&mut self, vis: &ast::Visibility, vp: &ast::ViewPath, span: Span) {
|
2016-05-27 17:58:25 -05:00
|
|
|
let vis = utils::format_visibility(vis);
|
2015-09-06 00:39:28 -05:00
|
|
|
let mut offset = self.block_indent;
|
|
|
|
offset.alignment += vis.len() + "use ".len();
|
2015-07-20 14:33:23 -05:00
|
|
|
// 1 = ";"
|
2015-10-28 01:41:32 -05:00
|
|
|
match vp.rewrite(&self.get_context(),
|
|
|
|
self.config.max_width - offset.width() - 1,
|
|
|
|
offset) {
|
2015-08-24 16:54:47 -05:00
|
|
|
Some(ref s) if s.is_empty() => {
|
2015-07-20 14:33:23 -05:00
|
|
|
// Format up to last newline
|
2016-05-05 20:02:42 -05:00
|
|
|
let prev_span = codemap::mk_sp(self.last_pos, source!(self, span).lo);
|
2015-07-20 14:33:23 -05:00
|
|
|
let span_end = match self.snippet(prev_span).rfind('\n') {
|
|
|
|
Some(offset) => self.last_pos + BytePos(offset as u32),
|
2016-05-05 20:02:42 -05:00
|
|
|
None => source!(self, span).lo,
|
2015-07-20 14:33:23 -05:00
|
|
|
};
|
|
|
|
self.format_missing(span_end);
|
2016-05-05 20:02:42 -05:00
|
|
|
self.last_pos = source!(self, span).hi;
|
2015-07-20 14:33:23 -05:00
|
|
|
}
|
|
|
|
Some(ref s) => {
|
|
|
|
let s = format!("{}use {};", vis, s);
|
2016-05-05 20:02:42 -05:00
|
|
|
self.format_missing_with_indent(source!(self, span).lo);
|
2015-07-26 07:05:43 -05:00
|
|
|
self.buffer.push_str(&s);
|
2016-05-05 20:02:42 -05:00
|
|
|
self.last_pos = source!(self, span).hi;
|
2015-07-20 14:33:23 -05:00
|
|
|
}
|
|
|
|
None => {
|
2016-05-05 20:02:42 -05:00
|
|
|
self.format_missing_with_indent(source!(self, span).lo);
|
|
|
|
self.format_missing(source!(self, span).hi);
|
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,
|
|
|
|
block_indent: self.block_indent,
|
|
|
|
}
|
|
|
|
}
|
2015-04-22 23:22:48 -05:00
|
|
|
}
|
2015-07-17 16:10:15 -05:00
|
|
|
|
|
|
|
impl<'a> Rewrite for [ast::Attribute] {
|
2015-09-06 00:39:28 -05:00
|
|
|
fn rewrite(&self, context: &RewriteContext, _: usize, offset: Indent) -> Option<String> {
|
2015-07-17 16:10:15 -05:00
|
|
|
let mut result = String::new();
|
|
|
|
if self.is_empty() {
|
|
|
|
return Some(result);
|
|
|
|
}
|
2015-09-18 23:50:44 -05:00
|
|
|
let indent = offset.to_string(context.config);
|
2015-07-17 16:10:15 -05:00
|
|
|
|
|
|
|
for (i, a) in self.iter().enumerate() {
|
2016-05-02 03:54:25 -05:00
|
|
|
let mut a_str = context.snippet(a.span);
|
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 {
|
2015-10-02 04:48:52 -05:00
|
|
|
let comment = context.snippet(codemap::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.
|
|
|
|
let multi_line = a_str.starts_with("//") && comment.matches('\n').count() > 1;
|
|
|
|
let comment = comment.trim();
|
|
|
|
if !comment.is_empty() {
|
2015-09-25 05:53:25 -05:00
|
|
|
let comment = try_opt!(rewrite_comment(comment,
|
|
|
|
false,
|
2016-05-02 03:54:25 -05:00
|
|
|
context.config.ideal_width -
|
2015-09-25 05:53:25 -05:00
|
|
|
offset.width(),
|
|
|
|
offset,
|
|
|
|
context.config));
|
2015-07-17 16:10:15 -05:00
|
|
|
result.push_str(&indent);
|
|
|
|
result.push_str(&comment);
|
|
|
|
result.push('\n');
|
|
|
|
} else if multi_line {
|
|
|
|
result.push('\n');
|
|
|
|
}
|
|
|
|
result.push_str(&indent);
|
|
|
|
}
|
|
|
|
|
2016-05-02 03:54:25 -05:00
|
|
|
if a_str.starts_with("//") {
|
|
|
|
a_str = try_opt!(rewrite_comment(&a_str,
|
|
|
|
false,
|
|
|
|
context.config.ideal_width - offset.width(),
|
|
|
|
offset,
|
|
|
|
context.config));
|
|
|
|
}
|
|
|
|
|
2015-12-07 22:04:40 -06:00
|
|
|
// Write the attribute itself.
|
2015-07-17 16:10:15 -05:00
|
|
|
result.push_str(&a_str);
|
|
|
|
|
|
|
|
if i < self.len() - 1 {
|
|
|
|
result.push('\n');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Some(result)
|
|
|
|
}
|
|
|
|
}
|