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