mirror of
https://github.com/clap-rs/clap
synced 2025-01-22 17:34:59 +00:00
7f08773a5a
Before, partial command lines would panic at runtime. Now it'll be a compile error For example: ``` pub enum Opt { Daemon(DaemonCommand), } pub enum DaemonCommand { Start, Stop, } ``` Gives: ``` error[E0277]: the trait bound `DaemonCommand: clap::Args` is not satisfied --> clap_derive/tests/subcommands.rs:297:16 | 297 | Daemon(DaemonCommand), | ^^^^^^^^^^^^^ the trait `clap::Args` is not implemented for `DaemonCommand` | = note: required by `augment_args` ``` To nest this, you currently need `enum -> struct -> enum`. A later change will make it so you can use the `subcommand` attribute within enums to cover this case. This is a part of #2005
82 lines
2.2 KiB
Rust
82 lines
2.2 KiB
Rust
//! Dummy implementations that we emit along with an error.
|
|
|
|
use proc_macro2::Ident;
|
|
use proc_macro_error::append_dummy;
|
|
use quote::quote;
|
|
|
|
pub fn clap_struct(name: &Ident) {
|
|
into_app(name);
|
|
args(name);
|
|
append_dummy(quote!( impl clap::Clap for #name {} ));
|
|
}
|
|
|
|
pub fn clap_enum(name: &Ident) {
|
|
into_app(name);
|
|
subcommand(name);
|
|
append_dummy(quote!( impl clap::Clap for #name {} ));
|
|
}
|
|
|
|
pub fn into_app(name: &Ident) {
|
|
append_dummy(quote! {
|
|
impl clap::IntoApp for #name {
|
|
fn into_app<'b>() -> clap::App<'b> {
|
|
unimplemented!()
|
|
}
|
|
fn into_app_for_update<'b>() -> clap::App<'b> {
|
|
unimplemented!()
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
pub fn from_arg_matches(name: &Ident) {
|
|
append_dummy(quote! {
|
|
impl clap::FromArgMatches for #name {
|
|
fn from_arg_matches(_m: &clap::ArgMatches) -> Option<Self> {
|
|
unimplemented!()
|
|
}
|
|
fn update_from_arg_matches(&mut self, matches: &clap::ArgMatches) {
|
|
unimplemented!()
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
pub fn subcommand(name: &Ident) {
|
|
from_arg_matches(name);
|
|
append_dummy(quote! {
|
|
impl clap::Subcommand for #name {
|
|
fn augment_subcommands(_app: clap::App<'_>) -> clap::App<'_> {
|
|
unimplemented!()
|
|
}
|
|
fn augment_subcommands_for_update(_app: clap::App<'_>) -> clap::App<'_> {
|
|
unimplemented!()
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
pub fn args(name: &Ident) {
|
|
from_arg_matches(name);
|
|
append_dummy(quote! {
|
|
impl clap::Args for #name {
|
|
fn augment_args(_app: clap::App<'_>) -> clap::App<'_> {
|
|
unimplemented!()
|
|
}
|
|
fn augment_args_for_update(_app: clap::App<'_>) -> clap::App<'_> {
|
|
unimplemented!()
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
pub fn arg_enum(name: &Ident) {
|
|
append_dummy(quote! {
|
|
impl clap::ArgEnum for #name {
|
|
const VARIANTS: &'static [&'static str] = &[];
|
|
fn from_str(_input: &str, _case_insensitive: bool) -> Result<Self, String> {
|
|
unimplemented!()
|
|
}
|
|
}
|
|
})
|
|
}
|