@@ -8,20 +8,20 @@ use std::{
8
8
pub fn main ( ) {
9
9
let args: CuidArgs = env:: args ( ) . into ( ) ;
10
10
11
- let id = match args. v2 {
12
- true => {
11
+ let id = match args. version {
12
+ CuidVersion :: V1 => {
13
13
if args. slug {
14
- // construct a v2 cuid with the same length as cuid1 slugs
15
- cuid2:: CuidConstructor :: new ( ) . with_length ( 10 ) . create_id ( )
14
+ one_off_cuid1_slug ( )
16
15
} else {
17
- cuid2 :: create_id ( )
16
+ one_off_cuid1 ( )
18
17
}
19
18
}
20
- false => {
19
+ CuidVersion :: V2 => {
21
20
if args. slug {
22
- one_off_cuid1_slug ( )
21
+ // construct a v2 cuid with the same length as cuid1 slugs
22
+ cuid2:: CuidConstructor :: new ( ) . with_length ( 10 ) . create_id ( )
23
23
} else {
24
- one_off_cuid1 ( )
24
+ cuid2 :: create_id ( )
25
25
}
26
26
}
27
27
} ;
@@ -33,45 +33,88 @@ const HELP: &str = r#"Usage: cuid [OPTION]...
33
33
Generate and print a CUID.
34
34
35
35
Options:
36
- --v2 generate a v2 CUID/slug (this will eventually be the default)
37
- --slug generate a slug instead of a full CUID
38
36
-h, --help display this help and exit
39
- -v, --version display version information and exit"# ;
37
+ -v, --version display version information and exit
38
+ --cuid <1|2> generate a CUID/slug using the specified version (default 1)
39
+ --slug generate a slug instead of a full CUID"# ;
40
40
41
41
const VERSION : & str = env ! ( "CARGO_PKG_VERSION" ) ;
42
42
43
+ #[ derive( Debug ) ]
44
+ enum CuidVersion {
45
+ V1 ,
46
+ V2 ,
47
+ }
48
+
43
49
/// Commandline arguments for the CUID binary
44
50
#[ derive( Debug ) ]
45
51
struct CuidArgs {
46
52
/// Whether to produce a slug instead of a CUID
47
53
slug : bool ,
48
- v2 : bool ,
54
+ version : CuidVersion ,
49
55
}
50
56
impl From < Args > for CuidArgs {
51
57
fn from ( args : Args ) -> Self {
52
58
let mut slug = false ;
53
- let mut v2 = false ;
59
+ let mut version = CuidVersion :: V1 ;
54
60
55
- // The first argument should be the binary name. Skip it.
56
- args. skip ( 1 ) . for_each ( |arg| match arg. as_str ( ) {
57
- "-h" | "--help" => {
58
- println ! ( "{}" , HELP ) ;
59
- exit ( 0 ) ;
60
- }
61
- "-v" | "--version" => {
62
- println ! ( "{}" , VERSION ) ;
63
- exit ( 0 ) ;
61
+ // start on 1 to skip binary name.
62
+ let mut idx = 1 ;
63
+ let args = args. collect :: < Vec < _ > > ( ) ;
64
+ loop {
65
+ match args. get ( idx) {
66
+ None => {
67
+ break ;
68
+ }
69
+ Some ( arg) => match arg. as_str ( ) {
70
+ "-h" | "--help" => {
71
+ println ! ( "{}" , HELP ) ;
72
+ exit ( 0 ) ;
73
+ }
74
+ "-v" | "--version" => {
75
+ println ! ( "{}" , VERSION ) ;
76
+ exit ( 0 ) ;
77
+ }
78
+ "--slug" => slug = true ,
79
+ // yeah yeah I should probably just use clap at this point,
80
+ // but we'll get to it eventually
81
+ "--cuid" => {
82
+ idx += 1 ;
83
+ match args. get ( idx) {
84
+ None => print_error_and_exit ( "--cuid requires an argument" ) ,
85
+ Some ( arg) => match arg. as_str ( ) {
86
+ "1" => version = CuidVersion :: V1 ,
87
+ "2" => version = CuidVersion :: V2 ,
88
+ _ => {
89
+ print_error_and_exit (
90
+ "unrecognized cuid version, must be one of: 1|2" ,
91
+ ) ;
92
+ }
93
+ } ,
94
+ }
95
+ }
96
+ arg if arg. starts_with ( "--cuid=" ) => match arg. split_once ( "=" ) . unwrap ( ) . 1 {
97
+ "1" => version = CuidVersion :: V1 ,
98
+ "2" => version = CuidVersion :: V2 ,
99
+ _ => {
100
+ print_error_and_exit ( "unrecognized cuid version, must be one of: 1|2" ) ;
101
+ }
102
+ } ,
103
+ _ => {
104
+ print_error_and_exit ( & format ! ( "unrecognized argument {}" , arg) ) ;
105
+ }
106
+ } ,
64
107
}
65
- "--slug" => slug = true ,
66
- "--v2" => v2 = true ,
67
- _ => {
68
- println ! ( "error: unrecognized argument {}" , arg) ;
69
- println ! ( ) ;
70
- println ! ( "{}" , HELP ) ;
71
- exit ( 1 ) ;
72
- }
73
- } ) ;
108
+ idx += 1 ;
109
+ }
74
110
75
- CuidArgs { slug, v2 }
111
+ CuidArgs { slug, version }
76
112
}
77
113
}
114
+
115
+ fn print_error_and_exit ( msg : & str ) {
116
+ println ! ( "error: {}" , msg) ;
117
+ println ! ( ) ;
118
+ println ! ( "{}" , HELP ) ;
119
+ exit ( 1 ) ;
120
+ }
0 commit comments