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)]
|
2015-08-15 23:43:59 -05:00
|
|
|
#![feature(custom_attribute)]
|
2015-09-09 16:17:31 -05:00
|
|
|
#![feature(slice_splits)]
|
2015-10-01 03:58:44 -05:00
|
|
|
#![feature(slice_patterns)]
|
2015-09-14 15:53:30 -05:00
|
|
|
#![feature(catch_panic)]
|
2015-08-15 23:43:59 -05:00
|
|
|
#![allow(unused_attributes)]
|
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-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-09-03 22:38:12 -05:00
|
|
|
extern crate unicode_segmentation;
|
|
|
|
extern crate regex;
|
2015-09-10 17:27:22 -05:00
|
|
|
extern crate diff;
|
|
|
|
extern crate term;
|
2015-09-03 22:38:12 -05:00
|
|
|
|
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-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;
|
|
|
|
|
2015-09-06 00:39:28 -05:00
|
|
|
use std::ops::{Add, Sub};
|
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-06-08 18:42:29 -05:00
|
|
|
use std::fmt;
|
2015-08-18 14:10:30 -05:00
|
|
|
use std::str::FromStr;
|
2015-09-16 14:52:32 -05:00
|
|
|
use std::rc::Rc;
|
|
|
|
use std::cell::RefCell;
|
2015-03-07 16:46:35 -06:00
|
|
|
|
2015-06-08 18:42:29 -05:00
|
|
|
use issues::{BadIssueSeeker, Issue};
|
2015-08-01 08:02:59 -05:00
|
|
|
use filemap::FileMap;
|
2015-04-21 04:01:19 -05:00
|
|
|
use visitor::FmtVisitor;
|
2015-06-23 06:26:04 -05:00
|
|
|
use config::Config;
|
2015-03-07 16:46:35 -06:00
|
|
|
|
2015-06-08 13:23:24 -05:00
|
|
|
#[macro_use]
|
|
|
|
mod utils;
|
2015-07-20 16:29:25 -05:00
|
|
|
pub mod config;
|
2015-09-17 13:21:06 -05:00
|
|
|
pub mod filemap;
|
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-04-21 04:01:19 -05:00
|
|
|
mod types;
|
|
|
|
mod expr;
|
|
|
|
mod imports;
|
2015-06-08 18:42:29 -05:00
|
|
|
mod issues;
|
2015-06-16 10:29:05 -05:00
|
|
|
mod rewrite;
|
2015-06-23 08:58:58 -05:00
|
|
|
mod string;
|
|
|
|
mod comment;
|
2015-07-26 05:55:25 -05:00
|
|
|
mod modules;
|
2015-09-10 17:27:22 -05:00
|
|
|
pub mod rustfmt_diff;
|
2015-09-10 17:52:16 -05:00
|
|
|
mod chains;
|
2015-09-14 15:53:30 -05:00
|
|
|
mod macros;
|
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-09-06 00:39:28 -05:00
|
|
|
#[derive(Copy, Clone, Debug)]
|
|
|
|
pub struct Indent {
|
2015-09-18 23:50:44 -05:00
|
|
|
// Width of the block indent, in characters. Must be a multiple of
|
|
|
|
// Config::tab_spaces.
|
2015-09-26 16:16:11 -05:00
|
|
|
pub block_indent: usize,
|
2015-09-18 23:50:44 -05:00
|
|
|
// Alignment in characters.
|
2015-09-26 16:16:11 -05:00
|
|
|
pub alignment: usize,
|
2015-09-06 00:39:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Indent {
|
|
|
|
pub fn new(block_indent: usize, alignment: usize) -> Indent {
|
2015-09-26 01:29:48 -05:00
|
|
|
Indent {
|
|
|
|
block_indent: block_indent,
|
|
|
|
alignment: alignment,
|
|
|
|
}
|
2015-09-06 00:39:28 -05:00
|
|
|
}
|
|
|
|
|
2015-09-18 23:50:44 -05:00
|
|
|
pub fn empty() -> Indent {
|
|
|
|
Indent::new(0, 0)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn block_indent(mut self, config: &Config) -> Indent {
|
|
|
|
self.block_indent += config.tab_spaces;
|
2015-09-06 00:39:28 -05:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2015-09-18 23:50:44 -05:00
|
|
|
pub fn block_unindent(mut self, config: &Config) -> Indent {
|
|
|
|
self.block_indent -= config.tab_spaces;
|
2015-09-06 00:39:28 -05:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn width(&self) -> usize {
|
|
|
|
self.block_indent + self.alignment
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn to_string(&self, config: &Config) -> String {
|
|
|
|
let (num_tabs, num_spaces) = if config.hard_tabs {
|
2015-10-02 06:50:24 -05:00
|
|
|
(self.block_indent / config.tab_spaces, self.alignment)
|
2015-09-06 00:39:28 -05:00
|
|
|
} else {
|
|
|
|
(0, self.block_indent + self.alignment)
|
|
|
|
};
|
|
|
|
let num_chars = num_tabs + num_spaces;
|
|
|
|
let mut indent = String::with_capacity(num_chars);
|
|
|
|
for _ in 0..num_tabs {
|
|
|
|
indent.push('\t')
|
|
|
|
}
|
|
|
|
for _ in 0..num_spaces {
|
|
|
|
indent.push(' ')
|
|
|
|
}
|
|
|
|
indent
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Add for Indent {
|
|
|
|
type Output = Indent;
|
|
|
|
|
|
|
|
fn add(self, rhs: Indent) -> Indent {
|
|
|
|
Indent {
|
|
|
|
block_indent: self.block_indent + rhs.block_indent,
|
|
|
|
alignment: self.alignment + rhs.alignment,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Sub for Indent {
|
|
|
|
type Output = Indent;
|
|
|
|
|
|
|
|
fn sub(self, rhs: Indent) -> Indent {
|
2015-09-23 18:01:01 -05:00
|
|
|
Indent::new(self.block_indent - rhs.block_indent,
|
|
|
|
self.alignment - rhs.alignment)
|
2015-09-06 00:39:28 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Add<usize> for Indent {
|
|
|
|
type Output = Indent;
|
|
|
|
|
|
|
|
fn add(self, rhs: usize) -> Indent {
|
2015-09-18 23:50:44 -05:00
|
|
|
Indent::new(self.block_indent, self.alignment + rhs)
|
2015-09-06 00:39:28 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-22 23:22:48 -05:00
|
|
|
#[derive(Copy, Clone)]
|
2015-04-20 23:28:10 -05:00
|
|
|
pub enum WriteMode {
|
2015-08-18 14:10:30 -05:00
|
|
|
// Backups the original file and overwrites the orignal.
|
|
|
|
Replace,
|
|
|
|
// Overwrites original file without backup.
|
2015-04-20 23:28:10 -05:00
|
|
|
Overwrite,
|
2015-08-18 14:10:30 -05:00
|
|
|
// str is the extension of the new file.
|
2015-04-20 23:28:10 -05:00
|
|
|
NewFile(&'static str),
|
|
|
|
// Write the output to stdout.
|
|
|
|
Display,
|
2015-09-10 17:27:22 -05:00
|
|
|
// Write the diff to stdout.
|
|
|
|
Diff,
|
2015-08-19 14:41:19 -05:00
|
|
|
// Return the result as a mapping from filenames to Strings.
|
2015-09-17 13:21:06 -05:00
|
|
|
Return,
|
2015-04-20 23:28:10 -05:00
|
|
|
}
|
|
|
|
|
2015-08-18 14:10:30 -05: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-09-10 17:27:22 -05:00
|
|
|
"diff" => Ok(WriteMode::Diff),
|
2015-08-15 22:58:17 -05:00
|
|
|
_ => Err(()),
|
2015-08-18 14:10:30 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-17 13:21:06 -05:00
|
|
|
pub enum ErrorKind {
|
2015-06-23 06:26:04 -05:00
|
|
|
// Line has exceeded character limit
|
2015-06-08 18:42:29 -05:00
|
|
|
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")
|
2015-07-15 21:17:07 -05:00
|
|
|
}
|
2015-06-08 18:42:29 -05:00
|
|
|
ErrorKind::TrailingWhitespace => {
|
|
|
|
write!(fmt, "left behind trailing whitespace")
|
2015-07-15 21:17:07 -05:00
|
|
|
}
|
2015-06-08 18:42:29 -05:00
|
|
|
ErrorKind::BadIssue(issue) => {
|
|
|
|
write!(fmt, "found {}", issue)
|
2015-07-15 21:17:07 -05:00
|
|
|
}
|
2015-06-08 18:42:29 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-17 13:21:06 -05:00
|
|
|
// Formatting errors that are identified *after* rustfmt has run.
|
|
|
|
pub struct FormattingError {
|
2015-06-08 18:42:29 -05:00
|
|
|
line: u32,
|
|
|
|
kind: ErrorKind,
|
|
|
|
}
|
|
|
|
|
2015-07-15 21:17:07 -05:00
|
|
|
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(_) => "",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-17 13:21:06 -05:00
|
|
|
pub struct FormatReport {
|
|
|
|
// Maps stringified file paths to their associated formatting errors.
|
2015-06-08 18:42:29 -05:00
|
|
|
file_error_map: HashMap<String, Vec<FormattingError>>,
|
|
|
|
}
|
|
|
|
|
2015-09-17 13:21:06 -05:00
|
|
|
impl FormatReport {
|
|
|
|
pub fn warning_count(&self) -> usize {
|
|
|
|
self.file_error_map.iter().map(|(_, ref errors)| errors.len()).fold(0, |acc, x| acc + x)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-08 18:42:29 -05:00
|
|
|
impl fmt::Display for FormatReport {
|
|
|
|
// Prints all the formatting errors.
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> Result<(), fmt::Error> {
|
2015-09-04 16:39:33 -05:00
|
|
|
for (file, errors) in &self.file_error_map {
|
2015-06-08 18:42:29 -05:00
|
|
|
for error in errors {
|
|
|
|
try!(write!(fmt,
|
2015-07-15 21:17:07 -05:00
|
|
|
"{} {}:{}: {} {}\n",
|
|
|
|
error.msg_prefix(),
|
2015-06-08 18:42:29 -05:00
|
|
|
file,
|
|
|
|
error.line,
|
2015-07-15 21:17:07 -05:00
|
|
|
error.kind,
|
|
|
|
error.msg_suffix()));
|
2015-06-08 18:42:29 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-07 16:46:35 -06:00
|
|
|
// Formatting which depends on the AST.
|
2015-08-01 08:02:59 -05:00
|
|
|
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 07:05:43 -05:00
|
|
|
let path = path.to_str().unwrap();
|
|
|
|
let mut visitor = FmtVisitor::from_codemap(codemap, config);
|
|
|
|
visitor.format_separate_mod(module, path);
|
2015-08-01 08:02:59 -05:00
|
|
|
file_map.insert(path.to_owned(), visitor.buffer);
|
2015-07-26 05:55:25 -05:00
|
|
|
}
|
2015-08-01 08:02:59 -05:00
|
|
|
file_map
|
2015-03-07 16:46:35 -06:00
|
|
|
}
|
|
|
|
|
2015-04-21 05:50:43 -05:00
|
|
|
// Formatting done on a char by char or line by line basis.
|
2015-09-17 13:21:06 -05:00
|
|
|
// TODO(#209) warn on bad license
|
|
|
|
// TODO(#20) other stuff for parity with make tidy
|
|
|
|
pub fn fmt_lines(file_map: &mut FileMap, config: &Config) -> FormatReport {
|
2015-04-23 01:02:55 -05:00
|
|
|
let mut truncate_todo = Vec::new();
|
2015-06-08 18:42:29 -05:00
|
|
|
let mut report = FormatReport { file_error_map: HashMap::new() };
|
2015-04-23 01:02:55 -05:00
|
|
|
|
2015-08-01 08:02:59 -05:00
|
|
|
// Iterate over the chars in the file map.
|
|
|
|
for (f, text) in file_map.iter() {
|
2015-03-07 16:46:35 -06:00
|
|
|
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-06-08 18:42:29 -05:00
|
|
|
let mut errors = vec![];
|
2015-07-19 16:39:48 -05:00
|
|
|
let mut issue_seeker = BadIssueSeeker::new(config.report_todo, config.report_fixme);
|
2015-06-08 18:42:29 -05:00
|
|
|
|
2015-03-07 16:46:35 -06:00
|
|
|
for (c, b) in text.chars() {
|
2015-07-19 16:39:48 -05:00
|
|
|
if c == '\r' {
|
2015-08-18 22:15:54 -05:00
|
|
|
continue;
|
2015-07-19 16:39:48 -05:00
|
|
|
}
|
2015-06-08 18:42:29 -05:00
|
|
|
|
|
|
|
// Add warnings for bad todos/ fixmes
|
|
|
|
if let Some(issue) = issue_seeker.inspect(c) {
|
2015-09-26 01:29:48 -05:00
|
|
|
errors.push(FormattingError {
|
|
|
|
line: cur_line,
|
|
|
|
kind: ErrorKind::BadIssue(issue),
|
|
|
|
});
|
2015-06-08 18:42:29 -05:00
|
|
|
}
|
|
|
|
|
2015-05-04 07:32:48 -05:00
|
|
|
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-06-23 06:26:04 -05:00
|
|
|
if line_len > config.max_width {
|
2015-09-26 01:29:48 -05:00
|
|
|
errors.push(FormattingError {
|
|
|
|
line: cur_line,
|
|
|
|
kind: ErrorKind::LineOverflow,
|
|
|
|
});
|
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-06-08 18:42:29 -05:00
|
|
|
truncate_todo.push((f.to_owned(), text.len - newline_count + 1))
|
2015-04-23 01:02:55 -05:00
|
|
|
}
|
|
|
|
|
2015-09-04 16:39:33 -05:00
|
|
|
for &(l, _, _) in &trims {
|
2015-09-26 01:29:48 -05:00
|
|
|
errors.push(FormattingError {
|
|
|
|
line: l,
|
|
|
|
kind: ErrorKind::TrailingWhitespace,
|
|
|
|
});
|
2015-03-07 16:46:35 -06:00
|
|
|
}
|
2015-06-08 18:42:29 -05:00
|
|
|
|
|
|
|
report.file_error_map.insert(f.to_owned(), errors);
|
2015-03-07 16:46:35 -06:00
|
|
|
}
|
2015-04-23 01:02:55 -05:00
|
|
|
|
|
|
|
for (f, l) in truncate_todo {
|
2015-08-01 08:02:59 -05:00
|
|
|
file_map.get_mut(&f).unwrap().truncate(l);
|
2015-04-23 01:02:55 -05:00
|
|
|
}
|
2015-06-08 18:42:29 -05:00
|
|
|
|
|
|
|
report
|
2015-03-07 16:46:35 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
struct RustFmtCalls {
|
2015-09-17 13:21:06 -05:00
|
|
|
config: Rc<Config>,
|
2015-09-16 14:52:32 -05:00
|
|
|
result: Rc<RefCell<Option<FileMap>>>,
|
2015-03-07 16:46:35 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> CompilerCalls<'a> for RustFmtCalls {
|
|
|
|
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 build_controller(&mut self, _: &Session) -> driver::CompileController<'a> {
|
2015-09-16 14:52:32 -05:00
|
|
|
let result = self.result.clone();
|
2015-09-17 13:21:06 -05:00
|
|
|
let config = self.config.clone();
|
2015-06-23 06:26:04 -05:00
|
|
|
|
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();
|
2015-08-01 08:02:59 -05:00
|
|
|
let mut file_map = fmt_ast(krate, codemap, &*config);
|
2015-09-14 15:53:30 -05:00
|
|
|
// For some reason, the codemap does not include terminating
|
|
|
|
// newlines so we must add one on for each file. This is sad.
|
2015-08-01 08:02:59 -05:00
|
|
|
filemap::append_newlines(&mut file_map);
|
2015-04-20 23:28:10 -05:00
|
|
|
|
2015-09-16 14:52:32 -05:00
|
|
|
*result.borrow_mut() = Some(file_map);
|
2015-05-20 13:20:15 -05:00
|
|
|
});
|
2015-03-07 16:46:35 -06:00
|
|
|
|
|
|
|
control
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-17 13:21:06 -05:00
|
|
|
pub fn format(args: Vec<String>, config: &Config) -> FileMap {
|
2015-09-16 14:52:32 -05:00
|
|
|
let result = Rc::new(RefCell::new(None));
|
2015-09-17 13:21:06 -05:00
|
|
|
|
2015-09-16 14:52:32 -05:00
|
|
|
{
|
2015-09-17 13:21:06 -05:00
|
|
|
let config = Rc::new(config.clone());
|
2015-09-26 01:29:48 -05:00
|
|
|
let mut call_ctxt = RustFmtCalls {
|
|
|
|
config: config,
|
|
|
|
result: result.clone(),
|
|
|
|
};
|
2015-09-16 14:52:32 -05:00
|
|
|
rustc_driver::run_compiler(&args, &mut call_ctxt);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Peel the union.
|
|
|
|
Rc::try_unwrap(result).ok().unwrap().into_inner().unwrap()
|
|
|
|
}
|
|
|
|
|
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.
|
2015-09-17 13:21:06 -05:00
|
|
|
pub fn run(args: Vec<String>, write_mode: WriteMode, config: &Config) {
|
2015-09-16 14:52:32 -05:00
|
|
|
let mut result = format(args, config);
|
|
|
|
|
2015-09-17 13:21:06 -05:00
|
|
|
println!("{}", fmt_lines(&mut result, config));
|
2015-09-16 14:52:32 -05:00
|
|
|
|
2015-09-17 13:21:06 -05:00
|
|
|
let write_result = filemap::write_all_files(&result, write_mode, config);
|
2015-09-16 14:52:32 -05:00
|
|
|
|
2015-09-17 13:21:06 -05:00
|
|
|
if let Err(msg) = write_result {
|
|
|
|
println!("Error writing files: {}", msg);
|
2015-09-16 14:52:32 -05:00
|
|
|
}
|
2015-04-22 23:22:48 -05:00
|
|
|
}
|