1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
use crate::error::UsageErr;
use crate::{Arg, Flag};
use indexmap::IndexMap;
use kdl::{KdlDocument, KdlEntry, KdlNode};

#[derive(Debug, Default)]
pub struct SchemaCmd {
    pub subcommands: IndexMap<String, SchemaCmd>,
    pub args: Vec<Arg>,
    pub flags: Vec<Flag>,
    pub hide: bool,
    pub subcommand_required: bool,
    pub help: Option<String>,
    pub long_help: Option<String>,
    pub name: String,
    pub aliases: Vec<String>,
    pub hidden_aliases: Vec<String>,
    pub before_help: Option<String>,
    pub before_long_help: Option<String>,
    pub after_help: Option<String>,
    pub after_long_help: Option<String>,
}

impl From<&SchemaCmd> for KdlNode {
    fn from(cmd: &SchemaCmd) -> Self {
        let mut node = Self::new("cmd");
        node.entries_mut().push(cmd.name.clone().into());
        if cmd.hide {
            node.entries_mut().push(KdlEntry::new_prop("hide", true));
        }
        if cmd.subcommand_required {
            node.entries_mut()
                .push(KdlEntry::new_prop("subcommand_required", true));
        }
        if !cmd.aliases.is_empty() {
            let mut aliases = KdlNode::new("alias");
            for alias in &cmd.aliases {
                aliases.entries_mut().push(alias.clone().into());
            }
            let children = node.children_mut().get_or_insert_with(KdlDocument::new);
            children.nodes_mut().push(aliases);
        }
        if !cmd.hidden_aliases.is_empty() {
            let mut aliases = KdlNode::new("alias");
            for alias in &cmd.hidden_aliases {
                aliases.entries_mut().push(alias.clone().into());
            }
            aliases.entries_mut().push(KdlEntry::new_prop("hide", true));
            let children = node.children_mut().get_or_insert_with(KdlDocument::new);
            children.nodes_mut().push(aliases);
        }
        for flag in &cmd.flags {
            let children = node.children_mut().get_or_insert_with(KdlDocument::new);
            children.nodes_mut().push(flag.into());
        }
        for arg in &cmd.args {
            let children = node.children_mut().get_or_insert_with(KdlDocument::new);
            children.nodes_mut().push(arg.into());
        }
        for cmd in cmd.subcommands.values() {
            let children = node.children_mut().get_or_insert_with(KdlDocument::new);
            children.nodes_mut().push(cmd.into());
        }
        node
    }
}

impl TryFrom<&KdlNode> for SchemaCmd {
    type Error = UsageErr;
    fn try_from(node: &KdlNode) -> Result<Self, UsageErr> {
        let mut cmd = Self {
            name: node
                .entries()
                .first()
                .expect("no name provided")
                .value()
                .as_string()
                .unwrap()
                .to_string(),
            ..Default::default()
        };
        for entry in node.entries().iter().skip(1) {
            match entry.name().unwrap().to_string().as_str() {
                "help" => cmd.help = entry.value().as_string().map(|s| s.to_string()),
                "long_help" => cmd.long_help = entry.value().as_string().map(|s| s.to_string()),
                "before_help" => cmd.before_help = entry.value().as_string().map(|s| s.to_string()),
                "before_long_help" => {
                    cmd.before_long_help = entry.value().as_string().map(|s| s.to_string())
                }
                "after_help" => cmd.after_help = entry.value().as_string().map(|s| s.to_string()),
                "after_long_help" => {
                    cmd.after_long_help = entry.value().as_string().map(|s| s.to_string())
                }
                "subcommand_required" => cmd.subcommand_required = entry.value().as_bool().unwrap(),
                "hide" => cmd.hide = entry.value().as_bool().unwrap(),
                _ => Err(UsageErr::InvalidInput(
                    entry.to_string(),
                    *entry.span(),
                    node.to_string(),
                ))?,
            }
        }
        for child in node.children().map(|c| c.nodes()).unwrap_or_default() {
            match child.name().to_string().as_str() {
                "flag" => cmd.flags.push(child.try_into()?),
                "arg" => cmd.args.push(child.try_into()?),
                "cmd" => {
                    let node: SchemaCmd = child.try_into()?;
                    cmd.subcommands.insert(node.name.to_string(), node);
                }
                "alias" => {
                    let alias = child
                        .entries()
                        .iter()
                        .filter_map(|e| e.value().as_string().map(|v| v.to_string()))
                        .collect::<Vec<_>>();
                    if child
                        .get("hide")
                        .is_some_and(|n| n.value().as_bool().unwrap())
                    {
                        cmd.hidden_aliases.extend(alias);
                    } else {
                        cmd.aliases.extend(alias);
                    }
                }
                _ => Err(UsageErr::InvalidInput(
                    child.to_string(),
                    *child.span(),
                    node.to_string(),
                ))?,
            }
        }
        Ok(cmd)
    }
}

