aboutsummaryrefslogtreecommitdiff
path: root/mingling_pathf/src
diff options
context:
space:
mode:
Diffstat (limited to 'mingling_pathf/src')
-rw-r--r--mingling_pathf/src/pattern_analyzer.rs2
-rw-r--r--mingling_pathf/src/patterns/dispatcher_clap.rs234
-rw-r--r--mingling_pathf/src/patterns/groupped_derive.rs53
3 files changed, 246 insertions, 43 deletions
diff --git a/mingling_pathf/src/pattern_analyzer.rs b/mingling_pathf/src/pattern_analyzer.rs
index bfc2dc3..c4b1971 100644
--- a/mingling_pathf/src/pattern_analyzer.rs
+++ b/mingling_pathf/src/pattern_analyzer.rs
@@ -23,7 +23,7 @@ pub fn init_with_config(config: PathfinderConfig) -> PatternAnalyzer {
analyzer.add_pattern(HelpPattern);
analyzer.add_pattern(CompletionPattern);
analyzer.add_pattern(DispatcherPattern::new(config.use_dispatch_tree));
- analyzer.add_pattern(DispatcherClapPattern);
+ analyzer.add_pattern(DispatcherClapPattern::new(config.use_dispatch_tree));
analyzer
}
diff --git a/mingling_pathf/src/patterns/dispatcher_clap.rs b/mingling_pathf/src/patterns/dispatcher_clap.rs
index 398b269..2e1ec6c 100644
--- a/mingling_pathf/src/patterns/dispatcher_clap.rs
+++ b/mingling_pathf/src/patterns/dispatcher_clap.rs
@@ -2,12 +2,27 @@ use syn::Item;
use crate::pattern_analyzer::{AnalyzeItem, AnalyzePattern};
-/// Match structs annotated with `#[dispatcher_clap]`, extracting the entry type name (i.e., the struct name).
+/// Match structs annotated with `#[dispatcher_clap(...)]`, extracting:
+/// - The entry type (struct name, always)
+/// - The dispatcher struct (`CMD*`, always)
+/// - The error type, if `error = ErrorType` is specified
+/// - The help internal struct, if `help = true` is specified
+/// - `__internal_dispatcher_*` — dispatch tree static (when `use_dispatch_tree` is true)
///
-/// Covers the following forms:
-/// - `#[dispatcher_clap] struct EntryGreet { ... }`
-/// - `#[dispatcher_clap] #[command(...)] struct EntryGreet { ... }`
-pub struct DispatcherClapPattern;
+/// Covers forms:
+/// - `#[dispatcher_clap("greet", CMDGreet)] struct EntryGreet { ... }`
+/// - `#[dispatcher_clap("greet", CMDGreet, error = ErrorGreet)] struct EntryGreet { ... }`
+/// - `#[dispatcher_clap("greet", CMDGreet, help = true)] struct EntryGreet { ... }`
+/// - `#[dispatcher_clap("greet", CMDGreet, error = ErrorGreet, help = true)] struct EntryGreet { ... }`
+pub struct DispatcherClapPattern {
+ pub use_dispatch_tree: bool,
+}
+
+impl DispatcherClapPattern {
+ pub fn new(use_dispatch_tree: bool) -> Self {
+ Self { use_dispatch_tree }
+ }
+}
impl AnalyzePattern for DispatcherClapPattern {
fn contains(&self, content: &str) -> bool {
@@ -24,21 +39,136 @@ impl AnalyzePattern for DispatcherClapPattern {
for item in &syntax.items {
match item {
Item::Struct(s) if has_attr(&s.attrs, "dispatcher_clap") => {
+ // Entry type (struct name) — always
+ let entry_name = s.ident.to_string();
items.push(AnalyzeItem {
module: String::new(),
- item_name: s.ident.to_string(),
+ item_name: entry_name.clone(),
});
+
+ // Parse the attribute to extract CMD, error, and help info
+ if let Some(attr) = s.attrs.iter().find(|a| {
+ a.path()
+ .segments
+ .last()
+ .is_some_and(|seg| seg.ident == "dispatcher_clap")
+ }) {
+ let args = attr.meta.require_list().ok();
+ let args_str = args.map(|l| l.tokens.to_string()).unwrap_or_default();
+ let parsed = parse_dispatcher_clap_args(&args_str);
+
+ // CMD type — always
+ if let Some(ref cmd) = parsed.cmd_type {
+ items.push(AnalyzeItem {
+ module: String::new(),
+ item_name: cmd.clone(),
+ });
+ }
+
+ // Error type — if error = TypeName
+ if let Some(ref err) = parsed.error_type {
+ items.push(AnalyzeItem {
+ module: String::new(),
+ item_name: err.clone(),
+ });
+ }
+
+ // Help internal struct — if help = true
+ if parsed.help_enabled
+ && let Some(ref cmd) = parsed.cmd_type
+ {
+ let help_fn = format!("__{}_help", just_fmt::snake_case!(cmd));
+ let help_struct =
+ format!("__internal_help_{}", just_fmt::snake_case!(&help_fn));
+ items.push(AnalyzeItem {
+ module: String::new(),
+ item_name: help_struct,
+ });
+ }
+
+ // __internal_dispatcher_* — when configured
+ if self.use_dispatch_tree
+ && let Some(ref cmd_name) = parsed.cmd_name
+ {
+ let internal_name = format!(
+ "__internal_dispatcher_{}",
+ just_fmt::snake_case!(cmd_name)
+ );
+ items.push(AnalyzeItem {
+ module: String::new(),
+ item_name: internal_name,
+ });
+ }
+ }
}
Item::Mod(item_mod) => {
if let Some((_, nested)) = &item_mod.content {
for n in nested {
if let Item::Struct(s) = n
- && has_attr(&s.attrs, "dispatcher_clap") {
- items.push(AnalyzeItem {
- module: item_mod.ident.to_string(),
- item_name: s.ident.to_string(),
- });
+ && has_attr(&s.attrs, "dispatcher_clap")
+ {
+ let entry_name = s.ident.to_string();
+ items.push(AnalyzeItem {
+ module: item_mod.ident.to_string(),
+ item_name: entry_name.clone(),
+ });
+
+ if let Some(attr) = s.attrs.iter().find(|a| {
+ a.path()
+ .segments
+ .last()
+ .is_some_and(|seg| seg.ident == "dispatcher_clap")
+ }) {
+ let args = attr.meta.require_list().ok();
+ let args_str =
+ args.map(|l| l.tokens.to_string()).unwrap_or_default();
+ let parsed = parse_dispatcher_clap_args(&args_str);
+
+ if let Some(ref cmd) = parsed.cmd_type {
+ items.push(AnalyzeItem {
+ module: item_mod.ident.to_string(),
+ item_name: cmd.clone(),
+ });
+ }
+
+ if let Some(ref err) = parsed.error_type {
+ items.push(AnalyzeItem {
+ module: item_mod.ident.to_string(),
+ item_name: err.clone(),
+ });
+ }
+
+ // Help internal struct — same naming rule as root level
+ if parsed.help_enabled
+ && let Some(ref cmd) = parsed.cmd_type
+ {
+ let help_fn =
+ format!("__{}_help", just_fmt::snake_case!(cmd));
+ let help_struct = format!(
+ "__internal_help_{}",
+ just_fmt::snake_case!(&help_fn)
+ );
+ items.push(AnalyzeItem {
+ module: item_mod.ident.to_string(),
+ item_name: help_struct,
+ });
+ }
+
+ // __internal_dispatcher_* — when configured
+ if self.use_dispatch_tree
+ && let Some(ref cmd_name) = parsed.cmd_name
+ {
+ let internal_name = format!(
+ "__internal_dispatcher_{}",
+ just_fmt::snake_case!(cmd_name)
+ );
+ items.push(AnalyzeItem {
+ module: item_mod.ident.to_string(),
+ item_name: internal_name,
+ });
+ }
}
+ }
}
}
}
@@ -50,11 +180,81 @@ impl AnalyzePattern for DispatcherClapPattern {
}
}
+struct ParsedClapArgs {
+ cmd_name: Option<String>,
+ cmd_type: Option<String>,
+ error_type: Option<String>,
+ help_enabled: bool,
+}
+
+/// Parse `#[dispatcher_clap("cmd", CMDType, error = ErrorType, help = true)]` arguments.
+fn parse_dispatcher_clap_args(args: &str) -> ParsedClapArgs {
+ let mut cmd_name = None;
+ let mut cmd_type = None;
+ let mut error_type = None;
+ let mut help_enabled = false;
+
+ let args = args.trim();
+
+ // Extract the first quoted string (the command name)
+ let after_cmd = if let Some(start) = args.find('"') {
+ let after_open = &args[start + 1..];
+ if let Some(end) = after_open.find('"') {
+ cmd_name = Some(after_open[..end].to_string());
+ after_open[end + 1..].trim()
+ } else {
+ args
+ }
+ } else {
+ args
+ };
+
+ // Split by commas and parse each part
+ for part in after_cmd.split(',') {
+ let part = part.trim();
+ if part.is_empty() {
+ continue;
+ }
+
+ // Skip the command name (first quoted string should already be removed)
+ if part.starts_with('"') {
+ continue;
+ }
+
+ // Check for key = value
+ if let Some(eq_idx) = part.find('=') {
+ let key = part[..eq_idx].trim();
+ let value = part[eq_idx + 1..].trim();
+ let value = value.trim_end_matches([')', ']']).trim();
+
+ match key {
+ "error" => {
+ error_type = Some(value.to_string());
+ }
+ "help" => {
+ help_enabled = value == "true";
+ }
+ _ => {}
+ }
+ } else {
+ // Bare ident — the CMD type
+ let clean = part.trim_end_matches([')', ']']).trim();
+ if !clean.is_empty() && cmd_type.is_none() {
+ cmd_type = Some(clean.to_string());
+ }
+ }
+ }
+
+ ParsedClapArgs {
+ cmd_name,
+ cmd_type,
+ error_type,
+ help_enabled,
+ }
+}
+
fn has_attr(attrs: &[syn::Attribute], name: &str) -> bool {
- attrs.iter().any(|a| {
- a.path()
- .segments
- .last()
- .is_some_and(|s| s.ident == name)
- })
+ attrs
+ .iter()
+ .any(|a| a.path().segments.last().is_some_and(|s| s.ident == name))
}
diff --git a/mingling_pathf/src/patterns/groupped_derive.rs b/mingling_pathf/src/patterns/groupped_derive.rs
index 44e7731..8491121 100644
--- a/mingling_pathf/src/patterns/groupped_derive.rs
+++ b/mingling_pathf/src/patterns/groupped_derive.rs
@@ -24,27 +24,24 @@ impl AnalyzePattern for GrouppedDerivePattern {
for item in &syntax.items {
match item {
- Item::Struct(s)
- if has_groupped_derive(&s.attrs) => {
- items.push(AnalyzeItem {
- module: String::new(),
- item_name: s.ident.to_string(),
- });
- }
- Item::Enum(e)
- if has_groupped_derive(&e.attrs) => {
- items.push(AnalyzeItem {
- module: String::new(),
- item_name: e.ident.to_string(),
- });
- }
- Item::Union(u)
- if has_groupped_derive(&u.attrs) => {
- items.push(AnalyzeItem {
- module: String::new(),
- item_name: u.ident.to_string(),
- });
- }
+ Item::Struct(s) if has_groupped_derive(&s.attrs) => {
+ items.push(AnalyzeItem {
+ module: String::new(),
+ item_name: s.ident.to_string(),
+ });
+ }
+ Item::Enum(e) if has_groupped_derive(&e.attrs) => {
+ items.push(AnalyzeItem {
+ module: String::new(),
+ item_name: e.ident.to_string(),
+ });
+ }
+ Item::Union(u) if has_groupped_derive(&u.attrs) => {
+ items.push(AnalyzeItem {
+ module: String::new(),
+ item_name: u.ident.to_string(),
+ });
+ }
Item::Mod(item_mod) => {
if let Some((_, nested)) = &item_mod.content {
for n in nested {
@@ -77,12 +74,18 @@ impl AnalyzePattern for GrouppedDerivePattern {
fn has_groupped_derive(attrs: &[syn::Attribute]) -> bool {
attrs.iter().any(|attr| {
if attr.path().is_ident("derive") {
- attr.parse_args::<syn::MetaList>().ok().is_some_and(|meta| {
- meta.path.segments.iter().any(|seg| {
- let name = seg.ident.to_string();
+ // Correctly parse comma-separated paths in #[derive(Groupped, Debug, ...)]
+ attr.parse_args_with(|input: syn::parse::ParseStream| {
+ let paths =
+ syn::punctuated::Punctuated::<syn::Path, syn::Token![,]>::parse_terminated(
+ input,
+ )?;
+ Ok(paths.iter().any(|p| {
+ let name = p.segments.last().unwrap().ident.to_string();
name == "Groupped" || name == "GrouppedSerialize"
- })
+ }))
})
+ .unwrap_or(false)
} else {
false
}