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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
#![allow(unused_assignments)]
#![doc(
html_logo_url = "https://github.com/Owez/climake/raw/master/logo.png",
html_favicon_url = "https://github.com/Owez/climake/raw/master/logo.png"
)]
use std::{env, process};
#[derive(Debug)]
pub enum CliError {
ArgExists,
}
#[derive(Debug, Clone, PartialEq, PartialOrd)]
enum CliCallType {
Short(char),
Long(String),
}
pub struct CliArgument {
pub help_str: &'static str,
calls: Vec<CliCallType>,
run: Box<dyn Fn(Vec<String>)>,
}
impl CliArgument {
pub fn new(
short_calls: Vec<char>,
long_calls: Vec<&'static str>,
help: Option<&'static str>,
run: Box<dyn Fn(Vec<String>)>,
) -> Self {
let mut calls: Vec<CliCallType> = Vec::new();
for short_call in short_calls {
calls.push(CliCallType::Short(short_call));
}
for long_call in long_calls {
calls.push(CliCallType::Long(String::from(long_call)));
}
if help.is_some() {
return CliArgument {
calls: calls,
help_str: help.unwrap(),
run: run,
};
}
CliArgument {
calls: calls,
help_str: "No extra CLI help provided.",
run: run,
}
}
pub fn help_msg(&self) -> String {
let cur_exe = env::current_exe();
let mut call_varients: Vec<String> = vec![];
for call in self.calls.iter() {
match call {
CliCallType::Long(l) => call_varients.push(format!("--{}", l)),
CliCallType::Short(s) => call_varients.push(format!("-{}", s)),
}
}
format!(
"Usage: ./{} [{}] [CONTENT]\n\nAbout:\n {}",
cur_exe.unwrap().file_stem().unwrap().to_str().unwrap(),
call_varients.join(", "),
self.help_str,
)
}
}
pub struct CliMake {
pub arguments: Vec<CliArgument>,
pub help_str: &'static str,
}
impl CliMake {
pub fn new(arguments: Vec<CliArgument>, help: Option<&'static str>) -> Result<Self, CliError> {
let clean_help = match help {
Some(h) => h,
None => "No extra argument help provided.",
};
let mut cli = CliMake {
arguments: vec![],
help_str: clean_help,
};
for arg in arguments {
cli.add_arg(arg)?;
}
Ok(cli)
}
pub fn parse(&self) {
let mut to_run: Option<&CliArgument> = None;
let mut run_buffer: Vec<String> = Vec::new();
let main_args = env::args();
if main_args.len() == 1 {
eprintln!("{}", self.help_msg());
process::exit(1);
}
for (arg_ind, arg) in main_args.enumerate() {
if arg_ind == 0 {
continue;
} else if arg_ind == 1 && (arg == String::from("--help") || arg == "-h") {
println!("{}", self.help_msg());
process::exit(0);
}
let mut arg_possible = false;
for (ind_char, character) in arg.chars().enumerate() {
if character == '-' {
if ind_char == 0 {
arg_possible = true;
continue;
} else if ind_char == 1 {
match to_run {
Some(r) => {
if run_buffer.len() == 0 && arg == String::from("--help") {
println!("{}", r.help_msg());
process::exit(0);
}
(r.run)(run_buffer.clone());
to_run = None;
run_buffer.drain(..);
}
None => (),
}
let clean_arg = String::from(&arg[2..]);
to_run = self.search_arg(CliCallType::Long(clean_arg));
break;
}
}
if arg_possible {
match to_run {
Some(r) => {
(r.run)(run_buffer.clone());
to_run = None;
run_buffer.drain(..);
}
None => (),
}
to_run = self.search_arg(CliCallType::Short(character));
} else {
run_buffer.push(arg);
break;
}
}
if arg_ind + 1 == env::args().len() {
match to_run {
Some(r) => (r.run)(run_buffer.clone()),
None => (),
}
}
}
}
pub fn add_arg(&mut self, argument: CliArgument) -> Result<(), CliError> {
for call in argument.calls.iter() {
let possible_dupe = self.search_arg(call.clone());
if possible_dupe.is_some() {
return Err(CliError::ArgExists);
}
}
self.arguments.push(argument);
Ok(())
}
pub fn help_msg(&self) -> String {
let cur_exe = env::current_exe();
let mut arg_help: Vec<String> = vec![];
for arg in self.arguments.iter() {
let mut arg_vec = Vec::new();
for call in arg.calls.iter() {
match call {
CliCallType::Long(l) => arg_vec.push(format!("--{}", l)),
CliCallType::Short(s) => arg_vec.push(format!("-{}", s)),
}
}
arg_help.push(format!(" [{}] - {}", arg_vec.join(", "), arg.help_str));
}
format!(
"Usage: ./{} [OPTIONS]\n\nAbout:\n {}\n\nOptions:\n{}",
cur_exe.unwrap().file_stem().unwrap().to_str().unwrap(),
self.help_str,
arg_help.join("\n")
)
}
fn search_arg(&self, query: CliCallType) -> Option<&CliArgument> {
for argument in self.arguments.iter() {
for call in argument.calls.iter() {
if call == &query {
return Some(&argument);
}
}
}
None
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn help_msg() {
fn test_func(args: Vec<String>) {
println!("It works! Found args: {:?}", args);
}
let cli_args = vec![
CliArgument::new(
vec!['q', 'r', 's'],
vec!["hi", "second"],
Some("Simple help"),
Box::new(test_func),
),
CliArgument::new(
vec!['a', 'b', 'c'],
vec!["other", "thing"],
Some("Other help"),
Box::new(test_func),
),
];
let cli = CliMake::new(cli_args, Some("A simple CLI.")).unwrap();
cli.help_msg();
}
}