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.
|
|
|
|
|
|
|
|
use syntax::ast;
|
2015-04-28 22:00:58 -05:00
|
|
|
use syntax::codemap::{self, CodeMap, Span, BytePos};
|
2015-04-21 04:01:19 -05:00
|
|
|
use syntax::visit;
|
|
|
|
|
2015-04-28 22:00:58 -05:00
|
|
|
use utils;
|
|
|
|
|
2015-04-22 23:22:48 -05:00
|
|
|
use {MAX_WIDTH, TAB_SPACES, SKIP_ANNOTATION};
|
2015-04-21 04:01:19 -05:00
|
|
|
use changes::ChangeSet;
|
|
|
|
|
|
|
|
pub struct FmtVisitor<'a> {
|
|
|
|
pub codemap: &'a CodeMap,
|
|
|
|
pub changes: ChangeSet<'a>,
|
|
|
|
pub last_pos: BytePos,
|
|
|
|
// TODO RAII util for indenting
|
|
|
|
pub block_indent: usize,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, 'v> visit::Visitor<'v> for FmtVisitor<'a> {
|
|
|
|
fn visit_expr(&mut self, ex: &'v ast::Expr) {
|
|
|
|
debug!("visit_expr: {:?} {:?}",
|
|
|
|
self.codemap.lookup_char_pos(ex.span.lo),
|
|
|
|
self.codemap.lookup_char_pos(ex.span.hi));
|
|
|
|
self.format_missing(ex.span.lo);
|
|
|
|
let offset = self.changes.cur_offset_span(ex.span);
|
|
|
|
let new_str = self.rewrite_expr(ex, MAX_WIDTH - offset, offset);
|
|
|
|
self.changes.push_str_span(ex.span, &new_str);
|
|
|
|
self.last_pos = ex.span.hi;
|
|
|
|
}
|
|
|
|
|
2015-04-28 22:00:58 -05:00
|
|
|
fn visit_stmt(&mut self, stmt: &'v ast::Stmt) {
|
|
|
|
// If the stmt is actually an item, then we'll handle any missing spans
|
|
|
|
// there. This is important because of annotations.
|
|
|
|
// Although it might make more sense for the statement span to include
|
|
|
|
// any annotations on the item.
|
|
|
|
let skip_missing = match stmt.node {
|
|
|
|
ast::Stmt_::StmtDecl(ref decl, _) => {
|
|
|
|
match decl.node {
|
|
|
|
ast::Decl_::DeclItem(_) => true,
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => false,
|
|
|
|
};
|
|
|
|
if !skip_missing {
|
|
|
|
self.format_missing_with_indent(stmt.span.lo);
|
|
|
|
}
|
|
|
|
visit::walk_stmt(self, stmt);
|
|
|
|
}
|
|
|
|
|
2015-04-21 04:01:19 -05:00
|
|
|
fn visit_block(&mut self, b: &'v ast::Block) {
|
|
|
|
debug!("visit_block: {:?} {:?}",
|
|
|
|
self.codemap.lookup_char_pos(b.span.lo),
|
|
|
|
self.codemap.lookup_char_pos(b.span.hi));
|
|
|
|
self.format_missing(b.span.lo);
|
|
|
|
|
|
|
|
self.changes.push_str_span(b.span, "{");
|
|
|
|
self.last_pos = self.last_pos + BytePos(1);
|
|
|
|
self.block_indent += TAB_SPACES;
|
|
|
|
|
|
|
|
for stmt in &b.stmts {
|
|
|
|
self.visit_stmt(&stmt)
|
|
|
|
}
|
|
|
|
match b.expr {
|
|
|
|
Some(ref e) => {
|
|
|
|
self.format_missing_with_indent(e.span.lo);
|
|
|
|
self.visit_expr(e);
|
|
|
|
}
|
|
|
|
None => {}
|
|
|
|
}
|
|
|
|
|
|
|
|
self.block_indent -= TAB_SPACES;
|
|
|
|
// TODO we should compress any newlines here to just one
|
|
|
|
self.format_missing_with_indent(b.span.hi - BytePos(1));
|
|
|
|
self.changes.push_str_span(b.span, "}");
|
|
|
|
self.last_pos = b.span.hi;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Note that this only gets called for function defintions. Required methods
|
|
|
|
// on traits do not get handled here.
|
|
|
|
fn visit_fn(&mut self,
|
|
|
|
fk: visit::FnKind<'v>,
|
|
|
|
fd: &'v ast::FnDecl,
|
|
|
|
b: &'v ast::Block,
|
|
|
|
s: Span,
|
|
|
|
_: ast::NodeId) {
|
|
|
|
self.format_missing(s.lo);
|
|
|
|
self.last_pos = s.lo;
|
|
|
|
|
2015-04-28 03:56:01 -05:00
|
|
|
let indent = self.block_indent;
|
2015-04-21 04:01:19 -05:00
|
|
|
match fk {
|
|
|
|
visit::FkItemFn(ident, ref generics, ref unsafety, ref abi, vis) => {
|
|
|
|
let new_fn = self.rewrite_fn(indent,
|
|
|
|
ident,
|
|
|
|
fd,
|
|
|
|
None,
|
|
|
|
generics,
|
|
|
|
unsafety,
|
|
|
|
abi,
|
2015-04-22 23:22:48 -05:00
|
|
|
vis,
|
|
|
|
b.span);
|
2015-04-21 04:01:19 -05:00
|
|
|
self.changes.push_str_span(s, &new_fn);
|
|
|
|
}
|
|
|
|
visit::FkMethod(ident, ref sig, vis) => {
|
|
|
|
let new_fn = self.rewrite_fn(indent,
|
|
|
|
ident,
|
|
|
|
fd,
|
|
|
|
Some(&sig.explicit_self),
|
|
|
|
&sig.generics,
|
|
|
|
&sig.unsafety,
|
|
|
|
&sig.abi,
|
2015-04-22 23:22:48 -05:00
|
|
|
vis.unwrap_or(ast::Visibility::Inherited),
|
|
|
|
b.span);
|
2015-04-21 04:01:19 -05:00
|
|
|
self.changes.push_str_span(s, &new_fn);
|
|
|
|
}
|
|
|
|
visit::FkFnBlock(..) => {}
|
|
|
|
}
|
|
|
|
|
|
|
|
self.last_pos = b.span.lo;
|
|
|
|
self.visit_block(b)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_item(&mut self, item: &'v ast::Item) {
|
2015-04-28 05:19:25 -05:00
|
|
|
// Don't look at attributes for modules.
|
|
|
|
// We want to avoid looking at attributes in another file, which the AST
|
|
|
|
// doesn't distinguish. FIXME This is overly conservative and means we miss
|
|
|
|
// attributes on inline modules.
|
|
|
|
match item.node {
|
|
|
|
ast::Item_::ItemMod(_) => {}
|
|
|
|
_ => {
|
|
|
|
if self.visit_attrs(&item.attrs) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2015-04-22 23:22:48 -05:00
|
|
|
}
|
|
|
|
|
2015-04-21 04:01:19 -05:00
|
|
|
match item.node {
|
|
|
|
ast::Item_::ItemUse(ref vp) => {
|
|
|
|
match vp.node {
|
|
|
|
ast::ViewPath_::ViewPathList(ref path, ref path_list) => {
|
|
|
|
self.format_missing(item.span.lo);
|
|
|
|
let new_str = self.rewrite_use_list(path, path_list, vp.span);
|
|
|
|
self.changes.push_str_span(item.span, &new_str);
|
|
|
|
self.last_pos = item.span.hi;
|
|
|
|
}
|
|
|
|
ast::ViewPath_::ViewPathGlob(_) => {
|
|
|
|
// FIXME convert to list?
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
visit::walk_item(self, item);
|
|
|
|
}
|
2015-04-28 22:24:20 -05:00
|
|
|
ast::Item_::ItemImpl(..) |
|
|
|
|
ast::Item_::ItemMod(_) |
|
|
|
|
ast::Item_::ItemTrait(..) => {
|
2015-04-23 01:43:46 -05:00
|
|
|
self.block_indent += TAB_SPACES;
|
|
|
|
visit::walk_item(self, item);
|
|
|
|
self.block_indent -= TAB_SPACES;
|
|
|
|
}
|
2015-04-28 22:00:58 -05:00
|
|
|
ast::Item_::ItemExternCrate(_) => {
|
|
|
|
self.format_missing_with_indent(item.span.lo);
|
|
|
|
let new_str = self.snippet(item.span);
|
|
|
|
self.changes.push_str_span(item.span, &new_str);
|
|
|
|
self.last_pos = item.span.hi;
|
|
|
|
}
|
2015-04-21 04:01:19 -05:00
|
|
|
_ => {
|
|
|
|
visit::walk_item(self, item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-22 23:22:48 -05:00
|
|
|
fn visit_trait_item(&mut self, ti: &'v 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;
|
|
|
|
}
|
|
|
|
visit::walk_trait_item(self, ti)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_impl_item(&mut self, ii: &'v 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;
|
|
|
|
}
|
|
|
|
visit::walk_impl_item(self, ii)
|
|
|
|
}
|
|
|
|
|
2015-04-21 04:01:19 -05:00
|
|
|
fn visit_mac(&mut self, mac: &'v ast::Mac) {
|
|
|
|
visit::walk_mac(self, mac)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_mod(&mut self, m: &'v ast::Mod, s: Span, _: ast::NodeId) {
|
|
|
|
// Only visit inline mods here.
|
|
|
|
if self.codemap.lookup_char_pos(s.lo).file.name !=
|
|
|
|
self.codemap.lookup_char_pos(m.inner.lo).file.name {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
visit::walk_mod(self, m);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> FmtVisitor<'a> {
|
|
|
|
pub fn from_codemap<'b>(codemap: &'b CodeMap) -> FmtVisitor<'b> {
|
|
|
|
FmtVisitor {
|
|
|
|
codemap: codemap,
|
|
|
|
changes: ChangeSet::from_codemap(codemap),
|
|
|
|
last_pos: BytePos(0),
|
|
|
|
block_indent: 0,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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));
|
|
|
|
"".to_string()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-04-28 03:56:01 -05:00
|
|
|
|
|
|
|
// Returns true if we should skip the following item.
|
|
|
|
fn visit_attrs(&mut self, attrs: &[ast::Attribute]) -> bool {
|
2015-04-28 22:00:58 -05:00
|
|
|
if attrs.len() == 0 {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
let first = &attrs[0];
|
|
|
|
self.format_missing_with_indent(first.span.lo);
|
|
|
|
|
|
|
|
match self.rewrite_attrs(attrs, self.block_indent) {
|
|
|
|
Some(s) => {
|
|
|
|
self.changes.push_str_span(first.span, &s);
|
|
|
|
let last = attrs.last().unwrap();
|
|
|
|
self.last_pos = last.span.hi;
|
|
|
|
false
|
|
|
|
}
|
|
|
|
None => true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn rewrite_attrs(&self, attrs: &[ast::Attribute], indent: usize) -> Option<String> {
|
|
|
|
let mut result = String::new();
|
|
|
|
let indent = utils::make_indent(indent);
|
|
|
|
|
|
|
|
for (i, a) in attrs.iter().enumerate() {
|
2015-04-28 03:56:01 -05:00
|
|
|
if is_skip(&a.node.value) {
|
2015-04-28 22:00:58 -05:00
|
|
|
return None;
|
2015-04-28 03:56:01 -05:00
|
|
|
}
|
|
|
|
|
2015-04-28 23:21:04 -05:00
|
|
|
let a_str = self.snippet(a.span);
|
2015-04-28 22:00:58 -05:00
|
|
|
|
2015-04-28 23:21:04 -05:00
|
|
|
if i > 0 {
|
|
|
|
let comment = self.snippet(codemap::mk_sp(attrs[i-1].span.hi, a.span.lo));
|
|
|
|
// 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;
|
2015-04-28 22:00:58 -05:00
|
|
|
let comment = comment.trim();
|
|
|
|
if comment.len() > 0 {
|
2015-04-28 23:21:04 -05:00
|
|
|
result.push_str(&indent);
|
2015-04-28 22:00:58 -05:00
|
|
|
result.push_str(comment);
|
2015-04-28 23:21:04 -05:00
|
|
|
result.push('\n');
|
|
|
|
} else if multi_line {
|
|
|
|
result.push('\n');
|
2015-04-28 22:00:58 -05:00
|
|
|
}
|
2015-04-28 23:21:04 -05:00
|
|
|
result.push_str(&indent);
|
|
|
|
}
|
|
|
|
|
|
|
|
result.push_str(&a_str);
|
|
|
|
|
|
|
|
if i < attrs.len() -1 {
|
|
|
|
result.push('\n');
|
2015-04-28 22:00:58 -05:00
|
|
|
}
|
2015-04-28 03:56:01 -05:00
|
|
|
}
|
|
|
|
|
2015-04-28 22:00:58 -05:00
|
|
|
Some(result)
|
2015-04-28 03:56:01 -05:00
|
|
|
}
|
2015-04-21 04:01:19 -05:00
|
|
|
}
|
2015-04-22 23:22:48 -05:00
|
|
|
|
|
|
|
fn is_skip(meta_item: &ast::MetaItem) -> bool {
|
|
|
|
match meta_item.node {
|
|
|
|
ast::MetaItem_::MetaWord(ref s) => *s == SKIP_ANNOTATION,
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|