2015-03-08 11:46:35 +13: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.
|
|
|
|
|
2015-03-09 17:18:48 +13: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-14 13:00:46 +12:00
|
|
|
// TODO for lint violations of names, emit a refactor script
|
|
|
|
|
2015-03-08 11:46:35 +13:00
|
|
|
#[macro_use]
|
|
|
|
extern crate log;
|
|
|
|
|
2015-10-22 14:37:13 -07:00
|
|
|
extern crate syntex_syntax as syntax;
|
2015-05-23 17:02:59 +12:00
|
|
|
extern crate rustc_serialize;
|
2015-03-08 11:46:35 +13:00
|
|
|
|
2015-04-14 13:12:56 +12:00
|
|
|
extern crate strings;
|
|
|
|
|
2015-09-03 23:38:12 -04:00
|
|
|
extern crate unicode_segmentation;
|
|
|
|
extern crate regex;
|
2015-09-10 18:27:22 -04:00
|
|
|
extern crate diff;
|
|
|
|
extern crate term;
|
2015-09-03 23:38:12 -04:00
|
|
|
|
2015-04-21 21:01:19 +12:00
|
|
|
use syntax::ast;
|
2016-03-01 17:27:19 -05:00
|
|
|
use syntax::codemap::{mk_sp, CodeMap, Span};
|
2016-04-11 19:49:56 +03:00
|
|
|
use syntax::errors::{Handler, DiagnosticBuilder};
|
2016-03-01 17:27:19 -05:00
|
|
|
use syntax::errors::emitter::{ColorConfig, EmitterWriter};
|
2015-10-22 14:37:13 -07:00
|
|
|
use syntax::parse::{self, ParseSess};
|
2015-03-08 11:46:35 +13:00
|
|
|
|
2016-04-06 10:04:29 +05:30
|
|
|
use std::io::{stdout, Write};
|
2015-09-05 22:39:28 -07:00
|
|
|
use std::ops::{Add, Sub};
|
2016-04-02 21:56:37 +03:00
|
|
|
use std::path::{Path, PathBuf};
|
2016-03-01 17:27:19 -05:00
|
|
|
use std::rc::Rc;
|
2015-04-23 16:22:48 +12:00
|
|
|
use std::collections::HashMap;
|
2015-06-09 01:42:29 +02:00
|
|
|
use std::fmt;
|
2015-03-08 11:46:35 +13:00
|
|
|
|
2015-06-09 01:42:29 +02:00
|
|
|
use issues::{BadIssueSeeker, Issue};
|
2015-08-01 15:02:59 +02:00
|
|
|
use filemap::FileMap;
|
2015-04-21 21:01:19 +12:00
|
|
|
use visitor::FmtVisitor;
|
2016-04-15 02:51:50 +03:00
|
|
|
use config::Config;
|
|
|
|
|
|
|
|
pub use self::summary::Summary;
|
2015-03-08 11:46:35 +13:00
|
|
|
|
2015-06-08 20:23:24 +02:00
|
|
|
#[macro_use]
|
|
|
|
mod utils;
|
2015-07-20 23:29:25 +02:00
|
|
|
pub mod config;
|
2015-09-17 20:21:06 +02:00
|
|
|
pub mod filemap;
|
2015-04-21 21:01:19 +12:00
|
|
|
mod visitor;
|
2016-01-13 00:22:30 -05:00
|
|
|
mod checkstyle;
|
2015-05-25 11:03:26 +12:00
|
|
|
mod items;
|
2015-04-21 16:47:15 +12:00
|
|
|
mod missed_spans;
|
|
|
|
mod lists;
|
2015-04-21 21:01:19 +12:00
|
|
|
mod types;
|
|
|
|
mod expr;
|
|
|
|
mod imports;
|
2015-06-09 01:42:29 +02:00
|
|
|
mod issues;
|
2015-06-16 17:29:05 +02:00
|
|
|
mod rewrite;
|
2015-06-23 15:58:58 +02:00
|
|
|
mod string;
|
|
|
|
mod comment;
|
2015-07-26 12:55:25 +02:00
|
|
|
mod modules;
|
2015-09-10 18:27:22 -04:00
|
|
|
pub mod rustfmt_diff;
|
2015-09-11 00:52:16 +02:00
|
|
|
mod chains;
|
2015-09-14 22:53:30 +02:00
|
|
|
mod macros;
|
2015-10-17 15:56:53 +02:00
|
|
|
mod patterns;
|
2016-04-15 02:51:50 +03:00
|
|
|
mod summary;
|
2015-03-08 11:46:35 +13:00
|
|
|
|
|
|
|
const MIN_STRING: usize = 10;
|
2015-04-23 16:22:48 +12:00
|
|
|
// When we get scoped annotations, we should have rustfmt::skip.
|
|
|
|
const SKIP_ANNOTATION: &'static str = "rustfmt_skip";
|
2015-04-21 12:02:30 +12:00
|
|
|
|
2015-10-17 15:56:53 +02:00
|
|
|
pub trait Spanned {
|
|
|
|
fn span(&self) -> Span;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Spanned for ast::Expr {
|
|
|
|
fn span(&self) -> Span {
|
|
|
|
self.span
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Spanned for ast::Pat {
|
|
|
|
fn span(&self) -> Span {
|
|
|
|
self.span
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Spanned for ast::Ty {
|
|
|
|
fn span(&self) -> Span {
|
|
|
|
self.span
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-06 01:11:26 +01:00
|
|
|
impl Spanned for ast::Arg {
|
|
|
|
fn span(&self) -> Span {
|
|
|
|
if items::is_named_arg(self) {
|
|
|
|
mk_sp(self.pat.span.lo, self.ty.span.hi)
|
|
|
|
} else {
|
|
|
|
self.ty.span
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-05 22:39:28 -07:00
|
|
|
#[derive(Copy, Clone, Debug)]
|
|
|
|
pub struct Indent {
|
2015-09-18 21:50:44 -07:00
|
|
|
// Width of the block indent, in characters. Must be a multiple of
|
|
|
|
// Config::tab_spaces.
|
2015-09-26 23:16:11 +02:00
|
|
|
pub block_indent: usize,
|
2015-09-18 21:50:44 -07:00
|
|
|
// Alignment in characters.
|
2015-09-26 23:16:11 +02:00
|
|
|
pub alignment: usize,
|
2015-09-05 22:39:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Indent {
|
|
|
|
pub fn new(block_indent: usize, alignment: usize) -> Indent {
|
2015-09-26 18:29:48 +12:00
|
|
|
Indent {
|
|
|
|
block_indent: block_indent,
|
|
|
|
alignment: alignment,
|
|
|
|
}
|
2015-09-05 22:39:28 -07:00
|
|
|
}
|
|
|
|
|
2015-09-18 21:50:44 -07: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-05 22:39:28 -07:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2015-09-18 21:50:44 -07:00
|
|
|
pub fn block_unindent(mut self, config: &Config) -> Indent {
|
|
|
|
self.block_indent -= config.tab_spaces;
|
2015-09-05 22:39:28 -07: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 13:50:24 +02:00
|
|
|
(self.block_indent / config.tab_spaces, self.alignment)
|
2015-09-05 22:39:28 -07: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-24 11:01:01 +12:00
|
|
|
Indent::new(self.block_indent - rhs.block_indent,
|
|
|
|
self.alignment - rhs.alignment)
|
2015-09-05 22:39:28 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Add<usize> for Indent {
|
|
|
|
type Output = Indent;
|
|
|
|
|
|
|
|
fn add(self, rhs: usize) -> Indent {
|
2015-09-18 21:50:44 -07:00
|
|
|
Indent::new(self.block_indent, self.alignment + rhs)
|
2015-09-05 22:39:28 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-24 12:19:58 +02:00
|
|
|
impl Sub<usize> for Indent {
|
|
|
|
type Output = Indent;
|
|
|
|
|
|
|
|
fn sub(self, rhs: usize) -> Indent {
|
|
|
|
Indent::new(self.block_indent, self.alignment - rhs)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-17 20:21:06 +02:00
|
|
|
pub enum ErrorKind {
|
2015-06-23 13:26:04 +02:00
|
|
|
// Line has exceeded character limit
|
2015-06-09 01:42:29 +02: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 {
|
2015-11-14 21:57:31 +01:00
|
|
|
ErrorKind::LineOverflow => write!(fmt, "line exceeded maximum length"),
|
|
|
|
ErrorKind::TrailingWhitespace => write!(fmt, "left behind trailing whitespace"),
|
|
|
|
ErrorKind::BadIssue(issue) => write!(fmt, "found {}", issue),
|
2015-06-09 01:42:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-17 20:21:06 +02:00
|
|
|
// Formatting errors that are identified *after* rustfmt has run.
|
|
|
|
pub struct FormattingError {
|
2015-06-09 01:42:29 +02:00
|
|
|
line: u32,
|
|
|
|
kind: ErrorKind,
|
|
|
|
}
|
|
|
|
|
2015-07-16 14:17:07 +12: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 20:21:06 +02:00
|
|
|
pub struct FormatReport {
|
|
|
|
// Maps stringified file paths to their associated formatting errors.
|
2015-06-09 01:42:29 +02:00
|
|
|
file_error_map: HashMap<String, Vec<FormattingError>>,
|
|
|
|
}
|
|
|
|
|
2015-09-17 20:21:06 +02:00
|
|
|
impl FormatReport {
|
2016-04-15 02:51:50 +03:00
|
|
|
fn new() -> FormatReport {
|
|
|
|
FormatReport { file_error_map: HashMap::new() }
|
|
|
|
}
|
|
|
|
|
2015-09-17 20:21:06 +02:00
|
|
|
pub fn warning_count(&self) -> usize {
|
|
|
|
self.file_error_map.iter().map(|(_, ref errors)| errors.len()).fold(0, |acc, x| acc + x)
|
|
|
|
}
|
2016-04-15 02:51:50 +03:00
|
|
|
|
|
|
|
pub fn has_warnings(&self) -> bool {
|
|
|
|
self.warning_count() > 0
|
|
|
|
}
|
2015-09-17 20:21:06 +02:00
|
|
|
}
|
|
|
|
|
2015-06-09 01:42:29 +02:00
|
|
|
impl fmt::Display for FormatReport {
|
|
|
|
// Prints all the formatting errors.
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> Result<(), fmt::Error> {
|
2015-09-04 23:39:33 +02:00
|
|
|
for (file, errors) in &self.file_error_map {
|
2015-06-09 01:42:29 +02:00
|
|
|
for error in errors {
|
|
|
|
try!(write!(fmt,
|
2015-07-16 14:17:07 +12:00
|
|
|
"{} {}:{}: {} {}\n",
|
|
|
|
error.msg_prefix(),
|
2015-06-09 01:42:29 +02:00
|
|
|
file,
|
|
|
|
error.line,
|
2015-07-16 14:17:07 +12:00
|
|
|
error.kind,
|
|
|
|
error.msg_suffix()));
|
2015-06-09 01:42:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-08 11:46:35 +13:00
|
|
|
// Formatting which depends on the AST.
|
2016-04-11 19:49:56 +03:00
|
|
|
fn format_ast(krate: &ast::Crate,
|
|
|
|
parse_session: &ParseSess,
|
|
|
|
main_file: &Path,
|
|
|
|
config: &Config)
|
|
|
|
-> FileMap {
|
2015-08-01 15:02:59 +02:00
|
|
|
let mut file_map = FileMap::new();
|
2016-04-28 01:38:04 -04:00
|
|
|
// We always skip children for the "Plain" write mode, since there is
|
|
|
|
// nothing to distinguish the nested module contents.
|
|
|
|
let skip_children = config.skip_children || config.write_mode == config::WriteMode::Plain;
|
2015-10-27 23:41:32 -07:00
|
|
|
for (path, module) in modules::list_files(krate, parse_session.codemap()) {
|
2016-04-28 01:38:04 -04:00
|
|
|
if skip_children && path.as_path() != main_file {
|
2015-12-23 17:25:49 +03:00
|
|
|
continue;
|
|
|
|
}
|
2015-07-26 14:05:43 +02:00
|
|
|
let path = path.to_str().unwrap();
|
2015-11-15 15:41:41 +09:00
|
|
|
if config.verbose {
|
|
|
|
println!("Formatting {}", path);
|
|
|
|
}
|
2016-02-05 15:59:41 -05:00
|
|
|
let mut visitor = FmtVisitor::from_codemap(parse_session, config);
|
2015-11-23 15:22:00 +13:00
|
|
|
visitor.format_separate_mod(module);
|
2015-08-01 15:02:59 +02:00
|
|
|
file_map.insert(path.to_owned(), visitor.buffer);
|
2015-07-26 12:55:25 +02:00
|
|
|
}
|
2015-08-01 15:02:59 +02:00
|
|
|
file_map
|
2015-03-08 11:46:35 +13:00
|
|
|
}
|
|
|
|
|
2015-04-21 22:50:43 +12:00
|
|
|
// Formatting done on a char by char or line by line basis.
|
2015-09-17 20:21:06 +02:00
|
|
|
// TODO(#209) warn on bad license
|
|
|
|
// TODO(#20) other stuff for parity with make tidy
|
2016-04-05 01:20:14 +03:00
|
|
|
fn format_lines(file_map: &mut FileMap, config: &Config) -> FormatReport {
|
2015-04-23 18:02:55 +12:00
|
|
|
let mut truncate_todo = Vec::new();
|
2016-04-15 02:51:50 +03:00
|
|
|
let mut report = FormatReport::new();
|
2015-04-23 18:02:55 +12:00
|
|
|
|
2015-08-01 15:02:59 +02:00
|
|
|
// Iterate over the chars in the file map.
|
|
|
|
for (f, text) in file_map.iter() {
|
2015-03-08 11:46:35 +13:00
|
|
|
let mut trims = vec![];
|
2015-04-14 13:00:46 +12:00
|
|
|
let mut last_wspace: Option<usize> = None;
|
2015-03-08 11:46:35 +13:00
|
|
|
let mut line_len = 0;
|
|
|
|
let mut cur_line = 1;
|
2015-04-23 18:02:55 +12:00
|
|
|
let mut newline_count = 0;
|
2015-06-09 01:42:29 +02:00
|
|
|
let mut errors = vec![];
|
2015-07-19 23:39:48 +02:00
|
|
|
let mut issue_seeker = BadIssueSeeker::new(config.report_todo, config.report_fixme);
|
2015-06-09 01:42:29 +02:00
|
|
|
|
2015-03-08 11:46:35 +13:00
|
|
|
for (c, b) in text.chars() {
|
2015-07-19 23:39:48 +02:00
|
|
|
if c == '\r' {
|
2016-01-10 16:25:31 +01:00
|
|
|
line_len += c.len_utf8();
|
2015-08-19 15:15:54 +12:00
|
|
|
continue;
|
2015-07-19 23:39:48 +02:00
|
|
|
}
|
2015-06-09 01:42:29 +02:00
|
|
|
|
|
|
|
// Add warnings for bad todos/ fixmes
|
|
|
|
if let Some(issue) = issue_seeker.inspect(c) {
|
2015-09-26 18:29:48 +12:00
|
|
|
errors.push(FormattingError {
|
|
|
|
line: cur_line,
|
|
|
|
kind: ErrorKind::BadIssue(issue),
|
|
|
|
});
|
2015-06-09 01:42:29 +02:00
|
|
|
}
|
|
|
|
|
2015-05-04 14:32:48 +02:00
|
|
|
if c == '\n' {
|
2015-03-08 11:46:35 +13:00
|
|
|
// Check for (and record) trailing whitespace.
|
|
|
|
if let Some(lw) = last_wspace {
|
2015-03-09 17:18:48 +13:00
|
|
|
trims.push((cur_line, lw, b));
|
2015-03-08 11:46:35 +13:00
|
|
|
line_len -= b - lw;
|
|
|
|
}
|
|
|
|
// Check for any line width errors we couldn't correct.
|
2015-06-23 13:26:04 +02:00
|
|
|
if line_len > config.max_width {
|
2015-09-26 18:29:48 +12:00
|
|
|
errors.push(FormattingError {
|
|
|
|
line: cur_line,
|
|
|
|
kind: ErrorKind::LineOverflow,
|
|
|
|
});
|
2015-03-08 11:46:35 +13:00
|
|
|
}
|
|
|
|
line_len = 0;
|
|
|
|
cur_line += 1;
|
2015-04-23 18:02:55 +12:00
|
|
|
newline_count += 1;
|
2015-03-08 11:46:35 +13:00
|
|
|
last_wspace = None;
|
|
|
|
} else {
|
2015-04-23 18:02:55 +12:00
|
|
|
newline_count = 0;
|
2016-01-10 16:25:31 +01:00
|
|
|
line_len += c.len_utf8();
|
2015-03-08 11:46:35 +13:00
|
|
|
if c.is_whitespace() {
|
|
|
|
if last_wspace.is_none() {
|
|
|
|
last_wspace = Some(b);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
last_wspace = None;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-23 18:02:55 +12:00
|
|
|
if newline_count > 1 {
|
2015-04-23 18:30:12 +12:00
|
|
|
debug!("track truncate: {} {} {}", f, text.len, newline_count);
|
2015-06-09 01:42:29 +02:00
|
|
|
truncate_todo.push((f.to_owned(), text.len - newline_count + 1))
|
2015-04-23 18:02:55 +12:00
|
|
|
}
|
|
|
|
|
2015-09-04 23:39:33 +02:00
|
|
|
for &(l, _, _) in &trims {
|
2015-09-26 18:29:48 +12:00
|
|
|
errors.push(FormattingError {
|
|
|
|
line: l,
|
|
|
|
kind: ErrorKind::TrailingWhitespace,
|
|
|
|
});
|
2015-03-08 11:46:35 +13:00
|
|
|
}
|
2015-06-09 01:42:29 +02:00
|
|
|
|
|
|
|
report.file_error_map.insert(f.to_owned(), errors);
|
2015-03-08 11:46:35 +13:00
|
|
|
}
|
2015-04-23 18:02:55 +12:00
|
|
|
|
|
|
|
for (f, l) in truncate_todo {
|
2015-08-01 15:02:59 +02:00
|
|
|
file_map.get_mut(&f).unwrap().truncate(l);
|
2015-04-23 18:02:55 +12:00
|
|
|
}
|
2015-06-09 01:42:29 +02:00
|
|
|
|
|
|
|
report
|
2015-03-08 11:46:35 +13:00
|
|
|
}
|
|
|
|
|
2016-04-28 07:08:44 +12:00
|
|
|
fn parse_input(input: Input,
|
|
|
|
parse_session: &ParseSess)
|
|
|
|
-> Result<ast::Crate, Option<DiagnosticBuilder>> {
|
|
|
|
let result = match input {
|
2016-04-11 19:49:56 +03:00
|
|
|
Input::File(file) => parse::parse_crate_from_file(&file, Vec::new(), &parse_session),
|
|
|
|
Input::Text(text) => {
|
|
|
|
parse::parse_crate_from_source_str("stdin".to_owned(), text, Vec::new(), &parse_session)
|
|
|
|
}
|
2016-04-28 07:08:44 +12:00
|
|
|
};
|
|
|
|
|
|
|
|
// Bail out if the parser recovered from an error.
|
|
|
|
if parse_session.span_diagnostic.has_errors() {
|
|
|
|
return Err(None);
|
2016-04-15 02:51:50 +03:00
|
|
|
}
|
2016-04-28 07:08:44 +12:00
|
|
|
|
|
|
|
result.map_err(|e| Some(e))
|
2015-11-02 20:45:45 +01:00
|
|
|
}
|
|
|
|
|
2016-04-15 02:51:50 +03:00
|
|
|
pub fn format_input(input: Input, config: &Config) -> (Summary, FileMap, FormatReport) {
|
|
|
|
let mut summary = Summary::new();
|
2016-03-01 17:27:19 -05:00
|
|
|
let codemap = Rc::new(CodeMap::new());
|
|
|
|
|
|
|
|
let tty_handler = Handler::with_tty_emitter(ColorConfig::Auto,
|
|
|
|
None,
|
|
|
|
true,
|
|
|
|
false,
|
|
|
|
codemap.clone());
|
|
|
|
let mut parse_session = ParseSess::with_span_handler(tty_handler, codemap.clone());
|
|
|
|
|
2016-04-11 19:49:56 +03:00
|
|
|
let main_file = match input {
|
|
|
|
Input::File(ref file) => file.clone(),
|
|
|
|
Input::Text(..) => PathBuf::from("stdin"),
|
|
|
|
};
|
|
|
|
|
|
|
|
let krate = match parse_input(input, &parse_session) {
|
|
|
|
Ok(krate) => krate,
|
2016-04-28 07:08:44 +12:00
|
|
|
Err(diagnostic) => {
|
|
|
|
if let Some(mut diagnostic) = diagnostic {
|
|
|
|
diagnostic.emit();
|
|
|
|
}
|
2016-04-15 02:51:50 +03:00
|
|
|
summary.add_parsing_error();
|
|
|
|
return (summary, FileMap::new(), FormatReport::new());
|
2016-04-11 19:49:56 +03:00
|
|
|
}
|
|
|
|
};
|
2015-10-27 23:41:32 -07:00
|
|
|
|
2016-04-15 02:51:50 +03:00
|
|
|
if parse_session.span_diagnostic.has_errors() {
|
|
|
|
summary.add_parsing_error();
|
|
|
|
}
|
|
|
|
|
2015-10-27 23:41:32 -07:00
|
|
|
// Suppress error output after parsing.
|
2016-03-01 17:27:19 -05:00
|
|
|
let silent_emitter = Box::new(EmitterWriter::new(Box::new(Vec::new()), None, codemap.clone()));
|
|
|
|
parse_session.span_diagnostic = Handler::with_emitter(true, false, silent_emitter);
|
2015-10-27 23:41:32 -07:00
|
|
|
|
2016-04-11 19:49:56 +03:00
|
|
|
let mut file_map = format_ast(&krate, &parse_session, &main_file, config);
|
2015-03-08 11:46:35 +13:00
|
|
|
|
2015-10-22 14:37:13 -07: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);
|
2015-09-16 21:52:32 +02:00
|
|
|
|
2016-04-05 01:20:14 +03:00
|
|
|
let report = format_lines(&mut file_map, config);
|
2016-04-15 02:51:50 +03:00
|
|
|
if report.has_warnings() {
|
|
|
|
summary.add_formatting_error();
|
|
|
|
}
|
|
|
|
(summary, file_map, report)
|
2016-04-02 21:56:37 +03:00
|
|
|
}
|
2015-09-16 21:52:32 +02:00
|
|
|
|
2016-04-02 21:56:37 +03:00
|
|
|
pub enum Input {
|
|
|
|
File(PathBuf),
|
|
|
|
Text(String),
|
2015-04-23 16:22:48 +12:00
|
|
|
}
|
2015-11-02 20:45:45 +01:00
|
|
|
|
2016-04-15 02:51:50 +03:00
|
|
|
pub fn run(input: Input, config: &Config) -> Summary {
|
|
|
|
let (mut summary, file_map, report) = format_input(input, config);
|
2016-04-15 17:52:21 +03:00
|
|
|
if report.has_warnings() {
|
|
|
|
msg!("{}", report);
|
|
|
|
}
|
2015-11-02 20:45:45 +01:00
|
|
|
|
2016-01-19 00:02:21 -05:00
|
|
|
let mut out = stdout();
|
2016-04-02 21:56:37 +03:00
|
|
|
let write_result = filemap::write_all_files(&file_map, &mut out, config);
|
2015-11-02 20:45:45 +01:00
|
|
|
|
|
|
|
if let Err(msg) = write_result {
|
2016-04-11 19:49:56 +03:00
|
|
|
msg!("Error writing files: {}", msg);
|
2016-04-15 02:51:50 +03:00
|
|
|
summary.add_operational_error();
|
2015-11-02 20:45:45 +01:00
|
|
|
}
|
2016-04-15 02:51:50 +03:00
|
|
|
|
|
|
|
summary
|
2015-11-02 20:45:45 +01:00
|
|
|
}
|