2015-05-01 11:43:36 -05: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-10-22 16:35:42 -05:00
|
|
|
|
2015-05-03 17:12:39 -05:00
|
|
|
#![cfg(not(test))]
|
2015-05-01 11:43:36 -05:00
|
|
|
|
2015-07-31 18:21:44 -05:00
|
|
|
#[macro_use]
|
|
|
|
extern crate log;
|
2015-05-01 11:43:36 -05:00
|
|
|
extern crate rustfmt;
|
2015-07-31 18:21:44 -05:00
|
|
|
extern crate toml;
|
2015-10-22 16:34:05 -05:00
|
|
|
extern crate env_logger;
|
2015-10-22 16:38:16 -05:00
|
|
|
extern crate getopts;
|
2015-05-01 11:43:36 -05:00
|
|
|
|
|
|
|
use rustfmt::{WriteMode, run};
|
2015-09-14 15:43:55 -05:00
|
|
|
use rustfmt::config::Config;
|
2015-05-01 11:43:36 -05:00
|
|
|
|
2015-07-31 18:21:44 -05:00
|
|
|
use std::env;
|
2015-10-22 16:35:42 -05:00
|
|
|
use std::fs::{self, File};
|
2015-07-31 18:21:44 -05:00
|
|
|
use std::io::{self, Read};
|
|
|
|
use std::path::PathBuf;
|
2015-10-22 16:38:16 -05:00
|
|
|
|
|
|
|
use getopts::Options;
|
2015-05-23 00:02:59 -05:00
|
|
|
|
2015-07-31 18:21:44 -05:00
|
|
|
// Try to find a project file in the current directory and its parents.
|
|
|
|
fn lookup_project_file() -> io::Result<PathBuf> {
|
|
|
|
let mut current = try!(env::current_dir());
|
|
|
|
loop {
|
|
|
|
let config_file = current.join("rustfmt.toml");
|
2015-10-22 16:35:42 -05:00
|
|
|
if fs::metadata(&config_file).is_ok() {
|
2015-07-31 18:21:44 -05:00
|
|
|
return Ok(config_file);
|
|
|
|
} else {
|
|
|
|
current = match current.parent() {
|
|
|
|
// if the current directory has no parent, we're done searching
|
|
|
|
None => return Err(io::Error::new(io::ErrorKind::NotFound, "config not found")),
|
|
|
|
Some(path) => path.to_path_buf(),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try to find a project file. If it's found, read it.
|
|
|
|
fn lookup_and_read_project_file() -> io::Result<(PathBuf, String)> {
|
|
|
|
let path = try!(lookup_project_file());
|
|
|
|
let mut file = try!(File::open(&path));
|
|
|
|
let mut toml = String::new();
|
|
|
|
try!(file.read_to_string(&mut toml));
|
|
|
|
Ok((path, toml))
|
|
|
|
}
|
|
|
|
|
2015-08-28 03:28:28 -05:00
|
|
|
fn execute() -> i32 {
|
2015-10-22 16:38:16 -05:00
|
|
|
let (file, write_mode) = match determine_params(std::env::args().skip(1)) {
|
2015-08-28 16:51:26 -05:00
|
|
|
Some(params) => params,
|
2015-08-28 03:28:28 -05:00
|
|
|
None => return 1,
|
|
|
|
};
|
2015-05-23 00:02:59 -05:00
|
|
|
|
2015-07-31 18:21:44 -05:00
|
|
|
let config = match lookup_and_read_project_file() {
|
|
|
|
Ok((path, toml)) => {
|
|
|
|
println!("Project config file: {}", path.display());
|
|
|
|
Config::from_toml(&toml)
|
|
|
|
}
|
|
|
|
Err(_) => Default::default(),
|
|
|
|
};
|
2015-05-23 00:02:59 -05:00
|
|
|
|
2015-10-22 16:38:16 -05:00
|
|
|
run(&file, write_mode, &config);
|
2015-08-28 03:28:28 -05:00
|
|
|
0
|
2015-05-01 11:43:36 -05:00
|
|
|
}
|
2015-08-18 14:10:30 -05:00
|
|
|
|
2015-08-28 03:28:28 -05:00
|
|
|
fn main() {
|
|
|
|
use std::io::Write;
|
2015-10-22 16:34:05 -05:00
|
|
|
let _ = env_logger::init();
|
|
|
|
|
2015-08-28 03:28:28 -05:00
|
|
|
let exit_code = execute();
|
|
|
|
// Make sure standard output is flushed before we exit
|
|
|
|
std::io::stdout().flush().unwrap();
|
|
|
|
// Exit with given exit code.
|
|
|
|
//
|
|
|
|
// NOTE: This immediately terminates the process without doing any cleanup,
|
|
|
|
// so make sure to finish all necessary cleanup before this is called.
|
|
|
|
std::process::exit(exit_code);
|
2015-08-26 17:02:06 -05:00
|
|
|
}
|
|
|
|
|
2015-10-22 16:38:16 -05:00
|
|
|
fn print_usage(opts: &Options, reason: &str) {
|
|
|
|
let reason = format!("{}\nusage: {} [options] <file>",
|
|
|
|
reason,
|
|
|
|
env::current_exe().unwrap().display());
|
|
|
|
println!("{}", opts.usage(&reason));
|
2015-09-28 18:38:19 -05:00
|
|
|
Config::print_docs();
|
2015-08-28 03:28:28 -05:00
|
|
|
}
|
|
|
|
|
2015-10-22 16:38:16 -05:00
|
|
|
fn determine_params<I>(args: I) -> Option<(PathBuf, WriteMode)>
|
2015-08-18 14:10:30 -05:00
|
|
|
where I: Iterator<Item = String>
|
|
|
|
{
|
2015-10-22 16:38:16 -05:00
|
|
|
let mut opts = Options::new();
|
|
|
|
opts.optflag("h", "help", "show this message");
|
|
|
|
opts.optopt("",
|
|
|
|
"write-mode",
|
|
|
|
"mode to write in",
|
|
|
|
"[replace|overwrite|display|diff]");
|
|
|
|
let matches = match opts.parse(args) {
|
|
|
|
Ok(m) => m,
|
|
|
|
Err(e) => {
|
|
|
|
print_usage(&opts, &e.to_string());
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
if matches.opt_present("h") {
|
|
|
|
print_usage(&opts, "");
|
|
|
|
}
|
|
|
|
|
|
|
|
let write_mode = match matches.opt_str("write-mode") {
|
|
|
|
Some(mode) => {
|
|
|
|
match mode.parse() {
|
|
|
|
Ok(mode) => mode,
|
|
|
|
Err(..) => {
|
|
|
|
print_usage(&opts, "Unrecognized write mode");
|
2015-08-28 06:07:08 -05:00
|
|
|
return None;
|
2015-08-28 03:28:28 -05:00
|
|
|
}
|
2015-08-28 06:07:08 -05:00
|
|
|
}
|
2015-08-18 14:10:30 -05:00
|
|
|
}
|
2015-10-22 16:38:16 -05:00
|
|
|
None => WriteMode::Replace,
|
|
|
|
};
|
2015-08-28 03:28:28 -05:00
|
|
|
|
2015-10-22 16:38:16 -05:00
|
|
|
if matches.free.len() != 1 {
|
|
|
|
print_usage(&opts, "Please provide one file to format");
|
2015-08-28 03:28:28 -05:00
|
|
|
return None;
|
2015-08-26 17:02:06 -05:00
|
|
|
}
|
|
|
|
|
2015-10-22 16:38:16 -05:00
|
|
|
Some((PathBuf::from(&matches.free[0]), write_mode))
|
2015-08-18 14:10:30 -05:00
|
|
|
}
|