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
use anyhow::{bail, Result};
use std::path::Path;
pub fn is_non_ascii_name(name: &str) -> bool {
name.chars().any(|ch| ch > '\x7f')
}
pub fn is_keyword(name: &str) -> bool {
[
"Self", "abstract", "as", "await", "become", "box", "break", "const", "continue", "dep",
"do", "dyn", "else", "enum", "extern", "false", "final", "fn", "for", "if", "impl", "in",
"let", "loop", "macro", "match", "move", "mut", "override", "priv", "pub", "ref", "return",
"self", "static", "struct", "super", "trait", "true", "try", "type", "typeof", "unsafe",
"unsized", "use", "virtual", "where", "while", "yield",
]
.contains(&name)
}
pub fn is_windows_reserved(name: &str) -> bool {
[
"con", "prn", "aux", "nul", "com1", "com2", "com3", "com4", "com5", "com6", "com7", "com8",
"com9", "lpt1", "lpt2", "lpt3", "lpt4", "lpt5", "lpt6", "lpt7", "lpt8", "lpt9",
]
.contains(&name.to_ascii_lowercase().as_str())
}
pub fn is_conflicting_suffix(name: &str) -> bool {
["alloc", "proc_macro", "proc-macro"].contains(&name)
}
pub fn is_conflicting_artifact_name(name: &str) -> bool {
["deps", "examples", "build", "incremental"].contains(&name)
}
pub fn contains_invalid_char(name: &str, use_case: &str) -> Result<()> {
let mut chars = name.chars();
if let Some(ch) = chars.next() {
if ch.is_digit(10) {
bail!(
"the name `{name}` cannot be used as a {use_case}, \
the name cannot start with a digit"
);
}
if !(unicode_xid::UnicodeXID::is_xid_start(ch) || ch == '_') {
bail!(
"invalid character `{ch}` in {use_case}: `{name}`, \
the first character must be a Unicode XID start character \
(most letters or `_`)"
);
}
}
for ch in chars {
if !(unicode_xid::UnicodeXID::is_xid_continue(ch) || ch == '-') {
bail!(
"invalid character `{ch}` in {use_case}: `{name}`, \
characters must be Unicode XID characters \
(numbers, `-`, `_`, or most letters)"
);
}
}
if name.is_empty() {
bail!(
"{use_case} cannot be left empty, \
please use a valid name"
);
}
Ok(())
}
pub fn is_windows_reserved_path(path: &Path) -> bool {
path.iter()
.filter_map(|component| component.to_str())
.any(|component| {
let stem = component.split('.').next().unwrap();
is_windows_reserved(stem)
})
}
pub fn is_glob_pattern<T: AsRef<str>>(name: T) -> bool {
name.as_ref().contains(&['*', '?', '[', ']'][..])
}
#[test]
fn test_invalid_char() {
assert_eq!(
contains_invalid_char("test#proj", "package name").map_err(|e| e.to_string()),
std::result::Result::Err(
"invalid character `#` in package name: `test#proj`, \
characters must be Unicode XID characters \
(numbers, `-`, `_`, or most letters)"
.into()
)
);
assert_eq!(
contains_invalid_char("test proj", "package name").map_err(|e| e.to_string()),
std::result::Result::Err(
"invalid character ` ` in package name: `test proj`, \
characters must be Unicode XID characters \
(numbers, `-`, `_`, or most letters)"
.into()
)
);
assert_eq!(
contains_invalid_char("", "package name").map_err(|e| e.to_string()),
std::result::Result::Err(
"package name cannot be left empty, \
please use a valid name"
.into()
)
);
assert!(matches!(
contains_invalid_char("test_proj", "package name"),
std::result::Result::Ok(())
));
}