]> git.lizzy.rs Git - rust.git/blob - src/libstd/path.rs
std::fmt: move format string grammar to the bottom
[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 Path into a Rc by copying the Path data into a new Rc 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 a Rc by copying the Path data into a new Rc 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 Path into a Rc by copying the Path 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 a 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     pub fn join<P: AsRef<Path>>(&self, path: P) -> PathBuf {
2223         self._join(path.as_ref())
2224     }
2225
2226     fn _join(&self, path: &Path) -> PathBuf {
2227         let mut buf = self.to_path_buf();
2228         buf.push(path);
2229         buf
2230     }
2231
2232     /// Creates an owned [`PathBuf`] like `self` but with the given file name.
2233     ///
2234     /// See [`PathBuf::set_file_name`] for more details.
2235     ///
2236     /// [`PathBuf`]: struct.PathBuf.html
2237     /// [`PathBuf::set_file_name`]: struct.PathBuf.html#method.set_file_name
2238     ///
2239     /// # Examples
2240     ///
2241     /// ```
2242     /// use std::path::{Path, PathBuf};
2243     ///
2244     /// let path = Path::new("/tmp/foo.txt");
2245     /// assert_eq!(path.with_file_name("bar.txt"), PathBuf::from("/tmp/bar.txt"));
2246     ///
2247     /// let path = Path::new("/tmp");
2248     /// assert_eq!(path.with_file_name("var"), PathBuf::from("/var"));
2249     /// ```
2250     #[stable(feature = "rust1", since = "1.0.0")]
2251     pub fn with_file_name<S: AsRef<OsStr>>(&self, file_name: S) -> PathBuf {
2252         self._with_file_name(file_name.as_ref())
2253     }
2254
2255     fn _with_file_name(&self, file_name: &OsStr) -> PathBuf {
2256         let mut buf = self.to_path_buf();
2257         buf.set_file_name(file_name);
2258         buf
2259     }
2260
2261     /// Creates an owned [`PathBuf`] like `self` but with the given extension.
2262     ///
2263     /// See [`PathBuf::set_extension`] for more details.
2264     ///
2265     /// [`PathBuf`]: struct.PathBuf.html
2266     /// [`PathBuf::set_extension`]: struct.PathBuf.html#method.set_extension
2267     ///
2268     /// # Examples
2269     ///
2270     /// ```
2271     /// use std::path::{Path, PathBuf};
2272     ///
2273     /// let path = Path::new("foo.rs");
2274     /// assert_eq!(path.with_extension("txt"), PathBuf::from("foo.txt"));
2275     /// ```
2276     #[stable(feature = "rust1", since = "1.0.0")]
2277     pub fn with_extension<S: AsRef<OsStr>>(&self, extension: S) -> PathBuf {
2278         self._with_extension(extension.as_ref())
2279     }
2280
2281     fn _with_extension(&self, extension: &OsStr) -> PathBuf {
2282         let mut buf = self.to_path_buf();
2283         buf.set_extension(extension);
2284         buf
2285     }
2286
2287     /// Produces an iterator over the [`Component`]s of the path.
2288     ///
2289     /// When parsing the path, there is a small amount of normalization:
2290     ///
2291     /// * Repeated separators are ignored, so `a/b` and `a//b` both have
2292     ///   `a` and `b` as components.
2293     ///
2294     /// * Occurrences of `.` are normalized away, except if they are at the
2295     ///   beginning of the path. For example, `a/./b`, `a/b/`, `a/b/.` and
2296     ///   `a/b` all have `a` and `b` as components, but `./a/b` starts with
2297     ///   an additional [`CurDir`] component.
2298     ///
2299     /// * A trailing slash is normalized away, `/a/b` and `/a/b/` are equivalent.
2300     ///
2301     /// Note that no other normalization takes place; in particular, `a/c`
2302     /// and `a/b/../c` are distinct, to account for the possibility that `b`
2303     /// is a symbolic link (so its parent isn't `a`).
2304     ///
2305     /// # Examples
2306     ///
2307     /// ```
2308     /// use std::path::{Path, Component};
2309     /// use std::ffi::OsStr;
2310     ///
2311     /// let mut components = Path::new("/tmp/foo.txt").components();
2312     ///
2313     /// assert_eq!(components.next(), Some(Component::RootDir));
2314     /// assert_eq!(components.next(), Some(Component::Normal(OsStr::new("tmp"))));
2315     /// assert_eq!(components.next(), Some(Component::Normal(OsStr::new("foo.txt"))));
2316     /// assert_eq!(components.next(), None)
2317     /// ```
2318     ///
2319     /// [`Component`]: enum.Component.html
2320     /// [`CurDir`]: enum.Component.html#variant.CurDir
2321     #[stable(feature = "rust1", since = "1.0.0")]
2322     pub fn components(&self) -> Components<'_> {
2323         let prefix = parse_prefix(self.as_os_str());
2324         Components {
2325             path: self.as_u8_slice(),
2326             prefix,
2327             has_physical_root: has_physical_root(self.as_u8_slice(), prefix) ||
2328                                has_redox_scheme(self.as_u8_slice()),
2329             front: State::Prefix,
2330             back: State::Body,
2331         }
2332     }
2333
2334     /// Produces an iterator over the path's components viewed as [`OsStr`]
2335     /// slices.
2336     ///
2337     /// For more information about the particulars of how the path is separated
2338     /// into components, see [`components`].
2339     ///
2340     /// [`components`]: #method.components
2341     /// [`OsStr`]: ../ffi/struct.OsStr.html
2342     ///
2343     /// # Examples
2344     ///
2345     /// ```
2346     /// use std::path::{self, Path};
2347     /// use std::ffi::OsStr;
2348     ///
2349     /// let mut it = Path::new("/tmp/foo.txt").iter();
2350     /// assert_eq!(it.next(), Some(OsStr::new(&path::MAIN_SEPARATOR.to_string())));
2351     /// assert_eq!(it.next(), Some(OsStr::new("tmp")));
2352     /// assert_eq!(it.next(), Some(OsStr::new("foo.txt")));
2353     /// assert_eq!(it.next(), None)
2354     /// ```
2355     #[stable(feature = "rust1", since = "1.0.0")]
2356     pub fn iter(&self) -> Iter<'_> {
2357         Iter { inner: self.components() }
2358     }
2359
2360     /// Returns an object that implements [`Display`] for safely printing paths
2361     /// that may contain non-Unicode data.
2362     ///
2363     /// [`Display`]: ../fmt/trait.Display.html
2364     ///
2365     /// # Examples
2366     ///
2367     /// ```
2368     /// use std::path::Path;
2369     ///
2370     /// let path = Path::new("/tmp/foo.rs");
2371     ///
2372     /// println!("{}", path.display());
2373     /// ```
2374     #[stable(feature = "rust1", since = "1.0.0")]
2375     pub fn display(&self) -> Display<'_> {
2376         Display { path: self }
2377     }
2378
2379     /// Queries the file system to get information about a file, directory, etc.
2380     ///
2381     /// This function will traverse symbolic links to query information about the
2382     /// destination file.
2383     ///
2384     /// This is an alias to [`fs::metadata`].
2385     ///
2386     /// [`fs::metadata`]: ../fs/fn.metadata.html
2387     ///
2388     /// # Examples
2389     ///
2390     /// ```no_run
2391     /// use std::path::Path;
2392     ///
2393     /// let path = Path::new("/Minas/tirith");
2394     /// let metadata = path.metadata().expect("metadata call failed");
2395     /// println!("{:?}", metadata.file_type());
2396     /// ```
2397     #[stable(feature = "path_ext", since = "1.5.0")]
2398     pub fn metadata(&self) -> io::Result<fs::Metadata> {
2399         fs::metadata(self)
2400     }
2401
2402     /// Queries the metadata about a file without following symlinks.
2403     ///
2404     /// This is an alias to [`fs::symlink_metadata`].
2405     ///
2406     /// [`fs::symlink_metadata`]: ../fs/fn.symlink_metadata.html
2407     ///
2408     /// # Examples
2409     ///
2410     /// ```no_run
2411     /// use std::path::Path;
2412     ///
2413     /// let path = Path::new("/Minas/tirith");
2414     /// let metadata = path.symlink_metadata().expect("symlink_metadata call failed");
2415     /// println!("{:?}", metadata.file_type());
2416     /// ```
2417     #[stable(feature = "path_ext", since = "1.5.0")]
2418     pub fn symlink_metadata(&self) -> io::Result<fs::Metadata> {
2419         fs::symlink_metadata(self)
2420     }
2421
2422     /// Returns the canonical, absolute form of the path with all intermediate
2423     /// components normalized and symbolic links resolved.
2424     ///
2425     /// This is an alias to [`fs::canonicalize`].
2426     ///
2427     /// [`fs::canonicalize`]: ../fs/fn.canonicalize.html
2428     ///
2429     /// # Examples
2430     ///
2431     /// ```no_run
2432     /// use std::path::{Path, PathBuf};
2433     ///
2434     /// let path = Path::new("/foo/test/../test/bar.rs");
2435     /// assert_eq!(path.canonicalize().unwrap(), PathBuf::from("/foo/test/bar.rs"));
2436     /// ```
2437     #[stable(feature = "path_ext", since = "1.5.0")]
2438     pub fn canonicalize(&self) -> io::Result<PathBuf> {
2439         fs::canonicalize(self)
2440     }
2441
2442     /// Reads a symbolic link, returning the file that the link points to.
2443     ///
2444     /// This is an alias to [`fs::read_link`].
2445     ///
2446     /// [`fs::read_link`]: ../fs/fn.read_link.html
2447     ///
2448     /// # Examples
2449     ///
2450     /// ```no_run
2451     /// use std::path::Path;
2452     ///
2453     /// let path = Path::new("/laputa/sky_castle.rs");
2454     /// let path_link = path.read_link().expect("read_link call failed");
2455     /// ```
2456     #[stable(feature = "path_ext", since = "1.5.0")]
2457     pub fn read_link(&self) -> io::Result<PathBuf> {
2458         fs::read_link(self)
2459     }
2460
2461     /// Returns an iterator over the entries within a directory.
2462     ///
2463     /// The iterator will yield instances of [`io::Result`]`<`[`DirEntry`]`>`. New
2464     /// errors may be encountered after an iterator is initially constructed.
2465     ///
2466     /// This is an alias to [`fs::read_dir`].
2467     ///
2468     /// [`io::Result`]: ../io/type.Result.html
2469     /// [`DirEntry`]: ../fs/struct.DirEntry.html
2470     /// [`fs::read_dir`]: ../fs/fn.read_dir.html
2471     ///
2472     /// # Examples
2473     ///
2474     /// ```no_run
2475     /// use std::path::Path;
2476     ///
2477     /// let path = Path::new("/laputa");
2478     /// for entry in path.read_dir().expect("read_dir call failed") {
2479     ///     if let Ok(entry) = entry {
2480     ///         println!("{:?}", entry.path());
2481     ///     }
2482     /// }
2483     /// ```
2484     #[stable(feature = "path_ext", since = "1.5.0")]
2485     pub fn read_dir(&self) -> io::Result<fs::ReadDir> {
2486         fs::read_dir(self)
2487     }
2488
2489     /// Returns `true` if the path points at an existing entity.
2490     ///
2491     /// This function will traverse symbolic links to query information about the
2492     /// destination file. In case of broken symbolic links this will return `false`.
2493     ///
2494     /// If you cannot access the directory containing the file, e.g., because of a
2495     /// permission error, this will return `false`.
2496     ///
2497     /// # Examples
2498     ///
2499     /// ```no_run
2500     /// use std::path::Path;
2501     /// assert_eq!(Path::new("does_not_exist.txt").exists(), false);
2502     /// ```
2503     ///
2504     /// # See Also
2505     ///
2506     /// This is a convenience function that coerces errors to false. If you want to
2507     /// check errors, call [fs::metadata].
2508     ///
2509     /// [fs::metadata]: ../../std/fs/fn.metadata.html
2510     #[stable(feature = "path_ext", since = "1.5.0")]
2511     pub fn exists(&self) -> bool {
2512         fs::metadata(self).is_ok()
2513     }
2514
2515     /// Returns `true` if the path exists on disk and is pointing at a regular file.
2516     ///
2517     /// This function will traverse symbolic links to query information about the
2518     /// destination file. In case of broken symbolic links this will return `false`.
2519     ///
2520     /// If you cannot access the directory containing the file, e.g., because of a
2521     /// permission error, this will return `false`.
2522     ///
2523     /// # Examples
2524     ///
2525     /// ```no_run
2526     /// use std::path::Path;
2527     /// assert_eq!(Path::new("./is_a_directory/").is_file(), false);
2528     /// assert_eq!(Path::new("a_file.txt").is_file(), true);
2529     /// ```
2530     ///
2531     /// # See Also
2532     ///
2533     /// This is a convenience function that coerces errors to false. If you want to
2534     /// check errors, call [fs::metadata] and handle its Result. Then call
2535     /// [fs::Metadata::is_file] if it was Ok.
2536     ///
2537     /// [fs::metadata]: ../../std/fs/fn.metadata.html
2538     /// [fs::Metadata::is_file]: ../../std/fs/struct.Metadata.html#method.is_file
2539     #[stable(feature = "path_ext", since = "1.5.0")]
2540     pub fn is_file(&self) -> bool {
2541         fs::metadata(self).map(|m| m.is_file()).unwrap_or(false)
2542     }
2543
2544     /// Returns `true` if the path exists on disk and is pointing at a directory.
2545     ///
2546     /// This function will traverse symbolic links to query information about the
2547     /// destination file. In case of broken symbolic links this will return `false`.
2548     ///
2549     /// If you cannot access the directory containing the file, e.g., because of a
2550     /// permission error, this will return `false`.
2551     ///
2552     /// # Examples
2553     ///
2554     /// ```no_run
2555     /// use std::path::Path;
2556     /// assert_eq!(Path::new("./is_a_directory/").is_dir(), true);
2557     /// assert_eq!(Path::new("a_file.txt").is_dir(), false);
2558     /// ```
2559     ///
2560     /// # See Also
2561     ///
2562     /// This is a convenience function that coerces errors to false. If you want to
2563     /// check errors, call [fs::metadata] and handle its Result. Then call
2564     /// [fs::Metadata::is_dir] if it was Ok.
2565     ///
2566     /// [fs::metadata]: ../../std/fs/fn.metadata.html
2567     /// [fs::Metadata::is_dir]: ../../std/fs/struct.Metadata.html#method.is_dir
2568     #[stable(feature = "path_ext", since = "1.5.0")]
2569     pub fn is_dir(&self) -> bool {
2570         fs::metadata(self).map(|m| m.is_dir()).unwrap_or(false)
2571     }
2572
2573     /// Converts a [`Box<Path>`][`Box`] into a [`PathBuf`] without copying or
2574     /// allocating.
2575     ///
2576     /// [`Box`]: ../../std/boxed/struct.Box.html
2577     /// [`PathBuf`]: struct.PathBuf.html
2578     #[stable(feature = "into_boxed_path", since = "1.20.0")]
2579     pub fn into_path_buf(self: Box<Path>) -> PathBuf {
2580         let rw = Box::into_raw(self) as *mut OsStr;
2581         let inner = unsafe { Box::from_raw(rw) };
2582         PathBuf { inner: OsString::from(inner) }
2583     }
2584 }
2585
2586 #[stable(feature = "rust1", since = "1.0.0")]
2587 impl AsRef<OsStr> for Path {
2588     fn as_ref(&self) -> &OsStr {
2589         &self.inner
2590     }
2591 }
2592
2593 #[stable(feature = "rust1", since = "1.0.0")]
2594 impl fmt::Debug for Path {
2595     fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
2596         fmt::Debug::fmt(&self.inner, formatter)
2597     }
2598 }
2599
2600 /// Helper struct for safely printing paths with [`format!`] and `{}`.
2601 ///
2602 /// A [`Path`] might contain non-Unicode data. This `struct` implements the
2603 /// [`Display`] trait in a way that mitigates that. It is created by the
2604 /// [`display`][`Path::display`] method on [`Path`].
2605 ///
2606 /// # Examples
2607 ///
2608 /// ```
2609 /// use std::path::Path;
2610 ///
2611 /// let path = Path::new("/tmp/foo.rs");
2612 ///
2613 /// println!("{}", path.display());
2614 /// ```
2615 ///
2616 /// [`Display`]: ../../std/fmt/trait.Display.html
2617 /// [`format!`]: ../../std/macro.format.html
2618 /// [`Path`]: struct.Path.html
2619 /// [`Path::display`]: struct.Path.html#method.display
2620 #[stable(feature = "rust1", since = "1.0.0")]
2621 pub struct Display<'a> {
2622     path: &'a Path,
2623 }
2624
2625 #[stable(feature = "rust1", since = "1.0.0")]
2626 impl fmt::Debug for Display<'_> {
2627     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2628         fmt::Debug::fmt(&self.path, f)
2629     }
2630 }
2631
2632 #[stable(feature = "rust1", since = "1.0.0")]
2633 impl fmt::Display for Display<'_> {
2634     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2635         self.path.inner.display(f)
2636     }
2637 }
2638
2639 #[stable(feature = "rust1", since = "1.0.0")]
2640 impl cmp::PartialEq for Path {
2641     fn eq(&self, other: &Path) -> bool {
2642         self.components().eq(other.components())
2643     }
2644 }
2645
2646 #[stable(feature = "rust1", since = "1.0.0")]
2647 impl Hash for Path {
2648     fn hash<H: Hasher>(&self, h: &mut H) {
2649         for component in self.components() {
2650             component.hash(h);
2651         }
2652     }
2653 }
2654
2655 #[stable(feature = "rust1", since = "1.0.0")]
2656 impl cmp::Eq for Path {}
2657
2658 #[stable(feature = "rust1", since = "1.0.0")]
2659 impl cmp::PartialOrd for Path {
2660     fn partial_cmp(&self, other: &Path) -> Option<cmp::Ordering> {
2661         self.components().partial_cmp(other.components())
2662     }
2663 }
2664
2665 #[stable(feature = "rust1", since = "1.0.0")]
2666 impl cmp::Ord for Path {
2667     fn cmp(&self, other: &Path) -> cmp::Ordering {
2668         self.components().cmp(other.components())
2669     }
2670 }
2671
2672 #[stable(feature = "rust1", since = "1.0.0")]
2673 impl AsRef<Path> for Path {
2674     fn as_ref(&self) -> &Path {
2675         self
2676     }
2677 }
2678
2679 #[stable(feature = "rust1", since = "1.0.0")]
2680 impl AsRef<Path> for OsStr {
2681     fn as_ref(&self) -> &Path {
2682         Path::new(self)
2683     }
2684 }
2685
2686 #[stable(feature = "cow_os_str_as_ref_path", since = "1.8.0")]
2687 impl AsRef<Path> for Cow<'_, OsStr> {
2688     fn as_ref(&self) -> &Path {
2689         Path::new(self)
2690     }
2691 }
2692
2693 #[stable(feature = "rust1", since = "1.0.0")]
2694 impl AsRef<Path> for OsString {
2695     fn as_ref(&self) -> &Path {
2696         Path::new(self)
2697     }
2698 }
2699
2700 #[stable(feature = "rust1", since = "1.0.0")]
2701 impl AsRef<Path> for str {
2702     fn as_ref(&self) -> &Path {
2703         Path::new(self)
2704     }
2705 }
2706
2707 #[stable(feature = "rust1", since = "1.0.0")]
2708 impl AsRef<Path> for String {
2709     fn as_ref(&self) -> &Path {
2710         Path::new(self)
2711     }
2712 }
2713
2714 #[stable(feature = "rust1", since = "1.0.0")]
2715 impl AsRef<Path> for PathBuf {
2716     fn as_ref(&self) -> &Path {
2717         self
2718     }
2719 }
2720
2721 #[stable(feature = "path_into_iter", since = "1.6.0")]
2722 impl<'a> IntoIterator for &'a PathBuf {
2723     type Item = &'a OsStr;
2724     type IntoIter = Iter<'a>;
2725     fn into_iter(self) -> Iter<'a> { self.iter() }
2726 }
2727
2728 #[stable(feature = "path_into_iter", since = "1.6.0")]
2729 impl<'a> IntoIterator for &'a Path {
2730     type Item = &'a OsStr;
2731     type IntoIter = Iter<'a>;
2732     fn into_iter(self) -> Iter<'a> { self.iter() }
2733 }
2734
2735 macro_rules! impl_cmp {
2736     ($lhs:ty, $rhs: ty) => {
2737         #[stable(feature = "partialeq_path", since = "1.6.0")]
2738         impl<'a, 'b> PartialEq<$rhs> for $lhs {
2739             #[inline]
2740             fn eq(&self, other: &$rhs) -> bool { <Path as PartialEq>::eq(self, other) }
2741         }
2742
2743         #[stable(feature = "partialeq_path", since = "1.6.0")]
2744         impl<'a, 'b> PartialEq<$lhs> for $rhs {
2745             #[inline]
2746             fn eq(&self, other: &$lhs) -> bool { <Path as PartialEq>::eq(self, other) }
2747         }
2748
2749         #[stable(feature = "cmp_path", since = "1.8.0")]
2750         impl<'a, 'b> PartialOrd<$rhs> for $lhs {
2751             #[inline]
2752             fn partial_cmp(&self, other: &$rhs) -> Option<cmp::Ordering> {
2753                 <Path as PartialOrd>::partial_cmp(self, other)
2754             }
2755         }
2756
2757         #[stable(feature = "cmp_path", since = "1.8.0")]
2758         impl<'a, 'b> PartialOrd<$lhs> for $rhs {
2759             #[inline]
2760             fn partial_cmp(&self, other: &$lhs) -> Option<cmp::Ordering> {
2761                 <Path as PartialOrd>::partial_cmp(self, other)
2762             }
2763         }
2764     }
2765 }
2766
2767 impl_cmp!(PathBuf, Path);
2768 impl_cmp!(PathBuf, &'a Path);
2769 impl_cmp!(Cow<'a, Path>, Path);
2770 impl_cmp!(Cow<'a, Path>, &'b Path);
2771 impl_cmp!(Cow<'a, Path>, PathBuf);
2772
2773 macro_rules! impl_cmp_os_str {
2774     ($lhs:ty, $rhs: ty) => {
2775         #[stable(feature = "cmp_path", since = "1.8.0")]
2776         impl<'a, 'b> PartialEq<$rhs> for $lhs {
2777             #[inline]
2778             fn eq(&self, other: &$rhs) -> bool { <Path as PartialEq>::eq(self, other.as_ref()) }
2779         }
2780
2781         #[stable(feature = "cmp_path", since = "1.8.0")]
2782         impl<'a, 'b> PartialEq<$lhs> for $rhs {
2783             #[inline]
2784             fn eq(&self, other: &$lhs) -> bool { <Path as PartialEq>::eq(self.as_ref(), other) }
2785         }
2786
2787         #[stable(feature = "cmp_path", since = "1.8.0")]
2788         impl<'a, 'b> PartialOrd<$rhs> for $lhs {
2789             #[inline]
2790             fn partial_cmp(&self, other: &$rhs) -> Option<cmp::Ordering> {
2791                 <Path as PartialOrd>::partial_cmp(self, other.as_ref())
2792             }
2793         }
2794
2795         #[stable(feature = "cmp_path", since = "1.8.0")]
2796         impl<'a, 'b> PartialOrd<$lhs> for $rhs {
2797             #[inline]
2798             fn partial_cmp(&self, other: &$lhs) -> Option<cmp::Ordering> {
2799                 <Path as PartialOrd>::partial_cmp(self.as_ref(), other)
2800             }
2801         }
2802     }
2803 }
2804
2805 impl_cmp_os_str!(PathBuf, OsStr);
2806 impl_cmp_os_str!(PathBuf, &'a OsStr);
2807 impl_cmp_os_str!(PathBuf, Cow<'a, OsStr>);
2808 impl_cmp_os_str!(PathBuf, OsString);
2809 impl_cmp_os_str!(Path, OsStr);
2810 impl_cmp_os_str!(Path, &'a OsStr);
2811 impl_cmp_os_str!(Path, Cow<'a, OsStr>);
2812 impl_cmp_os_str!(Path, OsString);
2813 impl_cmp_os_str!(&'a Path, OsStr);
2814 impl_cmp_os_str!(&'a Path, Cow<'b, OsStr>);
2815 impl_cmp_os_str!(&'a Path, OsString);
2816 impl_cmp_os_str!(Cow<'a, Path>, OsStr);
2817 impl_cmp_os_str!(Cow<'a, Path>, &'b OsStr);
2818 impl_cmp_os_str!(Cow<'a, Path>, OsString);
2819
2820 #[stable(since = "1.7.0", feature = "strip_prefix")]
2821 impl fmt::Display for StripPrefixError {
2822     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2823         self.description().fmt(f)
2824     }
2825 }
2826
2827 #[stable(since = "1.7.0", feature = "strip_prefix")]
2828 impl Error for StripPrefixError {
2829     fn description(&self) -> &str { "prefix not found" }
2830 }
2831
2832 #[cfg(test)]
2833 mod tests {
2834     use super::*;
2835
2836     use crate::rc::Rc;
2837     use crate::sync::Arc;
2838
2839     macro_rules! t(
2840         ($path:expr, iter: $iter:expr) => (
2841             {
2842                 let path = Path::new($path);
2843
2844                 // Forward iteration
2845                 let comps = path.iter()
2846                     .map(|p| p.to_string_lossy().into_owned())
2847                     .collect::<Vec<String>>();
2848                 let exp: &[&str] = &$iter;
2849                 let exps = exp.iter().map(|s| s.to_string()).collect::<Vec<String>>();
2850                 assert!(comps == exps, "iter: Expected {:?}, found {:?}",
2851                         exps, comps);
2852
2853                 // Reverse iteration
2854                 let comps = Path::new($path).iter().rev()
2855                     .map(|p| p.to_string_lossy().into_owned())
2856                     .collect::<Vec<String>>();
2857                 let exps = exps.into_iter().rev().collect::<Vec<String>>();
2858                 assert!(comps == exps, "iter().rev(): Expected {:?}, found {:?}",
2859                         exps, comps);
2860             }
2861         );
2862
2863         ($path:expr, has_root: $has_root:expr, is_absolute: $is_absolute:expr) => (
2864             {
2865                 let path = Path::new($path);
2866
2867                 let act_root = path.has_root();
2868                 assert!(act_root == $has_root, "has_root: Expected {:?}, found {:?}",
2869                         $has_root, act_root);
2870
2871                 let act_abs = path.is_absolute();
2872                 assert!(act_abs == $is_absolute, "is_absolute: Expected {:?}, found {:?}",
2873                         $is_absolute, act_abs);
2874             }
2875         );
2876
2877         ($path:expr, parent: $parent:expr, file_name: $file:expr) => (
2878             {
2879                 let path = Path::new($path);
2880
2881                 let parent = path.parent().map(|p| p.to_str().unwrap());
2882                 let exp_parent: Option<&str> = $parent;
2883                 assert!(parent == exp_parent, "parent: Expected {:?}, found {:?}",
2884                         exp_parent, parent);
2885
2886                 let file = path.file_name().map(|p| p.to_str().unwrap());
2887                 let exp_file: Option<&str> = $file;
2888                 assert!(file == exp_file, "file_name: Expected {:?}, found {:?}",
2889                         exp_file, file);
2890             }
2891         );
2892
2893         ($path:expr, file_stem: $file_stem:expr, extension: $extension:expr) => (
2894             {
2895                 let path = Path::new($path);
2896
2897                 let stem = path.file_stem().map(|p| p.to_str().unwrap());
2898                 let exp_stem: Option<&str> = $file_stem;
2899                 assert!(stem == exp_stem, "file_stem: Expected {:?}, found {:?}",
2900                         exp_stem, stem);
2901
2902                 let ext = path.extension().map(|p| p.to_str().unwrap());
2903                 let exp_ext: Option<&str> = $extension;
2904                 assert!(ext == exp_ext, "extension: Expected {:?}, found {:?}",
2905                         exp_ext, ext);
2906             }
2907         );
2908
2909         ($path:expr, iter: $iter:expr,
2910                      has_root: $has_root:expr, is_absolute: $is_absolute:expr,
2911                      parent: $parent:expr, file_name: $file:expr,
2912                      file_stem: $file_stem:expr, extension: $extension:expr) => (
2913             {
2914                 t!($path, iter: $iter);
2915                 t!($path, has_root: $has_root, is_absolute: $is_absolute);
2916                 t!($path, parent: $parent, file_name: $file);
2917                 t!($path, file_stem: $file_stem, extension: $extension);
2918             }
2919         );
2920     );
2921
2922     #[test]
2923     fn into() {
2924         use crate::borrow::Cow;
2925
2926         let static_path = Path::new("/home/foo");
2927         let static_cow_path: Cow<'static, Path> = static_path.into();
2928         let pathbuf = PathBuf::from("/home/foo");
2929
2930         {
2931             let path: &Path = &pathbuf;
2932             let borrowed_cow_path: Cow<'_, Path> = path.into();
2933
2934             assert_eq!(static_cow_path, borrowed_cow_path);
2935         }
2936
2937         let owned_cow_path: Cow<'static, Path> = pathbuf.into();
2938
2939         assert_eq!(static_cow_path, owned_cow_path);
2940     }
2941
2942     #[test]
2943     #[cfg(unix)]
2944     pub fn test_decompositions_unix() {
2945         t!("",
2946            iter: [],
2947            has_root: false,
2948            is_absolute: false,
2949            parent: None,
2950            file_name: None,
2951            file_stem: None,
2952            extension: None
2953            );
2954
2955         t!("foo",
2956            iter: ["foo"],
2957            has_root: false,
2958            is_absolute: false,
2959            parent: Some(""),
2960            file_name: Some("foo"),
2961            file_stem: Some("foo"),
2962            extension: None
2963            );
2964
2965         t!("/",
2966            iter: ["/"],
2967            has_root: true,
2968            is_absolute: true,
2969            parent: None,
2970            file_name: None,
2971            file_stem: None,
2972            extension: None
2973            );
2974
2975         t!("/foo",
2976            iter: ["/", "foo"],
2977            has_root: true,
2978            is_absolute: true,
2979            parent: Some("/"),
2980            file_name: Some("foo"),
2981            file_stem: Some("foo"),
2982            extension: None
2983            );
2984
2985         t!("foo/",
2986            iter: ["foo"],
2987            has_root: false,
2988            is_absolute: false,
2989            parent: Some(""),
2990            file_name: Some("foo"),
2991            file_stem: Some("foo"),
2992            extension: None
2993            );
2994
2995         t!("/foo/",
2996            iter: ["/", "foo"],
2997            has_root: true,
2998            is_absolute: true,
2999            parent: Some("/"),
3000            file_name: Some("foo"),
3001            file_stem: Some("foo"),
3002            extension: None
3003            );
3004
3005         t!("foo/bar",
3006            iter: ["foo", "bar"],
3007            has_root: false,
3008            is_absolute: false,
3009            parent: Some("foo"),
3010            file_name: Some("bar"),
3011            file_stem: Some("bar"),
3012            extension: None
3013            );
3014
3015         t!("/foo/bar",
3016            iter: ["/", "foo", "bar"],
3017            has_root: true,
3018            is_absolute: true,
3019            parent: Some("/foo"),
3020            file_name: Some("bar"),
3021            file_stem: Some("bar"),
3022            extension: None
3023            );
3024
3025         t!("///foo///",
3026            iter: ["/", "foo"],
3027            has_root: true,
3028            is_absolute: true,
3029            parent: Some("/"),
3030            file_name: Some("foo"),
3031            file_stem: Some("foo"),
3032            extension: None
3033            );
3034
3035         t!("///foo///bar",
3036            iter: ["/", "foo", "bar"],
3037            has_root: true,
3038            is_absolute: true,
3039            parent: Some("///foo"),
3040            file_name: Some("bar"),
3041            file_stem: Some("bar"),
3042            extension: None
3043            );
3044
3045         t!("./.",
3046            iter: ["."],
3047            has_root: false,
3048            is_absolute: false,
3049            parent: Some(""),
3050            file_name: None,
3051            file_stem: None,
3052            extension: None
3053            );
3054
3055         t!("/..",
3056            iter: ["/", ".."],
3057            has_root: true,
3058            is_absolute: true,
3059            parent: Some("/"),
3060            file_name: None,
3061            file_stem: None,
3062            extension: None
3063            );
3064
3065         t!("../",
3066            iter: [".."],
3067            has_root: false,
3068            is_absolute: false,
3069            parent: Some(""),
3070            file_name: None,
3071            file_stem: None,
3072            extension: None
3073            );
3074
3075         t!("foo/.",
3076            iter: ["foo"],
3077            has_root: false,
3078            is_absolute: false,
3079            parent: Some(""),
3080            file_name: Some("foo"),
3081            file_stem: Some("foo"),
3082            extension: None
3083            );
3084
3085         t!("foo/..",
3086            iter: ["foo", ".."],
3087            has_root: false,
3088            is_absolute: false,
3089            parent: Some("foo"),
3090            file_name: None,
3091            file_stem: None,
3092            extension: None
3093            );
3094
3095         t!("foo/./",
3096            iter: ["foo"],
3097            has_root: false,
3098            is_absolute: false,
3099            parent: Some(""),
3100            file_name: Some("foo"),
3101            file_stem: Some("foo"),
3102            extension: None
3103            );
3104
3105         t!("foo/./bar",
3106            iter: ["foo", "bar"],
3107            has_root: false,
3108            is_absolute: false,
3109            parent: Some("foo"),
3110            file_name: Some("bar"),
3111            file_stem: Some("bar"),
3112            extension: None
3113            );
3114
3115         t!("foo/../",
3116            iter: ["foo", ".."],
3117            has_root: false,
3118            is_absolute: false,
3119            parent: Some("foo"),
3120            file_name: None,
3121            file_stem: None,
3122            extension: None
3123            );
3124
3125         t!("foo/../bar",
3126            iter: ["foo", "..", "bar"],
3127            has_root: false,
3128            is_absolute: false,
3129            parent: Some("foo/.."),
3130            file_name: Some("bar"),
3131            file_stem: Some("bar"),
3132            extension: None
3133            );
3134
3135         t!("./a",
3136            iter: [".", "a"],
3137            has_root: false,
3138            is_absolute: false,
3139            parent: Some("."),
3140            file_name: Some("a"),
3141            file_stem: Some("a"),
3142            extension: None
3143            );
3144
3145         t!(".",
3146            iter: ["."],
3147            has_root: false,
3148            is_absolute: false,
3149            parent: Some(""),
3150            file_name: None,
3151            file_stem: None,
3152            extension: None
3153            );
3154
3155         t!("./",
3156            iter: ["."],
3157            has_root: false,
3158            is_absolute: false,
3159            parent: Some(""),
3160            file_name: None,
3161            file_stem: None,
3162            extension: None
3163            );
3164
3165         t!("a/b",
3166            iter: ["a", "b"],
3167            has_root: false,
3168            is_absolute: false,
3169            parent: Some("a"),
3170            file_name: Some("b"),
3171            file_stem: Some("b"),
3172            extension: None
3173            );
3174
3175         t!("a//b",
3176            iter: ["a", "b"],
3177            has_root: false,
3178            is_absolute: false,
3179            parent: Some("a"),
3180            file_name: Some("b"),
3181            file_stem: Some("b"),
3182            extension: None
3183            );
3184
3185         t!("a/./b",
3186            iter: ["a", "b"],
3187            has_root: false,
3188            is_absolute: false,
3189            parent: Some("a"),
3190            file_name: Some("b"),
3191            file_stem: Some("b"),
3192            extension: None
3193            );
3194
3195         t!("a/b/c",
3196            iter: ["a", "b", "c"],
3197            has_root: false,
3198            is_absolute: false,
3199            parent: Some("a/b"),
3200            file_name: Some("c"),
3201            file_stem: Some("c"),
3202            extension: None
3203            );
3204
3205         t!(".foo",
3206            iter: [".foo"],
3207            has_root: false,
3208            is_absolute: false,
3209            parent: Some(""),
3210            file_name: Some(".foo"),
3211            file_stem: Some(".foo"),
3212            extension: None
3213            );
3214     }
3215
3216     #[test]
3217     #[cfg(windows)]
3218     pub fn test_decompositions_windows() {
3219         t!("",
3220            iter: [],
3221            has_root: false,
3222            is_absolute: false,
3223            parent: None,
3224            file_name: None,
3225            file_stem: None,
3226            extension: None
3227            );
3228
3229         t!("foo",
3230            iter: ["foo"],
3231            has_root: false,
3232            is_absolute: false,
3233            parent: Some(""),
3234            file_name: Some("foo"),
3235            file_stem: Some("foo"),
3236            extension: None
3237            );
3238
3239         t!("/",
3240            iter: ["\\"],
3241            has_root: true,
3242            is_absolute: false,
3243            parent: None,
3244            file_name: None,
3245            file_stem: None,
3246            extension: None
3247            );
3248
3249         t!("\\",
3250            iter: ["\\"],
3251            has_root: true,
3252            is_absolute: false,
3253            parent: None,
3254            file_name: None,
3255            file_stem: None,
3256            extension: None
3257            );
3258
3259         t!("c:",
3260            iter: ["c:"],
3261            has_root: false,
3262            is_absolute: false,
3263            parent: None,
3264            file_name: None,
3265            file_stem: None,
3266            extension: None
3267            );
3268
3269         t!("c:\\",
3270            iter: ["c:", "\\"],
3271            has_root: true,
3272            is_absolute: true,
3273            parent: None,
3274            file_name: None,
3275            file_stem: None,
3276            extension: None
3277            );
3278
3279         t!("c:/",
3280            iter: ["c:", "\\"],
3281            has_root: true,
3282            is_absolute: true,
3283            parent: None,
3284            file_name: None,
3285            file_stem: None,
3286            extension: None
3287            );
3288
3289         t!("/foo",
3290            iter: ["\\", "foo"],
3291            has_root: true,
3292            is_absolute: false,
3293            parent: Some("/"),
3294            file_name: Some("foo"),
3295            file_stem: Some("foo"),
3296            extension: None
3297            );
3298
3299         t!("foo/",
3300            iter: ["foo"],
3301            has_root: false,
3302            is_absolute: false,
3303            parent: Some(""),
3304            file_name: Some("foo"),
3305            file_stem: Some("foo"),
3306            extension: None
3307            );
3308
3309         t!("/foo/",
3310            iter: ["\\", "foo"],
3311            has_root: true,
3312            is_absolute: false,
3313            parent: Some("/"),
3314            file_name: Some("foo"),
3315            file_stem: Some("foo"),
3316            extension: None
3317            );
3318
3319         t!("foo/bar",
3320            iter: ["foo", "bar"],
3321            has_root: false,
3322            is_absolute: false,
3323            parent: Some("foo"),
3324            file_name: Some("bar"),
3325            file_stem: Some("bar"),
3326            extension: None
3327            );
3328
3329         t!("/foo/bar",
3330            iter: ["\\", "foo", "bar"],
3331            has_root: true,
3332            is_absolute: false,
3333            parent: Some("/foo"),
3334            file_name: Some("bar"),
3335            file_stem: Some("bar"),
3336            extension: None
3337            );
3338
3339         t!("///foo///",
3340            iter: ["\\", "foo"],
3341            has_root: true,
3342            is_absolute: false,
3343            parent: Some("/"),
3344            file_name: Some("foo"),
3345            file_stem: Some("foo"),
3346            extension: None
3347            );
3348
3349         t!("///foo///bar",
3350            iter: ["\\", "foo", "bar"],
3351            has_root: true,
3352            is_absolute: false,
3353            parent: Some("///foo"),
3354            file_name: Some("bar"),
3355            file_stem: Some("bar"),
3356            extension: None
3357            );
3358
3359         t!("./.",
3360            iter: ["."],
3361            has_root: false,
3362            is_absolute: false,
3363            parent: Some(""),
3364            file_name: None,
3365            file_stem: None,
3366            extension: None
3367            );
3368
3369         t!("/..",
3370            iter: ["\\", ".."],
3371            has_root: true,
3372            is_absolute: false,
3373            parent: Some("/"),
3374            file_name: None,
3375            file_stem: None,
3376            extension: None
3377            );
3378
3379         t!("../",
3380            iter: [".."],
3381            has_root: false,
3382            is_absolute: false,
3383            parent: Some(""),
3384            file_name: None,
3385            file_stem: None,
3386            extension: None
3387            );
3388
3389         t!("foo/.",
3390            iter: ["foo"],
3391            has_root: false,
3392            is_absolute: false,
3393            parent: Some(""),
3394            file_name: Some("foo"),
3395            file_stem: Some("foo"),
3396            extension: None
3397            );
3398
3399         t!("foo/..",
3400            iter: ["foo", ".."],
3401            has_root: false,
3402            is_absolute: false,
3403            parent: Some("foo"),
3404            file_name: None,
3405            file_stem: None,
3406            extension: None
3407            );
3408
3409         t!("foo/./",
3410            iter: ["foo"],
3411            has_root: false,
3412            is_absolute: false,
3413            parent: Some(""),
3414            file_name: Some("foo"),
3415            file_stem: Some("foo"),
3416            extension: None
3417            );
3418
3419         t!("foo/./bar",
3420            iter: ["foo", "bar"],
3421            has_root: false,
3422            is_absolute: false,
3423            parent: Some("foo"),
3424            file_name: Some("bar"),
3425            file_stem: Some("bar"),
3426            extension: None
3427            );
3428
3429         t!("foo/../",
3430            iter: ["foo", ".."],
3431            has_root: false,
3432            is_absolute: false,
3433            parent: Some("foo"),
3434            file_name: None,
3435            file_stem: None,
3436            extension: None
3437            );
3438
3439         t!("foo/../bar",
3440            iter: ["foo", "..", "bar"],
3441            has_root: false,
3442            is_absolute: false,
3443            parent: Some("foo/.."),
3444            file_name: Some("bar"),
3445            file_stem: Some("bar"),
3446            extension: None
3447            );
3448
3449         t!("./a",
3450            iter: [".", "a"],
3451            has_root: false,
3452            is_absolute: false,
3453            parent: Some("."),
3454            file_name: Some("a"),
3455            file_stem: Some("a"),
3456            extension: None
3457            );
3458
3459         t!(".",
3460            iter: ["."],
3461            has_root: false,
3462            is_absolute: false,
3463            parent: Some(""),
3464            file_name: None,
3465            file_stem: None,
3466            extension: None
3467            );
3468
3469         t!("./",
3470            iter: ["."],
3471            has_root: false,
3472            is_absolute: false,
3473            parent: Some(""),
3474            file_name: None,
3475            file_stem: None,
3476            extension: None
3477            );
3478
3479         t!("a/b",
3480            iter: ["a", "b"],
3481            has_root: false,
3482            is_absolute: false,
3483            parent: Some("a"),
3484            file_name: Some("b"),
3485            file_stem: Some("b"),
3486            extension: None
3487            );
3488
3489         t!("a//b",
3490            iter: ["a", "b"],
3491            has_root: false,
3492            is_absolute: false,
3493            parent: Some("a"),
3494            file_name: Some("b"),
3495            file_stem: Some("b"),
3496            extension: None
3497            );
3498
3499         t!("a/./b",
3500            iter: ["a", "b"],
3501            has_root: false,
3502            is_absolute: false,
3503            parent: Some("a"),
3504            file_name: Some("b"),
3505            file_stem: Some("b"),
3506            extension: None
3507            );
3508
3509         t!("a/b/c",
3510            iter: ["a", "b", "c"],
3511            has_root: false,
3512            is_absolute: false,
3513            parent: Some("a/b"),
3514            file_name: Some("c"),
3515            file_stem: Some("c"),
3516            extension: None);
3517
3518         t!("a\\b\\c",
3519            iter: ["a", "b", "c"],
3520            has_root: false,
3521            is_absolute: false,
3522            parent: Some("a\\b"),
3523            file_name: Some("c"),
3524            file_stem: Some("c"),
3525            extension: None
3526            );
3527
3528         t!("\\a",
3529            iter: ["\\", "a"],
3530            has_root: true,
3531            is_absolute: false,
3532            parent: Some("\\"),
3533            file_name: Some("a"),
3534            file_stem: Some("a"),
3535            extension: None
3536            );
3537
3538         t!("c:\\foo.txt",
3539            iter: ["c:", "\\", "foo.txt"],
3540            has_root: true,
3541            is_absolute: true,
3542            parent: Some("c:\\"),
3543            file_name: Some("foo.txt"),
3544            file_stem: Some("foo"),
3545            extension: Some("txt")
3546            );
3547
3548         t!("\\\\server\\share\\foo.txt",
3549            iter: ["\\\\server\\share", "\\", "foo.txt"],
3550            has_root: true,
3551            is_absolute: true,
3552            parent: Some("\\\\server\\share\\"),
3553            file_name: Some("foo.txt"),
3554            file_stem: Some("foo"),
3555            extension: Some("txt")
3556            );
3557
3558         t!("\\\\server\\share",
3559            iter: ["\\\\server\\share", "\\"],
3560            has_root: true,
3561            is_absolute: true,
3562            parent: None,
3563            file_name: None,
3564            file_stem: None,
3565            extension: None
3566            );
3567
3568         t!("\\\\server",
3569            iter: ["\\", "server"],
3570            has_root: true,
3571            is_absolute: false,
3572            parent: Some("\\"),
3573            file_name: Some("server"),
3574            file_stem: Some("server"),
3575            extension: None
3576            );
3577
3578         t!("\\\\?\\bar\\foo.txt",
3579            iter: ["\\\\?\\bar", "\\", "foo.txt"],
3580            has_root: true,
3581            is_absolute: true,
3582            parent: Some("\\\\?\\bar\\"),
3583            file_name: Some("foo.txt"),
3584            file_stem: Some("foo"),
3585            extension: Some("txt")
3586            );
3587
3588         t!("\\\\?\\bar",
3589            iter: ["\\\\?\\bar"],
3590            has_root: true,
3591            is_absolute: true,
3592            parent: None,
3593            file_name: None,
3594            file_stem: None,
3595            extension: None
3596            );
3597
3598         t!("\\\\?\\",
3599            iter: ["\\\\?\\"],
3600            has_root: true,
3601            is_absolute: true,
3602            parent: None,
3603            file_name: None,
3604            file_stem: None,
3605            extension: None
3606            );
3607
3608         t!("\\\\?\\UNC\\server\\share\\foo.txt",
3609            iter: ["\\\\?\\UNC\\server\\share", "\\", "foo.txt"],
3610            has_root: true,
3611            is_absolute: true,
3612            parent: Some("\\\\?\\UNC\\server\\share\\"),
3613            file_name: Some("foo.txt"),
3614            file_stem: Some("foo"),
3615            extension: Some("txt")
3616            );
3617
3618         t!("\\\\?\\UNC\\server",
3619            iter: ["\\\\?\\UNC\\server"],
3620            has_root: true,
3621            is_absolute: true,
3622            parent: None,
3623            file_name: None,
3624            file_stem: None,
3625            extension: None
3626            );
3627
3628         t!("\\\\?\\UNC\\",
3629            iter: ["\\\\?\\UNC\\"],
3630            has_root: true,
3631            is_absolute: true,
3632            parent: None,
3633            file_name: None,
3634            file_stem: None,
3635            extension: None
3636            );
3637
3638         t!("\\\\?\\C:\\foo.txt",
3639            iter: ["\\\\?\\C:", "\\", "foo.txt"],
3640            has_root: true,
3641            is_absolute: true,
3642            parent: Some("\\\\?\\C:\\"),
3643            file_name: Some("foo.txt"),
3644            file_stem: Some("foo"),
3645            extension: Some("txt")
3646            );
3647
3648
3649         t!("\\\\?\\C:\\",
3650            iter: ["\\\\?\\C:", "\\"],
3651            has_root: true,
3652            is_absolute: true,
3653            parent: None,
3654            file_name: None,
3655            file_stem: None,
3656            extension: None
3657            );
3658
3659
3660         t!("\\\\?\\C:",
3661            iter: ["\\\\?\\C:"],
3662            has_root: true,
3663            is_absolute: true,
3664            parent: None,
3665            file_name: None,
3666            file_stem: None,
3667            extension: None
3668            );
3669
3670
3671         t!("\\\\?\\foo/bar",
3672            iter: ["\\\\?\\foo/bar"],
3673            has_root: true,
3674            is_absolute: true,
3675            parent: None,
3676            file_name: None,
3677            file_stem: None,
3678            extension: None
3679            );
3680
3681
3682         t!("\\\\?\\C:/foo",
3683            iter: ["\\\\?\\C:/foo"],
3684            has_root: true,
3685            is_absolute: true,
3686            parent: None,
3687            file_name: None,
3688            file_stem: None,
3689            extension: None
3690            );
3691
3692
3693         t!("\\\\.\\foo\\bar",
3694            iter: ["\\\\.\\foo", "\\", "bar"],
3695            has_root: true,
3696            is_absolute: true,
3697            parent: Some("\\\\.\\foo\\"),
3698            file_name: Some("bar"),
3699            file_stem: Some("bar"),
3700            extension: None
3701            );
3702
3703
3704         t!("\\\\.\\foo",
3705            iter: ["\\\\.\\foo", "\\"],
3706            has_root: true,
3707            is_absolute: true,
3708            parent: None,
3709            file_name: None,
3710            file_stem: None,
3711            extension: None
3712            );
3713
3714
3715         t!("\\\\.\\foo/bar",
3716            iter: ["\\\\.\\foo/bar", "\\"],
3717            has_root: true,
3718            is_absolute: true,
3719            parent: None,
3720            file_name: None,
3721            file_stem: None,
3722            extension: None
3723            );
3724
3725
3726         t!("\\\\.\\foo\\bar/baz",
3727            iter: ["\\\\.\\foo", "\\", "bar", "baz"],
3728            has_root: true,
3729            is_absolute: true,
3730            parent: Some("\\\\.\\foo\\bar"),
3731            file_name: Some("baz"),
3732            file_stem: Some("baz"),
3733            extension: None
3734            );
3735
3736
3737         t!("\\\\.\\",
3738            iter: ["\\\\.\\", "\\"],
3739            has_root: true,
3740            is_absolute: true,
3741            parent: None,
3742            file_name: None,
3743            file_stem: None,
3744            extension: None
3745            );
3746
3747         t!("\\\\?\\a\\b\\",
3748            iter: ["\\\\?\\a", "\\", "b"],
3749            has_root: true,
3750            is_absolute: true,
3751            parent: Some("\\\\?\\a\\"),
3752            file_name: Some("b"),
3753            file_stem: Some("b"),
3754            extension: None
3755            );
3756     }
3757
3758     #[test]
3759     pub fn test_stem_ext() {
3760         t!("foo",
3761            file_stem: Some("foo"),
3762            extension: None
3763            );
3764
3765         t!("foo.",
3766            file_stem: Some("foo"),
3767            extension: Some("")
3768            );
3769
3770         t!(".foo",
3771            file_stem: Some(".foo"),
3772            extension: None
3773            );
3774
3775         t!("foo.txt",
3776            file_stem: Some("foo"),
3777            extension: Some("txt")
3778            );
3779
3780         t!("foo.bar.txt",
3781            file_stem: Some("foo.bar"),
3782            extension: Some("txt")
3783            );
3784
3785         t!("foo.bar.",
3786            file_stem: Some("foo.bar"),
3787            extension: Some("")
3788            );
3789
3790         t!(".",
3791            file_stem: None,
3792            extension: None
3793            );
3794
3795         t!("..",
3796            file_stem: None,
3797            extension: None
3798            );
3799
3800         t!("",
3801            file_stem: None,
3802            extension: None
3803            );
3804     }
3805
3806     #[test]
3807     pub fn test_push() {
3808         macro_rules! tp(
3809             ($path:expr, $push:expr, $expected:expr) => ( {
3810                 let mut actual = PathBuf::from($path);
3811                 actual.push($push);
3812                 assert!(actual.to_str() == Some($expected),
3813                         "pushing {:?} onto {:?}: Expected {:?}, got {:?}",
3814                         $push, $path, $expected, actual.to_str().unwrap());
3815             });
3816         );
3817
3818         if cfg!(unix) || cfg!(all(target_env = "sgx", target_vendor = "fortanix")) {
3819             tp!("", "foo", "foo");
3820             tp!("foo", "bar", "foo/bar");
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", "", "foo/");
3826             tp!("foo", ".", "foo/.");
3827             tp!("foo", "..", "foo/..");
3828             tp!("foo", "/", "/");
3829             tp!("/foo/bar", "/", "/");
3830             tp!("/foo/bar", "/baz", "/baz");
3831             tp!("/foo/bar", "./baz", "/foo/bar/./baz");
3832         } else {
3833             tp!("", "foo", "foo");
3834             tp!("foo", "bar", r"foo\bar");
3835             tp!("foo/", "bar", r"foo/bar");
3836             tp!(r"foo\", "bar", r"foo\bar");
3837             tp!("foo//", "bar", r"foo//bar");
3838             tp!(r"foo\\", "bar", r"foo\\bar");
3839             tp!("foo/.", "bar", r"foo/.\bar");
3840             tp!("foo./.", "bar", r"foo./.\bar");
3841             tp!(r"foo\.", "bar", r"foo\.\bar");
3842             tp!(r"foo.\.", "bar", r"foo.\.\bar");
3843             tp!("foo", "", "foo\\");
3844             tp!("foo", ".", r"foo\.");
3845             tp!("foo", "..", r"foo\..");
3846             tp!("foo", "/", "/");
3847             tp!("foo", r"\", r"\");
3848             tp!("/foo/bar", "/", "/");
3849             tp!(r"\foo\bar", r"\", r"\");
3850             tp!("/foo/bar", "/baz", "/baz");
3851             tp!("/foo/bar", r"\baz", r"\baz");
3852             tp!("/foo/bar", "./baz", r"/foo/bar\./baz");
3853             tp!("/foo/bar", r".\baz", r"/foo/bar\.\baz");
3854
3855             tp!("c:\\", "windows", "c:\\windows");
3856             tp!("c:", "windows", "c:windows");
3857
3858             tp!("a\\b\\c", "d", "a\\b\\c\\d");
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", "\\c\\d");
3862             tp!("a\\b", ".", "a\\b\\.");
3863             tp!("a\\b", "..\\c", "a\\b\\..\\c");
3864             tp!("a\\b", "C:a.txt", "C:a.txt");
3865             tp!("a\\b", "C:\\a.txt", "C:\\a.txt");
3866             tp!("C:\\a", "C:\\b.txt", "C:\\b.txt");
3867             tp!("C:\\a\\b\\c", "C:d", "C:d");
3868             tp!("C:a\\b\\c", "C:d", "C:d");
3869             tp!("C:", r"a\b\c", r"C:a\b\c");
3870             tp!("C:", r"..\a", r"C:..\a");
3871             tp!("\\\\server\\share\\foo",
3872                 "bar",
3873                 "\\\\server\\share\\foo\\bar");
3874             tp!("\\\\server\\share\\foo", "C:baz", "C:baz");
3875             tp!("\\\\?\\C:\\a\\b", "C:c\\d", "C:c\\d");
3876             tp!("\\\\?\\C:a\\b", "C:c\\d", "C:c\\d");
3877             tp!("\\\\?\\C:\\a\\b", "C:\\c\\d", "C:\\c\\d");
3878             tp!("\\\\?\\foo\\bar", "baz", "\\\\?\\foo\\bar\\baz");
3879             tp!("\\\\?\\UNC\\server\\share\\foo",
3880                 "bar",
3881                 "\\\\?\\UNC\\server\\share\\foo\\bar");
3882             tp!("\\\\?\\UNC\\server\\share", "C:\\a", "C:\\a");
3883             tp!("\\\\?\\UNC\\server\\share", "C:a", "C:a");
3884
3885             // Note: modified from old path API
3886             tp!("\\\\?\\UNC\\server", "foo", "\\\\?\\UNC\\server\\foo");
3887
3888             tp!("C:\\a",
3889                 "\\\\?\\UNC\\server\\share",
3890                 "\\\\?\\UNC\\server\\share");
3891             tp!("\\\\.\\foo\\bar", "baz", "\\\\.\\foo\\bar\\baz");
3892             tp!("\\\\.\\foo\\bar", "C:a", "C:a");
3893             // again, not sure about the following, but I'm assuming \\.\ should be verbatim
3894             tp!("\\\\.\\foo", "..\\bar", "\\\\.\\foo\\..\\bar");
3895
3896             tp!("\\\\?\\C:", "foo", "\\\\?\\C:\\foo"); // this is a weird one
3897         }
3898     }
3899
3900     #[test]
3901     pub fn test_pop() {
3902         macro_rules! tp(
3903             ($path:expr, $expected:expr, $output:expr) => ( {
3904                 let mut actual = PathBuf::from($path);
3905                 let output = actual.pop();
3906                 assert!(actual.to_str() == Some($expected) && output == $output,
3907                         "popping from {:?}: Expected {:?}/{:?}, got {:?}/{:?}",
3908                         $path, $expected, $output,
3909                         actual.to_str().unwrap(), output);
3910             });
3911         );
3912
3913         tp!("", "", false);
3914         tp!("/", "/", false);
3915         tp!("foo", "", true);
3916         tp!(".", "", true);
3917         tp!("/foo", "/", true);
3918         tp!("/foo/bar", "/foo", true);
3919         tp!("foo/bar", "foo", true);
3920         tp!("foo/.", "", true);
3921         tp!("foo//bar", "foo", true);
3922
3923         if cfg!(windows) {
3924             tp!("a\\b\\c", "a\\b", true);
3925             tp!("\\a", "\\", true);
3926             tp!("\\", "\\", false);
3927
3928             tp!("C:\\a\\b", "C:\\a", true);
3929             tp!("C:\\a", "C:\\", true);
3930             tp!("C:\\", "C:\\", false);
3931             tp!("C:a\\b", "C:a", true);
3932             tp!("C:a", "C:", true);
3933             tp!("C:", "C:", false);
3934             tp!("\\\\server\\share\\a\\b", "\\\\server\\share\\a", true);
3935             tp!("\\\\server\\share\\a", "\\\\server\\share\\", true);
3936             tp!("\\\\server\\share", "\\\\server\\share", false);
3937             tp!("\\\\?\\a\\b\\c", "\\\\?\\a\\b", true);
3938             tp!("\\\\?\\a\\b", "\\\\?\\a\\", true);
3939             tp!("\\\\?\\a", "\\\\?\\a", false);
3940             tp!("\\\\?\\C:\\a\\b", "\\\\?\\C:\\a", true);
3941             tp!("\\\\?\\C:\\a", "\\\\?\\C:\\", true);
3942             tp!("\\\\?\\C:\\", "\\\\?\\C:\\", false);
3943             tp!("\\\\?\\UNC\\server\\share\\a\\b",
3944                 "\\\\?\\UNC\\server\\share\\a",
3945                 true);
3946             tp!("\\\\?\\UNC\\server\\share\\a",
3947                 "\\\\?\\UNC\\server\\share\\",
3948                 true);
3949             tp!("\\\\?\\UNC\\server\\share",
3950                 "\\\\?\\UNC\\server\\share",
3951                 false);
3952             tp!("\\\\.\\a\\b\\c", "\\\\.\\a\\b", true);
3953             tp!("\\\\.\\a\\b", "\\\\.\\a\\", true);
3954             tp!("\\\\.\\a", "\\\\.\\a", false);
3955
3956             tp!("\\\\?\\a\\b\\", "\\\\?\\a\\", true);
3957         }
3958     }
3959
3960     #[test]
3961     pub fn test_set_file_name() {
3962         macro_rules! tfn(
3963                 ($path:expr, $file:expr, $expected:expr) => ( {
3964                 let mut p = PathBuf::from($path);
3965                 p.set_file_name($file);
3966                 assert!(p.to_str() == Some($expected),
3967                         "setting file name of {:?} to {:?}: Expected {:?}, got {:?}",
3968                         $path, $file, $expected,
3969                         p.to_str().unwrap());
3970             });
3971         );
3972
3973         tfn!("foo", "foo", "foo");
3974         tfn!("foo", "bar", "bar");
3975         tfn!("foo", "", "");
3976         tfn!("", "foo", "foo");
3977         if cfg!(unix) || cfg!(all(target_env = "sgx", target_vendor = "fortanix")) {
3978             tfn!(".", "foo", "./foo");
3979             tfn!("foo/", "bar", "bar");
3980             tfn!("foo/.", "bar", "bar");
3981             tfn!("..", "foo", "../foo");
3982             tfn!("foo/..", "bar", "foo/../bar");
3983             tfn!("/", "foo", "/foo");
3984         } else {
3985             tfn!(".", "foo", r".\foo");
3986             tfn!(r"foo\", "bar", r"bar");
3987             tfn!(r"foo\.", "bar", r"bar");
3988             tfn!("..", "foo", r"..\foo");
3989             tfn!(r"foo\..", "bar", r"foo\..\bar");
3990             tfn!(r"\", "foo", r"\foo");
3991         }
3992     }
3993
3994     #[test]
3995     pub fn test_set_extension() {
3996         macro_rules! tfe(
3997                 ($path:expr, $ext:expr, $expected:expr, $output:expr) => ( {
3998                 let mut p = PathBuf::from($path);
3999                 let output = p.set_extension($ext);
4000                 assert!(p.to_str() == Some($expected) && output == $output,
4001                         "setting extension of {:?} to {:?}: Expected {:?}/{:?}, got {:?}/{:?}",
4002                         $path, $ext, $expected, $output,
4003                         p.to_str().unwrap(), output);
4004             });
4005         );
4006
4007         tfe!("foo", "txt", "foo.txt", true);
4008         tfe!("foo.bar", "txt", "foo.txt", true);
4009         tfe!("foo.bar.baz", "txt", "foo.bar.txt", true);
4010         tfe!(".test", "txt", ".test.txt", true);
4011         tfe!("foo.txt", "", "foo", true);
4012         tfe!("foo", "", "foo", true);
4013         tfe!("", "foo", "", false);
4014         tfe!(".", "foo", ".", false);
4015         tfe!("foo/", "bar", "foo.bar", true);
4016         tfe!("foo/.", "bar", "foo.bar", true);
4017         tfe!("..", "foo", "..", false);
4018         tfe!("foo/..", "bar", "foo/..", false);
4019         tfe!("/", "foo", "/", false);
4020     }
4021
4022     #[test]
4023     fn test_eq_receivers() {
4024         use crate::borrow::Cow;
4025
4026         let borrowed: &Path = Path::new("foo/bar");
4027         let mut owned: PathBuf = PathBuf::new();
4028         owned.push("foo");
4029         owned.push("bar");
4030         let borrowed_cow: Cow<'_, Path> = borrowed.into();
4031         let owned_cow: Cow<'_, Path> = owned.clone().into();
4032
4033         macro_rules! t {
4034             ($($current:expr),+) => {
4035                 $(
4036                     assert_eq!($current, borrowed);
4037                     assert_eq!($current, owned);
4038                     assert_eq!($current, borrowed_cow);
4039                     assert_eq!($current, owned_cow);
4040                 )+
4041             }
4042         }
4043
4044         t!(borrowed, owned, borrowed_cow, owned_cow);
4045     }
4046
4047     #[test]
4048     pub fn test_compare() {
4049         use crate::hash::{Hash, Hasher};
4050         use crate::collections::hash_map::DefaultHasher;
4051
4052         fn hash<T: Hash>(t: T) -> u64 {
4053             let mut s = DefaultHasher::new();
4054             t.hash(&mut s);
4055             s.finish()
4056         }
4057
4058         macro_rules! tc(
4059             ($path1:expr, $path2:expr, eq: $eq:expr,
4060              starts_with: $starts_with:expr, ends_with: $ends_with:expr,
4061              relative_from: $relative_from:expr) => ({
4062                  let path1 = Path::new($path1);
4063                  let path2 = Path::new($path2);
4064
4065                  let eq = path1 == path2;
4066                  assert!(eq == $eq, "{:?} == {:?}, expected {:?}, got {:?}",
4067                          $path1, $path2, $eq, eq);
4068                  assert!($eq == (hash(path1) == hash(path2)),
4069                          "{:?} == {:?}, expected {:?}, got {} and {}",
4070                          $path1, $path2, $eq, hash(path1), hash(path2));
4071
4072                  let starts_with = path1.starts_with(path2);
4073                  assert!(starts_with == $starts_with,
4074                          "{:?}.starts_with({:?}), expected {:?}, got {:?}", $path1, $path2,
4075                          $starts_with, starts_with);
4076
4077                  let ends_with = path1.ends_with(path2);
4078                  assert!(ends_with == $ends_with,
4079                          "{:?}.ends_with({:?}), expected {:?}, got {:?}", $path1, $path2,
4080                          $ends_with, ends_with);
4081
4082                  let relative_from = path1.strip_prefix(path2)
4083                                           .map(|p| p.to_str().unwrap())
4084                                           .ok();
4085                  let exp: Option<&str> = $relative_from;
4086                  assert!(relative_from == exp,
4087                          "{:?}.strip_prefix({:?}), expected {:?}, got {:?}",
4088                          $path1, $path2, exp, relative_from);
4089             });
4090         );
4091
4092         tc!("", "",
4093             eq: true,
4094             starts_with: true,
4095             ends_with: true,
4096             relative_from: Some("")
4097             );
4098
4099         tc!("foo", "",
4100             eq: false,
4101             starts_with: true,
4102             ends_with: true,
4103             relative_from: Some("foo")
4104             );
4105
4106         tc!("", "foo",
4107             eq: false,
4108             starts_with: false,
4109             ends_with: false,
4110             relative_from: None
4111             );
4112
4113         tc!("foo", "foo",
4114             eq: true,
4115             starts_with: true,
4116             ends_with: true,
4117             relative_from: Some("")
4118             );
4119
4120         tc!("foo/", "foo",
4121             eq: true,
4122             starts_with: true,
4123             ends_with: true,
4124             relative_from: Some("")
4125             );
4126
4127         tc!("foo/bar", "foo",
4128             eq: false,
4129             starts_with: true,
4130             ends_with: false,
4131             relative_from: Some("bar")
4132             );
4133
4134         tc!("foo/bar/baz", "foo/bar",
4135             eq: false,
4136             starts_with: true,
4137             ends_with: false,
4138             relative_from: Some("baz")
4139             );
4140
4141         tc!("foo/bar", "foo/bar/baz",
4142             eq: false,
4143             starts_with: false,
4144             ends_with: false,
4145             relative_from: None
4146             );
4147
4148         tc!("./foo/bar/", ".",
4149             eq: false,
4150             starts_with: true,
4151             ends_with: false,
4152             relative_from: Some("foo/bar")
4153             );
4154
4155         if cfg!(windows) {
4156             tc!(r"C:\src\rust\cargo-test\test\Cargo.toml",
4157                 r"c:\src\rust\cargo-test\test",
4158                 eq: false,
4159                 starts_with: true,
4160                 ends_with: false,
4161                 relative_from: Some("Cargo.toml")
4162                 );
4163
4164             tc!(r"c:\foo", r"C:\foo",
4165                 eq: true,
4166                 starts_with: true,
4167                 ends_with: true,
4168                 relative_from: Some("")
4169                 );
4170         }
4171     }
4172
4173     #[test]
4174     fn test_components_debug() {
4175         let path = Path::new("/tmp");
4176
4177         let mut components = path.components();
4178
4179         let expected = "Components([RootDir, Normal(\"tmp\")])";
4180         let actual = format!("{:?}", components);
4181         assert_eq!(expected, actual);
4182
4183         let _ = components.next().unwrap();
4184         let expected = "Components([Normal(\"tmp\")])";
4185         let actual = format!("{:?}", components);
4186         assert_eq!(expected, actual);
4187
4188         let _ = components.next().unwrap();
4189         let expected = "Components([])";
4190         let actual = format!("{:?}", components);
4191         assert_eq!(expected, actual);
4192     }
4193
4194     #[cfg(unix)]
4195     #[test]
4196     fn test_iter_debug() {
4197         let path = Path::new("/tmp");
4198
4199         let mut iter = path.iter();
4200
4201         let expected = "Iter([\"/\", \"tmp\"])";
4202         let actual = format!("{:?}", iter);
4203         assert_eq!(expected, actual);
4204
4205         let _ = iter.next().unwrap();
4206         let expected = "Iter([\"tmp\"])";
4207         let actual = format!("{:?}", iter);
4208         assert_eq!(expected, actual);
4209
4210         let _ = iter.next().unwrap();
4211         let expected = "Iter([])";
4212         let actual = format!("{:?}", iter);
4213         assert_eq!(expected, actual);
4214     }
4215
4216     #[test]
4217     fn into_boxed() {
4218         let orig: &str = "some/sort/of/path";
4219         let path = Path::new(orig);
4220         let boxed: Box<Path> = Box::from(path);
4221         let path_buf = path.to_owned().into_boxed_path().into_path_buf();
4222         assert_eq!(path, &*boxed);
4223         assert_eq!(&*boxed, &*path_buf);
4224         assert_eq!(&*path_buf, path);
4225     }
4226
4227     #[test]
4228     fn test_clone_into() {
4229         let mut path_buf = PathBuf::from("supercalifragilisticexpialidocious");
4230         let path = Path::new("short");
4231         path.clone_into(&mut path_buf);
4232         assert_eq!(path, path_buf);
4233         assert!(path_buf.into_os_string().capacity() >= 15);
4234     }
4235
4236     #[test]
4237     fn display_format_flags() {
4238         assert_eq!(format!("a{:#<5}b", Path::new("").display()), "a#####b");
4239         assert_eq!(format!("a{:#<5}b", Path::new("a").display()), "aa####b");
4240     }
4241
4242     #[test]
4243     fn into_rc() {
4244         let orig = "hello/world";
4245         let path = Path::new(orig);
4246         let rc: Rc<Path> = Rc::from(path);
4247         let arc: Arc<Path> = Arc::from(path);
4248
4249         assert_eq!(&*rc, path);
4250         assert_eq!(&*arc, path);
4251
4252         let rc2: Rc<Path> = Rc::from(path.to_owned());
4253         let arc2: Arc<Path> = Arc::from(path.to_owned());
4254
4255         assert_eq!(&*rc2, path);
4256         assert_eq!(&*arc2, path);
4257     }
4258 }