Use new module code from libsyntax

This commit is contained in:
Marcus Klaas 2015-07-24 15:29:04 +02:00
parent 609e621a57
commit 3aa03dcc25
5 changed files with 49 additions and 64 deletions

View File

@ -101,10 +101,10 @@ fn format_comments() {
12)); 12));
let input = "// comment"; let input = "// comment";
let expected_output = "/* com\n \ let expected = "/* com\n \
* men\n \ * men\n * \
* t */"; t */";
assert_eq!(expected_output, rewrite_comment(input, true, 9, 69)); assert_eq!(expected, rewrite_comment(input, true, 9, 69));
assert_eq!("/* trimmed */", rewrite_comment("/* trimmed */", true, 100, 100)); assert_eq!("/* trimmed */", rewrite_comment("/* trimmed */", true, 100, 100));
} }

View File

@ -347,9 +347,11 @@ fn rewrite_binary_op(context: &RewriteContext,
result.push(' '); result.push(' ');
result.push_str(&operator_str); result.push_str(&operator_str);
// 1 = space between operator and rhs
let used_width = result.len() + operator_str.len() + 1;
let remaining_width = match result.rfind('\n') { let remaining_width = match result.rfind('\n') {
Some(idx) => (offset + width + idx).checked_sub(result.len()).unwrap_or(0), Some(idx) => (offset + width + idx).checked_sub(used_width).unwrap_or(0),
None => width.checked_sub(result.len()).unwrap_or(0) None => width.checked_sub(used_width).unwrap_or(0)
}; };
// Get "full width" rhs and see if it fits on the current line. This // Get "full width" rhs and see if it fits on the current line. This

View File

@ -11,13 +11,11 @@
use syntax::ast; use syntax::ast;
use syntax::codemap::{self, CodeMap, Span, BytePos}; use syntax::codemap::{self, CodeMap, Span, BytePos};
use syntax::visit; use syntax::visit;
use syntax::parse::token; use syntax::parse::{token, parser};
use syntax::attr;
use std::path::PathBuf; use std::path::PathBuf;
use utils; use utils;
use config::Config; use config::Config;
use comment::FindUncommented;
use changes::ChangeSet; use changes::ChangeSet;
use rewrite::{Rewrite, RewriteContext}; use rewrite::{Rewrite, RewriteContext};
@ -363,68 +361,48 @@ impl<'a> FmtVisitor<'a> {
fn format_mod(&mut self, m: &ast::Mod, s: Span, ident: ast::Ident, attrs: &[ast::Attribute]) { fn format_mod(&mut self, m: &ast::Mod, s: Span, ident: ast::Ident, attrs: &[ast::Attribute]) {
debug!("FmtVisitor::format_mod: ident: {:?}, span: {:?}", ident, s); debug!("FmtVisitor::format_mod: ident: {:?}, span: {:?}", ident, s);
// Decide whether this is an inline mod or an external mod. // Decide whether this is an inline mod or an external mod.
// There isn't any difference between inline and external mod in AST, let local_file_name = self.codemap.span_to_filename(s);
// so we use the trick of searching for an opening brace. let is_internal = local_file_name == self.codemap.span_to_filename(m.inner);
// We can't use the inner span of the mod since it is weird when it
// is empty (no items). // TODO Should rewrite properly `mod X;`
// FIXME Use the inner span once rust-lang/rust#26755 is fixed.
let open_brace = self.codemap.span_to_snippet(s).unwrap().find_uncommented("{"); if is_internal {
match open_brace { debug!("FmtVisitor::format_mod: internal mod");
None => { self.block_indent += self.config.tab_spaces;
debug!("FmtVisitor::format_mod: external mod"); visit::walk_mod(self, m);
let file_path = self.module_file(ident, attrs, s); debug!("... last_pos after: {:?}", self.last_pos);
let filename = file_path.to_str().unwrap(); self.block_indent -= self.config.tab_spaces;
if self.changes.is_changed(filename) { } else {
// The file has already been reformatted, do nothing debug!("FmtVisitor::format_mod: external mod");
} else { let file_path = self.module_file(ident, attrs, local_file_name);
self.format_separate_mod(m, filename); let filename = file_path.to_str().unwrap();
} if self.changes.is_changed(filename) {
// TODO Should rewrite properly `mod X;` // The file has already been reformatted, do nothing
} } else {
Some(open_brace) => { self.format_separate_mod(m, filename);
debug!("FmtVisitor::format_mod: internal mod");
debug!("... open_brace: {}, str: {:?}",
open_brace,
self.codemap.span_to_snippet(s));
// Format everything until opening brace
// TODO Shoud rewrite properly
self.format_missing(s.lo + BytePos(open_brace as u32));
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;
} }
} }
self.format_missing(s.hi);
debug!("FmtVisitor::format_mod: exit"); debug!("FmtVisitor::format_mod: exit");
} }
/// Find the file corresponding to an external mod /// Find the file corresponding to an external mod
/// Same algorithm as syntax::parse::eval_src_mod fn module_file(&self, id: ast::Ident, attrs: &[ast::Attribute], filename: String) -> PathBuf {
fn module_file(&self, id: ast::Ident, outer_attrs: &[ast::Attribute], id_sp: Span) -> PathBuf { let dir_path = {
// FIXME use libsyntax once rust-lang/rust#26750 is merged let mut path = PathBuf::from(&filename);
let mut prefix = PathBuf::from(&self.codemap.span_to_filename(id_sp)); path.pop();
prefix.pop(); path
let mod_string = token::get_ident(id); };
match attr::first_attr_value_str_by_name(outer_attrs, "path") {
Some(d) => prefix.join(&*d), if let Some(path) = parser::Parser::submod_path_from_attr(attrs, &dir_path) {
None => { return path;
let default_path_str = format!("{}.rs", mod_string); }
let secondary_path_str = format!("{}/mod.rs", mod_string);
let default_path = prefix.join(&default_path_str); match parser::Parser::default_submod_path(id, &dir_path, &self.codemap).result {
let secondary_path = prefix.join(&secondary_path_str); Ok(parser::ModulePathSuccess { path, .. }) => path,
let default_exists = self.codemap.file_exists(&default_path); _ => panic!("Couldn't find module {}", token::get_ident(id))
let secondary_exists = self.codemap.file_exists(&secondary_path);
if default_exists {
default_path
} else if secondary_exists {
secondary_path
} else {
// Should never appens since rustc parsed everything sucessfully
panic!("Didn't found module {}", mod_string);
}
}
} }
} }

View File

@ -4,6 +4,8 @@ fn foo() -> bool {
let very_long_variable_name = ( a + first + simple + test ); let very_long_variable_name = ( a + first + simple + test );
let very_long_variable_name = (a + first + simple + test + AAAAAAAAAAAAA + BBBBBBBBBBBBBBBBB + b + c); let very_long_variable_name = (a + first + simple + test + AAAAAAAAAAAAA + BBBBBBBBBBBBBBBBB + b + c);
let is_internalxxxx = self.codemap.span_to_filename(s) == self.codemap.span_to_filename(m.inner);
let some_val = aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa * bbbb / (bbbbbb - let some_val = aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa * bbbb / (bbbbbb -
function_call(x, *very_long_pointer, y)) function_call(x, *very_long_pointer, y))
+ 1000; + 1000;

View File

@ -5,6 +5,9 @@ fn foo() -> bool {
let very_long_variable_name = (a + first + simple + test + AAAAAAAAAAAAA + BBBBBBBBBBBBBBBBB + let very_long_variable_name = (a + first + simple + test + AAAAAAAAAAAAA + BBBBBBBBBBBBBBBBB +
b + c); b + c);
let is_internalxxxx = self.codemap.span_to_filename(s) ==
self.codemap.span_to_filename(m.inner);
let some_val = aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa * bbbb / let some_val = aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa * bbbb /
(bbbbbb - function_call(x, *very_long_pointer, y)) + 1000; (bbbbbb - function_call(x, *very_long_pointer, y)) + 1000;