Skip to content

Commit a5a138e

Browse files
committed
update binary arguments
1 parent 2ccc3cd commit a5a138e

File tree

4 files changed

+117
-37
lines changed

4 files changed

+117
-37
lines changed

crates/cuid/Cargo.toml

+4
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ repository.workspace = true
1414
cuid1 = { workspace = true, optional = true }
1515
cuid2 = { workspace = true, optional = true }
1616

17+
[dev-dependencies]
18+
paste.workspace = true
19+
wasm-bindgen-test.workspace = true
20+
1721
[lib]
1822
name = "cuid"
1923
path = "src/lib.rs"

crates/cuid/src/bin.rs

+75-32
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,20 @@ use std::{
88
pub fn main() {
99
let args: CuidArgs = env::args().into();
1010

11-
let id = match args.v2 {
12-
true => {
11+
let id = match args.version {
12+
CuidVersion::V1 => {
1313
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()
1615
} else {
17-
cuid2::create_id()
16+
one_off_cuid1()
1817
}
1918
}
20-
false => {
19+
CuidVersion::V2 => {
2120
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()
2323
} else {
24-
one_off_cuid1()
24+
cuid2::create_id()
2525
}
2626
}
2727
};
@@ -33,45 +33,88 @@ const HELP: &str = r#"Usage: cuid [OPTION]...
3333
Generate and print a CUID.
3434
3535
Options:
36-
--v2 generate a v2 CUID/slug (this will eventually be the default)
37-
--slug generate a slug instead of a full CUID
3836
-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"#;
4040

4141
const VERSION: &str = env!("CARGO_PKG_VERSION");
4242

43+
#[derive(Debug)]
44+
enum CuidVersion {
45+
V1,
46+
V2,
47+
}
48+
4349
/// Commandline arguments for the CUID binary
4450
#[derive(Debug)]
4551
struct CuidArgs {
4652
/// Whether to produce a slug instead of a CUID
4753
slug: bool,
48-
v2: bool,
54+
version: CuidVersion,
4955
}
5056
impl From<Args> for CuidArgs {
5157
fn from(args: Args) -> Self {
5258
let mut slug = false;
53-
let mut v2 = false;
59+
let mut version = CuidVersion::V1;
5460

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+
},
64107
}
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+
}
74110

75-
CuidArgs { slug, v2 }
111+
CuidArgs { slug, version }
76112
}
77113
}
114+
115+
fn print_error_and_exit(msg: &str) {
116+
println!("error: {}", msg);
117+
println!();
118+
println!("{}", HELP);
119+
exit(1);
120+
}

crates/cuid/src/lib.rs

+37-2
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,48 @@
3535
//!
3636
3737
#[cfg(feature = "v1")]
38-
pub use cuid1::{cuid as cuid1, is_cuid as is_cuid1, is_slug as is_cuid1_slug, slug as cuid1_slug};
38+
pub use cuid1::{
39+
self as v1, cuid as cuid1, is_cuid as is_cuid1, is_slug as is_cuid1_slug, slug as cuid1_slug,
40+
};
3941
#[cfg(feature = "v1")]
4042
#[doc(hidden)]
4143
pub use cuid1::{one_off_cuid1, one_off_cuid1_slug};
4244

4345
#[cfg(feature = "v2")]
4446
pub use cuid2::{
45-
cuid as cuid2, is_cuid2, is_slug as is_cuid2_slug, slug as cuid2_slug,
47+
self as v2, cuid as cuid2, is_cuid2, is_slug as is_cuid2_slug, slug as cuid2_slug,
4648
CuidConstructor as Cuid2Constructor,
4749
};
50+
51+
#[cfg(test)]
52+
mod test {
53+
use super::*;
54+
55+
/// Run an already-defined test in WASM as well.
56+
macro_rules! wasm_test {
57+
($name:ident) => {
58+
paste::paste! {
59+
#[wasm_bindgen_test::wasm_bindgen_test]
60+
fn [<wasm_ $name>]() {
61+
$name()
62+
}
63+
}
64+
};
65+
}
66+
67+
#[cfg(feature = "v1")]
68+
#[test]
69+
fn test_v1() {
70+
is_cuid1(cuid1());
71+
is_cuid1_slug(cuid1_slug());
72+
}
73+
wasm_test!(test_v1);
74+
75+
#[cfg(feature = "v2")]
76+
#[test]
77+
fn test_v2() {
78+
is_cuid2(cuid2());
79+
is_cuid2_slug(cuid2_slug());
80+
}
81+
wasm_test!(test_v2);
82+
}

crates/cuid1/src/fingerprint.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
use std::process;
2-
31
use crate::text::{pad, to_base_string};
42
use crate::BASE;
53

@@ -10,7 +8,7 @@ static FINGERPRINT_PADDING: usize = 2;
108
/// On WASM, which does not have PIDs, replace with a random number.
119
fn pid() -> String {
1210
#[cfg(not(target_family = "wasm"))]
13-
let pid = process::id();
11+
let pid = std::process::id();
1412
#[cfg(target_family = "wasm")]
1513
let pid = rand::random::<u32>();
1614

0 commit comments

Comments
 (0)