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
mod component;
pub use component::*;
use crate::{
private, windows::WindowsComponents, Components, Utf8Components, Utf8Encoding, Utf8Path,
};
use std::{cmp, fmt, iter};
#[derive(Clone)]
pub struct Utf8WindowsComponents<'a> {
inner: WindowsComponents<'a>,
}
impl<'a> Utf8WindowsComponents<'a> {
pub(crate) fn new(path: &'a str) -> Self {
Self {
inner: WindowsComponents::new(path.as_bytes()),
}
}
pub fn as_path<T>(&self) -> &'a Utf8Path<T>
where
T: for<'enc> Utf8Encoding<'enc>,
{
Utf8Path::new(self.as_str())
}
}
impl private::Sealed for Utf8WindowsComponents<'_> {}
impl<'a> Utf8Components<'a> for Utf8WindowsComponents<'a> {
type Component = Utf8WindowsComponent<'a>;
fn as_str(&self) -> &'a str {
unsafe { std::str::from_utf8_unchecked(self.inner.as_bytes()) }
}
fn is_absolute(&self) -> bool {
self.inner.is_absolute()
}
fn has_root(&self) -> bool {
self.inner.has_root()
}
}
impl<'a> Utf8WindowsComponents<'a> {
fn peek_front(&self) -> Option<<Self as Utf8Components<'a>>::Component> {
self.clone().next()
}
#[inline]
pub fn has_prefix(&self) -> bool {
self.prefix().is_some()
}
pub fn prefix(&self) -> Option<Utf8WindowsPrefixComponent> {
match self.peek_front() {
Some(Utf8WindowsComponent::Prefix(p)) => Some(p),
_ => None,
}
}
#[inline]
pub fn prefix_kind(&self) -> Option<Utf8WindowsPrefix> {
self.prefix().map(|p| p.kind())
}
pub fn has_any_verbatim_prefix(&self) -> bool {
matches!(
self.prefix_kind(),
Some(
Utf8WindowsPrefix::Verbatim(_)
| Utf8WindowsPrefix::UNC(..)
| Utf8WindowsPrefix::Disk(_)
)
)
}
pub fn has_verbatim_prefix(&self) -> bool {
matches!(self.prefix_kind(), Some(Utf8WindowsPrefix::Verbatim(_)))
}
pub fn has_verbatim_unc_prefix(&self) -> bool {
matches!(self.prefix_kind(), Some(Utf8WindowsPrefix::VerbatimUNC(..)))
}
pub fn has_verbatim_disk_prefix(&self) -> bool {
matches!(self.prefix_kind(), Some(Utf8WindowsPrefix::VerbatimDisk(_)))
}
pub fn has_device_ns_prefix(&self) -> bool {
matches!(self.prefix_kind(), Some(Utf8WindowsPrefix::DeviceNS(_)))
}
pub fn has_unc_prefix(&self) -> bool {
matches!(self.prefix_kind(), Some(Utf8WindowsPrefix::UNC(..)))
}
pub fn has_disk_prefix(&self) -> bool {
matches!(self.prefix_kind(), Some(Utf8WindowsPrefix::Disk(_)))
}
pub fn has_physical_root(&self) -> bool {
self.inner.has_physical_root()
}
pub fn has_implicit_root(&self) -> bool {
match self.prefix().map(|p| p.kind()) {
Some(Utf8WindowsPrefix::Disk(_)) | None => false,
Some(_) => true,
}
}
}
impl AsRef<[u8]> for Utf8WindowsComponents<'_> {
#[inline]
fn as_ref(&self) -> &[u8] {
self.as_str().as_bytes()
}
}
impl AsRef<str> for Utf8WindowsComponents<'_> {
#[inline]
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<T> AsRef<Utf8Path<T>> for Utf8WindowsComponents<'_>
where
T: for<'enc> Utf8Encoding<'enc>,
{
#[inline]
fn as_ref(&self) -> &Utf8Path<T> {
Utf8Path::new(self.as_str())
}
}
impl<'a> fmt::Debug for Utf8WindowsComponents<'a> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
struct DebugHelper<'a>(Utf8WindowsComponents<'a>);
impl<'a> fmt::Debug for DebugHelper<'a> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_list().entries(self.0.clone()).finish()
}
}
f.debug_tuple("Utf8WindowsComponents")
.field(&DebugHelper(self.clone()))
.finish()
}
}
impl<'a> Iterator for Utf8WindowsComponents<'a> {
type Item = <Self as Utf8Components<'a>>::Component;
fn next(&mut self) -> Option<Self::Item> {
self.inner
.next()
.map(|c| unsafe { Utf8WindowsComponent::from_utf8_unchecked(&c) })
}
}
impl<'a> DoubleEndedIterator for Utf8WindowsComponents<'a> {
fn next_back(&mut self) -> Option<Self::Item> {
self.inner
.next_back()
.map(|c| unsafe { Utf8WindowsComponent::from_utf8_unchecked(&c) })
}
}
impl<'a> iter::FusedIterator for Utf8WindowsComponents<'a> {}
impl<'a> cmp::PartialEq for Utf8WindowsComponents<'a> {
#[inline]
fn eq(&self, other: &Self) -> bool {
PartialEq::eq(&self.inner, &other.inner)
}
}
impl<'a> cmp::Eq for Utf8WindowsComponents<'a> {}
impl<'a> cmp::PartialOrd for Utf8WindowsComponents<'a> {
#[inline]
fn partial_cmp(&self, other: &Self) -> Option<cmp::Ordering> {
PartialOrd::partial_cmp(&self.inner, &other.inner)
}
}
impl<'a> cmp::Ord for Utf8WindowsComponents<'a> {
#[inline]
fn cmp(&self, other: &Self) -> cmp::Ordering {
Ord::cmp(&self.inner, &other.inner)
}
}