Merge pull request #533 from marcusklaas/double-help

Print configuration options once in help message
This commit is contained in:
Nick Cameron 2015-10-26 02:00:39 +13:00
commit 7a9ae5c4ab
2 changed files with 54 additions and 41 deletions

View File

@ -22,12 +22,22 @@
use std::env; use std::env;
use std::fs::{self, File}; use std::fs::{self, File};
use std::io::{self, Read}; use std::io::{self, Read, Write};
use std::path::{Path, PathBuf}; use std::path::{Path, PathBuf};
use getopts::Options; use getopts::Options;
// Try to find a project file in the input file directory and its parents. /// Rustfmt operations.
enum Operation {
/// Format a file and its child modules.
Format(PathBuf, WriteMode),
/// Print the help message.
Help,
/// Invalid program input, including reason.
InvalidInput(String),
}
/// Try to find a project file in the input file directory and its parents.
fn lookup_project_file(input_file: &Path) -> io::Result<PathBuf> { fn lookup_project_file(input_file: &Path) -> io::Result<PathBuf> {
let mut current = if input_file.is_relative() { let mut current = if input_file.is_relative() {
try!(env::current_dir()).join(input_file) try!(env::current_dir()).join(input_file)
@ -35,14 +45,14 @@ fn lookup_project_file(input_file: &Path) -> io::Result<PathBuf> {
input_file.to_path_buf() input_file.to_path_buf()
}; };
// TODO: We should canonize path to properly handle its parents, // FIXME: We should canonize path to properly handle its parents,
// but `canonicalize` function is unstable now (recently added API) // but `canonicalize` function is unstable now (recently added API)
// current = try!(fs::canonicalize(current)); // current = try!(fs::canonicalize(current));
loop { loop {
// if the current directory has no parent, we're done searching // If the current directory has no parent, we're done searching.
if !current.pop() { if !current.pop() {
return Err(io::Error::new(io::ErrorKind::NotFound, "config not found")); return Err(io::Error::new(io::ErrorKind::NotFound, "Config not found"));
} }
let config_file = current.join("rustfmt.toml"); let config_file = current.join("rustfmt.toml");
if fs::metadata(&config_file).is_ok() { if fs::metadata(&config_file).is_ok() {
@ -51,7 +61,7 @@ fn lookup_project_file(input_file: &Path) -> io::Result<PathBuf> {
} }
} }
// Try to find a project file. If it's found, read it. /// Try to find a project file. If it's found, read it.
fn lookup_and_read_project_file(input_file: &Path) -> io::Result<(PathBuf, String)> { fn lookup_and_read_project_file(input_file: &Path) -> io::Result<(PathBuf, String)> {
let path = try!(lookup_project_file(input_file)); let path = try!(lookup_project_file(input_file));
let mut file = try!(File::open(&path)); let mut file = try!(File::open(&path));
@ -61,14 +71,28 @@ fn lookup_and_read_project_file(input_file: &Path) -> io::Result<(PathBuf, Strin
} }
fn execute() -> i32 { fn execute() -> i32 {
let (file, write_mode) = match determine_params(std::env::args().skip(1)) { let mut opts = Options::new();
Some(params) => params, opts.optflag("h", "help", "show this message");
None => return 1, opts.optopt("",
}; "write-mode",
"mode to write in",
"[replace|overwrite|display|diff|coverage]");
let operation = determine_operation(&opts, env::args().skip(1));
match operation {
Operation::InvalidInput(reason) => {
print_usage(&opts, &reason);
1
}
Operation::Help => {
print_usage(&opts, "");
0
}
Operation::Format(file, write_mode) => {
let config = match lookup_and_read_project_file(&file) { let config = match lookup_and_read_project_file(&file) {
Ok((path, toml)) => { Ok((path, toml)) => {
println!("Project config file: {}", path.display()); println!("Using rustfmt config file: {}", path.display());
Config::from_toml(&toml) Config::from_toml(&toml)
} }
Err(_) => Default::default(), Err(_) => Default::default(),
@ -76,15 +100,17 @@ fn execute() -> i32 {
run(&file, write_mode, &config); run(&file, write_mode, &config);
0 0
}
}
} }
fn main() { fn main() {
use std::io::Write;
let _ = env_logger::init(); let _ = env_logger::init();
let exit_code = execute(); let exit_code = execute();
// Make sure standard output is flushed before we exit
// Make sure standard output is flushed before we exit.
std::io::stdout().flush().unwrap(); std::io::stdout().flush().unwrap();
// Exit with given exit code. // Exit with given exit code.
// //
// NOTE: This immediately terminates the process without doing any cleanup, // NOTE: This immediately terminates the process without doing any cleanup,
@ -100,44 +126,31 @@ fn print_usage(opts: &Options, reason: &str) {
Config::print_docs(); Config::print_docs();
} }
fn determine_params<I>(args: I) -> Option<(PathBuf, WriteMode)> fn determine_operation<I>(opts: &Options, args: I) -> Operation
where I: Iterator<Item = String> where I: Iterator<Item = String>
{ {
let mut opts = Options::new();
opts.optflag("h", "help", "show this message");
opts.optopt("",
"write-mode",
"mode to write in",
"[replace|overwrite|display|diff|coverage]");
let matches = match opts.parse(args) { let matches = match opts.parse(args) {
Ok(m) => m, Ok(m) => m,
Err(e) => { Err(e) => return Operation::InvalidInput(e.to_string()),
print_usage(&opts, &e.to_string());
return None;
}
}; };
if matches.opt_present("h") { if matches.opt_present("h") {
print_usage(&opts, ""); return Operation::Help;
} }
let write_mode = match matches.opt_str("write-mode") { let write_mode = match matches.opt_str("write-mode") {
Some(mode) => { Some(mode) => {
match mode.parse() { match mode.parse() {
Ok(mode) => mode, Ok(mode) => mode,
Err(..) => { Err(..) => return Operation::InvalidInput("Unrecognized write mode".into()),
print_usage(&opts, "Unrecognized write mode");
return None;
}
} }
} }
None => WriteMode::Replace, None => WriteMode::Replace,
}; };
if matches.free.len() != 1 { if matches.free.len() != 1 {
print_usage(&opts, "Please provide one file to format"); return Operation::InvalidInput("Please provide one file to format".into());
return None;
} }
Some((PathBuf::from(&matches.free[0]), write_mode)) Operation::Format(PathBuf::from(&matches.free[0]), write_mode)
} }

View File

@ -222,7 +222,7 @@ pub fn print_docs() {
for _ in 0..max { for _ in 0..max {
space_str.push(' '); space_str.push(' ');
} }
println!("\nConfiguration Options:"); println!("Configuration Options:");
$( $(
let name_raw = stringify!($i); let name_raw = stringify!($i);
let mut name_out = String::with_capacity(max); let mut name_out = String::with_capacity(max);