]> git.lizzy.rs Git - rust.git/blob - src/libstd/path.rs
Auto merge of #68037 - msizanoen1:riscv-ci, r=alexcrichton
[rust.git] / src / libstd / path.rs
1 // ignore-tidy-filelength
2
3 //! Cross-platform path manipulation.
4 //!
5 //! This module provides two types, [`PathBuf`] and [`Path`] (akin to [`String`]
6 //! and [`str`]), for working with paths abstractly. These types are thin wrappers
7 //! around [`OsString`] and [`OsStr`] respectively, meaning that they work directly
8 //! on strings according to the local platform's path syntax.
9 //!
10 //! Paths can be parsed into [`Component`]s by iterating over the structure
11 //! returned by the [`components`] method on [`Path`]. [`Component`]s roughly
12 //! correspond to the substrings between path separators (`/` or `\`). You can
13 //! reconstruct an equivalent path from components with the [`push`] method on
14 //! [`PathBuf`]; note that the paths may differ syntactically by the
15 //! normalization described in the documentation for the [`components`] method.
16 //!
17 //! ## Simple usage
18 //!
19 //! Path manipulation includes both parsing components from slices and building
20 //! new owned paths.
21 //!
22 //! To parse a path, you can create a [`Path`] slice from a [`str`]
23 //! slice and start asking questions:
24 //!
25 //! ```
26 //! use std::path::Path;
27 //! use std::ffi::OsStr;
28 //!
29 //! let path = Path::new("/tmp/foo/bar.txt");
30 //!
31 //! let parent = path.parent();
32 //! assert_eq!(parent, Some(Path::new("/tmp/foo")));
33 //!
34 //! let file_stem = path.file_stem();
35 //! assert_eq!(file_stem, Some(OsStr::new("bar")));
36 //!
37 //! let extension = path.extension();
38 //! assert_eq!(extension, Some(OsStr::new("txt")));
39 //! ```
40 //!
41 //! To build or modify paths, use [`PathBuf`]:
42 //!
43 //! ```
44 //! use std::path::PathBuf;
45 //!
46 //! // This way works...
47 //! let mut path = PathBuf::from("c:\\");
48 //!
49 //! path.push("windows");
50 //! path.push("system32");
51 //!
52 //! path.set_extension("dll");
53 //!
54 //! // ... but push is best used if you don't know everything up
55 //! // front. If you do, this way is better:
56 //! let path: PathBuf = ["c:\\", "windows", "system32.dll"].iter().collect();
57 //! ```
58 //!
59 //! [`Component`]: ../../std/path/enum.Component.html
60 //! [`components`]: ../../std/path/struct.Path.html#method.components
61 //! [`PathBuf`]: ../../std/path/struct.PathBuf.html
62 //! [`Path`]: ../../std/path/struct.Path.html
63 //! [`push`]: ../../std/path/struct.PathBuf.html#method.push
64 //! [`String`]: ../../std/string/struct.String.html
65 //!
66 //! [`str`]: ../../std/primitive.str.html
67 //! [`OsString`]: ../../std/ffi/struct.OsString.html
68 //! [`OsStr`]: ../../std/ffi/struct.OsStr.html
69
70 #![stable(feature = "rust1", since = "1.0.0")]
71
72 use crate::borrow::{Borrow, Cow};
73 use crate::cmp;
74 use crate::error::Error;
75 use crate::fmt;
76 use crate::fs;
77 use crate::hash::{Hash, Hasher};
78 use crate::io;
79 use crate::iter::{self, FusedIterator};
80 use crate::ops::{self, Deref};
81 use crate::rc::Rc;
82 use crate::str::FromStr;
83 use crate::sync::Arc;
84
85 use crate::ffi::{OsStr, OsString};
86
87 use crate::sys::path::{is_sep_byte, is_verbatim_sep, parse_prefix, MAIN_SEP_STR};
88
89 ////////////////////////////////////////////////////////////////////////////////
90 // GENERAL NOTES
91 ////////////////////////////////////////////////////////////////////////////////
92 //
93 // Parsing in this module is done by directly transmuting OsStr to [u8] slices,
94 // taking advantage of the fact that OsStr always encodes ASCII characters
95 // as-is.  Eventually, this transmutation should be replaced by direct uses of
96 // OsStr APIs for parsing, but it will take a while for those to become
97 // available.
98
99 ////////////////////////////////////////////////////////////////////////////////
100 // Windows Prefixes
101 ////////////////////////////////////////////////////////////////////////////////
102
103 /// Windows path prefixes, e.g., `C:` or `\\server\share`.
104 ///
105 /// Windows uses a variety of path prefix styles, including references to drive
106 /// volumes (like `C:`), network shared folders (like `\\server\share`), and
107 /// others. In addition, some path prefixes are "verbatim" (i.e., prefixed with
108 /// `\\?\`), in which case `/` is *not* treated as a separator and essentially
109 /// no normalization is performed.
110 ///
111 /// # Examples
112 ///
113 /// ```
114 /// use std::path::{Component, Path, Prefix};
115 /// use std::path::Prefix::*;
116 /// use std::ffi::OsStr;
117 ///
118 /// fn get_path_prefix(s: &str) -> Prefix {
119 ///     let path = Path::new(s);
120 ///     match path.components().next().unwrap() {
121 ///         Component::Prefix(prefix_component) => prefix_component.kind(),
122 ///         _ => panic!(),
123 ///     }
124 /// }
125 ///
126 /// # if cfg!(windows) {
127 /// assert_eq!(Verbatim(OsStr::new("pictures")),
128 ///            get_path_prefix(r"\\?\pictures\kittens"));
129 /// assert_eq!(VerbatimUNC(OsStr::new("server"), OsStr::new("share")),
130 ///            get_path_prefix(r"\\?\UNC\server\share"));
131 /// assert_eq!(VerbatimDisk(b'C'), get_path_prefix(r"\\?\c:\"));
132 /// assert_eq!(DeviceNS(OsStr::new("BrainInterface")),
133 ///            get_path_prefix(r"\\.\BrainInterface"));
134 /// assert_eq!(UNC(OsStr::new("server"), OsStr::new("share")),
135 ///            get_path_prefix(r"\\server\share"));
136 /// assert_eq!(Disk(b'C'), get_path_prefix(r"C:\Users\Rust\Pictures\Ferris"));
137 /// # }
138 /// ```
139 #[derive(Copy, Clone, Debug, Hash, PartialOrd, Ord, PartialEq, Eq)]
140 #[stable(feature = "rust1", since = "1.0.0")]
141 pub enum Prefix<'a> {
142     /// Verbatim prefix, e.g., `\\?\cat_pics`.
143     ///
144     /// Verbatim prefixes consist of `\\?\` immediately followed by the given
145     /// component.
146     #[stable(feature = "rust1", since = "1.0.0")]
147     Verbatim(#[stable(feature = "rust1", since = "1.0.0")] &'a OsStr),
148
149     /// Verbatim prefix using Windows' _**U**niform **N**aming **C**onvention_,
150     /// e.g., `\\?\UNC\server\share`.
151     ///
152     /// Verbatim UNC prefixes consist of `\\?\UNC\` immediately followed by the
153     /// server's hostname and a share name.
154     #[stable(feature = "rust1", since = "1.0.0")]
155     VerbatimUNC(
156         #[stable(feature = "rust1", since = "1.0.0")] &'a OsStr,
157         #[stable(feature = "rust1", since = "1.0.0")] &'a OsStr,
158     ),
159
160     /// Verbatim disk prefix, e.g., `\\?\C:\`.
161     ///
162     /// Verbatim disk prefixes consist of `\\?\` immediately followed by the
163     /// drive letter and `:\`.
164     #[stable(feature = "rust1", since = "1.0.0")]
165     VerbatimDisk(#[stable(feature = "rust1", since = "1.0.0")] u8),
166
167     /// Device namespace prefix, e.g., `\\.\COM42`.
168     ///
169     /// Device namespace prefixes consist of `\\.\` immediately followed by the
170     /// device name.
171     #[stable(feature = "rust1", since = "1.0.0")]
172     DeviceNS(#[stable(feature = "rust1", since = "1.0.0")] &'a OsStr),
173
174     /// Prefix using Windows' _**U**niform **N**aming **C**onvention_, e.g.
175     /// `\\server\share`.
176     ///
177     /// UNC prefixes consist of the server's hostname and a share name.
178     #[stable(feature = "rust1", since = "1.0.0")]
179     UNC(
180         #[stable(feature = "rust1", since = "1.0.0")] &'a OsStr,
181         #[stable(feature = "rust1", since = "1.0.0")] &'a OsStr,
182     ),
183
184     /// Prefix `C:` for the given disk drive.
185     #[stable(feature = "rust1", since = "1.0.0")]
186     Disk(#[stable(feature = "rust1", since = "1.0.0")] u8),
187 }
188
189 impl<'a> Prefix<'a> {
190     #[inline]
191     fn len(&self) -> usize {
192         use self::Prefix::*;
193         fn os_str_len(s: &OsStr) -> usize {
194             os_str_as_u8_slice(s).len()
195         }
196         match *self {
197             Verbatim(x) => 4 + os_str_len(x),
198             VerbatimUNC(x, y) => {
199                 8 + os_str_len(x) + if os_str_len(y) > 0 { 1 + os_str_len(y) } else { 0 }
200             }
201             VerbatimDisk(_) => 6,
202             UNC(x, y) => 2 + os_str_len(x) + if os_str_len(y) > 0 { 1 + os_str_len(y) } else { 0 },
203             DeviceNS(x) => 4 + os_str_len(x),
204             Disk(_) => 2,
205         }
206     }
207
208     /// Determines if the prefix is verbatim, i.e., begins with `\\?\`.
209     ///
210     /// # Examples
211     ///
212     /// ```
213     /// use std::path::Prefix::*;
214     /// use std::ffi::OsStr;
215     ///
216     /// assert!(Verbatim(OsStr::new("pictures")).is_verbatim());
217     /// assert!(VerbatimUNC(OsStr::new("server"), OsStr::new("share")).is_verbatim());
218     /// assert!(VerbatimDisk(b'C').is_verbatim());
219     /// assert!(!DeviceNS(OsStr::new("BrainInterface")).is_verbatim());
220     /// assert!(!UNC(OsStr::new("server"), OsStr::new("share")).is_verbatim());
221     /// assert!(!Disk(b'C').is_verbatim());
222     /// ```
223     #[inline]
224     #[stable(feature = "rust1", since = "1.0.0")]
225     pub fn is_verbatim(&self) -> bool {
226         use self::Prefix::*;
227         matches!(*self, Verbatim(_) | VerbatimDisk(_) | VerbatimUNC(..))
228     }
229
230     #[inline]
231     fn is_drive(&self) -> bool {
232         matches!(*self, Prefix::Disk(_))
233     }
234
235     #[inline]
236     fn has_implicit_root(&self) -> bool {
237         !self.is_drive()
238     }
239 }
240
241 ////////////////////////////////////////////////////////////////////////////////
242 // Exposed parsing helpers
243 ////////////////////////////////////////////////////////////////////////////////
244
245 /// Determines whether the character is one of the permitted path
246 /// separators for the current platform.
247 ///
248 /// # Examples
249 ///
250 /// ```
251 /// use std::path;
252 ///
253 /// assert!(path::is_separator('/')); // '/' works for both Unix and Windows
254 /// assert!(!path::is_separator('❤'));
255 /// ```
256 #[stable(feature = "rust1", since = "1.0.0")]
257 pub fn is_separator(c: char) -> bool {
258     c.is_ascii() && is_sep_byte(c as u8)
259 }
260
261 /// The primary separator of path components for the current platform.
262 ///
263 /// For example, `/` on Unix and `\` on Windows.
264 #[stable(feature = "rust1", since = "1.0.0")]
265 pub const MAIN_SEPARATOR: char = crate::sys::path::MAIN_SEP;
266
267 ////////////////////////////////////////////////////////////////////////////////
268 // Misc helpers
269 ////////////////////////////////////////////////////////////////////////////////
270
271 // Iterate through `iter` while it matches `prefix`; return `None` if `prefix`
272 // is not a prefix of `iter`, otherwise return `Some(iter_after_prefix)` giving
273 // `iter` after having exhausted `prefix`.
274 fn iter_after<'a, 'b, I, J>(mut iter: I, mut prefix: J) -> Option<I>
275 where
276     I: Iterator<Item = Component<'a>> + Clone,
277     J: Iterator<Item = Component<'b>>,
278 {
279     loop {
280         let mut iter_next = iter.clone();
281         match (iter_next.next(), prefix.next()) {
282             (Some(ref x), Some(ref y)) if x == y => (),
283             (Some(_), Some(_)) => return None,
284             (Some(_), None) => return Some(iter),
285             (None, None) => return Some(iter),
286             (None, Some(_)) => return None,
287         }
288         iter = iter_next;
289     }
290 }
291
292 // See note at the top of this module to understand why these are used:
293 //
294 // These casts are safe as OsStr is internally a wrapper around [u8] on all
295 // platforms.
296 //
297 // Note that currently this relies on the special knowledge that libstd has;
298 // these types are single-element structs but are not marked repr(transparent)
299 // or repr(C) which would make these casts allowable outside std.
300 fn os_str_as_u8_slice(s: &OsStr) -> &[u8] {
301     unsafe { &*(s as *const OsStr as *const [u8]) }
302 }
303 unsafe fn u8_slice_as_os_str(s: &[u8]) -> &OsStr {
304     &*(s as *const [u8] as *const OsStr)
305 }
306
307 // Detect scheme on Redox
308 fn has_redox_scheme(s: &[u8]) -> bool {
309     cfg!(target_os = "redox") && s.contains(&b':')
310 }
311
312 ////////////////////////////////////////////////////////////////////////////////
313 // Cross-platform, iterator-independent parsing
314 ////////////////////////////////////////////////////////////////////////////////
315
316 /// Says whether the first byte after the prefix is a separator.
317 fn has_physical_root(s: &[u8], prefix: Option<Prefix<'_>>) -> bool {
318     let path = if let Some(p) = prefix { &s[p.len()..] } else { s };
319     !path.is_empty() && is_sep_byte(path[0])
320 }
321
322 // basic workhorse for splitting stem and extension
323 fn split_file_at_dot(file: &OsStr) -> (Option<&OsStr>, Option<&OsStr>) {
324     unsafe {
325         if os_str_as_u8_slice(file) == b".." {
326             return (Some(file), None);
327         }
328
329         // The unsafety here stems from converting between &OsStr and &[u8]
330         // and back. This is safe to do because (1) we only look at ASCII
331         // contents of the encoding and (2) new &OsStr values are produced
332         // only from ASCII-bounded slices of existing &OsStr values.
333
334         let mut iter = os_str_as_u8_slice(file).rsplitn(2, |b| *b == b'.');
335         let after = iter.next();
336         let before = iter.next();
337         if before == Some(b"") {
338             (Some(file), None)
339         } else {
340             (before.map(|s| u8_slice_as_os_str(s)), after.map(|s| u8_slice_as_os_str(s)))
341         }
342     }
343 }
344
345 ////////////////////////////////////////////////////////////////////////////////
346 // The core iterators
347 ////////////////////////////////////////////////////////////////////////////////
348
349 /// Component parsing works by a double-ended state machine; the cursors at the
350 /// front and back of the path each keep track of what parts of the path have
351 /// been consumed so far.
352 ///
353 /// Going front to back, a path is made up of a prefix, a starting
354 /// directory component, and a body (of normal components)
355 #[derive(Copy, Clone, PartialEq, PartialOrd, Debug)]
356 enum State {
357     Prefix = 0,   // c:
358     StartDir = 1, // / or . or nothing
359     Body = 2,     // foo/bar/baz
360     Done = 3,
361 }
362
363 /// A structure wrapping a Windows path prefix as well as its unparsed string
364 /// representation.
365 ///
366 /// In addition to the parsed [`Prefix`] information returned by [`kind`],
367 /// `PrefixComponent` also holds the raw and unparsed [`OsStr`] slice,
368 /// returned by [`as_os_str`].
369 ///
370 /// Instances of this `struct` can be obtained by matching against the
371 /// [`Prefix` variant] on [`Component`].
372 ///
373 /// Does not occur on Unix.
374 ///
375 /// # Examples
376 ///
377 /// ```
378 /// # if cfg!(windows) {
379 /// use std::path::{Component, Path, Prefix};
380 /// use std::ffi::OsStr;
381 ///
382 /// let path = Path::new(r"c:\you\later\");
383 /// match path.components().next().unwrap() {
384 ///     Component::Prefix(prefix_component) => {
385 ///         assert_eq!(Prefix::Disk(b'C'), prefix_component.kind());
386 ///         assert_eq!(OsStr::new("c:"), prefix_component.as_os_str());
387 ///     }
388 ///     _ => unreachable!(),
389 /// }
390 /// # }
391 /// ```
392 ///
393 /// [`as_os_str`]: #method.as_os_str
394 /// [`Component`]: enum.Component.html
395 /// [`kind`]: #method.kind
396 /// [`OsStr`]: ../../std/ffi/struct.OsStr.html
397 /// [`Prefix` variant]: enum.Component.html#variant.Prefix
398 /// [`Prefix`]: enum.Prefix.html
399 #[stable(feature = "rust1", since = "1.0.0")]
400 #[derive(Copy, Clone, Eq, Debug)]
401 pub struct PrefixComponent<'a> {
402     /// The prefix as an unparsed `OsStr` slice.
403     raw: &'a OsStr,
404
405     /// The parsed prefix data.
406     parsed: Prefix<'a>,
407 }
408
409 impl<'a> PrefixComponent<'a> {
410     /// Returns the parsed prefix data.
411     ///
412     /// See [`Prefix`]'s documentation for more information on the different
413     /// kinds of prefixes.
414     ///
415     /// [`Prefix`]: enum.Prefix.html
416     #[stable(feature = "rust1", since = "1.0.0")]
417     pub fn kind(&self) -> Prefix<'a> {
418         self.parsed
419     }
420
421     /// Returns the raw [`OsStr`] slice for this prefix.
422     ///
423     /// [`OsStr`]: ../../std/ffi/struct.OsStr.html
424     #[stable(feature = "rust1", since = "1.0.0")]
425     pub fn as_os_str(&self) -> &'a OsStr {
426         self.raw
427     }
428 }
429
430 #[stable(feature = "rust1", since = "1.0.0")]
431 impl<'a> cmp::PartialEq for PrefixComponent<'a> {
432     fn eq(&self, other: &PrefixComponent<'a>) -> bool {
433         cmp::PartialEq::eq(&self.parsed, &other.parsed)
434     }
435 }
436
437 #[stable(feature = "rust1", since = "1.0.0")]
438 impl<'a> cmp::PartialOrd for PrefixComponent<'a> {
439     fn partial_cmp(&self, other: &PrefixComponent<'a>) -> Option<cmp::Ordering> {
440         cmp::PartialOrd::partial_cmp(&self.parsed, &other.parsed)
441     }
442 }
443
444 #[stable(feature = "rust1", since = "1.0.0")]
445 impl cmp::Ord for PrefixComponent<'_> {
446     fn cmp(&self, other: &Self) -> cmp::Ordering {
447         cmp::Ord::cmp(&self.parsed, &other.parsed)
448     }
449 }
450
451 #[stable(feature = "rust1", since = "1.0.0")]
452 impl Hash for PrefixComponent<'_> {
453     fn hash<H: Hasher>(&self, h: &mut H) {
454         self.parsed.hash(h);
455     }
456 }
457
458 /// A single component of a path.
459 ///
460 /// A `Component` roughly corresponds to a substring between path separators
461 /// (`/` or `\`).
462 ///
463 /// This `enum` is created by iterating over [`Components`], which in turn is
464 /// created by the [`components`][`Path::components`] method on [`Path`].
465 ///
466 /// # Examples
467 ///
468 /// ```rust
469 /// use std::path::{Component, Path};
470 ///
471 /// let path = Path::new("/tmp/foo/bar.txt");
472 /// let components = path.components().collect::<Vec<_>>();
473 /// assert_eq!(&components, &[
474 ///     Component::RootDir,
475 ///     Component::Normal("tmp".as_ref()),
476 ///     Component::Normal("foo".as_ref()),
477 ///     Component::Normal("bar.txt".as_ref()),
478 /// ]);
479 /// ```
480 ///
481 /// [`Components`]: struct.Components.html
482 /// [`Path`]: struct.Path.html
483 /// [`Path::components`]: struct.Path.html#method.components
484 #[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)]
485 #[stable(feature = "rust1", since = "1.0.0")]
486 pub enum Component<'a> {
487     /// A Windows path prefix, e.g., `C:` or `\\server\share`.
488     ///
489     /// There is a large variety of prefix types, see [`Prefix`]'s documentation
490     /// for more.
491     ///
492     /// Does not occur on Unix.
493     ///
494     /// [`Prefix`]: enum.Prefix.html
495     #[stable(feature = "rust1", since = "1.0.0")]
496     Prefix(#[stable(feature = "rust1", since = "1.0.0")] PrefixComponent<'a>),
497
498     /// The root directory component, appears after any prefix and before anything else.
499     ///
500     /// It represents a separator that designates that a path starts from root.
501     #[stable(feature = "rust1", since = "1.0.0")]
502     RootDir,
503
504     /// A reference to the current directory, i.e., `.`.
505     #[stable(feature = "rust1", since = "1.0.0")]
506     CurDir,
507
508     /// A reference to the parent directory, i.e., `..`.
509     #[stable(feature = "rust1", since = "1.0.0")]
510     ParentDir,
511
512     /// A normal component, e.g., `a` and `b` in `a/b`.
513     ///
514     /// This variant is the most common one, it represents references to files
515     /// or directories.
516     #[stable(feature = "rust1", since = "1.0.0")]
517     Normal(#[stable(feature = "rust1", since = "1.0.0")] &'a OsStr),
518 }
519
520 impl<'a> Component<'a> {
521     /// Extracts the underlying [`OsStr`] slice.
522     ///
523     /// # Examples
524     ///
525     /// ```
526     /// use std::path::Path;
527     ///
528     /// let path = Path::new("./tmp/foo/bar.txt");
529     /// let components: Vec<_> = path.components().map(|comp| comp.as_os_str()).collect();
530     /// assert_eq!(&components, &[".", "tmp", "foo", "bar.txt"]);
531     /// ```
532     ///
533     /// [`OsStr`]: ../../std/ffi/struct.OsStr.html
534     #[stable(feature = "rust1", since = "1.0.0")]
535     pub fn as_os_str(self) -> &'a OsStr {
536         match self {
537             Component::Prefix(p) => p.as_os_str(),
538             Component::RootDir => OsStr::new(MAIN_SEP_STR),
539             Component::CurDir => OsStr::new("."),
540             Component::ParentDir => OsStr::new(".."),
541             Component::Normal(path) => path,
542         }
543     }
544 }
545
546 #[stable(feature = "rust1", since = "1.0.0")]
547 impl AsRef<OsStr> for Component<'_> {
548     fn as_ref(&self) -> &OsStr {
549         self.as_os_str()
550     }
551 }
552
553 #[stable(feature = "path_component_asref", since = "1.25.0")]
554 impl AsRef<Path> for Component<'_> {
555     fn as_ref(&self) -> &Path {
556         self.as_os_str().as_ref()
557     }
558 }
559
560 /// An iterator over the [`Component`]s of a [`Path`].
561 ///
562 /// This `struct` is created by the [`components`] method on [`Path`].
563 /// See its documentation for more.
564 ///
565 /// # Examples
566 ///
567 /// ```
568 /// use std::path::Path;
569 ///
570 /// let path = Path::new("/tmp/foo/bar.txt");
571 ///
572 /// for component in path.components() {
573 ///     println!("{:?}", component);
574 /// }
575 /// ```
576 ///
577 /// [`Component`]: enum.Component.html
578 /// [`components`]: struct.Path.html#method.components
579 /// [`Path`]: struct.Path.html
580 #[derive(Clone)]
581 #[stable(feature = "rust1", since = "1.0.0")]
582 pub struct Components<'a> {
583     // The path left to parse components from
584     path: &'a [u8],
585
586     // The prefix as it was originally parsed, if any
587     prefix: Option<Prefix<'a>>,
588
589     // true if path *physically* has a root separator; for most Windows
590     // prefixes, it may have a "logical" rootseparator for the purposes of
591     // normalization, e.g.,  \\server\share == \\server\share\.
592     has_physical_root: bool,
593
594     // The iterator is double-ended, and these two states keep track of what has
595     // been produced from either end
596     front: State,
597     back: State,
598 }
599
600 /// An iterator over the [`Component`]s of a [`Path`], as [`OsStr`] slices.
601 ///
602 /// This `struct` is created by the [`iter`] method on [`Path`].
603 /// See its documentation for more.
604 ///
605 /// [`Component`]: enum.Component.html
606 /// [`iter`]: struct.Path.html#method.iter
607 /// [`OsStr`]: ../../std/ffi/struct.OsStr.html
608 /// [`Path`]: struct.Path.html
609 #[derive(Clone)]
610 #[stable(feature = "rust1", since = "1.0.0")]
611 pub struct Iter<'a> {
612     inner: Components<'a>,
613 }
614
615 #[stable(feature = "path_components_debug", since = "1.13.0")]
616 impl fmt::Debug for Components<'_> {
617     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
618         struct DebugHelper<'a>(&'a Path);
619
620         impl fmt::Debug for DebugHelper<'_> {
621             fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
622                 f.debug_list().entries(self.0.components()).finish()
623             }
624         }
625
626         f.debug_tuple("Components").field(&DebugHelper(self.as_path())).finish()
627     }
628 }
629
630 impl<'a> Components<'a> {
631     // how long is the prefix, if any?
632     #[inline]
633     fn prefix_len(&self) -> usize {
634         self.prefix.as_ref().map(Prefix::len).unwrap_or(0)
635     }
636
637     #[inline]
638     fn prefix_verbatim(&self) -> bool {
639         self.prefix.as_ref().map(Prefix::is_verbatim).unwrap_or(false)
640     }
641
642     /// how much of the prefix is left from the point of view of iteration?
643     #[inline]
644     fn prefix_remaining(&self) -> usize {
645         if self.front == State::Prefix { self.prefix_len() } else { 0 }
646     }
647
648     // Given the iteration so far, how much of the pre-State::Body path is left?
649     #[inline]
650     fn len_before_body(&self) -> usize {
651         let root = if self.front <= State::StartDir && self.has_physical_root { 1 } else { 0 };
652         let cur_dir = if self.front <= State::StartDir && self.include_cur_dir() { 1 } else { 0 };
653         self.prefix_remaining() + root + cur_dir
654     }
655
656     // is the iteration complete?
657     #[inline]
658     fn finished(&self) -> bool {
659         self.front == State::Done || self.back == State::Done || self.front > self.back
660     }
661
662     #[inline]
663     fn is_sep_byte(&self, b: u8) -> bool {
664         if self.prefix_verbatim() { is_verbatim_sep(b) } else { is_sep_byte(b) }
665     }
666
667     /// Extracts a slice corresponding to the portion of the path remaining for iteration.
668     ///
669     /// # Examples
670     ///
671     /// ```
672     /// use std::path::Path;
673     ///
674     /// let mut components = Path::new("/tmp/foo/bar.txt").components();
675     /// components.next();
676     /// components.next();
677     ///
678     /// assert_eq!(Path::new("foo/bar.txt"), components.as_path());
679     /// ```
680     #[stable(feature = "rust1", since = "1.0.0")]
681     pub fn as_path(&self) -> &'a Path {
682         let mut comps = self.clone();
683         if comps.front == State::Body {
684             comps.trim_left();
685         }
686         if comps.back == State::Body {
687             comps.trim_right();
688         }
689         unsafe { Path::from_u8_slice(comps.path) }
690     }
691
692     /// Is the *original* path rooted?
693     fn has_root(&self) -> bool {
694         if self.has_physical_root {
695             return true;
696         }
697         if let Some(p) = self.prefix {
698             if p.has_implicit_root() {
699                 return true;
700             }
701         }
702         false
703     }
704
705     /// Should the normalized path include a leading . ?
706     fn include_cur_dir(&self) -> bool {
707         if self.has_root() {
708             return false;
709         }
710         let mut iter = self.path[self.prefix_len()..].iter();
711         match (iter.next(), iter.next()) {
712             (Some(&b'.'), None) => true,
713             (Some(&b'.'), Some(&b)) => self.is_sep_byte(b),
714             _ => false,
715         }
716     }
717
718     // parse a given byte sequence into the corresponding path component
719     fn parse_single_component<'b>(&self, comp: &'b [u8]) -> Option<Component<'b>> {
720         match comp {
721             b"." if self.prefix_verbatim() => Some(Component::CurDir),
722             b"." => None, // . components are normalized away, except at
723             // the beginning of a path, which is treated
724             // separately via `include_cur_dir`
725             b".." => Some(Component::ParentDir),
726             b"" => None,
727             _ => Some(Component::Normal(unsafe { u8_slice_as_os_str(comp) })),
728         }
729     }
730
731     // parse a component from the left, saying how many bytes to consume to
732     // remove the component
733     fn parse_next_component(&self) -> (usize, Option<Component<'a>>) {
734         debug_assert!(self.front == State::Body);
735         let (extra, comp) = match self.path.iter().position(|b| self.is_sep_byte(*b)) {
736             None => (0, self.path),
737             Some(i) => (1, &self.path[..i]),
738         };
739         (comp.len() + extra, self.parse_single_component(comp))
740     }
741
742     // parse a component from the right, saying how many bytes to consume to
743     // remove the component
744     fn parse_next_component_back(&self) -> (usize, Option<Component<'a>>) {
745         debug_assert!(self.back == State::Body);
746         let start = self.len_before_body();
747         let (extra, comp) = match self.path[start..].iter().rposition(|b| self.is_sep_byte(*b)) {
748             None => (0, &self.path[start..]),
749             Some(i) => (1, &self.path[start + i + 1..]),
750         };
751         (comp.len() + extra, self.parse_single_component(comp))
752     }
753
754     // trim away repeated separators (i.e., empty components) on the left
755     fn trim_left(&mut self) {
756         while !self.path.is_empty() {
757             let (size, comp) = self.parse_next_component();
758             if comp.is_some() {
759                 return;
760             } else {
761                 self.path = &self.path[size..];
762             }
763         }
764     }
765
766     // trim away repeated separators (i.e., empty components) on the right
767     fn trim_right(&mut self) {
768         while self.path.len() > self.len_before_body() {
769             let (size, comp) = self.parse_next_component_back();
770             if comp.is_some() {
771                 return;
772             } else {
773                 self.path = &self.path[..self.path.len() - size];
774             }
775         }
776     }
777 }
778
779 #[stable(feature = "rust1", since = "1.0.0")]
780 impl AsRef<Path> for Components<'_> {
781     fn as_ref(&self) -> &Path {
782         self.as_path()
783     }
784 }
785
786 #[stable(feature = "rust1", since = "1.0.0")]
787 impl AsRef<OsStr> for Components<'_> {
788     fn as_ref(&self) -> &OsStr {
789         self.as_path().as_os_str()
790     }
791 }
792
793 #[stable(feature = "path_iter_debug", since = "1.13.0")]
794 impl fmt::Debug for Iter<'_> {
795     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
796         struct DebugHelper<'a>(&'a Path);
797
798         impl fmt::Debug for DebugHelper<'_> {
799             fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
800                 f.debug_list().entries(self.0.iter()).finish()
801             }
802         }
803
804         f.debug_tuple("Iter").field(&DebugHelper(self.as_path())).finish()
805     }
806 }
807
808 impl<'a> Iter<'a> {
809     /// Extracts a slice corresponding to the portion of the path remaining for iteration.
810     ///
811     /// # Examples
812     ///
813     /// ```
814     /// use std::path::Path;
815     ///
816     /// let mut iter = Path::new("/tmp/foo/bar.txt").iter();
817     /// iter.next();
818     /// iter.next();
819     ///
820     /// assert_eq!(Path::new("foo/bar.txt"), iter.as_path());
821     /// ```
822     #[stable(feature = "rust1", since = "1.0.0")]
823     pub fn as_path(&self) -> &'a Path {
824         self.inner.as_path()
825     }
826 }
827
828 #[stable(feature = "rust1", since = "1.0.0")]
829 impl AsRef<Path> for Iter<'_> {
830     fn as_ref(&self) -> &Path {
831         self.as_path()
832     }
833 }
834
835 #[stable(feature = "rust1", since = "1.0.0")]
836 impl AsRef<OsStr> for Iter<'_> {
837     fn as_ref(&self) -> &OsStr {
838         self.as_path().as_os_str()
839     }
840 }
841
842 #[stable(feature = "rust1", since = "1.0.0")]
843 impl<'a> Iterator for Iter<'a> {
844     type Item = &'a OsStr;
845
846     fn next(&mut self) -> Option<&'a OsStr> {
847         self.inner.next().map(Component::as_os_str)
848     }
849 }
850
851 #[stable(feature = "rust1", since = "1.0.0")]
852 impl<'a> DoubleEndedIterator for Iter<'a> {
853     fn next_back(&mut self) -> Option<&'a OsStr> {
854         self.inner.next_back().map(Component::as_os_str)
855     }
856 }
857
858 #[stable(feature = "fused", since = "1.26.0")]
859 impl FusedIterator for Iter<'_> {}
860
861 #[stable(feature = "rust1", since = "1.0.0")]
862 impl<'a> Iterator for Components<'a> {
863     type Item = Component<'a>;
864
865     fn next(&mut self) -> Option<Component<'a>> {
866         while !self.finished() {
867             match self.front {
868                 State::Prefix if self.prefix_len() > 0 => {
869                     self.front = State::StartDir;
870                     debug_assert!(self.prefix_len() <= self.path.len());
871                     let raw = &self.path[..self.prefix_len()];
872                     self.path = &self.path[self.prefix_len()..];
873                     return Some(Component::Prefix(PrefixComponent {
874                         raw: unsafe { u8_slice_as_os_str(raw) },
875                         parsed: self.prefix.unwrap(),
876                     }));
877                 }
878                 State::Prefix => {
879                     self.front = State::StartDir;
880                 }
881                 State::StartDir => {
882                     self.front = State::Body;
883                     if self.has_physical_root {
884                         debug_assert!(!self.path.is_empty());
885                         self.path = &self.path[1..];
886                         return Some(Component::RootDir);
887                     } else if let Some(p) = self.prefix {
888                         if p.has_implicit_root() && !p.is_verbatim() {
889                             return Some(Component::RootDir);
890                         }
891                     } else if self.include_cur_dir() {
892                         debug_assert!(!self.path.is_empty());
893                         self.path = &self.path[1..];
894                         return Some(Component::CurDir);
895                     }
896                 }
897                 State::Body if !self.path.is_empty() => {
898                     let (size, comp) = self.parse_next_component();
899                     self.path = &self.path[size..];
900                     if comp.is_some() {
901                         return comp;
902                     }
903                 }
904                 State::Body => {
905                     self.front = State::Done;
906                 }
907                 State::Done => unreachable!(),
908             }
909         }
910         None
911     }
912 }
913
914 #[stable(feature = "rust1", since = "1.0.0")]
915 impl<'a> DoubleEndedIterator for Components<'a> {
916     fn next_back(&mut self) -> Option<Component<'a>> {
917         while !self.finished() {
918             match self.back {
919                 State::Body if self.path.len() > self.len_before_body() => {
920                     let (size, comp) = self.parse_next_component_back();
921                     self.path = &self.path[..self.path.len() - size];
922                     if comp.is_some() {
923                         return comp;
924                     }
925                 }
926                 State::Body => {
927                     self.back = State::StartDir;
928                 }
929                 State::StartDir => {
930                     self.back = State::Prefix;
931                     if self.has_physical_root {
932                         self.path = &self.path[..self.path.len() - 1];
933                         return Some(Component::RootDir);
934                     } else if let Some(p) = self.prefix {
935                         if p.has_implicit_root() && !p.is_verbatim() {
936                             return Some(Component::RootDir);
937                         }
938                     } else if self.include_cur_dir() {
939                         self.path = &self.path[..self.path.len() - 1];
940                         return Some(Component::CurDir);
941                     }
942                 }
943                 State::Prefix if self.prefix_len() > 0 => {
944                     self.back = State::Done;
945                     return Some(Component::Prefix(PrefixComponent {
946                         raw: unsafe { u8_slice_as_os_str(self.path) },
947                         parsed: self.prefix.unwrap(),
948                     }));
949                 }
950                 State::Prefix => {
951                     self.back = State::Done;
952                     return None;
953                 }
954                 State::Done => unreachable!(),
955             }
956         }
957         None
958     }
959 }
960
961 #[stable(feature = "fused", since = "1.26.0")]
962 impl FusedIterator for Components<'_> {}
963
964 #[stable(feature = "rust1", since = "1.0.0")]
965 impl<'a> cmp::PartialEq for Components<'a> {
966     fn eq(&self, other: &Components<'a>) -> bool {
967         Iterator::eq(self.clone(), other.clone())
968     }
969 }
970
971 #[stable(feature = "rust1", since = "1.0.0")]
972 impl cmp::Eq for Components<'_> {}
973
974 #[stable(feature = "rust1", since = "1.0.0")]
975 impl<'a> cmp::PartialOrd for Components<'a> {
976     fn partial_cmp(&self, other: &Components<'a>) -> Option<cmp::Ordering> {
977         Iterator::partial_cmp(self.clone(), other.clone())
978     }
979 }
980
981 #[stable(feature = "rust1", since = "1.0.0")]
982 impl cmp::Ord for Components<'_> {
983     fn cmp(&self, other: &Self) -> cmp::Ordering {
984         Iterator::cmp(self.clone(), other.clone())
985     }
986 }
987
988 /// An iterator over [`Path`] and its ancestors.
989 ///
990 /// This `struct` is created by the [`ancestors`] method on [`Path`].
991 /// See its documentation for more.
992 ///
993 /// # Examples
994 ///
995 /// ```
996 /// use std::path::Path;
997 ///
998 /// let path = Path::new("/foo/bar");
999 ///
1000 /// for ancestor in path.ancestors() {
1001 ///     println!("{}", ancestor.display());
1002 /// }
1003 /// ```
1004 ///
1005 /// [`ancestors`]: struct.Path.html#method.ancestors
1006 /// [`Path`]: struct.Path.html
1007 #[derive(Copy, Clone, Debug)]
1008 #[stable(feature = "path_ancestors", since = "1.28.0")]
1009 pub struct Ancestors<'a> {
1010     next: Option<&'a Path>,
1011 }
1012
1013 #[stable(feature = "path_ancestors", since = "1.28.0")]
1014 impl<'a> Iterator for Ancestors<'a> {
1015     type Item = &'a Path;
1016
1017     fn next(&mut self) -> Option<Self::Item> {
1018         let next = self.next;
1019         self.next = next.and_then(Path::parent);
1020         next
1021     }
1022 }
1023
1024 #[stable(feature = "path_ancestors", since = "1.28.0")]
1025 impl FusedIterator for Ancestors<'_> {}
1026
1027 ////////////////////////////////////////////////////////////////////////////////
1028 // Basic types and traits
1029 ////////////////////////////////////////////////////////////////////////////////
1030
1031 /// An owned, mutable path (akin to [`String`]).
1032 ///
1033 /// This type provides methods like [`push`] and [`set_extension`] that mutate
1034 /// the path in place. It also implements [`Deref`] to [`Path`], meaning that
1035 /// all methods on [`Path`] slices are available on `PathBuf` values as well.
1036 ///
1037 /// [`String`]: ../string/struct.String.html
1038 /// [`Path`]: struct.Path.html
1039 /// [`push`]: struct.PathBuf.html#method.push
1040 /// [`set_extension`]: struct.PathBuf.html#method.set_extension
1041 /// [`Deref`]: ../ops/trait.Deref.html
1042 ///
1043 /// More details about the overall approach can be found in
1044 /// the [module documentation](index.html).
1045 ///
1046 /// # Examples
1047 ///
1048 /// You can use [`push`] to build up a `PathBuf` from
1049 /// components:
1050 ///
1051 /// ```
1052 /// use std::path::PathBuf;
1053 ///
1054 /// let mut path = PathBuf::new();
1055 ///
1056 /// path.push(r"C:\");
1057 /// path.push("windows");
1058 /// path.push("system32");
1059 ///
1060 /// path.set_extension("dll");
1061 /// ```
1062 ///
1063 /// However, [`push`] is best used for dynamic situations. This is a better way
1064 /// to do this when you know all of the components ahead of time:
1065 ///
1066 /// ```
1067 /// use std::path::PathBuf;
1068 ///
1069 /// let path: PathBuf = [r"C:\", "windows", "system32.dll"].iter().collect();
1070 /// ```
1071 ///
1072 /// We can still do better than this! Since these are all strings, we can use
1073 /// `From::from`:
1074 ///
1075 /// ```
1076 /// use std::path::PathBuf;
1077 ///
1078 /// let path = PathBuf::from(r"C:\windows\system32.dll");
1079 /// ```
1080 ///
1081 /// Which method works best depends on what kind of situation you're in.
1082 #[derive(Clone)]
1083 #[stable(feature = "rust1", since = "1.0.0")]
1084 // FIXME:
1085 // `PathBuf::as_mut_vec` current implementation relies
1086 // on `PathBuf` being layout-compatible with `Vec<u8>`.
1087 // When attribute privacy is implemented, `PathBuf` should be annotated as `#[repr(transparent)]`.
1088 // Anyway, `PathBuf` representation and layout are considered implementation detail, are
1089 // not documented and must not be relied upon.
1090 pub struct PathBuf {
1091     inner: OsString,
1092 }
1093
1094 impl PathBuf {
1095     fn as_mut_vec(&mut self) -> &mut Vec<u8> {
1096         unsafe { &mut *(self as *mut PathBuf as *mut Vec<u8>) }
1097     }
1098
1099     /// Allocates an empty `PathBuf`.
1100     ///
1101     /// # Examples
1102     ///
1103     /// ```
1104     /// use std::path::PathBuf;
1105     ///
1106     /// let path = PathBuf::new();
1107     /// ```
1108     #[stable(feature = "rust1", since = "1.0.0")]
1109     pub fn new() -> PathBuf {
1110         PathBuf { inner: OsString::new() }
1111     }
1112
1113     /// Creates a new `PathBuf` with a given capacity used to create the
1114     /// internal [`OsString`]. See [`with_capacity`] defined on [`OsString`].
1115     ///
1116     /// # Examples
1117     ///
1118     /// ```
1119     /// #![feature(path_buf_capacity)]
1120     /// use std::path::PathBuf;
1121     ///
1122     /// let mut path = PathBuf::with_capacity(10);
1123     /// let capacity = path.capacity();
1124     ///
1125     /// // This push is done without reallocating
1126     /// path.push(r"C:\");
1127     ///
1128     /// assert_eq!(capacity, path.capacity());
1129     /// ```
1130     ///
1131     /// [`with_capacity`]: ../ffi/struct.OsString.html#method.with_capacity
1132     /// [`OsString`]: ../ffi/struct.OsString.html
1133     #[unstable(feature = "path_buf_capacity", issue = "58234")]
1134     pub fn with_capacity(capacity: usize) -> PathBuf {
1135         PathBuf { inner: OsString::with_capacity(capacity) }
1136     }
1137
1138     /// Coerces to a [`Path`] slice.
1139     ///
1140     /// [`Path`]: struct.Path.html
1141     ///
1142     /// # Examples
1143     ///
1144     /// ```
1145     /// use std::path::{Path, PathBuf};
1146     ///
1147     /// let p = PathBuf::from("/test");
1148     /// assert_eq!(Path::new("/test"), p.as_path());
1149     /// ```
1150     #[stable(feature = "rust1", since = "1.0.0")]
1151     pub fn as_path(&self) -> &Path {
1152         self
1153     }
1154
1155     /// Extends `self` with `path`.
1156     ///
1157     /// If `path` is absolute, it replaces the current path.
1158     ///
1159     /// On Windows:
1160     ///
1161     /// * if `path` has a root but no prefix (e.g., `\windows`), it
1162     ///   replaces everything except for the prefix (if any) of `self`.
1163     /// * if `path` has a prefix but no root, it replaces `self`.
1164     ///
1165     /// # Examples
1166     ///
1167     /// Pushing a relative path extends the existing path:
1168     ///
1169     /// ```
1170     /// use std::path::PathBuf;
1171     ///
1172     /// let mut path = PathBuf::from("/tmp");
1173     /// path.push("file.bk");
1174     /// assert_eq!(path, PathBuf::from("/tmp/file.bk"));
1175     /// ```
1176     ///
1177     /// Pushing an absolute path replaces the existing path:
1178     ///
1179     /// ```
1180     /// use std::path::PathBuf;
1181     ///
1182     /// let mut path = PathBuf::from("/tmp");
1183     /// path.push("/etc");
1184     /// assert_eq!(path, PathBuf::from("/etc"));
1185     /// ```
1186     #[stable(feature = "rust1", since = "1.0.0")]
1187     pub fn push<P: AsRef<Path>>(&mut self, path: P) {
1188         self._push(path.as_ref())
1189     }
1190
1191     fn _push(&mut self, path: &Path) {
1192         // in general, a separator is needed if the rightmost byte is not a separator
1193         let mut need_sep = self.as_mut_vec().last().map(|c| !is_sep_byte(*c)).unwrap_or(false);
1194
1195         // in the special case of `C:` on Windows, do *not* add a separator
1196         {
1197             let comps = self.components();
1198             if comps.prefix_len() > 0
1199                 && comps.prefix_len() == comps.path.len()
1200                 && comps.prefix.unwrap().is_drive()
1201             {
1202                 need_sep = false
1203             }
1204         }
1205
1206         // absolute `path` replaces `self`
1207         if path.is_absolute() || path.prefix().is_some() {
1208             self.as_mut_vec().truncate(0);
1209
1210         // `path` has a root but no prefix, e.g., `\windows` (Windows only)
1211         } else if path.has_root() {
1212             let prefix_len = self.components().prefix_remaining();
1213             self.as_mut_vec().truncate(prefix_len);
1214
1215         // `path` is a pure relative path
1216         } else if need_sep {
1217             self.inner.push(MAIN_SEP_STR);
1218         }
1219
1220         self.inner.push(path);
1221     }
1222
1223     /// Truncates `self` to [`self.parent`].
1224     ///
1225     /// Returns `false` and does nothing if [`self.parent`] is [`None`].
1226     /// Otherwise, returns `true`.
1227     ///
1228     /// [`None`]: ../../std/option/enum.Option.html#variant.None
1229     /// [`self.parent`]: struct.PathBuf.html#method.parent
1230     ///
1231     /// # Examples
1232     ///
1233     /// ```
1234     /// use std::path::{Path, PathBuf};
1235     ///
1236     /// let mut p = PathBuf::from("/test/test.rs");
1237     ///
1238     /// p.pop();
1239     /// assert_eq!(Path::new("/test"), p);
1240     /// p.pop();
1241     /// assert_eq!(Path::new("/"), p);
1242     /// ```
1243     #[stable(feature = "rust1", since = "1.0.0")]
1244     pub fn pop(&mut self) -> bool {
1245         match self.parent().map(|p| p.as_u8_slice().len()) {
1246             Some(len) => {
1247                 self.as_mut_vec().truncate(len);
1248                 true
1249             }
1250             None => false,
1251         }
1252     }
1253
1254     /// Updates [`self.file_name`] to `file_name`.
1255     ///
1256     /// If [`self.file_name`] was [`None`], this is equivalent to pushing
1257     /// `file_name`.
1258     ///
1259     /// Otherwise it is equivalent to calling [`pop`] and then pushing
1260     /// `file_name`. The new path will be a sibling of the original path.
1261     /// (That is, it will have the same parent.)
1262     ///
1263     /// [`self.file_name`]: struct.PathBuf.html#method.file_name
1264     /// [`None`]: ../../std/option/enum.Option.html#variant.None
1265     /// [`pop`]: struct.PathBuf.html#method.pop
1266     ///
1267     /// # Examples
1268     ///
1269     /// ```
1270     /// use std::path::PathBuf;
1271     ///
1272     /// let mut buf = PathBuf::from("/");
1273     /// assert!(buf.file_name() == None);
1274     /// buf.set_file_name("bar");
1275     /// assert!(buf == PathBuf::from("/bar"));
1276     /// assert!(buf.file_name().is_some());
1277     /// buf.set_file_name("baz.txt");
1278     /// assert!(buf == PathBuf::from("/baz.txt"));
1279     /// ```
1280     #[stable(feature = "rust1", since = "1.0.0")]
1281     pub fn set_file_name<S: AsRef<OsStr>>(&mut self, file_name: S) {
1282         self._set_file_name(file_name.as_ref())
1283     }
1284
1285     fn _set_file_name(&mut self, file_name: &OsStr) {
1286         if self.file_name().is_some() {
1287             let popped = self.pop();
1288             debug_assert!(popped);
1289         }
1290         self.push(file_name);
1291     }
1292
1293     /// Updates [`self.extension`] to `extension`.
1294     ///
1295     /// Returns `false` and does nothing if [`self.file_name`] is [`None`],
1296     /// returns `true` and updates the extension otherwise.
1297     ///
1298     /// If [`self.extension`] is [`None`], the extension is added; otherwise
1299     /// it is replaced.
1300     ///
1301     /// [`self.file_name`]: struct.PathBuf.html#method.file_name
1302     /// [`self.extension`]: struct.PathBuf.html#method.extension
1303     /// [`None`]: ../../std/option/enum.Option.html#variant.None
1304     ///
1305     /// # Examples
1306     ///
1307     /// ```
1308     /// use std::path::{Path, PathBuf};
1309     ///
1310     /// let mut p = PathBuf::from("/feel/the");
1311     ///
1312     /// p.set_extension("force");
1313     /// assert_eq!(Path::new("/feel/the.force"), p.as_path());
1314     ///
1315     /// p.set_extension("dark_side");
1316     /// assert_eq!(Path::new("/feel/the.dark_side"), p.as_path());
1317     /// ```
1318     #[stable(feature = "rust1", since = "1.0.0")]
1319     pub fn set_extension<S: AsRef<OsStr>>(&mut self, extension: S) -> bool {
1320         self._set_extension(extension.as_ref())
1321     }
1322
1323     fn _set_extension(&mut self, extension: &OsStr) -> bool {
1324         let file_stem = match self.file_stem() {
1325             None => return false,
1326             Some(f) => os_str_as_u8_slice(f),
1327         };
1328
1329         // truncate until right after the file stem
1330         let end_file_stem = file_stem[file_stem.len()..].as_ptr() as usize;
1331         let start = os_str_as_u8_slice(&self.inner).as_ptr() as usize;
1332         let v = self.as_mut_vec();
1333         v.truncate(end_file_stem.wrapping_sub(start));
1334
1335         // add the new extension, if any
1336         let new = os_str_as_u8_slice(extension);
1337         if !new.is_empty() {
1338             v.reserve_exact(new.len() + 1);
1339             v.push(b'.');
1340             v.extend_from_slice(new);
1341         }
1342
1343         true
1344     }
1345
1346     /// Consumes the `PathBuf`, yielding its internal [`OsString`] storage.
1347     ///
1348     /// [`OsString`]: ../ffi/struct.OsString.html
1349     ///
1350     /// # Examples
1351     ///
1352     /// ```
1353     /// use std::path::PathBuf;
1354     ///
1355     /// let p = PathBuf::from("/the/head");
1356     /// let os_str = p.into_os_string();
1357     /// ```
1358     #[stable(feature = "rust1", since = "1.0.0")]
1359     pub fn into_os_string(self) -> OsString {
1360         self.inner
1361     }
1362
1363     /// Converts this `PathBuf` into a [boxed][`Box`] [`Path`].
1364     ///
1365     /// [`Box`]: ../../std/boxed/struct.Box.html
1366     /// [`Path`]: struct.Path.html
1367     #[stable(feature = "into_boxed_path", since = "1.20.0")]
1368     pub fn into_boxed_path(self) -> Box<Path> {
1369         let rw = Box::into_raw(self.inner.into_boxed_os_str()) as *mut Path;
1370         unsafe { Box::from_raw(rw) }
1371     }
1372
1373     /// Invokes [`capacity`] on the underlying instance of [`OsString`].
1374     ///
1375     /// [`capacity`]: ../ffi/struct.OsString.html#method.capacity
1376     /// [`OsString`]: ../ffi/struct.OsString.html
1377     #[unstable(feature = "path_buf_capacity", issue = "58234")]
1378     pub fn capacity(&self) -> usize {
1379         self.inner.capacity()
1380     }
1381
1382     /// Invokes [`clear`] on the underlying instance of [`OsString`].
1383     ///
1384     /// [`clear`]: ../ffi/struct.OsString.html#method.clear
1385     /// [`OsString`]: ../ffi/struct.OsString.html
1386     #[unstable(feature = "path_buf_capacity", issue = "58234")]
1387     pub fn clear(&mut self) {
1388         self.inner.clear()
1389     }
1390
1391     /// Invokes [`reserve`] on the underlying instance of [`OsString`].
1392     ///
1393     /// [`reserve`]: ../ffi/struct.OsString.html#method.reserve
1394     /// [`OsString`]: ../ffi/struct.OsString.html
1395     #[unstable(feature = "path_buf_capacity", issue = "58234")]
1396     pub fn reserve(&mut self, additional: usize) {
1397         self.inner.reserve(additional)
1398     }
1399
1400     /// Invokes [`reserve_exact`] on the underlying instance of [`OsString`].
1401     ///
1402     /// [`reserve_exact`]: ../ffi/struct.OsString.html#method.reserve_exact
1403     /// [`OsString`]: ../ffi/struct.OsString.html
1404     #[unstable(feature = "path_buf_capacity", issue = "58234")]
1405     pub fn reserve_exact(&mut self, additional: usize) {
1406         self.inner.reserve_exact(additional)
1407     }
1408
1409     /// Invokes [`shrink_to_fit`] on the underlying instance of [`OsString`].
1410     ///
1411     /// [`shrink_to_fit`]: ../ffi/struct.OsString.html#method.shrink_to_fit
1412     /// [`OsString`]: ../ffi/struct.OsString.html
1413     #[unstable(feature = "path_buf_capacity", issue = "58234")]
1414     pub fn shrink_to_fit(&mut self) {
1415         self.inner.shrink_to_fit()
1416     }
1417
1418     /// Invokes [`shrink_to`] on the underlying instance of [`OsString`].
1419     ///
1420     /// [`shrink_to`]: ../ffi/struct.OsString.html#method.shrink_to
1421     /// [`OsString`]: ../ffi/struct.OsString.html
1422     #[unstable(feature = "path_buf_capacity", issue = "58234")]
1423     pub fn shrink_to(&mut self, min_capacity: usize) {
1424         self.inner.shrink_to(min_capacity)
1425     }
1426 }
1427
1428 #[stable(feature = "box_from_path", since = "1.17.0")]
1429 impl From<&Path> for Box<Path> {
1430     fn from(path: &Path) -> Box<Path> {
1431         let boxed: Box<OsStr> = path.inner.into();
1432         let rw = Box::into_raw(boxed) as *mut Path;
1433         unsafe { Box::from_raw(rw) }
1434     }
1435 }
1436
1437 #[stable(feature = "path_buf_from_box", since = "1.18.0")]
1438 impl From<Box<Path>> for PathBuf {
1439     /// Converts a `Box<Path>` into a `PathBuf`
1440     ///
1441     /// This conversion does not allocate or copy memory.
1442     fn from(boxed: Box<Path>) -> PathBuf {
1443         boxed.into_path_buf()
1444     }
1445 }
1446
1447 #[stable(feature = "box_from_path_buf", since = "1.20.0")]
1448 impl From<PathBuf> for Box<Path> {
1449     /// Converts a `PathBuf` into a `Box<Path>`
1450     ///
1451     /// This conversion currently should not allocate memory,
1452     /// but this behavior is not guaranteed on all platforms or in all future versions.
1453     fn from(p: PathBuf) -> Box<Path> {
1454         p.into_boxed_path()
1455     }
1456 }
1457
1458 #[stable(feature = "more_box_slice_clone", since = "1.29.0")]
1459 impl Clone for Box<Path> {
1460     #[inline]
1461     fn clone(&self) -> Self {
1462         self.to_path_buf().into_boxed_path()
1463     }
1464 }
1465
1466 #[stable(feature = "rust1", since = "1.0.0")]
1467 impl<T: ?Sized + AsRef<OsStr>> From<&T> for PathBuf {
1468     fn from(s: &T) -> PathBuf {
1469         PathBuf::from(s.as_ref().to_os_string())
1470     }
1471 }
1472
1473 #[stable(feature = "rust1", since = "1.0.0")]
1474 impl From<OsString> for PathBuf {
1475     /// Converts a `OsString` into a `PathBuf`
1476     ///
1477     /// This conversion does not allocate or copy memory.
1478     #[inline]
1479     fn from(s: OsString) -> PathBuf {
1480         PathBuf { inner: s }
1481     }
1482 }
1483
1484 #[stable(feature = "from_path_buf_for_os_string", since = "1.14.0")]
1485 impl From<PathBuf> for OsString {
1486     /// Converts a `PathBuf` into a `OsString`
1487     ///
1488     /// This conversion does not allocate or copy memory.
1489     fn from(path_buf: PathBuf) -> OsString {
1490         path_buf.inner
1491     }
1492 }
1493
1494 #[stable(feature = "rust1", since = "1.0.0")]
1495 impl From<String> for PathBuf {
1496     /// Converts a `String` into a `PathBuf`
1497     ///
1498     /// This conversion does not allocate or copy memory.
1499     fn from(s: String) -> PathBuf {
1500         PathBuf::from(OsString::from(s))
1501     }
1502 }
1503
1504 #[stable(feature = "path_from_str", since = "1.32.0")]
1505 impl FromStr for PathBuf {
1506     type Err = core::convert::Infallible;
1507
1508     fn from_str(s: &str) -> Result<Self, Self::Err> {
1509         Ok(PathBuf::from(s))
1510     }
1511 }
1512
1513 #[stable(feature = "rust1", since = "1.0.0")]
1514 impl<P: AsRef<Path>> iter::FromIterator<P> for PathBuf {
1515     fn from_iter<I: IntoIterator<Item = P>>(iter: I) -> PathBuf {
1516         let mut buf = PathBuf::new();
1517         buf.extend(iter);
1518         buf
1519     }
1520 }
1521
1522 #[stable(feature = "rust1", since = "1.0.0")]
1523 impl<P: AsRef<Path>> iter::Extend<P> for PathBuf {
1524     fn extend<I: IntoIterator<Item = P>>(&mut self, iter: I) {
1525         iter.into_iter().for_each(move |p| self.push(p.as_ref()));
1526     }
1527 }
1528
1529 #[stable(feature = "rust1", since = "1.0.0")]
1530 impl fmt::Debug for PathBuf {
1531     fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
1532         fmt::Debug::fmt(&**self, formatter)
1533     }
1534 }
1535
1536 #[stable(feature = "rust1", since = "1.0.0")]
1537 impl ops::Deref for PathBuf {
1538     type Target = Path;
1539     #[inline]
1540     fn deref(&self) -> &Path {
1541         Path::new(&self.inner)
1542     }
1543 }
1544
1545 #[stable(feature = "rust1", since = "1.0.0")]
1546 impl Borrow<Path> for PathBuf {
1547     fn borrow(&self) -> &Path {
1548         self.deref()
1549     }
1550 }
1551
1552 #[stable(feature = "default_for_pathbuf", since = "1.17.0")]
1553 impl Default for PathBuf {
1554     fn default() -> Self {
1555         PathBuf::new()
1556     }
1557 }
1558
1559 #[stable(feature = "cow_from_path", since = "1.6.0")]
1560 impl<'a> From<&'a Path> for Cow<'a, Path> {
1561     #[inline]
1562     fn from(s: &'a Path) -> Cow<'a, Path> {
1563         Cow::Borrowed(s)
1564     }
1565 }
1566
1567 #[stable(feature = "cow_from_path", since = "1.6.0")]
1568 impl<'a> From<PathBuf> for Cow<'a, Path> {
1569     #[inline]
1570     fn from(s: PathBuf) -> Cow<'a, Path> {
1571         Cow::Owned(s)
1572     }
1573 }
1574
1575 #[stable(feature = "cow_from_pathbuf_ref", since = "1.28.0")]
1576 impl<'a> From<&'a PathBuf> for Cow<'a, Path> {
1577     #[inline]
1578     fn from(p: &'a PathBuf) -> Cow<'a, Path> {
1579         Cow::Borrowed(p.as_path())
1580     }
1581 }
1582
1583 #[stable(feature = "pathbuf_from_cow_path", since = "1.28.0")]
1584 impl<'a> From<Cow<'a, Path>> for PathBuf {
1585     #[inline]
1586     fn from(p: Cow<'a, Path>) -> Self {
1587         p.into_owned()
1588     }
1589 }
1590
1591 #[stable(feature = "shared_from_slice2", since = "1.24.0")]
1592 impl From<PathBuf> for Arc<Path> {
1593     /// Converts a `PathBuf` into an `Arc` by moving the `PathBuf` data into a new `Arc` buffer.
1594     #[inline]
1595     fn from(s: PathBuf) -> Arc<Path> {
1596         let arc: Arc<OsStr> = Arc::from(s.into_os_string());
1597         unsafe { Arc::from_raw(Arc::into_raw(arc) as *const Path) }
1598     }
1599 }
1600
1601 #[stable(feature = "shared_from_slice2", since = "1.24.0")]
1602 impl From<&Path> for Arc<Path> {
1603     /// Converts a `Path` into an `Arc` by copying the `Path` data into a new `Arc` buffer.
1604     #[inline]
1605     fn from(s: &Path) -> Arc<Path> {
1606         let arc: Arc<OsStr> = Arc::from(s.as_os_str());
1607         unsafe { Arc::from_raw(Arc::into_raw(arc) as *const Path) }
1608     }
1609 }
1610
1611 #[stable(feature = "shared_from_slice2", since = "1.24.0")]
1612 impl From<PathBuf> for Rc<Path> {
1613     /// Converts a `PathBuf` into an `Rc` by moving the `PathBuf` data into a new `Rc` buffer.
1614     #[inline]
1615     fn from(s: PathBuf) -> Rc<Path> {
1616         let rc: Rc<OsStr> = Rc::from(s.into_os_string());
1617         unsafe { Rc::from_raw(Rc::into_raw(rc) as *const Path) }
1618     }
1619 }
1620
1621 #[stable(feature = "shared_from_slice2", since = "1.24.0")]
1622 impl From<&Path> for Rc<Path> {
1623     /// Converts a `Path` into an `Rc` by copying the `Path` data into a new `Rc` buffer.
1624     #[inline]
1625     fn from(s: &Path) -> Rc<Path> {
1626         let rc: Rc<OsStr> = Rc::from(s.as_os_str());
1627         unsafe { Rc::from_raw(Rc::into_raw(rc) as *const Path) }
1628     }
1629 }
1630
1631 #[stable(feature = "rust1", since = "1.0.0")]
1632 impl ToOwned for Path {
1633     type Owned = PathBuf;
1634     fn to_owned(&self) -> PathBuf {
1635         self.to_path_buf()
1636     }
1637     fn clone_into(&self, target: &mut PathBuf) {
1638         self.inner.clone_into(&mut target.inner);
1639     }
1640 }
1641
1642 #[stable(feature = "rust1", since = "1.0.0")]
1643 impl cmp::PartialEq for PathBuf {
1644     fn eq(&self, other: &PathBuf) -> bool {
1645         self.components() == other.components()
1646     }
1647 }
1648
1649 #[stable(feature = "rust1", since = "1.0.0")]
1650 impl Hash for PathBuf {
1651     fn hash<H: Hasher>(&self, h: &mut H) {
1652         self.as_path().hash(h)
1653     }
1654 }
1655
1656 #[stable(feature = "rust1", since = "1.0.0")]
1657 impl cmp::Eq for PathBuf {}
1658
1659 #[stable(feature = "rust1", since = "1.0.0")]
1660 impl cmp::PartialOrd for PathBuf {
1661     fn partial_cmp(&self, other: &PathBuf) -> Option<cmp::Ordering> {
1662         self.components().partial_cmp(other.components())
1663     }
1664 }
1665
1666 #[stable(feature = "rust1", since = "1.0.0")]
1667 impl cmp::Ord for PathBuf {
1668     fn cmp(&self, other: &PathBuf) -> cmp::Ordering {
1669         self.components().cmp(other.components())
1670     }
1671 }
1672
1673 #[stable(feature = "rust1", since = "1.0.0")]
1674 impl AsRef<OsStr> for PathBuf {
1675     fn as_ref(&self) -> &OsStr {
1676         &self.inner[..]
1677     }
1678 }
1679
1680 /// A slice of a path (akin to [`str`]).
1681 ///
1682 /// This type supports a number of operations for inspecting a path, including
1683 /// breaking the path into its components (separated by `/` on Unix and by either
1684 /// `/` or `\` on Windows), extracting the file name, determining whether the path
1685 /// is absolute, and so on.
1686 ///
1687 /// This is an *unsized* type, meaning that it must always be used behind a
1688 /// pointer like `&` or [`Box`]. For an owned version of this type,
1689 /// see [`PathBuf`].
1690 ///
1691 /// [`str`]: ../primitive.str.html
1692 /// [`Box`]: ../boxed/struct.Box.html
1693 /// [`PathBuf`]: struct.PathBuf.html
1694 ///
1695 /// More details about the overall approach can be found in
1696 /// the [module documentation](index.html).
1697 ///
1698 /// # Examples
1699 ///
1700 /// ```
1701 /// use std::path::Path;
1702 /// use std::ffi::OsStr;
1703 ///
1704 /// // Note: this example does work on Windows
1705 /// let path = Path::new("./foo/bar.txt");
1706 ///
1707 /// let parent = path.parent();
1708 /// assert_eq!(parent, Some(Path::new("./foo")));
1709 ///
1710 /// let file_stem = path.file_stem();
1711 /// assert_eq!(file_stem, Some(OsStr::new("bar")));
1712 ///
1713 /// let extension = path.extension();
1714 /// assert_eq!(extension, Some(OsStr::new("txt")));
1715 /// ```
1716 #[stable(feature = "rust1", since = "1.0.0")]
1717 // FIXME:
1718 // `Path::new` current implementation relies
1719 // on `Path` being layout-compatible with `OsStr`.
1720 // When attribute privacy is implemented, `Path` should be annotated as `#[repr(transparent)]`.
1721 // Anyway, `Path` representation and layout are considered implementation detail, are
1722 // not documented and must not be relied upon.
1723 pub struct Path {
1724     inner: OsStr,
1725 }
1726
1727 /// An error returned from [`Path::strip_prefix`][`strip_prefix`] if the prefix
1728 /// was not found.
1729 ///
1730 /// This `struct` is created by the [`strip_prefix`] method on [`Path`].
1731 /// See its documentation for more.
1732 ///
1733 /// [`strip_prefix`]: struct.Path.html#method.strip_prefix
1734 /// [`Path`]: struct.Path.html
1735 #[derive(Debug, Clone, PartialEq, Eq)]
1736 #[stable(since = "1.7.0", feature = "strip_prefix")]
1737 pub struct StripPrefixError(());
1738
1739 impl Path {
1740     // The following (private!) function allows construction of a path from a u8
1741     // slice, which is only safe when it is known to follow the OsStr encoding.
1742     unsafe fn from_u8_slice(s: &[u8]) -> &Path {
1743         Path::new(u8_slice_as_os_str(s))
1744     }
1745     // The following (private!) function reveals the byte encoding used for OsStr.
1746     fn as_u8_slice(&self) -> &[u8] {
1747         os_str_as_u8_slice(&self.inner)
1748     }
1749
1750     /// Directly wraps a string slice as a `Path` slice.
1751     ///
1752     /// This is a cost-free conversion.
1753     ///
1754     /// # Examples
1755     ///
1756     /// ```
1757     /// use std::path::Path;
1758     ///
1759     /// Path::new("foo.txt");
1760     /// ```
1761     ///
1762     /// You can create `Path`s from `String`s, or even other `Path`s:
1763     ///
1764     /// ```
1765     /// use std::path::Path;
1766     ///
1767     /// let string = String::from("foo.txt");
1768     /// let from_string = Path::new(&string);
1769     /// let from_path = Path::new(&from_string);
1770     /// assert_eq!(from_string, from_path);
1771     /// ```
1772     #[stable(feature = "rust1", since = "1.0.0")]
1773     pub fn new<S: AsRef<OsStr> + ?Sized>(s: &S) -> &Path {
1774         unsafe { &*(s.as_ref() as *const OsStr as *const Path) }
1775     }
1776
1777     /// Yields the underlying [`OsStr`] slice.
1778     ///
1779     /// [`OsStr`]: ../ffi/struct.OsStr.html
1780     ///
1781     /// # Examples
1782     ///
1783     /// ```
1784     /// use std::path::Path;
1785     ///
1786     /// let os_str = Path::new("foo.txt").as_os_str();
1787     /// assert_eq!(os_str, std::ffi::OsStr::new("foo.txt"));
1788     /// ```
1789     #[stable(feature = "rust1", since = "1.0.0")]
1790     pub fn as_os_str(&self) -> &OsStr {
1791         &self.inner
1792     }
1793
1794     /// Yields a [`&str`] slice if the `Path` is valid unicode.
1795     ///
1796     /// This conversion may entail doing a check for UTF-8 validity.
1797     /// Note that validation is performed because non-UTF-8 strings are
1798     /// perfectly valid for some OS.
1799     ///
1800     /// [`&str`]: ../primitive.str.html
1801     ///
1802     /// # Examples
1803     ///
1804     /// ```
1805     /// use std::path::Path;
1806     ///
1807     /// let path = Path::new("foo.txt");
1808     /// assert_eq!(path.to_str(), Some("foo.txt"));
1809     /// ```
1810     #[stable(feature = "rust1", since = "1.0.0")]
1811     pub fn to_str(&self) -> Option<&str> {
1812         self.inner.to_str()
1813     }
1814
1815     /// Converts a `Path` to a [`Cow<str>`].
1816     ///
1817     /// Any non-Unicode sequences are replaced with
1818     /// [`U+FFFD REPLACEMENT CHARACTER`][U+FFFD].
1819     ///
1820     /// [`Cow<str>`]: ../borrow/enum.Cow.html
1821     /// [U+FFFD]: ../char/constant.REPLACEMENT_CHARACTER.html
1822     ///
1823     /// # Examples
1824     ///
1825     /// Calling `to_string_lossy` on a `Path` with valid unicode:
1826     ///
1827     /// ```
1828     /// use std::path::Path;
1829     ///
1830     /// let path = Path::new("foo.txt");
1831     /// assert_eq!(path.to_string_lossy(), "foo.txt");
1832     /// ```
1833     ///
1834     /// Had `path` contained invalid unicode, the `to_string_lossy` call might
1835     /// have returned `"fo�.txt"`.
1836     #[stable(feature = "rust1", since = "1.0.0")]
1837     pub fn to_string_lossy(&self) -> Cow<'_, str> {
1838         self.inner.to_string_lossy()
1839     }
1840
1841     /// Converts a `Path` to an owned [`PathBuf`].
1842     ///
1843     /// [`PathBuf`]: struct.PathBuf.html
1844     ///
1845     /// # Examples
1846     ///
1847     /// ```
1848     /// use std::path::Path;
1849     ///
1850     /// let path_buf = Path::new("foo.txt").to_path_buf();
1851     /// assert_eq!(path_buf, std::path::PathBuf::from("foo.txt"));
1852     /// ```
1853     #[rustc_conversion_suggestion]
1854     #[stable(feature = "rust1", since = "1.0.0")]
1855     pub fn to_path_buf(&self) -> PathBuf {
1856         PathBuf::from(self.inner.to_os_string())
1857     }
1858
1859     /// Returns `true` if the `Path` is absolute, i.e., if it is independent of
1860     /// the current directory.
1861     ///
1862     /// * On Unix, a path is absolute if it starts with the root, so
1863     /// `is_absolute` and [`has_root`] are equivalent.
1864     ///
1865     /// * On Windows, a path is absolute if it has a prefix and starts with the
1866     /// root: `c:\windows` is absolute, while `c:temp` and `\temp` are not.
1867     ///
1868     /// # Examples
1869     ///
1870     /// ```
1871     /// use std::path::Path;
1872     ///
1873     /// assert!(!Path::new("foo.txt").is_absolute());
1874     /// ```
1875     ///
1876     /// [`has_root`]: #method.has_root
1877     #[stable(feature = "rust1", since = "1.0.0")]
1878     #[allow(deprecated)]
1879     pub fn is_absolute(&self) -> bool {
1880         if cfg!(target_os = "redox") {
1881             // FIXME: Allow Redox prefixes
1882             self.has_root() || has_redox_scheme(self.as_u8_slice())
1883         } else {
1884             self.has_root() && (cfg!(unix) || self.prefix().is_some())
1885         }
1886     }
1887
1888     /// Returns `true` if the `Path` is relative, i.e., not absolute.
1889     ///
1890     /// See [`is_absolute`]'s documentation for more details.
1891     ///
1892     /// # Examples
1893     ///
1894     /// ```
1895     /// use std::path::Path;
1896     ///
1897     /// assert!(Path::new("foo.txt").is_relative());
1898     /// ```
1899     ///
1900     /// [`is_absolute`]: #method.is_absolute
1901     #[stable(feature = "rust1", since = "1.0.0")]
1902     pub fn is_relative(&self) -> bool {
1903         !self.is_absolute()
1904     }
1905
1906     fn prefix(&self) -> Option<Prefix<'_>> {
1907         self.components().prefix
1908     }
1909
1910     /// Returns `true` if the `Path` has a root.
1911     ///
1912     /// * On Unix, a path has a root if it begins with `/`.
1913     ///
1914     /// * On Windows, a path has a root if it:
1915     ///     * has no prefix and begins with a separator, e.g., `\windows`
1916     ///     * has a prefix followed by a separator, e.g., `c:\windows` but not `c:windows`
1917     ///     * has any non-disk prefix, e.g., `\\server\share`
1918     ///
1919     /// # Examples
1920     ///
1921     /// ```
1922     /// use std::path::Path;
1923     ///
1924     /// assert!(Path::new("/etc/passwd").has_root());
1925     /// ```
1926     #[stable(feature = "rust1", since = "1.0.0")]
1927     pub fn has_root(&self) -> bool {
1928         self.components().has_root()
1929     }
1930
1931     /// Returns the `Path` without its final component, if there is one.
1932     ///
1933     /// Returns [`None`] if the path terminates in a root or prefix.
1934     ///
1935     /// [`None`]: ../../std/option/enum.Option.html#variant.None
1936     ///
1937     /// # Examples
1938     ///
1939     /// ```
1940     /// use std::path::Path;
1941     ///
1942     /// let path = Path::new("/foo/bar");
1943     /// let parent = path.parent().unwrap();
1944     /// assert_eq!(parent, Path::new("/foo"));
1945     ///
1946     /// let grand_parent = parent.parent().unwrap();
1947     /// assert_eq!(grand_parent, Path::new("/"));
1948     /// assert_eq!(grand_parent.parent(), None);
1949     /// ```
1950     #[stable(feature = "rust1", since = "1.0.0")]
1951     pub fn parent(&self) -> Option<&Path> {
1952         let mut comps = self.components();
1953         let comp = comps.next_back();
1954         comp.and_then(|p| match p {
1955             Component::Normal(_) | Component::CurDir | Component::ParentDir => {
1956                 Some(comps.as_path())
1957             }
1958             _ => None,
1959         })
1960     }
1961
1962     /// Produces an iterator over `Path` and its ancestors.
1963     ///
1964     /// The iterator will yield the `Path` that is returned if the [`parent`] method is used zero
1965     /// or more times. That means, the iterator will yield `&self`, `&self.parent().unwrap()`,
1966     /// `&self.parent().unwrap().parent().unwrap()` and so on. If the [`parent`] method returns
1967     /// [`None`], the iterator will do likewise. The iterator will always yield at least one value,
1968     /// namely `&self`.
1969     ///
1970     /// # Examples
1971     ///
1972     /// ```
1973     /// use std::path::Path;
1974     ///
1975     /// let mut ancestors = Path::new("/foo/bar").ancestors();
1976     /// assert_eq!(ancestors.next(), Some(Path::new("/foo/bar")));
1977     /// assert_eq!(ancestors.next(), Some(Path::new("/foo")));
1978     /// assert_eq!(ancestors.next(), Some(Path::new("/")));
1979     /// assert_eq!(ancestors.next(), None);
1980     /// ```
1981     ///
1982     /// [`None`]: ../../std/option/enum.Option.html#variant.None
1983     /// [`parent`]: struct.Path.html#method.parent
1984     #[stable(feature = "path_ancestors", since = "1.28.0")]
1985     pub fn ancestors(&self) -> Ancestors<'_> {
1986         Ancestors { next: Some(&self) }
1987     }
1988
1989     /// Returns the final component of the `Path`, if there is one.
1990     ///
1991     /// If the path is a normal file, this is the file name. If it's the path of a directory, this
1992     /// is the directory name.
1993     ///
1994     /// Returns [`None`] if the path terminates in `..`.
1995     ///
1996     /// [`None`]: ../../std/option/enum.Option.html#variant.None
1997     ///
1998     /// # Examples
1999     ///
2000     /// ```
2001     /// use std::path::Path;
2002     /// use std::ffi::OsStr;
2003     ///
2004     /// assert_eq!(Some(OsStr::new("bin")), Path::new("/usr/bin/").file_name());
2005     /// assert_eq!(Some(OsStr::new("foo.txt")), Path::new("tmp/foo.txt").file_name());
2006     /// assert_eq!(Some(OsStr::new("foo.txt")), Path::new("foo.txt/.").file_name());
2007     /// assert_eq!(Some(OsStr::new("foo.txt")), Path::new("foo.txt/.//").file_name());
2008     /// assert_eq!(None, Path::new("foo.txt/..").file_name());
2009     /// assert_eq!(None, Path::new("/").file_name());
2010     /// ```
2011     #[stable(feature = "rust1", since = "1.0.0")]
2012     pub fn file_name(&self) -> Option<&OsStr> {
2013         self.components().next_back().and_then(|p| match p {
2014             Component::Normal(p) => Some(p.as_ref()),
2015             _ => None,
2016         })
2017     }
2018
2019     /// Returns a path that, when joined onto `base`, yields `self`.
2020     ///
2021     /// # Errors
2022     ///
2023     /// If `base` is not a prefix of `self` (i.e., [`starts_with`]
2024     /// returns `false`), returns [`Err`].
2025     ///
2026     /// [`starts_with`]: #method.starts_with
2027     /// [`Err`]: ../../std/result/enum.Result.html#variant.Err
2028     ///
2029     /// # Examples
2030     ///
2031     /// ```
2032     /// use std::path::{Path, PathBuf};
2033     ///
2034     /// let path = Path::new("/test/haha/foo.txt");
2035     ///
2036     /// assert_eq!(path.strip_prefix("/"), Ok(Path::new("test/haha/foo.txt")));
2037     /// assert_eq!(path.strip_prefix("/test"), Ok(Path::new("haha/foo.txt")));
2038     /// assert_eq!(path.strip_prefix("/test/"), Ok(Path::new("haha/foo.txt")));
2039     /// assert_eq!(path.strip_prefix("/test/haha/foo.txt"), Ok(Path::new("")));
2040     /// assert_eq!(path.strip_prefix("/test/haha/foo.txt/"), Ok(Path::new("")));
2041     /// assert_eq!(path.strip_prefix("test").is_ok(), false);
2042     /// assert_eq!(path.strip_prefix("/haha").is_ok(), false);
2043     ///
2044     /// let prefix = PathBuf::from("/test/");
2045     /// assert_eq!(path.strip_prefix(prefix), Ok(Path::new("haha/foo.txt")));
2046     /// ```
2047     #[stable(since = "1.7.0", feature = "path_strip_prefix")]
2048     pub fn strip_prefix<P>(&self, base: P) -> Result<&Path, StripPrefixError>
2049     where
2050         P: AsRef<Path>,
2051     {
2052         self._strip_prefix(base.as_ref())
2053     }
2054
2055     fn _strip_prefix(&self, base: &Path) -> Result<&Path, StripPrefixError> {
2056         iter_after(self.components(), base.components())
2057             .map(|c| c.as_path())
2058             .ok_or(StripPrefixError(()))
2059     }
2060
2061     /// Determines whether `base` is a prefix of `self`.
2062     ///
2063     /// Only considers whole path components to match.
2064     ///
2065     /// # Examples
2066     ///
2067     /// ```
2068     /// use std::path::Path;
2069     ///
2070     /// let path = Path::new("/etc/passwd");
2071     ///
2072     /// assert!(path.starts_with("/etc"));
2073     /// assert!(path.starts_with("/etc/"));
2074     /// assert!(path.starts_with("/etc/passwd"));
2075     /// assert!(path.starts_with("/etc/passwd/"));
2076     ///
2077     /// assert!(!path.starts_with("/e"));
2078     /// ```
2079     #[stable(feature = "rust1", since = "1.0.0")]
2080     pub fn starts_with<P: AsRef<Path>>(&self, base: P) -> bool {
2081         self._starts_with(base.as_ref())
2082     }
2083
2084     fn _starts_with(&self, base: &Path) -> bool {
2085         iter_after(self.components(), base.components()).is_some()
2086     }
2087
2088     /// Determines whether `child` is a suffix of `self`.
2089     ///
2090     /// Only considers whole path components to match.
2091     ///
2092     /// # Examples
2093     ///
2094     /// ```
2095     /// use std::path::Path;
2096     ///
2097     /// let path = Path::new("/etc/passwd");
2098     ///
2099     /// assert!(path.ends_with("passwd"));
2100     /// ```
2101     #[stable(feature = "rust1", since = "1.0.0")]
2102     pub fn ends_with<P: AsRef<Path>>(&self, child: P) -> bool {
2103         self._ends_with(child.as_ref())
2104     }
2105
2106     fn _ends_with(&self, child: &Path) -> bool {
2107         iter_after(self.components().rev(), child.components().rev()).is_some()
2108     }
2109
2110     /// Extracts the stem (non-extension) portion of [`self.file_name`].
2111     ///
2112     /// [`self.file_name`]: struct.Path.html#method.file_name
2113     ///
2114     /// The stem is:
2115     ///
2116     /// * [`None`], if there is no file name;
2117     /// * The entire file name if there is no embedded `.`;
2118     /// * The entire file name if the file name begins with `.` and has no other `.`s within;
2119     /// * Otherwise, the portion of the file name before the final `.`
2120     ///
2121     /// [`None`]: ../../std/option/enum.Option.html#variant.None
2122     ///
2123     /// # Examples
2124     ///
2125     /// ```
2126     /// use std::path::Path;
2127     ///
2128     /// let path = Path::new("foo.rs");
2129     ///
2130     /// assert_eq!("foo", path.file_stem().unwrap());
2131     /// ```
2132     #[stable(feature = "rust1", since = "1.0.0")]
2133     pub fn file_stem(&self) -> Option<&OsStr> {
2134         self.file_name().map(split_file_at_dot).and_then(|(before, after)| before.or(after))
2135     }
2136
2137     /// Extracts the extension of [`self.file_name`], if possible.
2138     ///
2139     /// The extension is:
2140     ///
2141     /// * [`None`], if there is no file name;
2142     /// * [`None`], if there is no embedded `.`;
2143     /// * [`None`], if the file name begins with `.` and has no other `.`s within;
2144     /// * Otherwise, the portion of the file name after the final `.`
2145     ///
2146     /// [`self.file_name`]: struct.Path.html#method.file_name
2147     /// [`None`]: ../../std/option/enum.Option.html#variant.None
2148     ///
2149     /// # Examples
2150     ///
2151     /// ```
2152     /// use std::path::Path;
2153     ///
2154     /// let path = Path::new("foo.rs");
2155     ///
2156     /// assert_eq!("rs", path.extension().unwrap());
2157     /// ```
2158     #[stable(feature = "rust1", since = "1.0.0")]
2159     pub fn extension(&self) -> Option<&OsStr> {
2160         self.file_name().map(split_file_at_dot).and_then(|(before, after)| before.and(after))
2161     }
2162
2163     /// Creates an owned [`PathBuf`] with `path` adjoined to `self`.
2164     ///
2165     /// See [`PathBuf::push`] for more details on what it means to adjoin a path.
2166     ///
2167     /// [`PathBuf`]: struct.PathBuf.html
2168     /// [`PathBuf::push`]: struct.PathBuf.html#method.push
2169     ///
2170     /// # Examples
2171     ///
2172     /// ```
2173     /// use std::path::{Path, PathBuf};
2174     ///
2175     /// assert_eq!(Path::new("/etc").join("passwd"), PathBuf::from("/etc/passwd"));
2176     /// ```
2177     #[stable(feature = "rust1", since = "1.0.0")]
2178     #[must_use]
2179     pub fn join<P: AsRef<Path>>(&self, path: P) -> PathBuf {
2180         self._join(path.as_ref())
2181     }
2182
2183     fn _join(&self, path: &Path) -> PathBuf {
2184         let mut buf = self.to_path_buf();
2185         buf.push(path);
2186         buf
2187     }
2188
2189     /// Creates an owned [`PathBuf`] like `self` but with the given file name.
2190     ///
2191     /// See [`PathBuf::set_file_name`] for more details.
2192     ///
2193     /// [`PathBuf`]: struct.PathBuf.html
2194     /// [`PathBuf::set_file_name`]: struct.PathBuf.html#method.set_file_name
2195     ///
2196     /// # Examples
2197     ///
2198     /// ```
2199     /// use std::path::{Path, PathBuf};
2200     ///
2201     /// let path = Path::new("/tmp/foo.txt");
2202     /// assert_eq!(path.with_file_name("bar.txt"), PathBuf::from("/tmp/bar.txt"));
2203     ///
2204     /// let path = Path::new("/tmp");
2205     /// assert_eq!(path.with_file_name("var"), PathBuf::from("/var"));
2206     /// ```
2207     #[stable(feature = "rust1", since = "1.0.0")]
2208     pub fn with_file_name<S: AsRef<OsStr>>(&self, file_name: S) -> PathBuf {
2209         self._with_file_name(file_name.as_ref())
2210     }
2211
2212     fn _with_file_name(&self, file_name: &OsStr) -> PathBuf {
2213         let mut buf = self.to_path_buf();
2214         buf.set_file_name(file_name);
2215         buf
2216     }
2217
2218     /// Creates an owned [`PathBuf`] like `self` but with the given extension.
2219     ///
2220     /// See [`PathBuf::set_extension`] for more details.
2221     ///
2222     /// [`PathBuf`]: struct.PathBuf.html
2223     /// [`PathBuf::set_extension`]: struct.PathBuf.html#method.set_extension
2224     ///
2225     /// # Examples
2226     ///
2227     /// ```
2228     /// use std::path::{Path, PathBuf};
2229     ///
2230     /// let path = Path::new("foo.rs");
2231     /// assert_eq!(path.with_extension("txt"), PathBuf::from("foo.txt"));
2232     /// ```
2233     #[stable(feature = "rust1", since = "1.0.0")]
2234     pub fn with_extension<S: AsRef<OsStr>>(&self, extension: S) -> PathBuf {
2235         self._with_extension(extension.as_ref())
2236     }
2237
2238     fn _with_extension(&self, extension: &OsStr) -> PathBuf {
2239         let mut buf = self.to_path_buf();
2240         buf.set_extension(extension);
2241         buf
2242     }
2243
2244     /// Produces an iterator over the [`Component`]s of the path.
2245     ///
2246     /// When parsing the path, there is a small amount of normalization:
2247     ///
2248     /// * Repeated separators are ignored, so `a/b` and `a//b` both have
2249     ///   `a` and `b` as components.
2250     ///
2251     /// * Occurrences of `.` are normalized away, except if they are at the
2252     ///   beginning of the path. For example, `a/./b`, `a/b/`, `a/b/.` and
2253     ///   `a/b` all have `a` and `b` as components, but `./a/b` starts with
2254     ///   an additional [`CurDir`] component.
2255     ///
2256     /// * A trailing slash is normalized away, `/a/b` and `/a/b/` are equivalent.
2257     ///
2258     /// Note that no other normalization takes place; in particular, `a/c`
2259     /// and `a/b/../c` are distinct, to account for the possibility that `b`
2260     /// is a symbolic link (so its parent isn't `a`).
2261     ///
2262     /// # Examples
2263     ///
2264     /// ```
2265     /// use std::path::{Path, Component};
2266     /// use std::ffi::OsStr;
2267     ///
2268     /// let mut components = Path::new("/tmp/foo.txt").components();
2269     ///
2270     /// assert_eq!(components.next(), Some(Component::RootDir));
2271     /// assert_eq!(components.next(), Some(Component::Normal(OsStr::new("tmp"))));
2272     /// assert_eq!(components.next(), Some(Component::Normal(OsStr::new("foo.txt"))));
2273     /// assert_eq!(components.next(), None)
2274     /// ```
2275     ///
2276     /// [`Component`]: enum.Component.html
2277     /// [`CurDir`]: enum.Component.html#variant.CurDir
2278     #[stable(feature = "rust1", since = "1.0.0")]
2279     pub fn components(&self) -> Components<'_> {
2280         let prefix = parse_prefix(self.as_os_str());
2281         Components {
2282             path: self.as_u8_slice(),
2283             prefix,
2284             has_physical_root: has_physical_root(self.as_u8_slice(), prefix)
2285                 || has_redox_scheme(self.as_u8_slice()),
2286             front: State::Prefix,
2287             back: State::Body,
2288         }
2289     }
2290
2291     /// Produces an iterator over the path's components viewed as [`OsStr`]
2292     /// slices.
2293     ///
2294     /// For more information about the particulars of how the path is separated
2295     /// into components, see [`components`].
2296     ///
2297     /// [`components`]: #method.components
2298     /// [`OsStr`]: ../ffi/struct.OsStr.html
2299     ///
2300     /// # Examples
2301     ///
2302     /// ```
2303     /// use std::path::{self, Path};
2304     /// use std::ffi::OsStr;
2305     ///
2306     /// let mut it = Path::new("/tmp/foo.txt").iter();
2307     /// assert_eq!(it.next(), Some(OsStr::new(&path::MAIN_SEPARATOR.to_string())));
2308     /// assert_eq!(it.next(), Some(OsStr::new("tmp")));
2309     /// assert_eq!(it.next(), Some(OsStr::new("foo.txt")));
2310     /// assert_eq!(it.next(), None)
2311     /// ```
2312     #[stable(feature = "rust1", since = "1.0.0")]
2313     pub fn iter(&self) -> Iter<'_> {
2314         Iter { inner: self.components() }
2315     }
2316
2317     /// Returns an object that implements [`Display`] for safely printing paths
2318     /// that may contain non-Unicode data.
2319     ///
2320     /// [`Display`]: ../fmt/trait.Display.html
2321     ///
2322     /// # Examples
2323     ///
2324     /// ```
2325     /// use std::path::Path;
2326     ///
2327     /// let path = Path::new("/tmp/foo.rs");
2328     ///
2329     /// println!("{}", path.display());
2330     /// ```
2331     #[stable(feature = "rust1", since = "1.0.0")]
2332     pub fn display(&self) -> Display<'_> {
2333         Display { path: self }
2334     }
2335
2336     /// Queries the file system to get information about a file, directory, etc.
2337     ///
2338     /// This function will traverse symbolic links to query information about the
2339     /// destination file.
2340     ///
2341     /// This is an alias to [`fs::metadata`].
2342     ///
2343     /// [`fs::metadata`]: ../fs/fn.metadata.html
2344     ///
2345     /// # Examples
2346     ///
2347     /// ```no_run
2348     /// use std::path::Path;
2349     ///
2350     /// let path = Path::new("/Minas/tirith");
2351     /// let metadata = path.metadata().expect("metadata call failed");
2352     /// println!("{:?}", metadata.file_type());
2353     /// ```
2354     #[stable(feature = "path_ext", since = "1.5.0")]
2355     pub fn metadata(&self) -> io::Result<fs::Metadata> {
2356         fs::metadata(self)
2357     }
2358
2359     /// Queries the metadata about a file without following symlinks.
2360     ///
2361     /// This is an alias to [`fs::symlink_metadata`].
2362     ///
2363     /// [`fs::symlink_metadata`]: ../fs/fn.symlink_metadata.html
2364     ///
2365     /// # Examples
2366     ///
2367     /// ```no_run
2368     /// use std::path::Path;
2369     ///
2370     /// let path = Path::new("/Minas/tirith");
2371     /// let metadata = path.symlink_metadata().expect("symlink_metadata call failed");
2372     /// println!("{:?}", metadata.file_type());
2373     /// ```
2374     #[stable(feature = "path_ext", since = "1.5.0")]
2375     pub fn symlink_metadata(&self) -> io::Result<fs::Metadata> {
2376         fs::symlink_metadata(self)
2377     }
2378
2379     /// Returns the canonical, absolute form of the path with all intermediate
2380     /// components normalized and symbolic links resolved.
2381     ///
2382     /// This is an alias to [`fs::canonicalize`].
2383     ///
2384     /// [`fs::canonicalize`]: ../fs/fn.canonicalize.html
2385     ///
2386     /// # Examples
2387     ///
2388     /// ```no_run
2389     /// use std::path::{Path, PathBuf};
2390     ///
2391     /// let path = Path::new("/foo/test/../test/bar.rs");
2392     /// assert_eq!(path.canonicalize().unwrap(), PathBuf::from("/foo/test/bar.rs"));
2393     /// ```
2394     #[stable(feature = "path_ext", since = "1.5.0")]
2395     pub fn canonicalize(&self) -> io::Result<PathBuf> {
2396         fs::canonicalize(self)
2397     }
2398
2399     /// Reads a symbolic link, returning the file that the link points to.
2400     ///
2401     /// This is an alias to [`fs::read_link`].
2402     ///
2403     /// [`fs::read_link`]: ../fs/fn.read_link.html
2404     ///
2405     /// # Examples
2406     ///
2407     /// ```no_run
2408     /// use std::path::Path;
2409     ///
2410     /// let path = Path::new("/laputa/sky_castle.rs");
2411     /// let path_link = path.read_link().expect("read_link call failed");
2412     /// ```
2413     #[stable(feature = "path_ext", since = "1.5.0")]
2414     pub fn read_link(&self) -> io::Result<PathBuf> {
2415         fs::read_link(self)
2416     }
2417
2418     /// Returns an iterator over the entries within a directory.
2419     ///
2420     /// The iterator will yield instances of [`io::Result`]`<`[`DirEntry`]`>`. New
2421     /// errors may be encountered after an iterator is initially constructed.
2422     ///
2423     /// This is an alias to [`fs::read_dir`].
2424     ///
2425     /// [`io::Result`]: ../io/type.Result.html
2426     /// [`DirEntry`]: ../fs/struct.DirEntry.html
2427     /// [`fs::read_dir`]: ../fs/fn.read_dir.html
2428     ///
2429     /// # Examples
2430     ///
2431     /// ```no_run
2432     /// use std::path::Path;
2433     ///
2434     /// let path = Path::new("/laputa");
2435     /// for entry in path.read_dir().expect("read_dir call failed") {
2436     ///     if let Ok(entry) = entry {
2437     ///         println!("{:?}", entry.path());
2438     ///     }
2439     /// }
2440     /// ```
2441     #[stable(feature = "path_ext", since = "1.5.0")]
2442     pub fn read_dir(&self) -> io::Result<fs::ReadDir> {
2443         fs::read_dir(self)
2444     }
2445
2446     /// Returns `true` if the path points at an existing entity.
2447     ///
2448     /// This function will traverse symbolic links to query information about the
2449     /// destination file. In case of broken symbolic links this will return `false`.
2450     ///
2451     /// If you cannot access the directory containing the file, e.g., because of a
2452     /// permission error, this will return `false`.
2453     ///
2454     /// # Examples
2455     ///
2456     /// ```no_run
2457     /// use std::path::Path;
2458     /// assert_eq!(Path::new("does_not_exist.txt").exists(), false);
2459     /// ```
2460     ///
2461     /// # See Also
2462     ///
2463     /// This is a convenience function that coerces errors to false. If you want to
2464     /// check errors, call [fs::metadata].
2465     ///
2466     /// [fs::metadata]: ../../std/fs/fn.metadata.html
2467     #[stable(feature = "path_ext", since = "1.5.0")]
2468     pub fn exists(&self) -> bool {
2469         fs::metadata(self).is_ok()
2470     }
2471
2472     /// Returns `true` if the path exists on disk and is pointing at a regular file.
2473     ///
2474     /// This function will traverse symbolic links to query information about the
2475     /// destination file. In case of broken symbolic links this will return `false`.
2476     ///
2477     /// If you cannot access the directory containing the file, e.g., because of a
2478     /// permission error, this will return `false`.
2479     ///
2480     /// # Examples
2481     ///
2482     /// ```no_run
2483     /// use std::path::Path;
2484     /// assert_eq!(Path::new("./is_a_directory/").is_file(), false);
2485     /// assert_eq!(Path::new("a_file.txt").is_file(), true);
2486     /// ```
2487     ///
2488     /// # See Also
2489     ///
2490     /// This is a convenience function that coerces errors to false. If you want to
2491     /// check errors, call [fs::metadata] and handle its Result. Then call
2492     /// [fs::Metadata::is_file] if it was Ok.
2493     ///
2494     /// [fs::metadata]: ../../std/fs/fn.metadata.html
2495     /// [fs::Metadata::is_file]: ../../std/fs/struct.Metadata.html#method.is_file
2496     #[stable(feature = "path_ext", since = "1.5.0")]
2497     pub fn is_file(&self) -> bool {
2498         fs::metadata(self).map(|m| m.is_file()).unwrap_or(false)
2499     }
2500
2501     /// Returns `true` if the path exists on disk and is pointing at a directory.
2502     ///
2503     /// This function will traverse symbolic links to query information about the
2504     /// destination file. In case of broken symbolic links this will return `false`.
2505     ///
2506     /// If you cannot access the directory containing the file, e.g., because of a
2507     /// permission error, this will return `false`.
2508     ///
2509     /// # Examples
2510     ///
2511     /// ```no_run
2512     /// use std::path::Path;
2513     /// assert_eq!(Path::new("./is_a_directory/").is_dir(), true);
2514     /// assert_eq!(Path::new("a_file.txt").is_dir(), false);
2515     /// ```
2516     ///
2517     /// # See Also
2518     ///
2519     /// This is a convenience function that coerces errors to false. If you want to
2520     /// check errors, call [fs::metadata] and handle its Result. Then call
2521     /// [fs::Metadata::is_dir] if it was Ok.
2522     ///
2523     /// [fs::metadata]: ../../std/fs/fn.metadata.html
2524     /// [fs::Metadata::is_dir]: ../../std/fs/struct.Metadata.html#method.is_dir
2525     #[stable(feature = "path_ext", since = "1.5.0")]
2526     pub fn is_dir(&self) -> bool {
2527         fs::metadata(self).map(|m| m.is_dir()).unwrap_or(false)
2528     }
2529
2530     /// Converts a [`Box<Path>`][`Box`] into a [`PathBuf`] without copying or
2531     /// allocating.
2532     ///
2533     /// [`Box`]: ../../std/boxed/struct.Box.html
2534     /// [`PathBuf`]: struct.PathBuf.html
2535     #[stable(feature = "into_boxed_path", since = "1.20.0")]
2536     pub fn into_path_buf(self: Box<Path>) -> PathBuf {
2537         let rw = Box::into_raw(self) as *mut OsStr;
2538         let inner = unsafe { Box::from_raw(rw) };
2539         PathBuf { inner: OsString::from(inner) }
2540     }
2541 }
2542
2543 #[stable(feature = "rust1", since = "1.0.0")]
2544 impl AsRef<OsStr> for Path {
2545     fn as_ref(&self) -> &OsStr {
2546         &self.inner
2547     }
2548 }
2549
2550 #[stable(feature = "rust1", since = "1.0.0")]
2551 impl fmt::Debug for Path {
2552     fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
2553         fmt::Debug::fmt(&self.inner, formatter)
2554     }
2555 }
2556
2557 /// Helper struct for safely printing paths with [`format!`] and `{}`.
2558 ///
2559 /// A [`Path`] might contain non-Unicode data. This `struct` implements the
2560 /// [`Display`] trait in a way that mitigates that. It is created by the
2561 /// [`display`][`Path::display`] method on [`Path`].
2562 ///
2563 /// # Examples
2564 ///
2565 /// ```
2566 /// use std::path::Path;
2567 ///
2568 /// let path = Path::new("/tmp/foo.rs");
2569 ///
2570 /// println!("{}", path.display());
2571 /// ```
2572 ///
2573 /// [`Display`]: ../../std/fmt/trait.Display.html
2574 /// [`format!`]: ../../std/macro.format.html
2575 /// [`Path`]: struct.Path.html
2576 /// [`Path::display`]: struct.Path.html#method.display
2577 #[stable(feature = "rust1", since = "1.0.0")]
2578 pub struct Display<'a> {
2579     path: &'a Path,
2580 }
2581
2582 #[stable(feature = "rust1", since = "1.0.0")]
2583 impl fmt::Debug for Display<'_> {
2584     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2585         fmt::Debug::fmt(&self.path, f)
2586     }
2587 }
2588
2589 #[stable(feature = "rust1", since = "1.0.0")]
2590 impl fmt::Display for Display<'_> {
2591     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2592         self.path.inner.display(f)
2593     }
2594 }
2595
2596 #[stable(feature = "rust1", since = "1.0.0")]
2597 impl cmp::PartialEq for Path {
2598     fn eq(&self, other: &Path) -> bool {
2599         self.components().eq(other.components())
2600     }
2601 }
2602
2603 #[stable(feature = "rust1", since = "1.0.0")]
2604 impl Hash for Path {
2605     fn hash<H: Hasher>(&self, h: &mut H) {
2606         for component in self.components() {
2607             component.hash(h);
2608         }
2609     }
2610 }
2611
2612 #[stable(feature = "rust1", since = "1.0.0")]
2613 impl cmp::Eq for Path {}
2614
2615 #[stable(feature = "rust1", since = "1.0.0")]
2616 impl cmp::PartialOrd for Path {
2617     fn partial_cmp(&self, other: &Path) -> Option<cmp::Ordering> {
2618         self.components().partial_cmp(other.components())
2619     }
2620 }
2621
2622 #[stable(feature = "rust1", since = "1.0.0")]
2623 impl cmp::Ord for Path {
2624     fn cmp(&self, other: &Path) -> cmp::Ordering {
2625         self.components().cmp(other.components())
2626     }
2627 }
2628
2629 #[stable(feature = "rust1", since = "1.0.0")]
2630 impl AsRef<Path> for Path {
2631     fn as_ref(&self) -> &Path {
2632         self
2633     }
2634 }
2635
2636 #[stable(feature = "rust1", since = "1.0.0")]
2637 impl AsRef<Path> for OsStr {
2638     fn as_ref(&self) -> &Path {
2639         Path::new(self)
2640     }
2641 }
2642
2643 #[stable(feature = "cow_os_str_as_ref_path", since = "1.8.0")]
2644 impl AsRef<Path> for Cow<'_, OsStr> {
2645     fn as_ref(&self) -> &Path {
2646         Path::new(self)
2647     }
2648 }
2649
2650 #[stable(feature = "rust1", since = "1.0.0")]
2651 impl AsRef<Path> for OsString {
2652     fn as_ref(&self) -> &Path {
2653         Path::new(self)
2654     }
2655 }
2656
2657 #[stable(feature = "rust1", since = "1.0.0")]
2658 impl AsRef<Path> for str {
2659     #[inline]
2660     fn as_ref(&self) -> &Path {
2661         Path::new(self)
2662     }
2663 }
2664
2665 #[stable(feature = "rust1", since = "1.0.0")]
2666 impl AsRef<Path> for String {
2667     fn as_ref(&self) -> &Path {
2668         Path::new(self)
2669     }
2670 }
2671
2672 #[stable(feature = "rust1", since = "1.0.0")]
2673 impl AsRef<Path> for PathBuf {
2674     #[inline]
2675     fn as_ref(&self) -> &Path {
2676         self
2677     }
2678 }
2679
2680 #[stable(feature = "path_into_iter", since = "1.6.0")]
2681 impl<'a> IntoIterator for &'a PathBuf {
2682     type Item = &'a OsStr;
2683     type IntoIter = Iter<'a>;
2684     fn into_iter(self) -> Iter<'a> {
2685         self.iter()
2686     }
2687 }
2688
2689 #[stable(feature = "path_into_iter", since = "1.6.0")]
2690 impl<'a> IntoIterator for &'a Path {
2691     type Item = &'a OsStr;
2692     type IntoIter = Iter<'a>;
2693     fn into_iter(self) -> Iter<'a> {
2694         self.iter()
2695     }
2696 }
2697
2698 macro_rules! impl_cmp {
2699     ($lhs:ty, $rhs: ty) => {
2700         #[stable(feature = "partialeq_path", since = "1.6.0")]
2701         impl<'a, 'b> PartialEq<$rhs> for $lhs {
2702             #[inline]
2703             fn eq(&self, other: &$rhs) -> bool {
2704                 <Path as PartialEq>::eq(self, other)
2705             }
2706         }
2707
2708         #[stable(feature = "partialeq_path", since = "1.6.0")]
2709         impl<'a, 'b> PartialEq<$lhs> for $rhs {
2710             #[inline]
2711             fn eq(&self, other: &$lhs) -> bool {
2712                 <Path as PartialEq>::eq(self, other)
2713             }
2714         }
2715
2716         #[stable(feature = "cmp_path", since = "1.8.0")]
2717         impl<'a, 'b> PartialOrd<$rhs> for $lhs {
2718             #[inline]
2719             fn partial_cmp(&self, other: &$rhs) -> Option<cmp::Ordering> {
2720                 <Path as PartialOrd>::partial_cmp(self, other)
2721             }
2722         }
2723
2724         #[stable(feature = "cmp_path", since = "1.8.0")]
2725         impl<'a, 'b> PartialOrd<$lhs> for $rhs {
2726             #[inline]
2727             fn partial_cmp(&self, other: &$lhs) -> Option<cmp::Ordering> {
2728                 <Path as PartialOrd>::partial_cmp(self, other)
2729             }
2730         }
2731     };
2732 }
2733
2734 impl_cmp!(PathBuf, Path);
2735 impl_cmp!(PathBuf, &'a Path);
2736 impl_cmp!(Cow<'a, Path>, Path);
2737 impl_cmp!(Cow<'a, Path>, &'b Path);
2738 impl_cmp!(Cow<'a, Path>, PathBuf);
2739
2740 macro_rules! impl_cmp_os_str {
2741     ($lhs:ty, $rhs: ty) => {
2742         #[stable(feature = "cmp_path", since = "1.8.0")]
2743         impl<'a, 'b> PartialEq<$rhs> for $lhs {
2744             #[inline]
2745             fn eq(&self, other: &$rhs) -> bool {
2746                 <Path as PartialEq>::eq(self, other.as_ref())
2747             }
2748         }
2749
2750         #[stable(feature = "cmp_path", since = "1.8.0")]
2751         impl<'a, 'b> PartialEq<$lhs> for $rhs {
2752             #[inline]
2753             fn eq(&self, other: &$lhs) -> bool {
2754                 <Path as PartialEq>::eq(self.as_ref(), other)
2755             }
2756         }
2757
2758         #[stable(feature = "cmp_path", since = "1.8.0")]
2759         impl<'a, 'b> PartialOrd<$rhs> for $lhs {
2760             #[inline]
2761             fn partial_cmp(&self, other: &$rhs) -> Option<cmp::Ordering> {
2762                 <Path as PartialOrd>::partial_cmp(self, other.as_ref())
2763             }
2764         }
2765
2766         #[stable(feature = "cmp_path", since = "1.8.0")]
2767         impl<'a, 'b> PartialOrd<$lhs> for $rhs {
2768             #[inline]
2769             fn partial_cmp(&self, other: &$lhs) -> Option<cmp::Ordering> {
2770                 <Path as PartialOrd>::partial_cmp(self.as_ref(), other)
2771             }
2772         }
2773     };
2774 }
2775
2776 impl_cmp_os_str!(PathBuf, OsStr);
2777 impl_cmp_os_str!(PathBuf, &'a OsStr);
2778 impl_cmp_os_str!(PathBuf, Cow<'a, OsStr>);
2779 impl_cmp_os_str!(PathBuf, OsString);
2780 impl_cmp_os_str!(Path, OsStr);
2781 impl_cmp_os_str!(Path, &'a OsStr);
2782 impl_cmp_os_str!(Path, Cow<'a, OsStr>);
2783 impl_cmp_os_str!(Path, OsString);
2784 impl_cmp_os_str!(&'a Path, OsStr);
2785 impl_cmp_os_str!(&'a Path, Cow<'b, OsStr>);
2786 impl_cmp_os_str!(&'a Path, OsString);
2787 impl_cmp_os_str!(Cow<'a, Path>, OsStr);
2788 impl_cmp_os_str!(Cow<'a, Path>, &'b OsStr);
2789 impl_cmp_os_str!(Cow<'a, Path>, OsString);
2790
2791 #[stable(since = "1.7.0", feature = "strip_prefix")]
2792 impl fmt::Display for StripPrefixError {
2793     #[allow(deprecated, deprecated_in_future)]
2794     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2795         self.description().fmt(f)
2796     }
2797 }
2798
2799 #[stable(since = "1.7.0", feature = "strip_prefix")]
2800 impl Error for StripPrefixError {
2801     #[allow(deprecated)]
2802     fn description(&self) -> &str {
2803         "prefix not found"
2804     }
2805 }
2806
2807 #[cfg(test)]
2808 mod tests {
2809     use super::*;
2810
2811     use crate::rc::Rc;
2812     use crate::sync::Arc;
2813
2814     macro_rules! t(
2815         ($path:expr, iter: $iter:expr) => (
2816             {
2817                 let path = Path::new($path);
2818
2819                 // Forward iteration
2820                 let comps = path.iter()
2821                     .map(|p| p.to_string_lossy().into_owned())
2822                     .collect::<Vec<String>>();
2823                 let exp: &[&str] = &$iter;
2824                 let exps = exp.iter().map(|s| s.to_string()).collect::<Vec<String>>();
2825                 assert!(comps == exps, "iter: Expected {:?}, found {:?}",
2826                         exps, comps);
2827
2828                 // Reverse iteration
2829                 let comps = Path::new($path).iter().rev()
2830                     .map(|p| p.to_string_lossy().into_owned())
2831                     .collect::<Vec<String>>();
2832                 let exps = exps.into_iter().rev().collect::<Vec<String>>();
2833                 assert!(comps == exps, "iter().rev(): Expected {:?}, found {:?}",
2834                         exps, comps);
2835             }
2836         );
2837
2838         ($path:expr, has_root: $has_root:expr, is_absolute: $is_absolute:expr) => (
2839             {
2840                 let path = Path::new($path);
2841
2842                 let act_root = path.has_root();
2843                 assert!(act_root == $has_root, "has_root: Expected {:?}, found {:?}",
2844                         $has_root, act_root);
2845
2846                 let act_abs = path.is_absolute();
2847                 assert!(act_abs == $is_absolute, "is_absolute: Expected {:?}, found {:?}",
2848                         $is_absolute, act_abs);
2849             }
2850         );
2851
2852         ($path:expr, parent: $parent:expr, file_name: $file:expr) => (
2853             {
2854                 let path = Path::new($path);
2855
2856                 let parent = path.parent().map(|p| p.to_str().unwrap());
2857                 let exp_parent: Option<&str> = $parent;
2858                 assert!(parent == exp_parent, "parent: Expected {:?}, found {:?}",
2859                         exp_parent, parent);
2860
2861                 let file = path.file_name().map(|p| p.to_str().unwrap());
2862                 let exp_file: Option<&str> = $file;
2863                 assert!(file == exp_file, "file_name: Expected {:?}, found {:?}",
2864                         exp_file, file);
2865             }
2866         );
2867
2868         ($path:expr, file_stem: $file_stem:expr, extension: $extension:expr) => (
2869             {
2870                 let path = Path::new($path);
2871
2872                 let stem = path.file_stem().map(|p| p.to_str().unwrap());
2873                 let exp_stem: Option<&str> = $file_stem;
2874                 assert!(stem == exp_stem, "file_stem: Expected {:?}, found {:?}",
2875                         exp_stem, stem);
2876
2877                 let ext = path.extension().map(|p| p.to_str().unwrap());
2878                 let exp_ext: Option<&str> = $extension;
2879                 assert!(ext == exp_ext, "extension: Expected {:?}, found {:?}",
2880                         exp_ext, ext);
2881             }
2882         );
2883
2884         ($path:expr, iter: $iter:expr,
2885                      has_root: $has_root:expr, is_absolute: $is_absolute:expr,
2886                      parent: $parent:expr, file_name: $file:expr,
2887                      file_stem: $file_stem:expr, extension: $extension:expr) => (
2888             {
2889                 t!($path, iter: $iter);
2890                 t!($path, has_root: $has_root, is_absolute: $is_absolute);
2891                 t!($path, parent: $parent, file_name: $file);
2892                 t!($path, file_stem: $file_stem, extension: $extension);
2893             }
2894         );
2895     );
2896
2897     #[test]
2898     fn into() {
2899         use crate::borrow::Cow;
2900
2901         let static_path = Path::new("/home/foo");
2902         let static_cow_path: Cow<'static, Path> = static_path.into();
2903         let pathbuf = PathBuf::from("/home/foo");
2904
2905         {
2906             let path: &Path = &pathbuf;
2907             let borrowed_cow_path: Cow<'_, Path> = path.into();
2908
2909             assert_eq!(static_cow_path, borrowed_cow_path);
2910         }
2911
2912         let owned_cow_path: Cow<'static, Path> = pathbuf.into();
2913
2914         assert_eq!(static_cow_path, owned_cow_path);
2915     }
2916
2917     #[test]
2918     #[cfg(unix)]
2919     pub fn test_decompositions_unix() {
2920         t!("",
2921         iter: [],
2922         has_root: false,
2923         is_absolute: false,
2924         parent: None,
2925         file_name: None,
2926         file_stem: None,
2927         extension: None
2928         );
2929
2930         t!("foo",
2931         iter: ["foo"],
2932         has_root: false,
2933         is_absolute: false,
2934         parent: Some(""),
2935         file_name: Some("foo"),
2936         file_stem: Some("foo"),
2937         extension: None
2938         );
2939
2940         t!("/",
2941         iter: ["/"],
2942         has_root: true,
2943         is_absolute: true,
2944         parent: None,
2945         file_name: None,
2946         file_stem: None,
2947         extension: None
2948         );
2949
2950         t!("/foo",
2951         iter: ["/", "foo"],
2952         has_root: true,
2953         is_absolute: true,
2954         parent: Some("/"),
2955         file_name: Some("foo"),
2956         file_stem: Some("foo"),
2957         extension: None
2958         );
2959
2960         t!("foo/",
2961         iter: ["foo"],
2962         has_root: false,
2963         is_absolute: false,
2964         parent: Some(""),
2965         file_name: Some("foo"),
2966         file_stem: Some("foo"),
2967         extension: None
2968         );
2969
2970         t!("/foo/",
2971         iter: ["/", "foo"],
2972         has_root: true,
2973         is_absolute: true,
2974         parent: Some("/"),
2975         file_name: Some("foo"),
2976         file_stem: Some("foo"),
2977         extension: None
2978         );
2979
2980         t!("foo/bar",
2981         iter: ["foo", "bar"],
2982         has_root: false,
2983         is_absolute: false,
2984         parent: Some("foo"),
2985         file_name: Some("bar"),
2986         file_stem: Some("bar"),
2987         extension: None
2988         );
2989
2990         t!("/foo/bar",
2991         iter: ["/", "foo", "bar"],
2992         has_root: true,
2993         is_absolute: true,
2994         parent: Some("/foo"),
2995         file_name: Some("bar"),
2996         file_stem: Some("bar"),
2997         extension: None
2998         );
2999
3000         t!("///foo///",
3001         iter: ["/", "foo"],
3002         has_root: true,
3003         is_absolute: true,
3004         parent: Some("/"),
3005         file_name: Some("foo"),
3006         file_stem: Some("foo"),
3007         extension: None
3008         );
3009
3010         t!("///foo///bar",
3011         iter: ["/", "foo", "bar"],
3012         has_root: true,
3013         is_absolute: true,
3014         parent: Some("///foo"),
3015         file_name: Some("bar"),
3016         file_stem: Some("bar"),
3017         extension: None
3018         );
3019
3020         t!("./.",
3021         iter: ["."],
3022         has_root: false,
3023         is_absolute: false,
3024         parent: Some(""),
3025         file_name: None,
3026         file_stem: None,
3027         extension: None
3028         );
3029
3030         t!("/..",
3031         iter: ["/", ".."],
3032         has_root: true,
3033         is_absolute: true,
3034         parent: Some("/"),
3035         file_name: None,
3036         file_stem: None,
3037         extension: None
3038         );
3039
3040         t!("../",
3041         iter: [".."],
3042         has_root: false,
3043         is_absolute: false,
3044         parent: Some(""),
3045         file_name: None,
3046         file_stem: None,
3047         extension: None
3048         );
3049
3050         t!("foo/.",
3051         iter: ["foo"],
3052         has_root: false,
3053         is_absolute: false,
3054         parent: Some(""),
3055         file_name: Some("foo"),
3056         file_stem: Some("foo"),
3057         extension: None
3058         );
3059
3060         t!("foo/..",
3061         iter: ["foo", ".."],
3062         has_root: false,
3063         is_absolute: false,
3064         parent: Some("foo"),
3065         file_name: None,
3066         file_stem: None,
3067         extension: None
3068         );
3069
3070         t!("foo/./",
3071         iter: ["foo"],
3072         has_root: false,
3073         is_absolute: false,
3074         parent: Some(""),
3075         file_name: Some("foo"),
3076         file_stem: Some("foo"),
3077         extension: None
3078         );
3079
3080         t!("foo/./bar",
3081         iter: ["foo", "bar"],
3082         has_root: false,
3083         is_absolute: false,
3084         parent: Some("foo"),
3085         file_name: Some("bar"),
3086         file_stem: Some("bar"),
3087         extension: None
3088         );
3089
3090         t!("foo/../",
3091         iter: ["foo", ".."],
3092         has_root: false,
3093         is_absolute: false,
3094         parent: Some("foo"),
3095         file_name: None,
3096         file_stem: None,
3097         extension: None
3098         );
3099
3100         t!("foo/../bar",
3101         iter: ["foo", "..", "bar"],
3102         has_root: false,
3103         is_absolute: false,
3104         parent: Some("foo/.."),
3105         file_name: Some("bar"),
3106         file_stem: Some("bar"),
3107         extension: None
3108         );
3109
3110         t!("./a",
3111         iter: [".", "a"],
3112         has_root: false,
3113         is_absolute: false,
3114         parent: Some("."),
3115         file_name: Some("a"),
3116         file_stem: Some("a"),
3117         extension: None
3118         );
3119
3120         t!(".",
3121         iter: ["."],
3122         has_root: false,
3123         is_absolute: false,
3124         parent: Some(""),
3125         file_name: None,
3126         file_stem: None,
3127         extension: None
3128         );
3129
3130         t!("./",
3131         iter: ["."],
3132         has_root: false,
3133         is_absolute: false,
3134         parent: Some(""),
3135         file_name: None,
3136         file_stem: None,
3137         extension: None
3138         );
3139
3140         t!("a/b",
3141         iter: ["a", "b"],
3142         has_root: false,
3143         is_absolute: false,
3144         parent: Some("a"),
3145         file_name: Some("b"),
3146         file_stem: Some("b"),
3147         extension: None
3148         );
3149
3150         t!("a//b",
3151         iter: ["a", "b"],
3152         has_root: false,
3153         is_absolute: false,
3154         parent: Some("a"),
3155         file_name: Some("b"),
3156         file_stem: Some("b"),
3157         extension: None
3158         );
3159
3160         t!("a/./b",
3161         iter: ["a", "b"],
3162         has_root: false,
3163         is_absolute: false,
3164         parent: Some("a"),
3165         file_name: Some("b"),
3166         file_stem: Some("b"),
3167         extension: None
3168         );
3169
3170         t!("a/b/c",
3171         iter: ["a", "b", "c"],
3172         has_root: false,
3173         is_absolute: false,
3174         parent: Some("a/b"),
3175         file_name: Some("c"),
3176         file_stem: Some("c"),
3177         extension: None
3178         );
3179
3180         t!(".foo",
3181         iter: [".foo"],
3182         has_root: false,
3183         is_absolute: false,
3184         parent: Some(""),
3185         file_name: Some(".foo"),
3186         file_stem: Some(".foo"),
3187         extension: None
3188         );
3189     }
3190
3191     #[test]
3192     #[cfg(windows)]
3193     pub fn test_decompositions_windows() {
3194         t!("",
3195         iter: [],
3196         has_root: false,
3197         is_absolute: false,
3198         parent: None,
3199         file_name: None,
3200         file_stem: None,
3201         extension: None
3202         );
3203
3204         t!("foo",
3205         iter: ["foo"],
3206         has_root: false,
3207         is_absolute: false,
3208         parent: Some(""),
3209         file_name: Some("foo"),
3210         file_stem: Some("foo"),
3211         extension: None
3212         );
3213
3214         t!("/",
3215         iter: ["\\"],
3216         has_root: true,
3217         is_absolute: false,
3218         parent: None,
3219         file_name: None,
3220         file_stem: None,
3221         extension: None
3222         );
3223
3224         t!("\\",
3225         iter: ["\\"],
3226         has_root: true,
3227         is_absolute: false,
3228         parent: None,
3229         file_name: None,
3230         file_stem: None,
3231         extension: None
3232         );
3233
3234         t!("c:",
3235         iter: ["c:"],
3236         has_root: false,
3237         is_absolute: false,
3238         parent: None,
3239         file_name: None,
3240         file_stem: None,
3241         extension: None
3242         );
3243
3244         t!("c:\\",
3245         iter: ["c:", "\\"],
3246         has_root: true,
3247         is_absolute: true,
3248         parent: None,
3249         file_name: None,
3250         file_stem: None,
3251         extension: None
3252         );
3253
3254         t!("c:/",
3255         iter: ["c:", "\\"],
3256         has_root: true,
3257         is_absolute: true,
3258         parent: None,
3259         file_name: None,
3260         file_stem: None,
3261         extension: None
3262         );
3263
3264         t!("/foo",
3265         iter: ["\\", "foo"],
3266         has_root: true,
3267         is_absolute: false,
3268         parent: Some("/"),
3269         file_name: Some("foo"),
3270         file_stem: Some("foo"),
3271         extension: None
3272         );
3273
3274         t!("foo/",
3275         iter: ["foo"],
3276         has_root: false,
3277         is_absolute: false,
3278         parent: Some(""),
3279         file_name: Some("foo"),
3280         file_stem: Some("foo"),
3281         extension: None
3282         );
3283
3284         t!("/foo/",
3285         iter: ["\\", "foo"],
3286         has_root: true,
3287         is_absolute: false,
3288         parent: Some("/"),
3289         file_name: Some("foo"),
3290         file_stem: Some("foo"),
3291         extension: None
3292         );
3293
3294         t!("foo/bar",
3295         iter: ["foo", "bar"],
3296         has_root: false,
3297         is_absolute: false,
3298         parent: Some("foo"),
3299         file_name: Some("bar"),
3300         file_stem: Some("bar"),
3301         extension: None
3302         );
3303
3304         t!("/foo/bar",
3305         iter: ["\\", "foo", "bar"],
3306         has_root: true,
3307         is_absolute: false,
3308         parent: Some("/foo"),
3309         file_name: Some("bar"),
3310         file_stem: Some("bar"),
3311         extension: None
3312         );
3313
3314         t!("///foo///",
3315         iter: ["\\", "foo"],
3316         has_root: true,
3317         is_absolute: false,
3318         parent: Some("/"),
3319         file_name: Some("foo"),
3320         file_stem: Some("foo"),
3321         extension: None
3322         );
3323
3324         t!("///foo///bar",
3325         iter: ["\\", "foo", "bar"],
3326         has_root: true,
3327         is_absolute: false,
3328         parent: Some("///foo"),
3329         file_name: Some("bar"),
3330         file_stem: Some("bar"),
3331         extension: None
3332         );
3333
3334         t!("./.",
3335         iter: ["."],
3336         has_root: false,
3337         is_absolute: false,
3338         parent: Some(""),
3339         file_name: None,
3340         file_stem: None,
3341         extension: None
3342         );
3343
3344         t!("/..",
3345         iter: ["\\", ".."],
3346         has_root: true,
3347         is_absolute: false,
3348         parent: Some("/"),
3349         file_name: None,
3350         file_stem: None,
3351         extension: None
3352         );
3353
3354         t!("../",
3355         iter: [".."],
3356         has_root: false,
3357         is_absolute: false,
3358         parent: Some(""),
3359         file_name: None,
3360         file_stem: None,
3361         extension: None
3362         );
3363
3364         t!("foo/.",
3365         iter: ["foo"],
3366         has_root: false,
3367         is_absolute: false,
3368         parent: Some(""),
3369         file_name: Some("foo"),
3370         file_stem: Some("foo"),
3371         extension: None
3372         );
3373
3374         t!("foo/..",
3375         iter: ["foo", ".."],
3376         has_root: false,
3377         is_absolute: false,
3378         parent: Some("foo"),
3379         file_name: None,
3380         file_stem: None,
3381         extension: None
3382         );
3383
3384         t!("foo/./",
3385         iter: ["foo"],
3386         has_root: false,
3387         is_absolute: false,
3388         parent: Some(""),
3389         file_name: Some("foo"),
3390         file_stem: Some("foo"),
3391         extension: None
3392         );
3393
3394         t!("foo/./bar",
3395         iter: ["foo", "bar"],
3396         has_root: false,
3397         is_absolute: false,
3398         parent: Some("foo"),
3399         file_name: Some("bar"),
3400         file_stem: Some("bar"),
3401         extension: None
3402         );
3403
3404         t!("foo/../",
3405         iter: ["foo", ".."],
3406         has_root: false,
3407         is_absolute: false,
3408         parent: Some("foo"),
3409         file_name: None,
3410         file_stem: None,
3411         extension: None
3412         );
3413
3414         t!("foo/../bar",
3415         iter: ["foo", "..", "bar"],
3416         has_root: false,
3417         is_absolute: false,
3418         parent: Some("foo/.."),
3419         file_name: Some("bar"),
3420         file_stem: Some("bar"),
3421         extension: None
3422         );
3423
3424         t!("./a",
3425         iter: [".", "a"],
3426         has_root: false,
3427         is_absolute: false,
3428         parent: Some("."),
3429         file_name: Some("a"),
3430         file_stem: Some("a"),
3431         extension: None
3432         );
3433
3434         t!(".",
3435         iter: ["."],
3436         has_root: false,
3437         is_absolute: false,
3438         parent: Some(""),
3439         file_name: None,
3440         file_stem: None,
3441         extension: None
3442         );
3443
3444         t!("./",
3445         iter: ["."],
3446         has_root: false,
3447         is_absolute: false,
3448         parent: Some(""),
3449         file_name: None,
3450         file_stem: None,
3451         extension: None
3452         );
3453
3454         t!("a/b",
3455         iter: ["a", "b"],
3456         has_root: false,
3457         is_absolute: false,
3458         parent: Some("a"),
3459         file_name: Some("b"),
3460         file_stem: Some("b"),
3461         extension: None
3462         );
3463
3464         t!("a//b",
3465         iter: ["a", "b"],
3466         has_root: false,
3467         is_absolute: false,
3468         parent: Some("a"),
3469         file_name: Some("b"),
3470         file_stem: Some("b"),
3471         extension: None
3472         );
3473
3474         t!("a/./b",
3475         iter: ["a", "b"],
3476         has_root: false,
3477         is_absolute: false,
3478         parent: Some("a"),
3479         file_name: Some("b"),
3480         file_stem: Some("b"),
3481         extension: None
3482         );
3483
3484         t!("a/b/c",
3485            iter: ["a", "b", "c"],
3486            has_root: false,
3487            is_absolute: false,
3488            parent: Some("a/b"),
3489            file_name: Some("c"),
3490            file_stem: Some("c"),
3491            extension: None);
3492
3493         t!("a\\b\\c",
3494         iter: ["a", "b", "c"],
3495         has_root: false,
3496         is_absolute: false,
3497         parent: Some("a\\b"),
3498         file_name: Some("c"),
3499         file_stem: Some("c"),
3500         extension: None
3501         );
3502
3503         t!("\\a",
3504         iter: ["\\", "a"],
3505         has_root: true,
3506         is_absolute: false,
3507         parent: Some("\\"),
3508         file_name: Some("a"),
3509         file_stem: Some("a"),
3510         extension: None
3511         );
3512
3513         t!("c:\\foo.txt",
3514         iter: ["c:", "\\", "foo.txt"],
3515         has_root: true,
3516         is_absolute: true,
3517         parent: Some("c:\\"),
3518         file_name: Some("foo.txt"),
3519         file_stem: Some("foo"),
3520         extension: Some("txt")
3521         );
3522
3523         t!("\\\\server\\share\\foo.txt",
3524         iter: ["\\\\server\\share", "\\", "foo.txt"],
3525         has_root: true,
3526         is_absolute: true,
3527         parent: Some("\\\\server\\share\\"),
3528         file_name: Some("foo.txt"),
3529         file_stem: Some("foo"),
3530         extension: Some("txt")
3531         );
3532
3533         t!("\\\\server\\share",
3534         iter: ["\\\\server\\share", "\\"],
3535         has_root: true,
3536         is_absolute: true,
3537         parent: None,
3538         file_name: None,
3539         file_stem: None,
3540         extension: None
3541         );
3542
3543         t!("\\\\server",
3544         iter: ["\\", "server"],
3545         has_root: true,
3546         is_absolute: false,
3547         parent: Some("\\"),
3548         file_name: Some("server"),
3549         file_stem: Some("server"),
3550         extension: None
3551         );
3552
3553         t!("\\\\?\\bar\\foo.txt",
3554         iter: ["\\\\?\\bar", "\\", "foo.txt"],
3555         has_root: true,
3556         is_absolute: true,
3557         parent: Some("\\\\?\\bar\\"),
3558         file_name: Some("foo.txt"),
3559         file_stem: Some("foo"),
3560         extension: Some("txt")
3561         );
3562
3563         t!("\\\\?\\bar",
3564         iter: ["\\\\?\\bar"],
3565         has_root: true,
3566         is_absolute: true,
3567         parent: None,
3568         file_name: None,
3569         file_stem: None,
3570         extension: None
3571         );
3572
3573         t!("\\\\?\\",
3574         iter: ["\\\\?\\"],
3575         has_root: true,
3576         is_absolute: true,
3577         parent: None,
3578         file_name: None,
3579         file_stem: None,
3580         extension: None
3581         );
3582
3583         t!("\\\\?\\UNC\\server\\share\\foo.txt",
3584         iter: ["\\\\?\\UNC\\server\\share", "\\", "foo.txt"],
3585         has_root: true,
3586         is_absolute: true,
3587         parent: Some("\\\\?\\UNC\\server\\share\\"),
3588         file_name: Some("foo.txt"),
3589         file_stem: Some("foo"),
3590         extension: Some("txt")
3591         );
3592
3593         t!("\\\\?\\UNC\\server",
3594         iter: ["\\\\?\\UNC\\server"],
3595         has_root: true,
3596         is_absolute: true,
3597         parent: None,
3598         file_name: None,
3599         file_stem: None,
3600         extension: None
3601         );
3602
3603         t!("\\\\?\\UNC\\",
3604         iter: ["\\\\?\\UNC\\"],
3605         has_root: true,
3606         is_absolute: true,
3607         parent: None,
3608         file_name: None,
3609         file_stem: None,
3610         extension: None
3611         );
3612
3613         t!("\\\\?\\C:\\foo.txt",
3614         iter: ["\\\\?\\C:", "\\", "foo.txt"],
3615         has_root: true,
3616         is_absolute: true,
3617         parent: Some("\\\\?\\C:\\"),
3618         file_name: Some("foo.txt"),
3619         file_stem: Some("foo"),
3620         extension: Some("txt")
3621         );
3622
3623         t!("\\\\?\\C:\\",
3624         iter: ["\\\\?\\C:", "\\"],
3625         has_root: true,
3626         is_absolute: true,
3627         parent: None,
3628         file_name: None,
3629         file_stem: None,
3630         extension: None
3631         );
3632
3633         t!("\\\\?\\C:",
3634         iter: ["\\\\?\\C:"],
3635         has_root: true,
3636         is_absolute: true,
3637         parent: None,
3638         file_name: None,
3639         file_stem: None,
3640         extension: None
3641         );
3642
3643         t!("\\\\?\\foo/bar",
3644         iter: ["\\\\?\\foo/bar"],
3645         has_root: true,
3646         is_absolute: true,
3647         parent: None,
3648         file_name: None,
3649         file_stem: None,
3650         extension: None
3651         );
3652
3653         t!("\\\\?\\C:/foo",
3654         iter: ["\\\\?\\C:/foo"],
3655         has_root: true,
3656         is_absolute: true,
3657         parent: None,
3658         file_name: None,
3659         file_stem: None,
3660         extension: None
3661         );
3662
3663         t!("\\\\.\\foo\\bar",
3664         iter: ["\\\\.\\foo", "\\", "bar"],
3665         has_root: true,
3666         is_absolute: true,
3667         parent: Some("\\\\.\\foo\\"),
3668         file_name: Some("bar"),
3669         file_stem: Some("bar"),
3670         extension: None
3671         );
3672
3673         t!("\\\\.\\foo",
3674         iter: ["\\\\.\\foo", "\\"],
3675         has_root: true,
3676         is_absolute: true,
3677         parent: None,
3678         file_name: None,
3679         file_stem: None,
3680         extension: None
3681         );
3682
3683         t!("\\\\.\\foo/bar",
3684         iter: ["\\\\.\\foo/bar", "\\"],
3685         has_root: true,
3686         is_absolute: true,
3687         parent: None,
3688         file_name: None,
3689         file_stem: None,
3690         extension: None
3691         );
3692
3693         t!("\\\\.\\foo\\bar/baz",
3694         iter: ["\\\\.\\foo", "\\", "bar", "baz"],
3695         has_root: true,
3696         is_absolute: true,
3697         parent: Some("\\\\.\\foo\\bar"),
3698         file_name: Some("baz"),
3699         file_stem: Some("baz"),
3700         extension: None
3701         );
3702
3703         t!("\\\\.\\",
3704         iter: ["\\\\.\\", "\\"],
3705         has_root: true,
3706         is_absolute: true,
3707         parent: None,
3708         file_name: None,
3709         file_stem: None,
3710         extension: None
3711         );
3712
3713         t!("\\\\?\\a\\b\\",
3714         iter: ["\\\\?\\a", "\\", "b"],
3715         has_root: true,
3716         is_absolute: true,
3717         parent: Some("\\\\?\\a\\"),
3718         file_name: Some("b"),
3719         file_stem: Some("b"),
3720         extension: None
3721         );
3722     }
3723
3724     #[test]
3725     pub fn test_stem_ext() {
3726         t!("foo",
3727         file_stem: Some("foo"),
3728         extension: None
3729         );
3730
3731         t!("foo.",
3732         file_stem: Some("foo"),
3733         extension: Some("")
3734         );
3735
3736         t!(".foo",
3737         file_stem: Some(".foo"),
3738         extension: None
3739         );
3740
3741         t!("foo.txt",
3742         file_stem: Some("foo"),
3743         extension: Some("txt")
3744         );
3745
3746         t!("foo.bar.txt",
3747         file_stem: Some("foo.bar"),
3748         extension: Some("txt")
3749         );
3750
3751         t!("foo.bar.",
3752         file_stem: Some("foo.bar"),
3753         extension: Some("")
3754         );
3755
3756         t!(".", file_stem: None, extension: None);
3757
3758         t!("..", file_stem: None, extension: None);
3759
3760         t!("", file_stem: None, extension: None);
3761     }
3762
3763     #[test]
3764     pub fn test_push() {
3765         macro_rules! tp(
3766             ($path:expr, $push:expr, $expected:expr) => ( {
3767                 let mut actual = PathBuf::from($path);
3768                 actual.push($push);
3769                 assert!(actual.to_str() == Some($expected),
3770                         "pushing {:?} onto {:?}: Expected {:?}, got {:?}",
3771                         $push, $path, $expected, actual.to_str().unwrap());
3772             });
3773         );
3774
3775         if cfg!(unix) || cfg!(all(target_env = "sgx", target_vendor = "fortanix")) {
3776             tp!("", "foo", "foo");
3777             tp!("foo", "bar", "foo/bar");
3778             tp!("foo/", "bar", "foo/bar");
3779             tp!("foo//", "bar", "foo//bar");
3780             tp!("foo/.", "bar", "foo/./bar");
3781             tp!("foo./.", "bar", "foo././bar");
3782             tp!("foo", "", "foo/");
3783             tp!("foo", ".", "foo/.");
3784             tp!("foo", "..", "foo/..");
3785             tp!("foo", "/", "/");
3786             tp!("/foo/bar", "/", "/");
3787             tp!("/foo/bar", "/baz", "/baz");
3788             tp!("/foo/bar", "./baz", "/foo/bar/./baz");
3789         } else {
3790             tp!("", "foo", "foo");
3791             tp!("foo", "bar", r"foo\bar");
3792             tp!("foo/", "bar", r"foo/bar");
3793             tp!(r"foo\", "bar", r"foo\bar");
3794             tp!("foo//", "bar", r"foo//bar");
3795             tp!(r"foo\\", "bar", r"foo\\bar");
3796             tp!("foo/.", "bar", r"foo/.\bar");
3797             tp!("foo./.", "bar", r"foo./.\bar");
3798             tp!(r"foo\.", "bar", r"foo\.\bar");
3799             tp!(r"foo.\.", "bar", r"foo.\.\bar");
3800             tp!("foo", "", "foo\\");
3801             tp!("foo", ".", r"foo\.");
3802             tp!("foo", "..", r"foo\..");
3803             tp!("foo", "/", "/");
3804             tp!("foo", r"\", r"\");
3805             tp!("/foo/bar", "/", "/");
3806             tp!(r"\foo\bar", r"\", r"\");
3807             tp!("/foo/bar", "/baz", "/baz");
3808             tp!("/foo/bar", r"\baz", r"\baz");
3809             tp!("/foo/bar", "./baz", r"/foo/bar\./baz");
3810             tp!("/foo/bar", r".\baz", r"/foo/bar\.\baz");
3811
3812             tp!("c:\\", "windows", "c:\\windows");
3813             tp!("c:", "windows", "c:windows");
3814
3815             tp!("a\\b\\c", "d", "a\\b\\c\\d");
3816             tp!("\\a\\b\\c", "d", "\\a\\b\\c\\d");
3817             tp!("a\\b", "c\\d", "a\\b\\c\\d");
3818             tp!("a\\b", "\\c\\d", "\\c\\d");
3819             tp!("a\\b", ".", "a\\b\\.");
3820             tp!("a\\b", "..\\c", "a\\b\\..\\c");
3821             tp!("a\\b", "C:a.txt", "C:a.txt");
3822             tp!("a\\b", "C:\\a.txt", "C:\\a.txt");
3823             tp!("C:\\a", "C:\\b.txt", "C:\\b.txt");
3824             tp!("C:\\a\\b\\c", "C:d", "C:d");
3825             tp!("C:a\\b\\c", "C:d", "C:d");
3826             tp!("C:", r"a\b\c", r"C:a\b\c");
3827             tp!("C:", r"..\a", r"C:..\a");
3828             tp!("\\\\server\\share\\foo", "bar", "\\\\server\\share\\foo\\bar");
3829             tp!("\\\\server\\share\\foo", "C:baz", "C:baz");
3830             tp!("\\\\?\\C:\\a\\b", "C:c\\d", "C:c\\d");
3831             tp!("\\\\?\\C:a\\b", "C:c\\d", "C:c\\d");
3832             tp!("\\\\?\\C:\\a\\b", "C:\\c\\d", "C:\\c\\d");
3833             tp!("\\\\?\\foo\\bar", "baz", "\\\\?\\foo\\bar\\baz");
3834             tp!("\\\\?\\UNC\\server\\share\\foo", "bar", "\\\\?\\UNC\\server\\share\\foo\\bar");
3835             tp!("\\\\?\\UNC\\server\\share", "C:\\a", "C:\\a");
3836             tp!("\\\\?\\UNC\\server\\share", "C:a", "C:a");
3837
3838             // Note: modified from old path API
3839             tp!("\\\\?\\UNC\\server", "foo", "\\\\?\\UNC\\server\\foo");
3840
3841             tp!("C:\\a", "\\\\?\\UNC\\server\\share", "\\\\?\\UNC\\server\\share");
3842             tp!("\\\\.\\foo\\bar", "baz", "\\\\.\\foo\\bar\\baz");
3843             tp!("\\\\.\\foo\\bar", "C:a", "C:a");
3844             // again, not sure about the following, but I'm assuming \\.\ should be verbatim
3845             tp!("\\\\.\\foo", "..\\bar", "\\\\.\\foo\\..\\bar");
3846
3847             tp!("\\\\?\\C:", "foo", "\\\\?\\C:\\foo"); // this is a weird one
3848         }
3849     }
3850
3851     #[test]
3852     pub fn test_pop() {
3853         macro_rules! tp(
3854             ($path:expr, $expected:expr, $output:expr) => ( {
3855                 let mut actual = PathBuf::from($path);
3856                 let output = actual.pop();
3857                 assert!(actual.to_str() == Some($expected) && output == $output,
3858                         "popping from {:?}: Expected {:?}/{:?}, got {:?}/{:?}",
3859                         $path, $expected, $output,
3860                         actual.to_str().unwrap(), output);
3861             });
3862         );
3863
3864         tp!("", "", false);
3865         tp!("/", "/", false);
3866         tp!("foo", "", true);
3867         tp!(".", "", true);
3868         tp!("/foo", "/", true);
3869         tp!("/foo/bar", "/foo", true);
3870         tp!("foo/bar", "foo", true);
3871         tp!("foo/.", "", true);
3872         tp!("foo//bar", "foo", true);
3873
3874         if cfg!(windows) {
3875             tp!("a\\b\\c", "a\\b", true);
3876             tp!("\\a", "\\", true);
3877             tp!("\\", "\\", false);
3878
3879             tp!("C:\\a\\b", "C:\\a", true);
3880             tp!("C:\\a", "C:\\", true);
3881             tp!("C:\\", "C:\\", false);
3882             tp!("C:a\\b", "C:a", true);
3883             tp!("C:a", "C:", true);
3884             tp!("C:", "C:", false);
3885             tp!("\\\\server\\share\\a\\b", "\\\\server\\share\\a", true);
3886             tp!("\\\\server\\share\\a", "\\\\server\\share\\", true);
3887             tp!("\\\\server\\share", "\\\\server\\share", false);
3888             tp!("\\\\?\\a\\b\\c", "\\\\?\\a\\b", true);
3889             tp!("\\\\?\\a\\b", "\\\\?\\a\\", true);
3890             tp!("\\\\?\\a", "\\\\?\\a", false);
3891             tp!("\\\\?\\C:\\a\\b", "\\\\?\\C:\\a", true);
3892             tp!("\\\\?\\C:\\a", "\\\\?\\C:\\", true);
3893             tp!("\\\\?\\C:\\", "\\\\?\\C:\\", false);
3894             tp!("\\\\?\\UNC\\server\\share\\a\\b", "\\\\?\\UNC\\server\\share\\a", true);
3895             tp!("\\\\?\\UNC\\server\\share\\a", "\\\\?\\UNC\\server\\share\\", true);
3896             tp!("\\\\?\\UNC\\server\\share", "\\\\?\\UNC\\server\\share", false);
3897             tp!("\\\\.\\a\\b\\c", "\\\\.\\a\\b", true);
3898             tp!("\\\\.\\a\\b", "\\\\.\\a\\", true);
3899             tp!("\\\\.\\a", "\\\\.\\a", false);
3900
3901             tp!("\\\\?\\a\\b\\", "\\\\?\\a\\", true);
3902         }
3903     }
3904
3905     #[test]
3906     pub fn test_set_file_name() {
3907         macro_rules! tfn(
3908                 ($path:expr, $file:expr, $expected:expr) => ( {
3909                 let mut p = PathBuf::from($path);
3910                 p.set_file_name($file);
3911                 assert!(p.to_str() == Some($expected),
3912                         "setting file name of {:?} to {:?}: Expected {:?}, got {:?}",
3913                         $path, $file, $expected,
3914                         p.to_str().unwrap());
3915             });
3916         );
3917
3918         tfn!("foo", "foo", "foo");
3919         tfn!("foo", "bar", "bar");
3920         tfn!("foo", "", "");
3921         tfn!("", "foo", "foo");
3922         if cfg!(unix) || cfg!(all(target_env = "sgx", target_vendor = "fortanix")) {
3923             tfn!(".", "foo", "./foo");
3924             tfn!("foo/", "bar", "bar");
3925             tfn!("foo/.", "bar", "bar");
3926             tfn!("..", "foo", "../foo");
3927             tfn!("foo/..", "bar", "foo/../bar");
3928             tfn!("/", "foo", "/foo");
3929         } else {
3930             tfn!(".", "foo", r".\foo");
3931             tfn!(r"foo\", "bar", r"bar");
3932             tfn!(r"foo\.", "bar", r"bar");
3933             tfn!("..", "foo", r"..\foo");
3934             tfn!(r"foo\..", "bar", r"foo\..\bar");
3935             tfn!(r"\", "foo", r"\foo");
3936         }
3937     }
3938
3939     #[test]
3940     pub fn test_set_extension() {
3941         macro_rules! tfe(
3942                 ($path:expr, $ext:expr, $expected:expr, $output:expr) => ( {
3943                 let mut p = PathBuf::from($path);
3944                 let output = p.set_extension($ext);
3945                 assert!(p.to_str() == Some($expected) && output == $output,
3946                         "setting extension of {:?} to {:?}: Expected {:?}/{:?}, got {:?}/{:?}",
3947                         $path, $ext, $expected, $output,
3948                         p.to_str().unwrap(), output);
3949             });
3950         );
3951
3952         tfe!("foo", "txt", "foo.txt", true);
3953         tfe!("foo.bar", "txt", "foo.txt", true);
3954         tfe!("foo.bar.baz", "txt", "foo.bar.txt", true);
3955         tfe!(".test", "txt", ".test.txt", true);
3956         tfe!("foo.txt", "", "foo", true);
3957         tfe!("foo", "", "foo", true);
3958         tfe!("", "foo", "", false);
3959         tfe!(".", "foo", ".", false);
3960         tfe!("foo/", "bar", "foo.bar", true);
3961         tfe!("foo/.", "bar", "foo.bar", true);
3962         tfe!("..", "foo", "..", false);
3963         tfe!("foo/..", "bar", "foo/..", false);
3964         tfe!("/", "foo", "/", false);
3965     }
3966
3967     #[test]
3968     fn test_eq_receivers() {
3969         use crate::borrow::Cow;
3970
3971         let borrowed: &Path = Path::new("foo/bar");
3972         let mut owned: PathBuf = PathBuf::new();
3973         owned.push("foo");
3974         owned.push("bar");
3975         let borrowed_cow: Cow<'_, Path> = borrowed.into();
3976         let owned_cow: Cow<'_, Path> = owned.clone().into();
3977
3978         macro_rules! t {
3979             ($($current:expr),+) => {
3980                 $(
3981                     assert_eq!($current, borrowed);
3982                     assert_eq!($current, owned);
3983                     assert_eq!($current, borrowed_cow);
3984                     assert_eq!($current, owned_cow);
3985                 )+
3986             }
3987         }
3988
3989         t!(borrowed, owned, borrowed_cow, owned_cow);
3990     }
3991
3992     #[test]
3993     pub fn test_compare() {
3994         use crate::collections::hash_map::DefaultHasher;
3995         use crate::hash::{Hash, Hasher};
3996
3997         fn hash<T: Hash>(t: T) -> u64 {
3998             let mut s = DefaultHasher::new();
3999             t.hash(&mut s);
4000             s.finish()
4001         }
4002
4003         macro_rules! tc(
4004             ($path1:expr, $path2:expr, eq: $eq:expr,
4005              starts_with: $starts_with:expr, ends_with: $ends_with:expr,
4006              relative_from: $relative_from:expr) => ({
4007                  let path1 = Path::new($path1);
4008                  let path2 = Path::new($path2);
4009
4010                  let eq = path1 == path2;
4011                  assert!(eq == $eq, "{:?} == {:?}, expected {:?}, got {:?}",
4012                          $path1, $path2, $eq, eq);
4013                  assert!($eq == (hash(path1) == hash(path2)),
4014                          "{:?} == {:?}, expected {:?}, got {} and {}",
4015                          $path1, $path2, $eq, hash(path1), hash(path2));
4016
4017                  let starts_with = path1.starts_with(path2);
4018                  assert!(starts_with == $starts_with,
4019                          "{:?}.starts_with({:?}), expected {:?}, got {:?}", $path1, $path2,
4020                          $starts_with, starts_with);
4021
4022                  let ends_with = path1.ends_with(path2);
4023                  assert!(ends_with == $ends_with,
4024                          "{:?}.ends_with({:?}), expected {:?}, got {:?}", $path1, $path2,
4025                          $ends_with, ends_with);
4026
4027                  let relative_from = path1.strip_prefix(path2)
4028                                           .map(|p| p.to_str().unwrap())
4029                                           .ok();
4030                  let exp: Option<&str> = $relative_from;
4031                  assert!(relative_from == exp,
4032                          "{:?}.strip_prefix({:?}), expected {:?}, got {:?}",
4033                          $path1, $path2, exp, relative_from);
4034             });
4035         );
4036
4037         tc!("", "",
4038         eq: true,
4039         starts_with: true,
4040         ends_with: true,
4041         relative_from: Some("")
4042         );
4043
4044         tc!("foo", "",
4045         eq: false,
4046         starts_with: true,
4047         ends_with: true,
4048         relative_from: Some("foo")
4049         );
4050
4051         tc!("", "foo",
4052         eq: false,
4053         starts_with: false,
4054         ends_with: false,
4055         relative_from: None
4056         );
4057
4058         tc!("foo", "foo",
4059         eq: true,
4060         starts_with: true,
4061         ends_with: true,
4062         relative_from: Some("")
4063         );
4064
4065         tc!("foo/", "foo",
4066         eq: true,
4067         starts_with: true,
4068         ends_with: true,
4069         relative_from: Some("")
4070         );
4071
4072         tc!("foo/bar", "foo",
4073         eq: false,
4074         starts_with: true,
4075         ends_with: false,
4076         relative_from: Some("bar")
4077         );
4078
4079         tc!("foo/bar/baz", "foo/bar",
4080         eq: false,
4081         starts_with: true,
4082         ends_with: false,
4083         relative_from: Some("baz")
4084         );
4085
4086         tc!("foo/bar", "foo/bar/baz",
4087         eq: false,
4088         starts_with: false,
4089         ends_with: false,
4090         relative_from: None
4091         );
4092
4093         tc!("./foo/bar/", ".",
4094         eq: false,
4095         starts_with: true,
4096         ends_with: false,
4097         relative_from: Some("foo/bar")
4098         );
4099
4100         if cfg!(windows) {
4101             tc!(r"C:\src\rust\cargo-test\test\Cargo.toml",
4102             r"c:\src\rust\cargo-test\test",
4103             eq: false,
4104             starts_with: true,
4105             ends_with: false,
4106             relative_from: Some("Cargo.toml")
4107             );
4108
4109             tc!(r"c:\foo", r"C:\foo",
4110             eq: true,
4111             starts_with: true,
4112             ends_with: true,
4113             relative_from: Some("")
4114             );
4115         }
4116     }
4117
4118     #[test]
4119     fn test_components_debug() {
4120         let path = Path::new("/tmp");
4121
4122         let mut components = path.components();
4123
4124         let expected = "Components([RootDir, Normal(\"tmp\")])";
4125         let actual = format!("{:?}", components);
4126         assert_eq!(expected, actual);
4127
4128         let _ = components.next().unwrap();
4129         let expected = "Components([Normal(\"tmp\")])";
4130         let actual = format!("{:?}", components);
4131         assert_eq!(expected, actual);
4132
4133         let _ = components.next().unwrap();
4134         let expected = "Components([])";
4135         let actual = format!("{:?}", components);
4136         assert_eq!(expected, actual);
4137     }
4138
4139     #[cfg(unix)]
4140     #[test]
4141     fn test_iter_debug() {
4142         let path = Path::new("/tmp");
4143
4144         let mut iter = path.iter();
4145
4146         let expected = "Iter([\"/\", \"tmp\"])";
4147         let actual = format!("{:?}", iter);
4148         assert_eq!(expected, actual);
4149
4150         let _ = iter.next().unwrap();
4151         let expected = "Iter([\"tmp\"])";
4152         let actual = format!("{:?}", iter);
4153         assert_eq!(expected, actual);
4154
4155         let _ = iter.next().unwrap();
4156         let expected = "Iter([])";
4157         let actual = format!("{:?}", iter);
4158         assert_eq!(expected, actual);
4159     }
4160
4161     #[test]
4162     fn into_boxed() {
4163         let orig: &str = "some/sort/of/path";
4164         let path = Path::new(orig);
4165         let boxed: Box<Path> = Box::from(path);
4166         let path_buf = path.to_owned().into_boxed_path().into_path_buf();
4167         assert_eq!(path, &*boxed);
4168         assert_eq!(&*boxed, &*path_buf);
4169         assert_eq!(&*path_buf, path);
4170     }
4171
4172     #[test]
4173     fn test_clone_into() {
4174         let mut path_buf = PathBuf::from("supercalifragilisticexpialidocious");
4175         let path = Path::new("short");
4176         path.clone_into(&mut path_buf);
4177         assert_eq!(path, path_buf);
4178         assert!(path_buf.into_os_string().capacity() >= 15);
4179     }
4180
4181     #[test]
4182     fn display_format_flags() {
4183         assert_eq!(format!("a{:#<5}b", Path::new("").display()), "a#####b");
4184         assert_eq!(format!("a{:#<5}b", Path::new("a").display()), "aa####b");
4185     }
4186
4187     #[test]
4188     fn into_rc() {
4189         let orig = "hello/world";
4190         let path = Path::new(orig);
4191         let rc: Rc<Path> = Rc::from(path);
4192         let arc: Arc<Path> = Arc::from(path);
4193
4194         assert_eq!(&*rc, path);
4195         assert_eq!(&*arc, path);
4196
4197         let rc2: Rc<Path> = Rc::from(path.to_owned());
4198         let arc2: Arc<Path> = Arc::from(path.to_owned());
4199
4200         assert_eq!(&*rc2, path);
4201         assert_eq!(&*arc2, path);
4202     }
4203 }