rust/src/visitor.rs

420 lines
15 KiB
Rust
Raw Normal View History

2015-04-21 11:01:19 +02: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-29 05:00:58 +02:00
use syntax::codemap::{self, CodeMap, Span, BytePos};
2015-04-21 11:01:19 +02:00
use syntax::visit;
2015-07-26 14:05:43 +02:00
use strings::string_buffer::StringBuffer;
2015-04-29 05:00:58 +02:00
use utils;
use config::Config;
2015-06-16 17:29:05 +02:00
use rewrite::{Rewrite, RewriteContext};
2015-07-17 23:10:15 +02:00
use comment::rewrite_comment;
2015-04-21 11:01:19 +02:00
pub struct FmtVisitor<'a> {
pub codemap: &'a CodeMap,
2015-07-26 14:05:43 +02:00
pub buffer: StringBuffer,
2015-04-21 11:01:19 +02:00
pub last_pos: BytePos,
// TODO RAII util for indenting
pub block_indent: usize,
pub config: &'a Config,
2015-04-21 11:01:19 +02:00
}
impl<'a, 'v> visit::Visitor<'v> for FmtVisitor<'a> {
2015-08-21 13:31:09 +02:00
// FIXME: We'd rather not format expressions here, as we have little
// context. How are we still reaching this?
2015-04-21 11:01:19 +02:00
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);
2015-08-14 14:09:19 +02:00
2015-07-26 14:05:43 +02:00
let offset = self.buffer.cur_offset();
2015-08-14 14:09:19 +02:00
let rewrite = ex.rewrite(&self.get_context(), self.config.max_width - offset, offset);
if let Some(new_str) = rewrite {
2015-07-26 14:05:43 +02:00
self.buffer.push_str(&new_str);
self.last_pos = ex.span.hi;
2015-06-16 17:29:05 +02:00
}
2015-04-21 11:01:19 +02:00
}
2015-04-29 05:00:58 +02:00
fn visit_stmt(&mut self, stmt: &'v ast::Stmt) {
2015-08-21 13:31:09 +02:00
match stmt.node {
2015-04-29 05:00:58 +02:00
ast::Stmt_::StmtDecl(ref decl, _) => {
2015-08-21 13:31:09 +02:00
return match decl.node {
ast::Decl_::DeclLocal(ref local) => self.visit_let(local, stmt.span),
ast::Decl_::DeclItem(..) => visit::walk_stmt(self, stmt),
};
}
ast::Stmt_::StmtExpr(ref ex, _) | ast::Stmt_::StmtSemi(ref ex, _) => {
self.format_missing_with_indent(stmt.span.lo);
let suffix = if let ast::Stmt_::StmtExpr(..) = stmt.node {
""
} else {
";"
};
// 1 = trailing semicolon;
let rewrite = ex.rewrite(&self.get_context(),
self.config.max_width - self.block_indent - suffix.len(),
self.block_indent);
if let Some(new_str) = rewrite {
self.buffer.push_str(&new_str);
self.buffer.push_str(suffix);
self.last_pos = stmt.span.hi;
2015-04-29 05:00:58 +02:00
}
}
2015-08-21 13:31:09 +02:00
ast::Stmt_::StmtMac(..) => {
self.format_missing_with_indent(stmt.span.lo);
visit::walk_stmt(self, stmt);
}
2015-04-29 05:00:58 +02:00
}
}
2015-04-21 11:01:19 +02: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));
2015-08-20 23:05:41 +02:00
// Check if this block has braces.
let snippet = self.snippet(b.span);
let has_braces = snippet.chars().next().unwrap() == '{' || &snippet[..6] == "unsafe";
let brace_compensation = if has_braces {
BytePos(1)
} else {
BytePos(0)
};
self.last_pos = self.last_pos + brace_compensation;
self.block_indent += self.config.tab_spaces;
2015-08-20 23:05:41 +02:00
self.buffer.push_str("{");
2015-04-21 11:01:19 +02:00
for stmt in &b.stmts {
self.visit_stmt(&stmt)
}
2015-08-01 14:22:31 +02:00
2015-04-21 11:01:19 +02:00
match b.expr {
Some(ref e) => {
self.format_missing_with_indent(e.span.lo);
self.visit_expr(e);
}
None => {}
}
self.block_indent -= self.config.tab_spaces;
2015-04-21 11:01:19 +02:00
// TODO we should compress any newlines here to just one
2015-08-20 23:05:41 +02:00
self.format_missing_with_indent(b.span.hi - brace_compensation);
2015-07-26 14:05:43 +02:00
self.buffer.push_str("}");
2015-04-21 11:01:19 +02:00
self.last_pos = b.span.hi;
}
2015-05-11 15:05:12 +02:00
// Note that this only gets called for function definitions. Required methods
2015-04-21 11:01:19 +02:00
// 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_with_indent(s.lo);
2015-04-21 11:01:19 +02:00
self.last_pos = s.lo;
let indent = self.block_indent;
2015-04-21 11:01:19 +02:00
match fk {
visit::FnKind::ItemFn(ident,
2015-05-25 13:21:29 +02:00
ref generics,
ref unsafety,
ref constness,
ref abi,
vis) => {
2015-04-21 11:01:19 +02:00
let new_fn = self.rewrite_fn(indent,
ident,
fd,
None,
generics,
unsafety,
2015-05-25 13:21:29 +02:00
constness,
2015-04-21 11:01:19 +02:00
abi,
vis,
2015-06-23 15:58:58 +02:00
codemap::mk_sp(s.lo, b.span.lo));
2015-07-26 14:05:43 +02:00
self.buffer.push_str(&new_fn);
2015-04-21 11:01:19 +02:00
}
visit::FnKind::Method(ident, ref sig, vis) => {
2015-04-21 11:01:19 +02:00
let new_fn = self.rewrite_fn(indent,
ident,
fd,
Some(&sig.explicit_self),
&sig.generics,
&sig.unsafety,
2015-05-25 13:21:29 +02:00
&sig.constness,
2015-04-21 11:01:19 +02:00
&sig.abi,
vis.unwrap_or(ast::Visibility::Inherited),
2015-06-23 15:58:58 +02:00
codemap::mk_sp(s.lo, b.span.lo));
2015-07-26 14:05:43 +02:00
self.buffer.push_str(&new_fn);
2015-04-21 11:01:19 +02:00
}
visit::FnKind::Closure => {}
2015-04-21 11:01:19 +02:00
}
self.last_pos = b.span.lo;
self.visit_block(b)
}
fn visit_item(&mut self, item: &'v ast::Item) {
// 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-21 11:01:19 +02:00
match item.node {
ast::Item_::ItemUse(ref vp) => {
2015-07-20 21:33:23 +02:00
self.format_import(item.vis, vp, item.span);
2015-04-21 11:01:19 +02:00
}
2015-04-29 05:24:20 +02:00
ast::Item_::ItemImpl(..) |
ast::Item_::ItemTrait(..) => {
self.block_indent += self.config.tab_spaces;
visit::walk_item(self, item);
self.block_indent -= self.config.tab_spaces;
}
2015-04-29 05:00:58 +02:00
ast::Item_::ItemExternCrate(_) => {
self.format_missing_with_indent(item.span.lo);
let new_str = self.snippet(item.span);
2015-07-26 14:05:43 +02:00
self.buffer.push_str(&new_str);
2015-04-29 05:00:58 +02:00
self.last_pos = item.span.hi;
}
2015-05-25 01:03:26 +02:00
ast::Item_::ItemStruct(ref def, ref generics) => {
self.format_missing_with_indent(item.span.lo);
self.visit_struct(item.ident,
item.vis,
def,
generics,
item.span);
}
2015-05-29 12:41:26 +02:00
ast::Item_::ItemEnum(ref def, ref generics) => {
self.format_missing_with_indent(item.span.lo);
self.visit_enum(item.ident,
item.vis,
def,
generics,
item.span);
self.last_pos = item.span.hi;
}
2015-07-01 21:13:10 +02:00
ast::Item_::ItemMod(ref module) => {
self.format_missing_with_indent(item.span.lo);
self.format_mod(module, item.span, item.ident);
2015-07-01 21:13:10 +02:00
}
2015-04-21 11:01:19 +02:00
_ => {
visit::walk_item(self, item);
}
}
}
fn visit_trait_item(&mut self, ti: &'v ast::TraitItem) {
if self.visit_attrs(&ti.attrs) {
return;
}
2015-05-04 00:12:39 +02:00
if let ast::TraitItem_::MethodTraitItem(ref sig, None) = ti.node {
self.format_missing_with_indent(ti.span.lo);
let indent = self.block_indent;
let new_fn = self.rewrite_required_fn(indent,
ti.ident,
sig,
ti.span);
2015-07-26 14:05:43 +02:00
self.buffer.push_str(&new_fn);
2015-05-04 00:12:39 +02:00
self.last_pos = ti.span.hi;
}
// TODO format trait types
visit::walk_trait_item(self, ti)
}
fn visit_impl_item(&mut self, ii: &'v ast::ImplItem) {
if self.visit_attrs(&ii.attrs) {
return;
}
visit::walk_impl_item(self, ii)
}
2015-04-21 11:01:19 +02:00
fn visit_mac(&mut self, mac: &'v ast::Mac) {
visit::walk_mac(self, mac)
}
}
impl<'a> FmtVisitor<'a> {
pub fn from_codemap<'b>(codemap: &'b CodeMap, config: &'b Config) -> FmtVisitor<'b> {
2015-07-16 03:31:20 +02:00
FmtVisitor {
codemap: codemap,
2015-07-26 14:05:43 +02:00
buffer: StringBuffer::new(),
2015-07-16 03:31:20 +02:00
last_pos: BytePos(0),
block_indent: 0,
config: config,
}
2015-04-21 11:01:19 +02: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));
"".to_owned()
2015-04-21 11:01:19 +02:00
}
}
}
// Returns true if we should skip the following item.
2015-05-25 01:03:26 +02:00
pub fn visit_attrs(&mut self, attrs: &[ast::Attribute]) -> bool {
if attrs.is_empty() {
2015-04-29 05:00:58 +02:00
return false;
}
let first = &attrs[0];
self.format_missing_with_indent(first.span.lo);
2015-06-23 15:58:58 +02:00
if utils::contains_skip(attrs) {
true
} else {
2015-07-17 23:10:15 +02:00
let rewrite = attrs.rewrite(&self.get_context(),
self.config.max_width - self.block_indent,
self.block_indent)
.unwrap();
2015-07-26 14:05:43 +02:00
self.buffer.push_str(&rewrite);
2015-06-23 15:58:58 +02:00
let last = attrs.last().unwrap();
self.last_pos = last.span.hi;
false
2015-04-29 05:00:58 +02:00
}
}
fn format_mod(&mut self, m: &ast::Mod, s: Span, ident: ast::Ident) {
2015-07-01 21:13:10 +02:00
debug!("FmtVisitor::format_mod: ident: {:?}, span: {:?}", ident, s);
2015-07-24 15:29:04 +02:00
2015-07-01 21:13:10 +02:00
// Decide whether this is an inline mod or an external mod.
2015-07-24 15:29:04 +02:00
let local_file_name = self.codemap.span_to_filename(s);
let is_internal = local_file_name == self.codemap.span_to_filename(m.inner);
// TODO Should rewrite properly `mod X;`
if is_internal {
debug!("FmtVisitor::format_mod: internal mod");
self.block_indent += self.config.tab_spaces;
visit::walk_mod(self, m);
debug!("... last_pos after: {:?}", self.last_pos);
self.block_indent -= self.config.tab_spaces;
2015-07-01 21:13:10 +02:00
}
}
pub fn format_separate_mod(&mut self, m: &ast::Mod, filename: &str) {
2015-07-01 21:13:10 +02:00
let filemap = self.codemap.get_filemap(filename);
self.last_pos = filemap.start_pos;
self.block_indent = 0;
visit::walk_mod(self, m);
self.format_missing(filemap.end_pos);
}
2015-07-20 21:33:23 +02:00
fn format_import(&mut self, vis: ast::Visibility, vp: &ast::ViewPath, span: Span) {
let vis = utils::format_visibility(vis);
let offset = self.block_indent + vis.len() + "use ".len();
let context = RewriteContext {
codemap: self.codemap,
config: self.config,
block_indent: self.block_indent,
overflow_indent: 0,
2015-07-20 21:33:23 +02:00
};
// 1 = ";"
match vp.rewrite(&context, self.config.max_width - offset - 1, offset) {
Some(ref s) if s.is_empty() => {
2015-07-20 21:33:23 +02:00
// Format up to last newline
let prev_span = codemap::mk_sp(self.last_pos, span.lo);
let span_end = match self.snippet(prev_span).rfind('\n') {
Some(offset) => self.last_pos + BytePos(offset as u32),
2015-08-16 05:58:17 +02:00
None => span.lo,
2015-07-20 21:33:23 +02:00
};
self.format_missing(span_end);
self.last_pos = span.hi;
}
Some(ref s) => {
let s = format!("{}use {};", vis, s);
self.format_missing_with_indent(span.lo);
2015-07-26 14:05:43 +02:00
self.buffer.push_str(&s);
2015-07-20 21:33:23 +02:00
self.last_pos = span.hi;
}
None => {
self.format_missing_with_indent(span.lo);
self.format_missing(span.hi);
}
}
}
2015-08-14 14:09:19 +02:00
pub fn get_context(&self) -> RewriteContext {
RewriteContext {
codemap: self.codemap,
config: self.config,
block_indent: self.block_indent,
overflow_indent: 0,
2015-08-14 14:09:19 +02:00
}
}
}
2015-07-17 23:10:15 +02:00
impl<'a> Rewrite for [ast::Attribute] {
fn rewrite(&self, context: &RewriteContext, _: usize, offset: usize) -> Option<String> {
let mut result = String::new();
if self.is_empty() {
return Some(result);
}
let indent = utils::make_indent(offset);
for (i, a) in self.iter().enumerate() {
let a_str = context.snippet(a.span);
if i > 0 {
let comment = context.snippet(codemap::mk_sp(self[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;
let comment = comment.trim();
if !comment.is_empty() {
let comment = rewrite_comment(comment,
false,
context.config.max_width - offset,
offset);
result.push_str(&indent);
result.push_str(&comment);
result.push('\n');
} else if multi_line {
result.push('\n');
}
result.push_str(&indent);
}
result.push_str(&a_str);
if i < self.len() - 1 {
result.push('\n');
}
}
Some(result)
}
}