mirror of
https://github.com/clap-rs/clap
synced 2025-01-07 18:28:48 +00:00
81 lines
2.4 KiB
Rust
81 lines
2.4 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);
|
|
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);
|
|
arg_enum(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 augment_clap<'b>(_app: ::clap::App<'b>) -> ::clap::App<'b> {
|
|
unimplemented!()
|
|
}
|
|
fn into_update_app<'b>() -> ::clap::App<'b> {
|
|
unimplemented!()
|
|
}
|
|
fn augment_update_clap<'b>(_app: ::clap::App<'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) -> Self {
|
|
unimplemented!()
|
|
}
|
|
fn update_from_arg_matches(&mut self, matches: &::clap::ArgMatches) {
|
|
unimplemented!()
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
pub fn subcommand(name: &Ident) {
|
|
append_dummy(quote! {
|
|
impl ::clap::Subcommand for #name {
|
|
fn from_subcommand(_sub: Option<(&str, &::clap::ArgMatches)>) -> Option<Self> {
|
|
unimplemented!()
|
|
}
|
|
fn update_from_subcommand(&mut self, _name: &str, _matches: Option<&::clap::ArgMatches>) {
|
|
unimplemented!()
|
|
}
|
|
fn augment_subcommands(_app: ::clap::App<'_>) -> ::clap::App<'_> {
|
|
unimplemented!()
|
|
}
|
|
fn augment_update_subcommands(_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!()
|
|
}
|
|
}
|
|
})
|
|
}
|