1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149
use crate::{
Encoding, Path, StripPrefixError, Utf8Ancestors, Utf8Component, Utf8Components, Utf8Encoding,
Utf8Iter, Utf8PathBuf,
};
use std::{
borrow::{Cow, ToOwned},
cmp, fmt,
hash::{Hash, Hasher},
marker::PhantomData,
rc::Rc,
str::Utf8Error,
sync::Arc,
};
/// A slice of a path (akin to [`str`]).
///
/// This type supports a number of operations for inspecting a path, including
/// breaking the path into its components (separated by `/` on Unix and by either
/// `/` or `\` on Windows), extracting the file name, determining whether the path
/// is absolute, and so on.
///
/// This is an *unsized* type, meaning that it must always be used behind a
/// pointer like `&` or [`Box`]. For an owned version of this type,
/// see [`Utf8PathBuf`].
///
/// # Examples
///
/// ```
/// use typed_path::{Utf8Path, Utf8UnixEncoding};
///
/// // NOTE: A path cannot be created on its own without a defined encoding,
/// // but all encodings work on all operating systems, providing the
/// // ability to parse and operate on paths independently of the
/// // compiled platform
/// let path = Utf8Path::<Utf8UnixEncoding>::new("./foo/bar.txt");
///
/// let parent = path.parent();
/// assert_eq!(parent, Some(Utf8Path::new("./foo")));
///
/// let file_stem = path.file_stem();
/// assert_eq!(file_stem, Some("bar"));
///
/// let extension = path.extension();
/// assert_eq!(extension, Some("txt"));
/// ```
///
/// In addition to explicitly using [`Utf8Encoding`]s, you can also
/// leverage aliases available from the crate to work with paths:
///
/// ```
/// use typed_path::{Utf8UnixPath, Utf8WindowsPath};
///
/// // Same as Utf8Path<Utf8UnixEncoding>
/// let path = Utf8UnixPath::new("/foo/bar.txt");
///
/// // Same as Utf8Path<Utf8WindowsEncoding>
/// let path = Utf8WindowsPath::new(r"C:\foo\bar.txt");
/// ```
///
/// To mirror the design of Rust's standard library, you can access
/// the path associated with the compiled rust platform using [`Utf8NativePath`],
/// which itself is an alias to one of the other choices:
///
/// ```
/// use typed_path::Utf8NativePath;
///
/// // On Unix, this would be Utf8UnixPath aka Utf8Path<Utf8UnixEncoding>
/// // On Windows, this would be Utf8WindowsPath aka Utf8Path<Utf8WindowsEncoding>
/// let path = Utf8NativePath::new("/foo/bar.txt");
/// ```
///
/// [`Utf8NativePath`]: crate::Utf8NativePath
#[repr(transparent)]
pub struct Utf8Path<T>
where
T: for<'enc> Utf8Encoding<'enc>,
{
/// Encoding associated with path buf
_encoding: PhantomData<T>,
/// Path as an unparsed str slice
pub(crate) inner: str,
}
impl<T> Utf8Path<T>
where
T: for<'enc> Utf8Encoding<'enc>,
{
/// Directly wraps a str slice as a `Utf8Path` slice.
///
/// This is a cost-free conversion.
///
/// # Examples
///
/// ```
/// use typed_path::{Utf8Path, Utf8UnixEncoding};
///
/// // NOTE: A path cannot be created on its own without a defined encoding
/// Utf8Path::<Utf8UnixEncoding>::new("foo.txt");
/// ```
///
/// You can create `Utf8Path`s from `String`s, or even other `Utf8Path`s:
///
/// ```
/// use typed_path::{Utf8Path, Utf8UnixEncoding};
///
/// // NOTE: A path cannot be created on its own without a defined encoding
/// let string = String::from("foo.txt");
/// let from_string = Utf8Path::<Utf8UnixEncoding>::new(&string);
/// let from_path = Utf8Path::new(&from_string);
/// assert_eq!(from_string, from_path);
/// ```
///
/// There are also handy aliases to the `Utf8Path` with [`Utf8Encoding`]:
///
/// ```
/// use typed_path::Utf8UnixPath;
///
/// let string = String::from("foo.txt");
/// let from_string = Utf8UnixPath::new(&string);
/// let from_path = Utf8UnixPath::new(&from_string);
/// assert_eq!(from_string, from_path);
/// ```
#[inline]
pub fn new<S: AsRef<str> + ?Sized>(s: &S) -> &Self {
unsafe { &*(s.as_ref() as *const str as *const Self) }
}
/// Yields the underlying [`str`] slice.
///
/// # Examples
///
/// ```
/// use typed_path::{Utf8Path, Utf8UnixEncoding};
///
/// // NOTE: A path cannot be created on its own without a defined encoding
/// let s = Utf8Path::<Utf8UnixEncoding>::new("foo.txt").as_str();
/// assert_eq!(s, "foo.txt");
/// ```
pub fn as_str(&self) -> &str {
&self.inner
}
/// Converts a `Utf8Path` to an owned [`Utf8PathBuf`].
///
/// # Examples
///
/// ```
/// use typed_path::{Utf8Path, Utf8PathBuf, Utf8UnixEncoding};
///
/// // NOTE: A path cannot be created on its own without a defined encoding
/// let path_buf = Utf8Path::<Utf8UnixEncoding>::new("foo.txt").to_path_buf();
/// assert_eq!(path_buf, Utf8PathBuf::from("foo.txt"));
/// ```
pub fn to_path_buf(&self) -> Utf8PathBuf<T> {
Utf8PathBuf {
_encoding: PhantomData,
inner: self.inner.to_owned(),
}
}
/// Returns `true` if the `Utf8Path` is absolute, i.e., if it is independent of
/// the current directory.
///
/// * On Unix ([`Utf8UnixPath`]]), a path is absolute if it starts with the root, so
/// `is_absolute` and [`has_root`] are equivalent.
///
/// * On Windows ([`Utf8WindowsPath`]), a path is absolute if it has a prefix and starts with
/// the root: `c:\windows` is absolute, while `c:temp` and `\temp` are not.
///
/// [`Utf8UnixPath`]: crate::Utf8UnixPath
/// [`Utf8WindowsPath`]: crate::Utf8WindowsPath
///
/// # Examples
///
/// ```
/// use typed_path::{Utf8Path, Utf8UnixEncoding};
///
/// // NOTE: A path cannot be created on its own without a defined encoding
/// assert!(!Utf8Path::<Utf8UnixEncoding>::new("foo.txt").is_absolute());
/// ```
///
/// [`has_root`]: Utf8Path::has_root
pub fn is_absolute(&self) -> bool {
self.components().is_absolute()
}
/// Returns `true` if the `Utf8Path` is relative, i.e., not absolute.
///
/// See [`is_absolute`]'s documentation for more details.
///
/// # Examples
///
/// ```
/// use typed_path::{Utf8Path, Utf8UnixEncoding};
///
/// // NOTE: A path cannot be created on its own without a defined encoding
/// assert!(Utf8Path::<Utf8UnixEncoding>::new("foo.txt").is_relative());
/// ```
///
/// [`is_absolute`]: Utf8Path::is_absolute
#[inline]
pub fn is_relative(&self) -> bool {
!self.is_absolute()
}
/// Returns `true` if the `Utf8Path` has a root.
///
/// * On Unix ([`Utf8UnixPath`]), a path has a root if it begins with `/`.
///
/// * On Windows ([`Utf8WindowsPath`]), a path has a root if it:
/// * has no prefix and begins with a separator, e.g., `\windows`
/// * has a prefix followed by a separator, e.g., `c:\windows` but not `c:windows`
/// * has any non-disk prefix, e.g., `\\server\share`
///
/// [`Utf8UnixPath`]: crate::Utf8UnixPath
/// [`Utf8WindowsPath`]: crate::Utf8WindowsPath
///
/// # Examples
///
/// ```
/// use typed_path::{Utf8Path, Utf8UnixEncoding};
///
/// // NOTE: A path cannot be created on its own without a defined encoding
/// assert!(Utf8Path::<Utf8UnixEncoding>::new("/etc/passwd").has_root());
/// ```
#[inline]
pub fn has_root(&self) -> bool {
self.components().has_root()
}
/// Returns the `Utf8Path` without its final component, if there is one.
///
/// Returns [`None`] if the path terminates in a root or prefix.
///
/// # Examples
///
/// ```
/// use typed_path::{Utf8Path, Utf8UnixEncoding};
///
/// // NOTE: A path cannot be created on its own without a defined encoding
/// let path = Utf8Path::<Utf8UnixEncoding>::new("/foo/bar");
/// let parent = path.parent().unwrap();
/// assert_eq!(parent, Utf8Path::new("/foo"));
///
/// let grand_parent = parent.parent().unwrap();
/// assert_eq!(grand_parent, Utf8Path::new("/"));
/// assert_eq!(grand_parent.parent(), None);
/// ```
pub fn parent(&self) -> Option<&Self> {
let mut comps = self.components();
let comp = comps.next_back();
comp.and_then(|p| {
if !p.is_root() {
Some(Self::new(comps.as_str()))
} else {
None
}
})
}
/// Produces an iterator over `Utf8Path` and its ancestors.
///
/// The iterator will yield the `Utf8Path` that is returned if the [`parent`] method is used zero
/// or more times. That means, the iterator will yield `&self`, `&self.parent().unwrap()`,
/// `&self.parent().unwrap().parent().unwrap()` and so on. If the [`parent`] method returns
/// [`None`], the iterator will do likewise. The iterator will always yield at least one value,
/// namely `&self`.
///
/// # Examples
///
/// ```
/// use typed_path::{Utf8Path, Utf8UnixEncoding};
///
/// // NOTE: A path cannot be created on its own without a defined encoding
/// let mut ancestors = Utf8Path::<Utf8UnixEncoding>::new("/foo/bar").ancestors();
/// assert_eq!(ancestors.next(), Some(Utf8Path::new("/foo/bar")));
/// assert_eq!(ancestors.next(), Some(Utf8Path::new("/foo")));
/// assert_eq!(ancestors.next(), Some(Utf8Path::new("/")));
/// assert_eq!(ancestors.next(), None);
///
/// // NOTE: A path cannot be created on its own without a defined encoding
/// let mut ancestors = Utf8Path::<Utf8UnixEncoding>::new("../foo/bar").ancestors();
/// assert_eq!(ancestors.next(), Some(Utf8Path::new("../foo/bar")));
/// assert_eq!(ancestors.next(), Some(Utf8Path::new("../foo")));
/// assert_eq!(ancestors.next(), Some(Utf8Path::new("..")));
/// assert_eq!(ancestors.next(), Some(Utf8Path::new("")));
/// assert_eq!(ancestors.next(), None);
/// ```
///
/// [`parent`]: Utf8Path::parent
#[inline]
pub fn ancestors(&self) -> Utf8Ancestors<T> {
Utf8Ancestors { next: Some(self) }
}
/// Returns the final component of the `Utf8Path`, if there is one.
///
/// If the path is a normal file, this is the file name. If it's the path of a directory, this
/// is the directory name.
///
/// Returns [`None`] if the path terminates in `..`.
///
/// # Examples
///
/// ```
/// use typed_path::{Utf8Path, Utf8UnixEncoding};
///
/// // NOTE: A path cannot be created on its own without a defined encoding
/// assert_eq!(Some("bin"), Utf8Path::<Utf8UnixEncoding>::new("/usr/bin/").file_name());
/// assert_eq!(Some("foo.txt"), Utf8Path::<Utf8UnixEncoding>::new("tmp/foo.txt").file_name());
/// assert_eq!(Some("foo.txt"), Utf8Path::<Utf8UnixEncoding>::new("foo.txt/.").file_name());
/// assert_eq!(Some("foo.txt"), Utf8Path::<Utf8UnixEncoding>::new("foo.txt/.//").file_name());
/// assert_eq!(None, Utf8Path::<Utf8UnixEncoding>::new("foo.txt/..").file_name());
/// assert_eq!(None, Utf8Path::<Utf8UnixEncoding>::new("/").file_name());
/// ```
pub fn file_name(&self) -> Option<&str> {
match self.components().next_back() {
Some(p) => {
if p.is_normal() {
Some(p.as_str())
} else {
None
}
}
None => None,
}
}
/// Returns a path that, when joined onto `base`, yields `self`.
///
/// # Errors
///
/// If `base` is not a prefix of `self` (i.e., [`starts_with`]
/// returns `false`), returns [`Err`].
///
/// [`starts_with`]: Utf8Path::starts_with
///
/// # Examples
///
/// ```
/// use typed_path::{Utf8Path, Utf8PathBuf, Utf8UnixEncoding};
///
/// // NOTE: A path cannot be created on its own without a defined encoding
/// let path = Utf8Path::<Utf8UnixEncoding>::new("/test/haha/foo.txt");
///
/// assert_eq!(path.strip_prefix("/"), Ok(Utf8Path::new("test/haha/foo.txt")));
/// assert_eq!(path.strip_prefix("/test"), Ok(Utf8Path::new("haha/foo.txt")));
/// assert_eq!(path.strip_prefix("/test/"), Ok(Utf8Path::new("haha/foo.txt")));
/// assert_eq!(path.strip_prefix("/test/haha/foo.txt"), Ok(Utf8Path::new("")));
/// assert_eq!(path.strip_prefix("/test/haha/foo.txt/"), Ok(Utf8Path::new("")));
///
/// assert!(path.strip_prefix("test").is_err());
/// assert!(path.strip_prefix("/haha").is_err());
///
/// let prefix = Utf8PathBuf::<Utf8UnixEncoding>::from("/test/");
/// assert_eq!(path.strip_prefix(prefix), Ok(Utf8Path::new("haha/foo.txt")));
/// ```
pub fn strip_prefix<P>(&self, base: P) -> Result<&Utf8Path<T>, StripPrefixError>
where
P: AsRef<Utf8Path<T>>,
{
self._strip_prefix(base.as_ref())
}
fn _strip_prefix(&self, base: &Utf8Path<T>) -> Result<&Utf8Path<T>, StripPrefixError> {
match helpers::iter_after(self.components(), base.components()) {
Some(c) => Ok(Utf8Path::new(c.as_str())),
None => Err(StripPrefixError(())),
}
}
/// Determines whether `base` is a prefix of `self`.
///
/// Only considers whole path components to match.
///
/// # Examples
///
/// ```
/// use typed_path::{Utf8Path, Utf8UnixEncoding};
///
/// // NOTE: A path cannot be created on its own without a defined encoding
/// let path = Utf8Path::<Utf8UnixEncoding>::new("/etc/passwd");
///
/// assert!(path.starts_with("/etc"));
/// assert!(path.starts_with("/etc/"));
/// assert!(path.starts_with("/etc/passwd"));
/// assert!(path.starts_with("/etc/passwd/")); // extra slash is okay
/// assert!(path.starts_with("/etc/passwd///")); // multiple extra slashes are okay
///
/// assert!(!path.starts_with("/e"));
/// assert!(!path.starts_with("/etc/passwd.txt"));
///
/// assert!(!Utf8Path::<Utf8UnixEncoding>::new("/etc/foo.rs").starts_with("/etc/foo"));
/// ```
pub fn starts_with<P>(&self, base: P) -> bool
where
P: AsRef<Utf8Path<T>>,
{
self._starts_with(base.as_ref())
}
fn _starts_with(&self, base: &Utf8Path<T>) -> bool {
helpers::iter_after(self.components(), base.components()).is_some()
}
/// Determines whether `child` is a suffix of `self`.
///
/// Only considers whole path components to match.
///
/// # Examples
///
/// ```
/// use typed_path::{Utf8Path, Utf8UnixEncoding};
///
/// // NOTE: A path cannot be created on its own without a defined encoding
/// let path = Utf8Path::<Utf8UnixEncoding>::new("/etc/resolv.conf");
///
/// assert!(path.ends_with("resolv.conf"));
/// assert!(path.ends_with("etc/resolv.conf"));
/// assert!(path.ends_with("/etc/resolv.conf"));
///
/// assert!(!path.ends_with("/resolv.conf"));
/// assert!(!path.ends_with("conf")); // use .extension() instead
/// ```
pub fn ends_with<P>(&self, child: P) -> bool
where
P: AsRef<Utf8Path<T>>,
{
self._ends_with(child.as_ref())
}
fn _ends_with(&self, child: &Utf8Path<T>) -> bool {
helpers::iter_after(self.components().rev(), child.components().rev()).is_some()
}
/// Extracts the stem (non-extension) portion of [`self.file_name`].
///
/// [`self.file_name`]: Utf8Path::file_name
///
/// The stem is:
///
/// * [`None`], if there is no file name;
/// * The entire file name if there is no embedded `.`;
/// * The entire file name if the file name begins with `.` and has no other `.`s within;
/// * Otherwise, the portion of the file name before the final `.`
///
/// # Examples
///
/// ```
/// use typed_path::{Utf8Path, Utf8UnixEncoding};
///
/// // NOTE: A path cannot be created on its own without a defined encoding
/// assert_eq!("foo", Utf8Path::<Utf8UnixEncoding>::new("foo.rs").file_stem().unwrap());
/// assert_eq!("foo.tar", Utf8Path::<Utf8UnixEncoding>::new("foo.tar.gz").file_stem().unwrap());
/// ```
///
pub fn file_stem(&self) -> Option<&str> {
self.file_name()
.map(helpers::rsplit_file_at_dot)
.and_then(|(before, after)| before.or(after))
}
/// Extracts the extension of [`self.file_name`], if possible.
///
/// The extension is:
///
/// * [`None`], if there is no file name;
/// * [`None`], if there is no embedded `.`;
/// * [`None`], if the file name begins with `.` and has no other `.`s within;
/// * Otherwise, the portion of the file name after the final `.`
///
/// [`self.file_name`]: Utf8Path::file_name
///
/// # Examples
///
/// ```
/// use typed_path::{Utf8Path, Utf8UnixEncoding};
///
/// // NOTE: A path cannot be created on its own without a defined encoding
/// assert_eq!("rs", Utf8Path::<Utf8UnixEncoding>::new("foo.rs").extension().unwrap());
/// assert_eq!("gz", Utf8Path::<Utf8UnixEncoding>::new("foo.tar.gz").extension().unwrap());
/// ```
pub fn extension(&self) -> Option<&str> {
self.file_name()
.map(helpers::rsplit_file_at_dot)
.and_then(|(before, after)| before.and(after))
}
/// Creates an owned [`Utf8PathBuf`] with `path` adjoined to `self`.
///
/// See [`Utf8PathBuf::push`] for more details on what it means to adjoin a path.
///
/// # Examples
///
/// ```
/// use typed_path::{Utf8Path, Utf8PathBuf, Utf8UnixEncoding};
///
/// // NOTE: A path cannot be created on its own without a defined encoding
/// assert_eq!(
/// Utf8Path::<Utf8UnixEncoding>::new("/etc").join("passwd"),
/// Utf8PathBuf::from("/etc/passwd"),
/// );
/// ```
pub fn join<P: AsRef<Utf8Path<T>>>(&self, path: P) -> Utf8PathBuf<T> {
self._join(path.as_ref())
}
fn _join(&self, path: &Utf8Path<T>) -> Utf8PathBuf<T> {
let mut buf = self.to_path_buf();
buf.push(path);
buf
}
/// Creates an owned [`Utf8PathBuf`] like `self` but with the given file name.
///
/// See [`Utf8PathBuf::set_file_name`] for more details.
///
/// # Examples
///
/// ```
/// use typed_path::{Utf8Path, Utf8PathBuf, Utf8UnixEncoding};
///
/// // NOTE: A path cannot be created on its own without a defined encoding
/// let path = Utf8Path::<Utf8UnixEncoding>::new("/tmp/foo.txt");
/// assert_eq!(path.with_file_name("bar.txt"), Utf8PathBuf::from("/tmp/bar.txt"));
///
/// // NOTE: A path cannot be created on its own without a defined encoding
/// let path = Utf8Path::<Utf8UnixEncoding>::new("/tmp");
/// assert_eq!(path.with_file_name("var"), Utf8PathBuf::from("/var"));
/// ```
pub fn with_file_name<S: AsRef<str>>(&self, file_name: S) -> Utf8PathBuf<T> {
self._with_file_name(file_name.as_ref())
}
fn _with_file_name(&self, file_name: &str) -> Utf8PathBuf<T> {
let mut buf = self.to_path_buf();
buf.set_file_name(file_name);
buf
}
/// Creates an owned [`Utf8PathBuf`] like `self` but with the given extension.
///
/// See [`Utf8PathBuf::set_extension`] for more details.
///
/// # Examples
///
/// ```
/// use typed_path::{Utf8Path, Utf8PathBuf, Utf8UnixEncoding};
///
/// // NOTE: A path cannot be created on its own without a defined encoding
/// let path = Utf8Path::<Utf8UnixEncoding>::new("foo.rs");
/// assert_eq!(path.with_extension("txt"), Utf8PathBuf::from("foo.txt"));
///
/// // NOTE: A path cannot be created on its own without a defined encoding
/// let path = Utf8Path::<Utf8UnixEncoding>::new("foo.tar.gz");
/// assert_eq!(path.with_extension(""), Utf8PathBuf::from("foo.tar"));
/// assert_eq!(path.with_extension("xz"), Utf8PathBuf::from("foo.tar.xz"));
/// assert_eq!(path.with_extension("").with_extension("txt"), Utf8PathBuf::from("foo.txt"));
/// ```
pub fn with_extension<S: AsRef<str>>(&self, extension: S) -> Utf8PathBuf<T> {
self._with_extension(extension.as_ref())
}
fn _with_extension(&self, extension: &str) -> Utf8PathBuf<T> {
let mut buf = self.to_path_buf();
buf.set_extension(extension);
buf
}
/// Produces an iterator over the [`Utf8Component`]s of the path.
///
/// When parsing the path, there is a small amount of normalization:
///
/// * Repeated separators are ignored, so `a/b` and `a//b` both have
/// `a` and `b` as components.
///
/// * Occurrences of `.` are normalized away, except if they are at the
/// beginning of the path. For example, `a/./b`, `a/b/`, `a/b/.` and
/// `a/b` all have `a` and `b` as components, but `./a/b` starts with
/// an additional [`CurDir`] component.
///
/// * A trailing slash is normalized away, `/a/b` and `/a/b/` are equivalent.
///
/// Note that no other normalization takes place; in particular, `a/c`
/// and `a/b/../c` are distinct, to account for the possibility that `b`
/// is a symbolic link (so its parent isn't `a`).
///
/// # Examples
///
/// ```
/// use typed_path::{Utf8Path, Utf8UnixEncoding, unix::Utf8UnixComponent};
///
/// // NOTE: A path cannot be created on its own without a defined encoding
/// let mut components = Utf8Path::<Utf8UnixEncoding>::new("/tmp/foo.txt").components();
///
/// assert_eq!(components.next(), Some(Utf8UnixComponent::RootDir));
/// assert_eq!(components.next(), Some(Utf8UnixComponent::Normal("tmp")));
/// assert_eq!(components.next(), Some(Utf8UnixComponent::Normal("foo.txt")));
/// assert_eq!(components.next(), None)
/// ```
///
/// [`CurDir`]: crate::unix::UnixComponent::CurDir
pub fn components(&self) -> <T as Utf8Encoding<'_>>::Components {
T::components(&self.inner)
}
/// Produces an iterator over the path's components viewed as [`str`] slices.
///
/// For more information about the particulars of how the path is separated
/// into components, see [`components`].
///
/// [`components`]: Utf8Path::components
///
/// # Examples
///
/// ```
/// use typed_path::{Utf8Path, Utf8UnixEncoding};
///
/// // NOTE: A path cannot be created on its own without a defined encoding
/// let mut it = Utf8Path::<Utf8UnixEncoding>::new("/tmp/foo.txt").iter();
///
/// assert_eq!(it.next(), Some(typed_path::unix::SEPARATOR_STR));
/// assert_eq!(it.next(), Some("tmp"));
/// assert_eq!(it.next(), Some("foo.txt"));
/// assert_eq!(it.next(), None)
/// ```
#[inline]
pub fn iter(&self) -> Utf8Iter<T> {
Utf8Iter::new(self.components())
}
/// Converts a [`Box<Utf8Path>`](Box) into a
/// [`Utf8PathBuf`] without copying or allocating.
pub fn into_path_buf(self: Box<Utf8Path<T>>) -> Utf8PathBuf<T> {
let rw = Box::into_raw(self) as *mut str;
let inner = unsafe { Box::from_raw(rw) };
Utf8PathBuf {
_encoding: PhantomData,
inner: inner.into_string(),
}
}
/// Converts a non-UTF-8 [`Path`] to a UTF-8 [`Utf8PathBuf`] by checking that the path contains
/// valid UTF-8.
///
/// # Errors
///
/// Returns `Err` if the path is not UTF-8 with a description as to why the
/// provided component is not UTF-8.
///
/// # Examples
///
/// ```
/// use typed_path::{Path, Utf8Path, UnixEncoding, Utf8UnixEncoding};
///
/// let path = Path::<UnixEncoding>::new(&[0xf0, 0x9f, 0x92, 0x96]);
/// let utf8_path = Utf8Path::<Utf8UnixEncoding>::from_bytes_path(&path).unwrap();
/// assert_eq!(utf8_path.as_str(), "💖");
/// ```
pub fn from_bytes_path<U>(path: &Path<U>) -> Result<&Self, Utf8Error>
where
U: for<'enc> Encoding<'enc>,
{
Ok(Self::new(std::str::from_utf8(path.as_bytes())?))
}
/// Converts a non-UTF-8 [`Path`] to a UTF-8 [`Utf8Path`] without checking that the path
/// contains valid UTF-8.
///
/// See the safe version, [`from_bytes_path`], for more information.
///
/// [`from_bytes_path`]: Utf8Path::from_bytes_path
///
/// # Safety
///
/// The path passed in must be valid UTF-8.
///
/// # Examples
///
/// ```
/// use typed_path::{Path, Utf8Path, UnixEncoding, Utf8UnixEncoding};
///
/// let path = Path::<UnixEncoding>::new(&[0xf0, 0x9f, 0x92, 0x96]);
/// let utf8_path = unsafe {
/// Utf8Path::<Utf8UnixEncoding>::from_bytes_path_unchecked(&path)
/// };
/// assert_eq!(utf8_path.as_str(), "💖");
/// ```
pub unsafe fn from_bytes_path_unchecked<U>(path: &Path<U>) -> &Self
where
U: for<'enc> Encoding<'enc>,
{
Self::new(std::str::from_utf8_unchecked(path.as_bytes()))
}
/// Converts a UTF-8 [`Utf8Path`] to a non-UTF-8 [`Path`].
///
/// # Examples
///
/// ```
/// use typed_path::{Path, Utf8Path, UnixEncoding, Utf8UnixEncoding};
///
/// let utf8_path = Utf8Path::<Utf8UnixEncoding>::new("💖");
/// let path = utf8_path.as_bytes_path::<UnixEncoding>();
/// assert_eq!(path.as_bytes(), &[0xf0, 0x9f, 0x92, 0x96]);
/// ```
pub fn as_bytes_path<U>(&self) -> &Path<U>
where
U: for<'enc> Encoding<'enc>,
{
Path::new(self.as_str())
}
}
impl<T> AsRef<[u8]> for Utf8Path<T>
where
T: for<'enc> Utf8Encoding<'enc>,
{
#[inline]
fn as_ref(&self) -> &[u8] {
self.inner.as_bytes()
}
}
impl<T> AsRef<str> for Utf8Path<T>
where
T: for<'enc> Utf8Encoding<'enc>,
{
#[inline]
fn as_ref(&self) -> &str {
&self.inner
}
}
impl<T> AsRef<Utf8Path<T>> for Utf8Path<T>
where
T: for<'enc> Utf8Encoding<'enc>,
{
#[inline]
fn as_ref(&self) -> &Utf8Path<T> {
self
}
}
impl<T> AsRef<Utf8Path<T>> for str
where
T: for<'enc> Utf8Encoding<'enc>,
{
#[inline]
fn as_ref(&self) -> &Utf8Path<T> {
Utf8Path::new(self)
}
}
impl<T> AsRef<Utf8Path<T>> for Cow<'_, str>
where
T: for<'enc> Utf8Encoding<'enc>,
{
#[inline]
fn as_ref(&self) -> &Utf8Path<T> {
Utf8Path::new(self)
}
}
impl<T> AsRef<Utf8Path<T>> for String
where
T: for<'enc> Utf8Encoding<'enc>,
{
#[inline]
fn as_ref(&self) -> &Utf8Path<T> {
Utf8Path::new(self)
}
}
impl<T> fmt::Debug for Utf8Path<T>
where
T: for<'enc> Utf8Encoding<'enc>,
{
fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt::Debug::fmt(&self.inner, formatter)
}
}
impl<T> fmt::Display for Utf8Path<T>
where
T: for<'enc> Utf8Encoding<'enc>,
{
fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
fmt::Debug::fmt(&self.inner, formatter)
}
}
impl<T> cmp::PartialEq for Utf8Path<T>
where
T: for<'enc> Utf8Encoding<'enc>,
{
#[inline]
fn eq(&self, other: &Utf8Path<T>) -> bool {
self.components() == other.components()
}
}
impl<T> cmp::Eq for Utf8Path<T> where T: for<'enc> Utf8Encoding<'enc> {}
impl<T> Hash for Utf8Path<T>
where
T: for<'enc> Utf8Encoding<'enc>,
{
fn hash<H: Hasher>(&self, h: &mut H) {
T::hash(self.as_str(), h)
}
}
impl<T> cmp::PartialOrd for Utf8Path<T>
where
T: for<'enc> Utf8Encoding<'enc>,
{
#[inline]
fn partial_cmp(&self, other: &Utf8Path<T>) -> Option<cmp::Ordering> {
self.components().partial_cmp(other.components())
}
}
impl<T> cmp::Ord for Utf8Path<T>
where
T: for<'enc> Utf8Encoding<'enc>,
{
#[inline]
fn cmp(&self, other: &Utf8Path<T>) -> cmp::Ordering {
self.components().cmp(other.components())
}
}
impl<T> From<&Utf8Path<T>> for Box<Utf8Path<T>>
where
T: for<'enc> Utf8Encoding<'enc>,
{
/// Creates a boxed [`Utf8Path`] from a reference.
///
/// This will allocate and clone `path` to it.
fn from(path: &Utf8Path<T>) -> Self {
let boxed: Box<str> = path.inner.into();
let rw = Box::into_raw(boxed) as *mut Utf8Path<T>;
unsafe { Box::from_raw(rw) }
}
}
impl<T> From<Cow<'_, Utf8Path<T>>> for Box<Utf8Path<T>>
where
T: for<'enc> Utf8Encoding<'enc>,
{
/// Creates a boxed [`Utf8Path`] from a clone-on-write pointer.
///
/// Converting from a `Cow::Owned` does not clone or allocate.
#[inline]
fn from(cow: Cow<'_, Utf8Path<T>>) -> Box<Utf8Path<T>> {
match cow {
Cow::Borrowed(path) => Box::from(path),
Cow::Owned(path) => Box::from(path),
}
}
}
impl<T> From<Utf8PathBuf<T>> for Box<Utf8Path<T>>
where
T: for<'enc> Utf8Encoding<'enc>,
{
/// Converts a [`Utf8PathBuf`] into a <code>[Box]<[Utf8Path]></code>.
///
/// This conversion currently should not allocate memory,
/// but this behavior is not guaranteed on all platforms or in all future versions.
#[inline]
fn from(p: Utf8PathBuf<T>) -> Box<Utf8Path<T>> {
p.into_boxed_path()
}
}
impl<'a, T> From<&'a Utf8Path<T>> for Cow<'a, Utf8Path<T>>
where
T: for<'enc> Utf8Encoding<'enc>,
{
/// Creates a clone-on-write pointer from a reference to
/// [`Utf8Path`].
///
/// This conversion does not clone or allocate.
#[inline]
fn from(s: &'a Utf8Path<T>) -> Self {
Cow::Borrowed(s)
}
}
impl<'a, T> From<Utf8PathBuf<T>> for Cow<'a, Utf8Path<T>>
where
T: for<'enc> Utf8Encoding<'enc>,
{
/// Creates a clone-on-write pointer from an owned
/// instance of [`Utf8PathBuf`].
///
/// This conversion does not clone or allocate.
#[inline]
fn from(s: Utf8PathBuf<T>) -> Self {
Cow::Owned(s)
}
}
impl<'a, T> From<&'a Utf8PathBuf<T>> for Cow<'a, Utf8Path<T>>
where
T: for<'enc> Utf8Encoding<'enc>,
{
/// Creates a clone-on-write pointer from a reference to
/// [`Utf8PathBuf`].
///
/// This conversion does not clone or allocate.
#[inline]
fn from(p: &'a Utf8PathBuf<T>) -> Self {
Cow::Borrowed(p.as_path())
}
}
impl<T> From<Utf8PathBuf<T>> for Arc<Utf8Path<T>>
where
T: for<'enc> Utf8Encoding<'enc>,
{
/// Converts a [`Utf8PathBuf`] into an <code>[Arc]<[Utf8Path]></code> by moving the [`Utf8PathBuf`] data
/// into a new [`Arc`] buffer.
#[inline]
fn from(path_buf: Utf8PathBuf<T>) -> Self {
let arc: Arc<str> = Arc::from(path_buf.into_string());
unsafe { Arc::from_raw(Arc::into_raw(arc) as *const Utf8Path<T>) }
}
}
impl<T> From<&Utf8Path<T>> for Arc<Utf8Path<T>>
where
T: for<'enc> Utf8Encoding<'enc>,
{
/// Converts a [`Utf8Path`] into an [`Arc`] by copying the [`Utf8Path`] data into a new [`Arc`] buffer.
#[inline]
fn from(path: &Utf8Path<T>) -> Self {
let arc: Arc<str> = Arc::from(path.as_str().to_string());
unsafe { Arc::from_raw(Arc::into_raw(arc) as *const Utf8Path<T>) }
}
}
impl<T> From<Utf8PathBuf<T>> for Rc<Utf8Path<T>>
where
T: for<'enc> Utf8Encoding<'enc>,
{
/// Converts a [`Utf8PathBuf`] into an <code>[Rc]<[Utf8Path]></code> by moving the [`Utf8PathBuf`] data into
/// a new [`Rc`] buffer.
#[inline]
fn from(path_buf: Utf8PathBuf<T>) -> Self {
let rc: Rc<str> = Rc::from(path_buf.into_string());
unsafe { Rc::from_raw(Rc::into_raw(rc) as *const Utf8Path<T>) }
}
}
impl<T> From<&Utf8Path<T>> for Rc<Utf8Path<T>>
where
T: for<'enc> Utf8Encoding<'enc>,
{
/// Converts a [`Utf8Path`] into an [`Rc`] by copying the [`Utf8Path`] data into a new [`Rc`] buffer.
#[inline]
fn from(path: &Utf8Path<T>) -> Self {
let rc: Rc<str> = Rc::from(path.as_str());
unsafe { Rc::from_raw(Rc::into_raw(rc) as *const Utf8Path<T>) }
}
}
impl<'a, T> IntoIterator for &'a Utf8Path<T>
where
T: for<'enc> Utf8Encoding<'enc>,
{
type Item = &'a str;
type IntoIter = Utf8Iter<'a, T>;
#[inline]
fn into_iter(self) -> Self::IntoIter {
self.iter()
}
}
impl<T> ToOwned for Utf8Path<T>
where
T: for<'enc> Utf8Encoding<'enc>,
{
type Owned = Utf8PathBuf<T>;
#[inline]
fn to_owned(&self) -> Self::Owned {
self.to_path_buf()
}
}
macro_rules! impl_cmp {
($($lt:lifetime),* ; $lhs:ty, $rhs: ty) => {
impl<$($lt,)* T> PartialEq<$rhs> for $lhs
where
T: for<'enc> Utf8Encoding<'enc>,
{
#[inline]
fn eq(&self, other: &$rhs) -> bool {
<Utf8Path<T> as PartialEq>::eq(self, other)
}
}
impl<$($lt,)* T> PartialEq<$lhs> for $rhs
where
T: for<'enc> Utf8Encoding<'enc>,
{
#[inline]
fn eq(&self, other: &$lhs) -> bool {
<Utf8Path<T> as PartialEq>::eq(self, other)
}
}
impl<$($lt,)* T> PartialOrd<$rhs> for $lhs
where
T: for<'enc> Utf8Encoding<'enc>,
{
#[inline]
fn partial_cmp(&self, other: &$rhs) -> Option<cmp::Ordering> {
<Utf8Path<T> as PartialOrd>::partial_cmp(self, other)
}
}
impl<$($lt,)* T> PartialOrd<$lhs> for $rhs
where
T: for<'enc> Utf8Encoding<'enc>,
{
#[inline]
fn partial_cmp(&self, other: &$lhs) -> Option<cmp::Ordering> {
<Utf8Path<T> as PartialOrd>::partial_cmp(self, other)
}
}
};
}
impl_cmp!(; Utf8PathBuf<T>, Utf8Path<T>);
impl_cmp!('a; Utf8PathBuf<T>, &'a Utf8Path<T>);
impl_cmp!('a; Cow<'a, Utf8Path<T>>, Utf8Path<T>);
impl_cmp!('a, 'b; Cow<'a, Utf8Path<T>>, &'b Utf8Path<T>);
impl_cmp!('a; Cow<'a, Utf8Path<T>>, Utf8PathBuf<T>);
macro_rules! impl_cmp_bytes {
($($lt:lifetime),* ; $lhs:ty, $rhs: ty) => {
impl<$($lt,)* T> PartialEq<$rhs> for $lhs
where
T: for<'enc> Utf8Encoding<'enc>,
{
#[inline]
fn eq(&self, other: &$rhs) -> bool {
<Utf8Path<T> as PartialEq>::eq(self, other.as_ref())
}
}
impl<$($lt,)* T> PartialEq<$lhs> for $rhs
where
T: for<'enc> Utf8Encoding<'enc>,
{
#[inline]
fn eq(&self, other: &$lhs) -> bool {
<Utf8Path<T> as PartialEq>::eq(self.as_ref(), other)
}
}
impl<$($lt,)* T> PartialOrd<$rhs> for $lhs
where
T: for<'enc> Utf8Encoding<'enc>,
{
#[inline]
fn partial_cmp(&self, other: &$rhs) -> Option<cmp::Ordering> {
<Utf8Path<T> as PartialOrd>::partial_cmp(self, other.as_ref())
}
}
impl<$($lt,)* T> PartialOrd<$lhs> for $rhs
where
T: for<'enc> Utf8Encoding<'enc>,
{
#[inline]
fn partial_cmp(&self, other: &$lhs) -> Option<cmp::Ordering> {
<Utf8Path<T> as PartialOrd>::partial_cmp(self.as_ref(), other)
}
}
};
}
impl_cmp_bytes!(; Utf8PathBuf<T>, str);
impl_cmp_bytes!('a; Utf8PathBuf<T>, &'a str);
impl_cmp_bytes!('a; Utf8PathBuf<T>, Cow<'a, str>);
impl_cmp_bytes!(; Utf8PathBuf<T>, String);
impl_cmp_bytes!(; Utf8Path<T>, str);
impl_cmp_bytes!('a; Utf8Path<T>, &'a str);
impl_cmp_bytes!('a; Utf8Path<T>, Cow<'a, str>);
impl_cmp_bytes!(; Utf8Path<T>, String);
impl_cmp_bytes!('a; &'a Utf8Path<T>, str);
impl_cmp_bytes!('a, 'b; &'a Utf8Path<T>, Cow<'b, str>);
impl_cmp_bytes!('a; &'a Utf8Path<T>, String);
mod helpers {
use super::*;
pub fn rsplit_file_at_dot(file: &str) -> (Option<&str>, Option<&str>) {
if file == ".." {
return (Some(file), None);
}
let mut iter = file.rsplitn(2, |b: char| b == '.');
let after = iter.next();
let before = iter.next();
if before == Some("") {
(Some(file), None)
} else {
(before, after)
}
}
// Iterate through `iter` while it matches `prefix`; return `None` if `prefix`
// is not a prefix of `iter`, otherwise return `Some(iter_after_prefix)` giving
// `iter` after having exhausted `prefix`.
pub fn iter_after<'a, 'b, T, U, I, J>(mut iter: I, mut prefix: J) -> Option<I>
where
T: Utf8Component<'a>,
U: Utf8Component<'b>,
I: Iterator<Item = T> + Clone,
J: Iterator<Item = U>,
{
loop {
let mut iter_next = iter.clone();
match (iter_next.next(), prefix.next()) {
// TODO: Because there is not a `Component` struct, there is no direct comparison
// between T and U since they aren't the same type due to different
// lifetimes. We get around this with an equality check by converting these
// components to bytes, which should work for the Unix and Windows component
// implementations, but is error-prone as any new implementation could
// deviate in a way that breaks this subtlely. Instead, need to figure out
// either how to bring back equality of x == y WITHOUT needing to have
// T: PartialEq<U> because that causes lifetime problems for `strip_prefix`
(Some(ref x), Some(ref y)) if x.as_str() == y.as_str() => (),
(Some(_), Some(_)) => return None,
(Some(_), None) => return Some(iter),
(None, None) => return Some(iter),
(None, Some(_)) => return None,
}
iter = iter_next;
}
}
}