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
223
224
225
226
227
228
229
230
231
232
pub use cli::Cli;
#[allow(warnings)]
pub mod cli {
    pub fn print_help(content:impl ToString){
        let content = content.to_string().clone();
        let json = json::parse(&content).expect("parse json error");
        // println!("{}", json);
        let name = &json["name"]
            .as_str()
            .expect("parse name in json error")
            .to_string();
        let version = &json["version"].as_str().unwrap_or(" ").to_string();
        let authors = &json["authors"]
            .members()
            .into_iter()
            .map(|a| a.as_str().unwrap_or(" ").to_string())
            .collect::<Vec<_>>();

        let description = &json["description"].as_str().unwrap_or(" ").to_string();
        let options = &json["options"]
            .members()
            .into_iter()
            .map(|s| {
                let arg = s["name"].as_str().unwrap_or(" ").to_string();
                let short = s["short"].as_str().unwrap_or(" ").to_string();

                let description = s["description"].as_str().unwrap_or(" ").to_string();
                (arg, short, description)
            })
            .collect::<Vec<_>>();

        let commands = &json["commands"]
            .members()
            .into_iter()
            .map(|s| {
                let arg = s["name"].as_str().unwrap_or(" ").to_string();
                let short = s["short"].as_str().unwrap_or(" ").to_string();

                let description = s["description"].as_str().unwrap_or(" ").to_string();

                (arg, short, description)
            })
            .collect::<Vec<_>>();
        println!("{} {}", name, version);
        println!("{}", authors.join(","));
        println!("{}", description);
        println!("");
        println!("Usage: {} [OPTIONS] [COMMAND]\n", name);
        if options.len() > 0 {
            println!("Options:");
            options.iter().for_each(|s| {
                if s.1.to_string() == " " {
                    println!("{}\t{}\t\t{}", name, s.0.to_string(), s.2);
                } else if s.0.to_string() == " " {
                    println!("{}\t{}\t\t{}", name, s.1.to_string(), s.2);
                } else {
                    println!(
                        "{}\t{:^}, {}\t{}",
                        name,
                        s.0.to_string(),
                        s.1.to_string(),
                        s.2
                    );
                }
            });
            println!("");
        }
        if commands.len() > 0 {
            println!("Commands:");
            commands.iter().for_each(|s| {
                if s.1.to_string() == " " {
                    println!("{}\t{}\t\t{}", name, s.0.to_string(), s.2);
                } else if s.0.to_string() == " " {
                    println!("{}\t{}\t\t{}", name, s.1.to_string(), s.2);
                } else {
                    println!(
                        "{}\t{:^}, {}\t{}",
                        name,
                        s.0.to_string(),
                        s.1.to_string(),
                        s.2
                    );
                }
            });
        }
        println!("");
        println!("{}\t-h --help\tPrints help information", name);
    }
    pub fn create_demo_json(){
        let contents = include_str!("../demo.json");
        std::fs::write("cli.json", contents).unwrap();
    }
    #[derive(Debug, Clone, Default)]
    pub struct Cli{
        json:String,
    }
    impl Cli {
        ///# load cli info from json
        /// ```rust
        /// fn main() {
        /// use cok::cli::Cli;
        /// let cli = Cli::load_from_json(r#"
        /// {
        ///     "name":"cargo",
        ///     "version":"1.0.0",
        ///     "authors":["andrew <dnrops@anonymous.com>","ryan <rysn@gmail.com>"],
        ///     "description":"Rust's package manager",
        ///     "options":[
        ///         {
        ///             "name":"--version",
        ///             "short":"V",
        ///             "description":"Print version info and exit"
        ///         }
        ///     ],
        ///     "commands":[
        ///         {
        ///                 "name":"build",
        ///                 "short":"b",
        ///                 "description":"Compile the current package"
        ///         }
        ///     ]
        /// }
        /// "#);
        ///}
        /// ```
        ///
        pub fn new(json:impl ToString) -> Self {
            let args = doe::args!();
            if args.len() < 1
                || (args.len() == 1 && args[0] == "-h")
                || (args.len() == 1 && args[0] == "--help")
            {
                print_help(json.to_string());
            }
            Self{json:json.to_string()}
        }
      
        pub fn print_help(&self){
            let content = self.json.clone();
            let json = json::parse(&content).expect("parse json error");
            // println!("{}", json);
            let name = &json["name"]
                .as_str()
                .expect("parse name in json error")
                .to_string();
            let version = &json["version"].as_str().unwrap_or(" ").to_string();
            let authors = &json["authors"]
                .members()
                .into_iter()
                .map(|a| a.as_str().unwrap_or(" ").to_string())
                .collect::<Vec<_>>();
    
            let description = &json["description"].as_str().unwrap_or(" ").to_string();
            let options = &json["options"]
                .members()
                .into_iter()
                .map(|s| {
                    let arg = s["name"].as_str().unwrap_or(" ").to_string();
                    let short = s["short"].as_str().unwrap_or(" ").to_string();
    
                    let description = s["description"].as_str().unwrap_or(" ").to_string();
                    (arg, short, description)
                })
                .collect::<Vec<_>>();
    
            let commands = &json["commands"]
                .members()
                .into_iter()
                .map(|s| {
                    let arg = s["name"].as_str().unwrap_or(" ").to_string();
                    let short = s["short"].as_str().unwrap_or(" ").to_string();
    
                    let description = s["description"].as_str().unwrap_or(" ").to_string();
    
                    (arg, short, description)
                })
                .collect::<Vec<_>>();
            println!("{} {}", name, version);
            println!("{}", authors.join(","));
            println!("{}", description);
            println!("");
            println!("Usage: {} [OPTIONS] [COMMAND]\n", name);
            if options.len() > 0 {
                println!("Options:");
                options.iter().for_each(|s| {
                    if s.1.to_string() == " " {
                        println!("{}\t{}\t\t{}", name, s.0.to_string(), s.2);
                    } else if s.0.to_string() == " " {
                        println!("{}\t{}\t\t{}", name, s.1.to_string(), s.2);
                    } else {
                        println!(
                            "{}\t{:^}, {}\t{}",
                            name,
                            s.0.to_string(),
                            s.1.to_string(),
                            s.2
                        );
                    }
                });
                println!("");
            }
            if commands.len() > 0 {
                println!("Commands:");
                commands.iter().for_each(|s| {
                    if s.1.to_string() == " " {
                        println!("{}\t{}\t\t{}", name, s.0.to_string(), s.2);
                    } else if s.0.to_string() == " " {
                        println!("{}\t{}\t\t{}", name, s.1.to_string(), s.2);
                    } else {
                        println!(
                            "{}\t{:^}, {}\t{}",
                            name,
                            s.0.to_string(),
                            s.1.to_string(),
                            s.2
                        );
                    }
                });
            }
            println!("");
            println!("{}\t-h --help\tPrints help information", name);
        }
       
        pub fn create_demo_json(&self){
            let contents = include_str!("../demo.json");
            std::fs::write("cli.json", contents).unwrap();
        }
        pub fn args(&self) -> Vec<String> {
            doe::args!()
        }
    }
}