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-07-31 18:21:44 -05:00
|
|
|
#![feature(path_ext)]
|
|
|
|
#![feature(rustc_private)]
|
2015-05-03 17:12:39 -05:00
|
|
|
#![cfg(not(test))]
|
2015-08-18 14:10:30 -05:00
|
|
|
#![feature(result_expect)]
|
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-05-01 11:43:36 -05:00
|
|
|
|
|
|
|
use rustfmt::{WriteMode, run};
|
2015-08-18 14:10:30 -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;
|
|
|
|
use std::fs::{File, PathExt};
|
|
|
|
use std::io::{self, Read};
|
|
|
|
use std::path::PathBuf;
|
2015-08-18 14:10:30 -05:00
|
|
|
use std::str::FromStr;
|
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");
|
|
|
|
if config_file.exists() {
|
|
|
|
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-05-01 11:43:36 -05:00
|
|
|
fn main() {
|
2015-08-18 14:10:30 -05:00
|
|
|
let (args, write_mode) = determine_params(std::env::args());
|
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-07-31 18:21:44 -05:00
|
|
|
run(args, write_mode, Box::new(config));
|
2015-06-19 18:39:13 -05:00
|
|
|
std::process::exit(0);
|
2015-05-01 11:43:36 -05:00
|
|
|
}
|
2015-08-18 14:10:30 -05:00
|
|
|
|
2015-08-26 17:02:06 -05:00
|
|
|
fn usage<S: Into<String>>(reason: S) {
|
|
|
|
print!("{}\n\r usage: rustfmt [-h Help] [--write-mode=[true/false]] <file_name>", reason.into());
|
|
|
|
std::process::exit(1);
|
|
|
|
}
|
|
|
|
|
2015-08-18 14:10:30 -05:00
|
|
|
fn determine_params<I>(args: I) -> (Vec<String>, WriteMode)
|
|
|
|
where I: Iterator<Item = String>
|
|
|
|
{
|
2015-08-26 17:02:06 -05:00
|
|
|
let arg_prefix = "-";
|
|
|
|
let write_mode_prefix = "--write-mode=";
|
|
|
|
let help_mode = "-h";
|
|
|
|
let long_help_mode = "--help";
|
2015-08-18 14:10:30 -05:00
|
|
|
let mut write_mode = WriteMode::Replace;
|
|
|
|
|
|
|
|
// The NewFile option currently isn't supported because it requires another
|
|
|
|
// parameter, but it can be added later.
|
2015-08-26 17:02:06 -05:00
|
|
|
let args:Vec<String> = args.filter(|arg| {
|
|
|
|
if arg.starts_with(write_mode_prefix) {
|
|
|
|
write_mode = FromStr::from_str(&arg[write_mode_prefix.len()..]).expect("Unrecognized write mode");
|
|
|
|
false
|
|
|
|
} else if arg.starts_with(help_mode) || arg.starts_with(long_help_mode) {
|
|
|
|
usage("");
|
|
|
|
false
|
|
|
|
} else if arg.starts_with(arg_prefix) {
|
|
|
|
usage("Invalid argument");
|
2015-08-18 14:10:30 -05:00
|
|
|
false
|
|
|
|
} else {
|
|
|
|
true
|
|
|
|
}
|
|
|
|
}).collect();
|
2015-08-26 17:02:06 -05:00
|
|
|
if args.len() < 2 {
|
|
|
|
usage("Please provide a file to be formatted");
|
|
|
|
}
|
|
|
|
|
2015-08-18 14:10:30 -05:00
|
|
|
|
|
|
|
(args, write_mode)
|
|
|
|
}
|