2015-03-07 16:46:35 -06: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.
|
|
|
|
|
|
|
|
#![feature(rustc_private)]
|
|
|
|
#![feature(collections)]
|
2015-04-13 20:00:46 -05:00
|
|
|
#![feature(str_char)]
|
2015-03-07 16:46:35 -06:00
|
|
|
|
2015-03-08 23:18:48 -05:00
|
|
|
// 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-13 20:00:46 -05:00
|
|
|
// TODO for lint violations of names, emit a refactor script
|
|
|
|
|
2015-03-08 23:18:48 -05:00
|
|
|
|
2015-03-07 16:46:35 -06:00
|
|
|
#[macro_use]
|
|
|
|
extern crate log;
|
|
|
|
|
|
|
|
extern crate getopts;
|
|
|
|
extern crate rustc;
|
|
|
|
extern crate rustc_driver;
|
|
|
|
extern crate syntax;
|
2015-05-23 00:02:59 -05:00
|
|
|
extern crate rustc_serialize;
|
2015-03-07 16:46:35 -06:00
|
|
|
|
2015-04-13 20:12:56 -05:00
|
|
|
extern crate strings;
|
|
|
|
|
2015-03-07 16:46:35 -06:00
|
|
|
use rustc::session::Session;
|
2015-05-23 00:02:59 -05:00
|
|
|
use rustc::session::config as rustc_config;
|
|
|
|
use rustc::session::config::Input;
|
2015-03-07 16:46:35 -06:00
|
|
|
use rustc_driver::{driver, CompilerCalls, Compilation};
|
|
|
|
|
2015-05-23 00:02:59 -05:00
|
|
|
use rustc_serialize::{Decodable, Decoder};
|
|
|
|
|
2015-04-21 04:01:19 -05:00
|
|
|
use syntax::ast;
|
|
|
|
use syntax::codemap::CodeMap;
|
2015-03-07 16:46:35 -06:00
|
|
|
use syntax::diagnostics;
|
|
|
|
use syntax::visit;
|
|
|
|
|
2015-03-09 01:17:14 -05:00
|
|
|
use std::path::PathBuf;
|
2015-04-22 23:22:48 -05:00
|
|
|
use std::collections::HashMap;
|
2015-03-07 16:46:35 -06:00
|
|
|
|
|
|
|
use changes::ChangeSet;
|
2015-04-21 04:01:19 -05:00
|
|
|
use visitor::FmtVisitor;
|
2015-03-07 16:46:35 -06:00
|
|
|
|
2015-05-23 00:02:59 -05:00
|
|
|
#[macro_use]
|
|
|
|
mod config;
|
2015-03-07 16:46:35 -06:00
|
|
|
mod changes;
|
2015-04-21 04:01:19 -05:00
|
|
|
mod visitor;
|
2015-05-24 18:03:26 -05:00
|
|
|
mod items;
|
2015-04-20 23:47:15 -05:00
|
|
|
mod missed_spans;
|
|
|
|
mod lists;
|
2015-06-08 12:40:22 -05:00
|
|
|
#[macro_use]
|
2015-04-21 04:01:19 -05:00
|
|
|
mod utils;
|
|
|
|
mod types;
|
|
|
|
mod expr;
|
|
|
|
mod imports;
|
2015-03-07 16:46:35 -06:00
|
|
|
|
|
|
|
const MIN_STRING: usize = 10;
|
2015-04-22 23:22:48 -05:00
|
|
|
// When we get scoped annotations, we should have rustfmt::skip.
|
|
|
|
const SKIP_ANNOTATION: &'static str = "rustfmt_skip";
|
2015-04-20 19:02:30 -05:00
|
|
|
|
2015-05-23 00:02:59 -05:00
|
|
|
static mut CONFIG: Option<config::Config> = None;
|
|
|
|
|
2015-04-22 23:22:48 -05:00
|
|
|
#[derive(Copy, Clone)]
|
2015-04-20 23:28:10 -05:00
|
|
|
pub enum WriteMode {
|
|
|
|
Overwrite,
|
|
|
|
// str is the extension of the new file
|
|
|
|
NewFile(&'static str),
|
|
|
|
// Write the output to stdout.
|
|
|
|
Display,
|
2015-04-22 23:22:48 -05:00
|
|
|
// Return the result as a mapping from filenames to StringBuffers.
|
|
|
|
Return(&'static Fn(HashMap<String, String>)),
|
2015-04-20 23:28:10 -05:00
|
|
|
}
|
|
|
|
|
2015-04-30 06:13:20 -05:00
|
|
|
#[derive(Copy, Clone, Eq, PartialEq, Debug)]
|
2015-05-23 00:02:59 -05:00
|
|
|
pub enum NewlineStyle {
|
2015-04-30 06:13:20 -05:00
|
|
|
Windows, // \r\n
|
|
|
|
Unix, // \n
|
|
|
|
}
|
|
|
|
|
2015-06-04 07:08:32 -05:00
|
|
|
impl_enum_decodable!(NewlineStyle, Windows, Unix);
|
2015-05-23 00:02:59 -05:00
|
|
|
|
2015-04-20 19:02:30 -05:00
|
|
|
#[derive(Copy, Clone, Eq, PartialEq, Debug)]
|
2015-05-23 00:02:59 -05:00
|
|
|
pub enum BraceStyle {
|
2015-04-20 19:02:30 -05:00
|
|
|
AlwaysNextLine,
|
|
|
|
PreferSameLine,
|
|
|
|
// Prefer same line except where there is a where clause, in which case force
|
|
|
|
// the brace to the next line.
|
|
|
|
SameLineWhere,
|
|
|
|
}
|
|
|
|
|
2015-06-04 07:08:32 -05:00
|
|
|
impl_enum_decodable!(BraceStyle, AlwaysNextLine, PreferSameLine, SameLineWhere);
|
2015-05-23 00:02:59 -05:00
|
|
|
|
2015-04-20 19:02:30 -05:00
|
|
|
// How to indent a function's return type.
|
|
|
|
#[derive(Copy, Clone, Eq, PartialEq, Debug)]
|
2015-05-23 00:02:59 -05:00
|
|
|
pub enum ReturnIndent {
|
2015-04-20 19:02:30 -05:00
|
|
|
// Aligned with the arguments
|
|
|
|
WithArgs,
|
|
|
|
// Aligned with the where clause
|
|
|
|
WithWhereClause,
|
|
|
|
}
|
2015-03-07 16:46:35 -06:00
|
|
|
|
2015-06-04 07:08:32 -05:00
|
|
|
impl_enum_decodable!(ReturnIndent, WithArgs, WithWhereClause);
|
2015-05-23 00:02:59 -05:00
|
|
|
|
2015-03-07 16:46:35 -06:00
|
|
|
// Formatting which depends on the AST.
|
|
|
|
fn fmt_ast<'a>(krate: &ast::Crate, codemap: &'a CodeMap) -> ChangeSet<'a> {
|
2015-03-08 23:18:48 -05:00
|
|
|
let mut visitor = FmtVisitor::from_codemap(codemap);
|
2015-03-07 16:46:35 -06:00
|
|
|
visit::walk_crate(&mut visitor, krate);
|
2015-03-08 23:18:48 -05:00
|
|
|
let files = codemap.files.borrow();
|
|
|
|
if let Some(last) = files.last() {
|
|
|
|
visitor.format_missing(last.end_pos);
|
|
|
|
}
|
2015-03-07 16:46:35 -06:00
|
|
|
|
|
|
|
visitor.changes
|
|
|
|
}
|
|
|
|
|
2015-04-21 05:50:43 -05:00
|
|
|
// Formatting done on a char by char or line by line basis.
|
|
|
|
// TODO warn on TODOs and FIXMEs without an issue number
|
|
|
|
// TODO warn on bad license
|
|
|
|
// TODO other stuff for parity with make tidy
|
2015-03-07 16:46:35 -06:00
|
|
|
fn fmt_lines(changes: &mut ChangeSet) {
|
2015-04-23 01:02:55 -05:00
|
|
|
let mut truncate_todo = Vec::new();
|
|
|
|
|
2015-03-07 16:46:35 -06:00
|
|
|
// Iterate over the chars in the change set.
|
|
|
|
for (f, text) in changes.text() {
|
|
|
|
let mut trims = vec![];
|
2015-04-13 20:00:46 -05:00
|
|
|
let mut last_wspace: Option<usize> = None;
|
2015-03-07 16:46:35 -06:00
|
|
|
let mut line_len = 0;
|
|
|
|
let mut cur_line = 1;
|
2015-04-23 01:02:55 -05:00
|
|
|
let mut newline_count = 0;
|
2015-03-07 16:46:35 -06:00
|
|
|
for (c, b) in text.chars() {
|
2015-05-04 07:32:48 -05:00
|
|
|
if c == '\r' { continue; }
|
|
|
|
if c == '\n' {
|
2015-03-07 16:46:35 -06:00
|
|
|
// Check for (and record) trailing whitespace.
|
|
|
|
if let Some(lw) = last_wspace {
|
2015-03-08 23:18:48 -05:00
|
|
|
trims.push((cur_line, lw, b));
|
2015-03-07 16:46:35 -06:00
|
|
|
line_len -= b - lw;
|
|
|
|
}
|
|
|
|
// Check for any line width errors we couldn't correct.
|
2015-05-23 00:02:59 -05:00
|
|
|
if line_len > config!(max_width) {
|
2015-04-21 05:50:43 -05:00
|
|
|
// TODO store the error rather than reporting immediately.
|
2015-03-07 16:46:35 -06:00
|
|
|
println!("Rustfmt couldn't fix (sorry). {}:{}: line longer than {} characters",
|
2015-05-23 00:02:59 -05:00
|
|
|
f, cur_line, config!(max_width));
|
2015-03-07 16:46:35 -06:00
|
|
|
}
|
|
|
|
line_len = 0;
|
|
|
|
cur_line += 1;
|
2015-04-23 01:02:55 -05:00
|
|
|
newline_count += 1;
|
2015-03-07 16:46:35 -06:00
|
|
|
last_wspace = None;
|
|
|
|
} else {
|
2015-04-23 01:02:55 -05:00
|
|
|
newline_count = 0;
|
2015-03-07 16:46:35 -06:00
|
|
|
line_len += 1;
|
|
|
|
if c.is_whitespace() {
|
|
|
|
if last_wspace.is_none() {
|
|
|
|
last_wspace = Some(b);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
last_wspace = None;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-23 01:02:55 -05:00
|
|
|
if newline_count > 1 {
|
2015-04-23 01:30:12 -05:00
|
|
|
debug!("track truncate: {} {} {}", f, text.len, newline_count);
|
2015-05-01 11:17:14 -05:00
|
|
|
truncate_todo.push((f.to_string(), text.len - newline_count + 1))
|
2015-04-23 01:02:55 -05:00
|
|
|
}
|
|
|
|
|
2015-03-08 23:18:48 -05:00
|
|
|
for &(l, _, _) in trims.iter() {
|
2015-04-21 05:50:43 -05:00
|
|
|
// TODO store the error rather than reporting immediately.
|
2015-03-08 23:18:48 -05:00
|
|
|
println!("Rustfmt left trailing whitespace at {}:{} (sorry)", f, l);
|
2015-03-07 16:46:35 -06:00
|
|
|
}
|
|
|
|
}
|
2015-04-23 01:02:55 -05:00
|
|
|
|
|
|
|
for (f, l) in truncate_todo {
|
2015-05-01 11:17:14 -05:00
|
|
|
changes.get_mut(&f).truncate(l);
|
2015-04-23 01:02:55 -05:00
|
|
|
}
|
2015-03-07 16:46:35 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
struct RustFmtCalls {
|
2015-03-09 01:17:14 -05:00
|
|
|
input_path: Option<PathBuf>,
|
2015-04-22 23:22:48 -05:00
|
|
|
write_mode: WriteMode,
|
2015-03-07 16:46:35 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> CompilerCalls<'a> for RustFmtCalls {
|
|
|
|
fn early_callback(&mut self,
|
|
|
|
_: &getopts::Matches,
|
|
|
|
_: &diagnostics::registry::Registry)
|
|
|
|
-> Compilation {
|
|
|
|
Compilation::Continue
|
|
|
|
}
|
|
|
|
|
2015-04-20 23:49:16 -05:00
|
|
|
fn some_input(&mut self,
|
|
|
|
input: Input,
|
|
|
|
input_path: Option<PathBuf>)
|
|
|
|
-> (Input, Option<PathBuf>) {
|
2015-03-07 16:46:35 -06:00
|
|
|
match input_path {
|
|
|
|
Some(ref ip) => self.input_path = Some(ip.clone()),
|
|
|
|
_ => {
|
|
|
|
// FIXME should handle string input and write to stdout or something
|
|
|
|
panic!("No input path");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
(input, input_path)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn no_input(&mut self,
|
|
|
|
_: &getopts::Matches,
|
2015-05-23 00:02:59 -05:00
|
|
|
_: &rustc_config::Options,
|
2015-03-09 01:17:14 -05:00
|
|
|
_: &Option<PathBuf>,
|
|
|
|
_: &Option<PathBuf>,
|
2015-03-07 16:46:35 -06:00
|
|
|
_: &diagnostics::registry::Registry)
|
2015-03-09 01:17:14 -05:00
|
|
|
-> Option<(Input, Option<PathBuf>)> {
|
2015-03-07 16:46:35 -06:00
|
|
|
panic!("No input supplied to RustFmt");
|
|
|
|
}
|
|
|
|
|
|
|
|
fn late_callback(&mut self,
|
|
|
|
_: &getopts::Matches,
|
|
|
|
_: &Session,
|
|
|
|
_: &Input,
|
2015-03-09 01:17:14 -05:00
|
|
|
_: &Option<PathBuf>,
|
|
|
|
_: &Option<PathBuf>)
|
2015-03-07 16:46:35 -06:00
|
|
|
-> Compilation {
|
|
|
|
Compilation::Continue
|
|
|
|
}
|
|
|
|
|
|
|
|
fn build_controller(&mut self, _: &Session) -> driver::CompileController<'a> {
|
2015-04-22 23:22:48 -05:00
|
|
|
let write_mode = self.write_mode;
|
2015-03-07 16:46:35 -06:00
|
|
|
let mut control = driver::CompileController::basic();
|
|
|
|
control.after_parse.stop = Compilation::Stop;
|
2015-05-20 13:20:15 -05:00
|
|
|
control.after_parse.callback = Box::new(move |state| {
|
2015-03-07 16:46:35 -06:00
|
|
|
let krate = state.krate.unwrap();
|
|
|
|
let codemap = state.session.codemap();
|
|
|
|
let mut changes = fmt_ast(krate, codemap);
|
2015-04-23 00:04:07 -05:00
|
|
|
// For some reason, the codemap does not include terminating newlines
|
|
|
|
// so we must add one on for each file. This is sad.
|
|
|
|
changes.append_newlines();
|
2015-03-07 16:46:35 -06:00
|
|
|
fmt_lines(&mut changes);
|
|
|
|
|
2015-04-22 23:22:48 -05:00
|
|
|
let result = changes.write_all_files(write_mode);
|
2015-04-20 23:28:10 -05:00
|
|
|
|
2015-04-22 23:22:48 -05:00
|
|
|
match result {
|
|
|
|
Err(msg) => println!("Error writing files: {}", msg),
|
|
|
|
Ok(result) => {
|
|
|
|
if let WriteMode::Return(callback) = write_mode {
|
|
|
|
callback(result);
|
|
|
|
}
|
|
|
|
}
|
2015-04-20 23:28:10 -05:00
|
|
|
}
|
2015-05-20 13:20:15 -05:00
|
|
|
});
|
2015-03-07 16:46:35 -06:00
|
|
|
|
|
|
|
control
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-23 00:02:59 -05: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.
|
|
|
|
// default_config is a string of toml data to be used to configure rustfmt.
|
|
|
|
pub fn run(args: Vec<String>, write_mode: WriteMode, default_config: &str) {
|
|
|
|
config::set_config(default_config);
|
|
|
|
|
2015-04-22 23:22:48 -05:00
|
|
|
let mut call_ctxt = RustFmtCalls { input_path: None, write_mode: write_mode };
|
2015-04-23 01:10:43 -05:00
|
|
|
rustc_driver::run_compiler(&args, &mut call_ctxt);
|
2015-04-22 23:22:48 -05:00
|
|
|
}
|