2020-02-13 18:06:11 +00:00
|
|
|
//! 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);
|
|
|
|
from_arg_matches(name);
|
|
|
|
append_dummy(quote!( impl ::clap::Clap for #name {} ));
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn clap_enum(name: &Ident) {
|
|
|
|
into_app(name);
|
|
|
|
from_arg_matches(name);
|
|
|
|
subcommand(name);
|
2020-04-22 07:25:41 +00:00
|
|
|
arg_enum(name);
|
2020-02-13 18:06:11 +00:00
|
|
|
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 augment_clap<'b>(_app: ::clap::App<'b>) -> ::clap::App<'b> {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
2020-08-25 09:03:09 +00:00
|
|
|
fn into_update_app<'b>() -> ::clap::App<'b> {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
fn augment_update_clap<'b>(_app: ::clap::App<'b>) -> ::clap::App<'b> {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
2020-02-13 18:06:11 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn from_arg_matches(name: &Ident) {
|
|
|
|
append_dummy(quote! {
|
|
|
|
impl ::clap::FromArgMatches for #name {
|
|
|
|
fn from_arg_matches(_m: &::clap::ArgMatches) -> Self {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
2020-04-29 09:44:38 +00:00
|
|
|
fn update_from_arg_matches(&mut self, matches: &::clap::ArgMatches) {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
2020-02-13 18:06:11 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn subcommand(name: &Ident) {
|
|
|
|
append_dummy(quote! {
|
|
|
|
impl ::clap::Subcommand for #name {
|
2020-08-05 19:33:51 +00:00
|
|
|
fn from_subcommand(_sub: Option<(&str, &::clap::ArgMatches)>) -> Option<Self> {
|
2020-02-13 18:06:11 +00:00
|
|
|
unimplemented!()
|
|
|
|
}
|
2020-04-29 09:44:38 +00:00
|
|
|
fn update_from_subcommand(&mut self, _name: &str, _matches: Option<&::clap::ArgMatches>) {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
2020-02-13 18:06:11 +00:00
|
|
|
fn augment_subcommands(_app: ::clap::App<'_>) -> ::clap::App<'_> {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
2020-08-25 09:03:09 +00:00
|
|
|
fn augment_update_subcommands(_app: ::clap::App<'_>) -> ::clap::App<'_> {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
2020-02-13 18:06:11 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2020-04-22 07:25:41 +00:00
|
|
|
|
|
|
|
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!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|