rust/src/lib.rs

370 lines
11 KiB
Rust
Raw Normal View History

// 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.
#![feature(rustc_private)]
2015-06-20 01:39:13 +02:00
#![feature(str_escape)]
2015-04-14 03:00:46 +02:00
#![feature(str_char)]
#![feature(custom_attribute)]
#![allow(unused_attributes)]
// TODO we're going to allocate a whole bunch of temp Strings, is it worth
// keeping some scratch mem for this and running our own StrPool?
2015-04-14 03:00:46 +02:00
// TODO for lint violations of names, emit a refactor script
#[macro_use]
extern crate log;
extern crate getopts;
extern crate rustc;
extern crate rustc_driver;
extern crate syntax;
2015-05-23 07:02:59 +02:00
extern crate rustc_serialize;
extern crate strings;
use rustc::session::Session;
2015-05-23 07:02:59 +02:00
use rustc::session::config as rustc_config;
use rustc::session::config::Input;
use rustc_driver::{driver, CompilerCalls, Compilation};
2015-04-21 11:01:19 +02:00
use syntax::ast;
use syntax::codemap::CodeMap;
use syntax::diagnostics;
2015-03-09 07:17:14 +01:00
use std::path::PathBuf;
use std::collections::HashMap;
use std::fmt;
use std::mem::swap;
2015-08-18 21:10:30 +02:00
use std::str::FromStr;
use issues::{BadIssueSeeker, Issue};
use filemap::FileMap;
2015-04-21 11:01:19 +02:00
use visitor::FmtVisitor;
use config::Config;
2015-06-08 20:23:24 +02:00
#[macro_use]
mod utils;
2015-07-20 23:29:25 +02:00
pub mod config;
mod filemap;
2015-04-21 11:01:19 +02:00
mod visitor;
2015-05-25 01:03:26 +02:00
mod items;
mod missed_spans;
mod lists;
2015-04-21 11:01:19 +02:00
mod types;
mod expr;
mod imports;
mod issues;
2015-06-16 17:29:05 +02:00
mod rewrite;
2015-06-23 15:58:58 +02:00
mod string;
mod comment;
mod modules;
const MIN_STRING: usize = 10;
// When we get scoped annotations, we should have rustfmt::skip.
const SKIP_ANNOTATION: &'static str = "rustfmt_skip";
#[derive(Copy, Clone)]
2015-04-21 06:28:10 +02:00
pub enum WriteMode {
2015-08-18 21:10:30 +02:00
// Backups the original file and overwrites the orignal.
Replace,
// Overwrites original file without backup.
2015-04-21 06:28:10 +02:00
Overwrite,
2015-08-18 21:10:30 +02:00
// str is the extension of the new file.
2015-04-21 06:28:10 +02:00
NewFile(&'static str),
// Write the output to stdout.
Display,
// Return the result as a mapping from filenames to Strings.
Return(&'static Fn(HashMap<String, String>)),
2015-04-21 06:28:10 +02:00
}
2015-08-18 21:10:30 +02:00
impl FromStr for WriteMode {
type Err = ();
fn from_str(s: &str) -> Result<Self, Self::Err> {
match s {
"replace" => Ok(WriteMode::Replace),
"display" => Ok(WriteMode::Display),
"overwrite" => Ok(WriteMode::Overwrite),
2015-08-16 05:58:17 +02:00
_ => Err(()),
2015-08-18 21:10:30 +02:00
}
}
}
2015-04-30 13:13:20 +02:00
#[derive(Copy, Clone, Eq, PartialEq, Debug)]
2015-05-23 07:02:59 +02:00
pub enum NewlineStyle {
2015-04-30 13:13:20 +02:00
Windows, // \r\n
Unix, // \n
}
impl_enum_decodable!(NewlineStyle, Windows, Unix);
2015-05-23 07:02:59 +02:00
#[derive(Copy, Clone, Eq, PartialEq, Debug)]
2015-05-23 07:02:59 +02:00
pub enum BraceStyle {
AlwaysNextLine,
PreferSameLine,
// Prefer same line except where there is a where clause, in which case force
// the brace to the next line.
SameLineWhere,
}
impl_enum_decodable!(BraceStyle, AlwaysNextLine, PreferSameLine, SameLineWhere);
2015-05-23 07:02:59 +02:00
// How to indent a function's return type.
#[derive(Copy, Clone, Eq, PartialEq, Debug)]
2015-05-23 07:02:59 +02:00
pub enum ReturnIndent {
// Aligned with the arguments
WithArgs,
// Aligned with the where clause
WithWhereClause,
}
impl_enum_decodable!(ReturnIndent, WithArgs, WithWhereClause);
2015-05-23 07:02:59 +02:00
// How to stle a struct literal.
#[derive(Copy, Clone, Eq, PartialEq, Debug)]
pub enum StructLitStyle {
// First line on the same line as the opening brace, all lines aligned with
// the first line.
VisualIndent,
// First line is on a new line and all lines align with block indent.
BlockIndent,
// FIXME Maybe we should also have an option to align types.
}
impl_enum_decodable!(StructLitStyle, VisualIndent, BlockIndent);
enum ErrorKind {
// Line has exceeded character limit
LineOverflow,
// Line ends in whitespace
TrailingWhitespace,
// TO-DO or FIX-ME item without an issue number
BadIssue(Issue),
}
impl fmt::Display for ErrorKind {
fn fmt(&self, fmt: &mut fmt::Formatter) -> Result<(), fmt::Error> {
match *self {
ErrorKind::LineOverflow => {
write!(fmt, "line exceeded maximum length")
}
ErrorKind::TrailingWhitespace => {
write!(fmt, "left behind trailing whitespace")
}
ErrorKind::BadIssue(issue) => {
write!(fmt, "found {}", issue)
}
}
}
}
// Formatting errors that are identified *after* rustfmt has run
struct FormattingError {
line: u32,
kind: ErrorKind,
}
impl FormattingError {
fn msg_prefix(&self) -> &str {
match self.kind {
ErrorKind::LineOverflow |
ErrorKind::TrailingWhitespace => "Rustfmt failed at",
ErrorKind::BadIssue(_) => "WARNING:",
}
}
fn msg_suffix(&self) -> &str {
match self.kind {
ErrorKind::LineOverflow |
ErrorKind::TrailingWhitespace => "(sorry)",
ErrorKind::BadIssue(_) => "",
}
}
}
struct FormatReport {
// Maps stringified file paths to their associated formatting errors
file_error_map: HashMap<String, Vec<FormattingError>>,
}
impl fmt::Display for FormatReport {
// Prints all the formatting errors.
fn fmt(&self, fmt: &mut fmt::Formatter) -> Result<(), fmt::Error> {
for (file, errors) in self.file_error_map.iter() {
for error in errors {
try!(write!(fmt,
"{} {}:{}: {} {}\n",
error.msg_prefix(),
file,
error.line,
error.kind,
error.msg_suffix()));
}
}
Ok(())
}
}
// Formatting which depends on the AST.
fn fmt_ast(krate: &ast::Crate, codemap: &CodeMap, config: &Config) -> FileMap {
let mut file_map = FileMap::new();
for (path, module) in modules::list_files(krate, codemap) {
2015-07-26 14:05:43 +02:00
let path = path.to_str().unwrap();
let mut visitor = FmtVisitor::from_codemap(codemap, config);
visitor.format_separate_mod(module, path);
file_map.insert(path.to_owned(), visitor.buffer);
}
file_map
}
2015-04-21 12:50:43 +02:00
// Formatting done on a char by char or line by line basis.
// TODO warn on bad license
// TODO other stuff for parity with make tidy
// FIXME skipping due to `continue`, #184.
#[rustfmt_skip]
fn fmt_lines(file_map: &mut FileMap, config: &Config) -> FormatReport {
2015-04-23 08:02:55 +02:00
let mut truncate_todo = Vec::new();
let mut report = FormatReport { file_error_map: HashMap::new() };
2015-04-23 08:02:55 +02:00
// Iterate over the chars in the file map.
for (f, text) in file_map.iter() {
let mut trims = vec![];
2015-04-14 03:00:46 +02:00
let mut last_wspace: Option<usize> = None;
let mut line_len = 0;
let mut cur_line = 1;
2015-04-23 08:02:55 +02:00
let mut newline_count = 0;
let mut errors = vec![];
2015-07-19 23:39:48 +02:00
let mut issue_seeker = BadIssueSeeker::new(config.report_todo, config.report_fixme);
for (c, b) in text.chars() {
2015-07-19 23:39:48 +02:00
if c == '\r' {
continue;
2015-07-19 23:39:48 +02:00
}
// Add warnings for bad todos/ fixmes
if let Some(issue) = issue_seeker.inspect(c) {
errors.push(FormattingError {
line: cur_line,
kind: ErrorKind::BadIssue(issue)
});
}
if c == '\n' {
// Check for (and record) trailing whitespace.
if let Some(lw) = last_wspace {
trims.push((cur_line, lw, b));
line_len -= b - lw;
}
// Check for any line width errors we couldn't correct.
if line_len > config.max_width {
errors.push(FormattingError {
line: cur_line,
kind: ErrorKind::LineOverflow
});
}
line_len = 0;
cur_line += 1;
2015-04-23 08:02:55 +02:00
newline_count += 1;
last_wspace = None;
} else {
2015-04-23 08:02:55 +02:00
newline_count = 0;
line_len += 1;
if c.is_whitespace() {
if last_wspace.is_none() {
last_wspace = Some(b);
}
} else {
last_wspace = None;
}
}
}
2015-04-23 08:02:55 +02:00
if newline_count > 1 {
2015-04-23 08:30:12 +02:00
debug!("track truncate: {} {} {}", f, text.len, newline_count);
truncate_todo.push((f.to_owned(), text.len - newline_count + 1))
2015-04-23 08:02:55 +02:00
}
for &(l, _, _) in trims.iter() {
errors.push(FormattingError {
line: l,
kind: ErrorKind::TrailingWhitespace
});
}
report.file_error_map.insert(f.to_owned(), errors);
}
2015-04-23 08:02:55 +02:00
for (f, l) in truncate_todo {
file_map.get_mut(&f).unwrap().truncate(l);
2015-04-23 08:02:55 +02:00
}
report
}
struct RustFmtCalls {
write_mode: WriteMode,
config: Option<Box<config::Config>>,
}
impl<'a> CompilerCalls<'a> for RustFmtCalls {
fn no_input(&mut self,
_: &getopts::Matches,
2015-05-23 07:02:59 +02:00
_: &rustc_config::Options,
2015-03-09 07:17:14 +01:00
_: &Option<PathBuf>,
_: &Option<PathBuf>,
_: &diagnostics::registry::Registry)
2015-03-09 07:17:14 +01:00
-> Option<(Input, Option<PathBuf>)> {
panic!("No input supplied to RustFmt");
}
fn build_controller(&mut self, _: &Session) -> driver::CompileController<'a> {
let write_mode = self.write_mode;
let mut config_option = None;
swap(&mut self.config, &mut config_option);
let config = config_option.unwrap();
let mut control = driver::CompileController::basic();
control.after_parse.stop = Compilation::Stop;
2015-05-20 20:20:15 +02:00
control.after_parse.callback = Box::new(move |state| {
let krate = state.krate.unwrap();
let codemap = state.session.codemap();
let mut file_map = fmt_ast(krate, codemap, &*config);
2015-04-23 07:04:07 +02:00
// For some reason, the codemap does not include terminating newlines
// so we must add one on for each file. This is sad.
filemap::append_newlines(&mut file_map);
println!("{}", fmt_lines(&mut file_map, &*config));
let result = filemap::write_all_files(&file_map, write_mode, &*config);
2015-04-21 06:28:10 +02:00
match result {
Err(msg) => println!("Error writing files: {}", msg),
Ok(result) => {
if let WriteMode::Return(callback) = write_mode {
callback(result);
}
}
2015-04-21 06:28:10 +02:00
}
2015-05-20 20:20:15 +02:00
});
control
}
}
2015-05-23 07:02:59 +02:00
// args are the arguments passed on the command line, generally passed through
// to the compiler.
// write_mode determines what happens to the result of running rustfmt, see
// WriteMode.
2015-08-18 21:10:30 +02:00
pub fn run(args: Vec<String>, write_mode: WriteMode, config: Box<Config>) {
let mut call_ctxt = RustFmtCalls { write_mode: write_mode, config: Some(config) };
2015-04-23 08:10:43 +02:00
rustc_driver::run_compiler(&args, &mut call_ctxt);
}