use super::{Object,ObjectExt}; #[derive(Debug)] pub struct ClapInterface { verb: InterfaceVerb, _ghost: std::marker::PhantomData, } impl ClapInterface { pub fn perform( &self, query_ctx: impl microrm::prelude::Queryable, insert_ctx: &impl microrm::prelude::Insertable, ) -> Result<(), UIDCError> { match &self.verb { InterfaceVerb::Attach { relation, remote_keys } => { todo!() } InterfaceVerb::Create(params) => { O::create(insert_ctx, ¶ms)?; } InterfaceVerb::Delete(keys) => { O::delete(query_ctx, O::build_keys(keys))?; } InterfaceVerb::Detach => { todo!() } InterfaceVerb::ListAll => { O::list_all(query_ctx)?; } InterfaceVerb::Inspect(keys) => { O::inspect(query_ctx, O::build_keys(keys))?; } } Ok(()) } /// iterate across the list of key parts (O::Uniques) and add args for each fn add_keys(mut cmd: clap::Command) -> clap::Command { struct UVisitor<'a>(&'a mut clap::Command); impl<'a> EntityPartVisitor for UVisitor<'a> { fn visit(&mut self) { let arg = clap::Arg::new(EP::part_name()) .required(true) .help(EP::desc()); *self.0 = self.0.clone().arg(arg); } } ::accept_part_visitor(&mut UVisitor(&mut cmd)); cmd } fn make_relation_subcommands() -> impl Iterator { let mut out = vec![]; struct PartVisitor<'l>(&'l mut Vec); impl<'l> EntityPartVisitor for PartVisitor<'l> { fn visit(&mut self) { struct Discriminator<'l>(&'l mut Vec, &'static str); impl<'l> DatumDiscriminator for Discriminator<'l> { fn visit_entity_id(&mut self) {} fn visit_serialized( &mut self, ) { } fn visit_bare_field(&mut self) {} fn visit_assoc_map(&mut self) { self.0.push(clap::Command::new(self.1)); } fn visit_assoc_domain(&mut self) { self.0.push(clap::Command::new(self.1)); } fn visit_assoc_range(&mut self) { self.0.push(clap::Command::new(self.1)); } } ::accept_discriminator(&mut Discriminator( self.0, EP::part_name(), )); } } O::accept_part_visitor(&mut PartVisitor(&mut out)); out.into_iter() } } impl FromArgMatches for ClapInterface { fn from_arg_matches(matches: &clap::ArgMatches) -> Result { let verb = InterfaceVerb::from_matches(matches); Ok(Self { verb: verb?, _ghost: Default::default(), }) } fn update_from_arg_matches(&mut self, matches: &clap::ArgMatches) -> Result<(), clap::Error> { todo!() } } impl Subcommand for ClapInterface { fn has_subcommand(name: &str) -> bool { todo!() } fn augment_subcommands(cmd: clap::Command) -> clap::Command { cmd.subcommand( Self::add_keys(clap::Command::new("attach")) .subcommands(Self::make_relation_subcommands()) .subcommand_required(true), ) .subcommand(::command().name("create")) .subcommand(Self::add_keys(clap::Command::new("delete"))) .subcommand(Self::add_keys(clap::Command::new("inspect"))) .subcommand(clap::Command::new("list")) .subcommands(O::extra_commands()) } fn augment_subcommands_for_update(cmd: clap::Command) -> clap::Command { todo!() } }