#[cfg(feature = "clap")]
impl From<&clap::Command> for SchemaCmd {
    fn from(cmd: &clap::Command) -> Self {
        let mut spec = Self {
            name: cmd.get_name().to_string(),
            hide: cmd.is_hide_set(),
            help: cmd.get_about().map(|s| s.to_string()),
            long_help: cmd.get_long_about().map(|s| s.to_string()),
            before_help: cmd.get_before_help().map(|s| s.to_string()),
            before_long_help: cmd.get_before_long_help().map(|s| s.to_string()),
            after_help: cmd.get_after_help().map(|s| s.to_string()),
            after_long_help: cmd.get_after_long_help().map(|s| s.to_string()),
            ..Default::default()
        };
        for alias in cmd.get_visible_aliases() {
            spec.aliases.push(alias.to_string());
        }
        for alias in cmd.get_all_aliases() {
            if spec.aliases.contains(&alias.to_string()) {
                continue;
            }
            spec.hidden_aliases.push(alias.to_string());
        }
        for arg in cmd.get_arguments() {
            if arg.is_positional() {
                spec.args.push(arg.into())
            } else {
                spec.flags.push(arg.into())
            }
        }
        spec.subcommand_required = cmd.is_subcommand_required_set();
        for subcmd in cmd.get_subcommands() {
            let mut scmd: SchemaCmd = subcmd.into();
            scmd.name = subcmd.get_name().to_string();
            spec.subcommands.insert(scmd.name.clone(), scmd);
        }
        spec
    }
}

#[cfg(feature = "clap")]
impl From<&SchemaCmd> for clap::Command {
    fn from(cmd: &SchemaCmd) -> Self {
        let mut app = Self::new(cmd.name.to_string());
        if let Some(help) = &cmd.help {
            app = app.about(help);
        }
        if let Some(help) = &cmd.long_help {
            app = app.long_about(help);
        }
        if let Some(help) = &cmd.before_help {
            app = app.before_help(help);
        }
        if let Some(help) = &cmd.before_long_help {
            app = app.before_long_help(help);
        }
        if let Some(help) = &cmd.after_help {
            app = app.after_help(help);
        }
        if let Some(help) = &cmd.after_long_help {
            app = app.after_long_help(help);
        }
        if cmd.subcommand_required {
            app = app.subcommand_required(true);
        }
        if cmd.hide {
            app = app.hide(true);
        }
        for alias in &cmd.aliases {
            app = app.visible_alias(alias);
        }
        for alias in &cmd.hidden_aliases {
            app = app.alias(alias);
        }
        for arg in &cmd.args {
            app = app.arg(arg);
        }
        for flag in &cmd.flags {
            app = app.arg(flag);
        }
        for subcmd in cmd.subcommands.values() {
            app = app.subcommand(subcmd);
        }
        app
    }
}