mirror of
https://github.com/clap-rs/clap
synced 2024-11-15 00:57:15 +00:00
b190a6a817
This reduces the need for us to have `clap` as a dependency in `clap_derive`, preparing the way to fix #15.
54 lines
1.4 KiB
Rust
54 lines
1.4 KiB
Rust
// Hi, future me (or whoever you are)!
|
|
//
|
|
// Yes, we do need this attr.
|
|
// No, the warnings cannot be fixed otherwise.
|
|
// Accept and endure. Do not touch.
|
|
#![allow(unused)]
|
|
|
|
use clap::IntoApp;
|
|
|
|
pub fn get_help<T: IntoApp>() -> String {
|
|
let mut output = Vec::new();
|
|
<T as IntoApp>::into_app().write_help(&mut output).unwrap();
|
|
let output = String::from_utf8(output).unwrap();
|
|
|
|
eprintln!("\n%%% HELP %%%:=====\n{}\n=====\n", output);
|
|
eprintln!("\n%%% HELP (DEBUG) %%%:=====\n{:?}\n=====\n", output);
|
|
|
|
output
|
|
}
|
|
|
|
pub fn get_long_help<T: IntoApp>() -> String {
|
|
let mut output = Vec::new();
|
|
<T as IntoApp>::into_app()
|
|
.write_long_help(&mut output)
|
|
.unwrap();
|
|
let output = String::from_utf8(output).unwrap();
|
|
|
|
eprintln!("\n%%% LONG_HELP %%%:=====\n{}\n=====\n", output);
|
|
eprintln!("\n%%% LONG_HELP (DEBUG) %%%:=====\n{:?}\n=====\n", output);
|
|
|
|
output
|
|
}
|
|
|
|
pub fn get_subcommand_long_help<T: IntoApp>(subcmd: &str) -> String {
|
|
let mut output = Vec::new();
|
|
<T as IntoApp>::into_app()
|
|
.get_subcommands_mut()
|
|
.find(|s| s.get_name() == subcmd)
|
|
.unwrap()
|
|
.write_long_help(&mut output)
|
|
.unwrap();
|
|
let output = String::from_utf8(output).unwrap();
|
|
|
|
eprintln!(
|
|
"\n%%% SUBCOMMAND `{}` HELP %%%:=====\n{}\n=====\n",
|
|
subcmd, output
|
|
);
|
|
eprintln!(
|
|
"\n%%% SUBCOMMAND `{}` HELP (DEBUG) %%%:=====\n{:?}\n=====\n",
|
|
subcmd, output
|
|
);
|
|
|
|
output
|
|
}
|