From 562491b16bcf54a4cde4a61e4fd078af1532cccc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lauren=C8=9Biu=20Nicola?= Date: Sat, 1 Aug 2020 09:25:23 +0300 Subject: Simplify argument parsing --- crates/rust-analyzer/src/bin/args.rs | 32 ++++++++++++++++---------------- crates/rust-analyzer/src/bin/main.rs | 19 +++++++++++-------- 2 files changed, 27 insertions(+), 24 deletions(-) (limited to 'crates') diff --git a/crates/rust-analyzer/src/bin/args.rs b/crates/rust-analyzer/src/bin/args.rs index f16e35d86..d3081e88b 100644 --- a/crates/rust-analyzer/src/bin/args.rs +++ b/crates/rust-analyzer/src/bin/args.rs @@ -44,15 +44,16 @@ pub(crate) enum Command { ProcMacro, RunServer, Version, + Help, } impl Args { - pub(crate) fn parse() -> Result> { + pub(crate) fn parse() -> Result { let mut matches = Arguments::from_env(); if matches.contains("--version") { matches.finish().or_else(handle_extra_flags)?; - return Ok(Ok(Args { verbosity: Verbosity::Normal, command: Command::Version })); + return Ok(Args { verbosity: Verbosity::Normal, command: Command::Version }); } let verbosity = match ( @@ -68,15 +69,16 @@ impl Args { (false, true, true) => bail!("Invalid flags: -q conflicts with -v"), }; + let help = Ok(Args { verbosity, command: Command::Help }); let subcommand = match matches.subcommand()? { Some(it) => it, None => { if matches.contains(["-h", "--help"]) { print_subcommands(); - return Ok(Err(HelpPrinted)); + return help; } matches.finish().or_else(handle_extra_flags)?; - return Ok(Ok(Args { verbosity, command: Command::RunServer })); + return Ok(Args { verbosity, command: Command::RunServer }); } }; let command = match subcommand.as_str() { @@ -93,7 +95,7 @@ FLAGS: -h, --help Prints help information --no-dump" ); - return Ok(Err(HelpPrinted)); + return help; } let no_dump = matches.contains("--no-dump"); @@ -112,7 +114,7 @@ USAGE: FLAGS: -h, --help Prints help inforamtion" ); - return Ok(Err(HelpPrinted)); + return help; } matches.finish().or_else(handle_extra_flags)?; @@ -132,7 +134,7 @@ FLAGS: -h, --help Prints help information -r, --rainbow" ); - return Ok(Err(HelpPrinted)); + return help; } let rainbow = matches.contains(["-r", "--rainbow"]); @@ -166,7 +168,7 @@ OPTIONS: ARGS: " ); - return Ok(Err(HelpPrinted)); + return help; } let randomize = matches.contains("--randomize"); @@ -220,7 +222,7 @@ OPTIONS: ARGS: Project to analyse" ); - return Ok(Err(HelpPrinted)); + return help; } let path: PathBuf = matches.opt_value_from_str("--project")?.unwrap_or_default(); @@ -266,7 +268,7 @@ FLAGS: ARGS: " ); - return Ok(Err(HelpPrinted)); + return help; } let load_output_dirs = matches.contains("--load-output-dirs"); @@ -302,7 +304,7 @@ FLAGS: ARGS: A structured search replace rule" ); - return Ok(Err(HelpPrinted)); + return help; } let mut rules = Vec::new(); while let Some(rule) = matches.free_from_str()? { @@ -329,7 +331,7 @@ FLAGS: ARGS: A structured search pattern" ); - return Ok(Err(HelpPrinted)); + return help; } let debug_snippet = matches.opt_value_from_str("--debug")?; let mut patterns = Vec::new(); @@ -340,10 +342,10 @@ ARGS: } _ => { print_subcommands(); - return Ok(Err(HelpPrinted)); + return help; } }; - Ok(Ok(Args { verbosity, command })) + Ok(Args { verbosity, command }) } } @@ -371,8 +373,6 @@ SUBCOMMANDS: ) } -pub(crate) struct HelpPrinted; - fn handle_extra_flags(e: pico_args::Error) -> Result<()> { if let pico_args::Error::UnusedArgsLeft(flags) = e { let mut invalid_flags = String::new(); diff --git a/crates/rust-analyzer/src/bin/main.rs b/crates/rust-analyzer/src/bin/main.rs index ff8234495..fc7f8b01d 100644 --- a/crates/rust-analyzer/src/bin/main.rs +++ b/crates/rust-analyzer/src/bin/main.rs @@ -3,7 +3,7 @@ //! Based on cli flags, either spawns an LSP server, or runs a batch analysis mod args; -use std::convert::TryFrom; +use std::{convert::TryFrom, process}; use lsp_server::Connection; use ra_project_model::ProjectManifest; @@ -14,18 +14,20 @@ use rust_analyzer::{ }; use vfs::AbsPathBuf; -use crate::args::HelpPrinted; - #[cfg(all(feature = "mimalloc"))] #[global_allocator] static ALLOC: mimalloc::MiMalloc = mimalloc::MiMalloc; -fn main() -> Result<()> { +fn main() { + if let Err(err) = try_main() { + eprintln!("{}", err); + process::exit(101); + } +} + +fn try_main() -> Result<()> { setup_logging()?; - let args = match args::Args::parse()? { - Ok(it) => it, - Err(HelpPrinted) => return Ok(()), - }; + let args = args::Args::parse()?; match args.command { args::Command::RunServer => run_server()?, args::Command::ProcMacro => ra_proc_macro_srv::cli::run()?, @@ -45,6 +47,7 @@ fn main() -> Result<()> { cli::search_for_patterns(patterns, debug_snippet)?; } args::Command::Version => println!("rust-analyzer {}", env!("REV")), + args::Command::Help => {} } Ok(()) } -- cgit v1.2.3