diff options
Diffstat (limited to 'src/libstd/path')
| -rw-r--r-- | src/libstd/path/mod.rs | 26 | ||||
| -rw-r--r-- | src/libstd/path/posix.rs | 342 | ||||
| -rw-r--r-- | src/libstd/path/windows.rs | 344 |
3 files changed, 356 insertions, 356 deletions
diff --git a/src/libstd/path/mod.rs b/src/libstd/path/mod.rs index 79989b838f6..303bb470991 100644 --- a/src/libstd/path/mod.rs +++ b/src/libstd/path/mod.rs @@ -32,8 +32,8 @@ no restriction on paths beyond disallowing NUL). Usage of this module is fairly straightforward. Unless writing platform-specific code, `Path` should be used to refer to the platform-native path. -Creation of a path is typically done with either `Path::init(some_str)` or -`Path::init(some_vec)`. This path can be modified with `.push()` and +Creation of a path is typically done with either `Path::new(some_str)` or +`Path::new(some_vec)`. This path can be modified with `.push()` and `.pop()` (and other setters). The resulting Path can either be passed to another API that expects a path, or can be turned into a &[u8] with `.as_vec()` or a Option<&str> with `.as_str()`. Similarly, attributes of the path can be queried @@ -41,7 +41,7 @@ with methods such as `.filename()`. There are also methods that return a new path instead of modifying the receiver, such as `.join()` or `.dir_path()`. Paths are always kept in normalized form. This means that creating the path -`Path::init("a/b/../c")` will return the path `a/c`. Similarly any attempt +`Path::new("a/b/../c")` will return the path `a/c`. Similarly any attempt to mutate the path will always leave it in normalized form. When rendering a path to some form of output, there is a method `.display()` @@ -53,7 +53,7 @@ actually operates on the path; it is only intended for display. ## Example ```rust -let mut path = Path::from_str("/tmp/path"); +let mut path = Path::new("/tmp/path"); debug!("path: {}", path.display()); path.set_filename("foo"); path.push("bar"); @@ -151,24 +151,24 @@ pub trait GenericPath: Clone + GenericPathUnsafe { /// /// See individual Path impls for additional restrictions. #[inline] - fn init<T: BytesContainer>(path: T) -> Self { + fn new<T: BytesContainer>(path: T) -> Self { if contains_nul(path.container_as_bytes()) { let path = self::null_byte::cond.raise(path.container_into_owned_bytes()); assert!(!contains_nul(path)); - unsafe { GenericPathUnsafe::init_unchecked(path) } + unsafe { GenericPathUnsafe::new_unchecked(path) } } else { - unsafe { GenericPathUnsafe::init_unchecked(path) } + unsafe { GenericPathUnsafe::new_unchecked(path) } } } /// Creates a new Path from a byte vector or string, if possible. /// The resulting Path will always be normalized. #[inline] - fn init_opt<T: BytesContainer>(path: T) -> Option<Self> { + fn new_opt<T: BytesContainer>(path: T) -> Option<Self> { if contains_nul(path.container_as_bytes()) { None } else { - Some(unsafe { GenericPathUnsafe::init_unchecked(path) }) + Some(unsafe { GenericPathUnsafe::new_unchecked(path) }) } } @@ -382,7 +382,7 @@ pub trait GenericPath: Clone + GenericPathUnsafe { /// If `self` represents the root of the filesystem hierarchy, returns `self`. fn dir_path(&self) -> Self { // self.dirname() returns a NUL-free vector - unsafe { GenericPathUnsafe::init_unchecked(self.dirname()) } + unsafe { GenericPathUnsafe::new_unchecked(self.dirname()) } } /// Returns a Path that represents the filesystem root that `self` is rooted in. @@ -510,7 +510,7 @@ pub trait BytesContainer { pub trait GenericPathUnsafe { /// Creates a new Path without checking for null bytes. /// The resulting Path will always be normalized. - unsafe fn init_unchecked<T: BytesContainer>(path: T) -> Self; + unsafe fn new_unchecked<T: BytesContainer>(path: T) -> Self; /// Replaces the filename portion of the path without checking for null /// bytes. @@ -694,11 +694,11 @@ mod tests { #[test] fn test_cstring() { let input = "/foo/bar/baz"; - let path: PosixPath = PosixPath::init(input.to_c_str()); + let path: PosixPath = PosixPath::new(input.to_c_str()); assert_eq!(path.as_vec(), input.as_bytes()); let input = r"\foo\bar\baz"; - let path: WindowsPath = WindowsPath::init(input.to_c_str()); + let path: WindowsPath = WindowsPath::new(input.to_c_str()); assert_eq!(path.as_str().unwrap(), input.as_slice()); } } diff --git a/src/libstd/path/posix.rs b/src/libstd/path/posix.rs index ddf2cce21b0..10ce06f7e03 100644 --- a/src/libstd/path/posix.rs +++ b/src/libstd/path/posix.rs @@ -68,7 +68,7 @@ impl Eq for Path { impl FromStr for Path { fn from_str(s: &str) -> Option<Path> { - Path::init_opt(s) + Path::new_opt(s) } } @@ -111,7 +111,7 @@ impl<'self> BytesContainer for &'self Path { } impl GenericPathUnsafe for Path { - unsafe fn init_unchecked<T: BytesContainer>(path: T) -> Path { + unsafe fn new_unchecked<T: BytesContainer>(path: T) -> Path { let path = Path::normalize(path.container_as_bytes()); assert!(!path.is_empty()); let idx = path.rposition_elem(&sep_byte); @@ -218,7 +218,7 @@ impl GenericPath for Path { fn root_path(&self) -> Option<Path> { if self.is_absolute() { - Some(Path::init("/")) + Some(Path::new("/")) } else { None } @@ -287,7 +287,7 @@ impl GenericPath for Path { } } } - Some(Path::init(comps.connect_vec(&sep_byte))) + Some(Path::new(comps.connect_vec(&sep_byte))) } } @@ -314,14 +314,14 @@ impl Path { /// /// Raises the `null_byte` condition if the vector contains a NUL. #[inline] - pub fn init<T: BytesContainer>(path: T) -> Path { - GenericPath::init(path) + pub fn new<T: BytesContainer>(path: T) -> Path { + GenericPath::new(path) } /// Returns a new Path from a byte vector or string, if possible #[inline] - pub fn init_opt<T: BytesContainer>(path: T) -> Option<Path> { - GenericPath::init_opt(path) + pub fn new_opt<T: BytesContainer>(path: T) -> Option<Path> { + GenericPath::new_opt(path) } /// Returns a normalized byte vector representation of a path, by removing all empty @@ -471,51 +471,51 @@ mod tests { #[test] fn test_paths() { let empty: &[u8] = []; - t!(v: Path::init(empty), b!(".")); - t!(v: Path::init(b!("/")), b!("/")); - t!(v: Path::init(b!("a/b/c")), b!("a/b/c")); - t!(v: Path::init(b!("a/b/c", 0xff)), b!("a/b/c", 0xff)); - t!(v: Path::init(b!(0xff, "/../foo", 0x80)), b!("foo", 0x80)); - let p = Path::init(b!("a/b/c", 0xff)); + t!(v: Path::new(empty), b!(".")); + t!(v: Path::new(b!("/")), b!("/")); + t!(v: Path::new(b!("a/b/c")), b!("a/b/c")); + t!(v: Path::new(b!("a/b/c", 0xff)), b!("a/b/c", 0xff)); + t!(v: Path::new(b!(0xff, "/../foo", 0x80)), b!("foo", 0x80)); + let p = Path::new(b!("a/b/c", 0xff)); assert_eq!(p.as_str(), None); - t!(s: Path::init(""), "."); - t!(s: Path::init("/"), "/"); - t!(s: Path::init("hi"), "hi"); - t!(s: Path::init("hi/"), "hi"); - t!(s: Path::init("/lib"), "/lib"); - t!(s: Path::init("/lib/"), "/lib"); - t!(s: Path::init("hi/there"), "hi/there"); - t!(s: Path::init("hi/there.txt"), "hi/there.txt"); - - t!(s: Path::init("hi/there/"), "hi/there"); - t!(s: Path::init("hi/../there"), "there"); - t!(s: Path::init("../hi/there"), "../hi/there"); - t!(s: Path::init("/../hi/there"), "/hi/there"); - t!(s: Path::init("foo/.."), "."); - t!(s: Path::init("/foo/.."), "/"); - t!(s: Path::init("/foo/../.."), "/"); - t!(s: Path::init("/foo/../../bar"), "/bar"); - t!(s: Path::init("/./hi/./there/."), "/hi/there"); - t!(s: Path::init("/./hi/./there/./.."), "/hi"); - t!(s: Path::init("foo/../.."), ".."); - t!(s: Path::init("foo/../../.."), "../.."); - t!(s: Path::init("foo/../../bar"), "../bar"); - - assert_eq!(Path::init(b!("foo/bar")).into_vec(), b!("foo/bar").to_owned()); - assert_eq!(Path::init(b!("/foo/../../bar")).into_vec(), + t!(s: Path::new(""), "."); + t!(s: Path::new("/"), "/"); + t!(s: Path::new("hi"), "hi"); + t!(s: Path::new("hi/"), "hi"); + t!(s: Path::new("/lib"), "/lib"); + t!(s: Path::new("/lib/"), "/lib"); + t!(s: Path::new("hi/there"), "hi/there"); + t!(s: Path::new("hi/there.txt"), "hi/there.txt"); + + t!(s: Path::new("hi/there/"), "hi/there"); + t!(s: Path::new("hi/../there"), "there"); + t!(s: Path::new("../hi/there"), "../hi/there"); + t!(s: Path::new("/../hi/there"), "/hi/there"); + t!(s: Path::new("foo/.."), "."); + t!(s: Path::new("/foo/.."), "/"); + t!(s: Path::new("/foo/../.."), "/"); + t!(s: Path::new("/foo/../../bar"), "/bar"); + t!(s: Path::new("/./hi/./there/."), "/hi/there"); + t!(s: Path::new("/./hi/./there/./.."), "/hi"); + t!(s: Path::new("foo/../.."), ".."); + t!(s: Path::new("foo/../../.."), "../.."); + t!(s: Path::new("foo/../../bar"), "../bar"); + + assert_eq!(Path::new(b!("foo/bar")).into_vec(), b!("foo/bar").to_owned()); + assert_eq!(Path::new(b!("/foo/../../bar")).into_vec(), b!("/bar").to_owned()); - let p = Path::init(b!("foo/bar", 0x80)); + let p = Path::new(b!("foo/bar", 0x80)); assert_eq!(p.as_str(), None); } #[test] fn test_opt_paths() { - assert_eq!(Path::init_opt(b!("foo/bar", 0)), None); - t!(v: Path::init_opt(b!("foo/bar")).unwrap(), b!("foo/bar")); - assert_eq!(Path::init_opt("foo/bar\0"), None); - t!(s: Path::init_opt("foo/bar").unwrap(), "foo/bar"); + assert_eq!(Path::new_opt(b!("foo/bar", 0)), None); + t!(v: Path::new_opt(b!("foo/bar")).unwrap(), b!("foo/bar")); + assert_eq!(Path::new_opt("foo/bar\0"), None); + t!(s: Path::new_opt("foo/bar").unwrap(), "foo/bar"); } #[test] @@ -528,7 +528,7 @@ mod tests { assert_eq!(v.as_slice(), b!("foo/bar", 0)); (b!("/bar").to_owned()) }).inside(|| { - Path::init(b!("foo/bar", 0)) + Path::new(b!("foo/bar", 0)) }); assert!(handled); assert_eq!(p.as_vec(), b!("/bar")); @@ -576,12 +576,12 @@ mod tests { cond.trap(|_| { (b!("null", 0).to_owned()) }).inside(|| { - Path::init(b!("foo/bar", 0)) + Path::new(b!("foo/bar", 0)) }); }) t!(~"set_filename w/nul" => { - let mut p = Path::init(b!("foo/bar")); + let mut p = Path::new(b!("foo/bar")); cond.trap(|_| { (b!("null", 0).to_owned()) }).inside(|| { @@ -590,7 +590,7 @@ mod tests { }) t!(~"push w/nul" => { - let mut p = Path::init(b!("foo/bar")); + let mut p = Path::new(b!("foo/bar")); cond.trap(|_| { (b!("null", 0).to_owned()) }).inside(|| { @@ -604,7 +604,7 @@ mod tests { macro_rules! t( ($path:expr, $disp:ident, $exp:expr) => ( { - let path = Path::init($path); + let path = Path::new($path); assert_eq!(path.$disp().to_str(), ~$exp); } ) @@ -620,7 +620,7 @@ mod tests { ($path:expr, $exp:expr) => ( { let mut called = false; - let path = Path::init($path); + let path = Path::new($path); path.display().with_str(|s| { assert_eq!(s, $exp); called = true; @@ -631,7 +631,7 @@ mod tests { ($path:expr, $exp:expr, filename) => ( { let mut called = false; - let path = Path::init($path); + let path = Path::new($path); path.filename_display().with_str(|s| { assert_eq!(s, $exp); called = true; @@ -654,7 +654,7 @@ mod tests { macro_rules! t( ($path:expr, $exp:expr, $expf:expr) => ( { - let path = Path::init($path); + let path = Path::new($path); let f = format!("{}", path.display()); assert_eq!(f.as_slice(), $exp); let f = format!("{}", path.filename_display()); @@ -677,20 +677,20 @@ mod tests { macro_rules! t( (s: $path:expr, $op:ident, $exp:expr) => ( { - let path = Path::init($path); + let path = Path::new($path); assert_eq!(path.$op(), ($exp).as_bytes()); } ); (s: $path:expr, $op:ident, $exp:expr, opt) => ( { - let path = Path::init($path); + let path = Path::new($path); let left = path.$op().map(|x| str::from_utf8(x)); assert_eq!(left, $exp); } ); (v: $path:expr, $op:ident, $exp:expr) => ( { - let path = Path::init($path); + let path = Path::new($path); assert_eq!(path.$op(), $exp); } ); @@ -762,7 +762,7 @@ mod tests { { let path = ($path); let join = ($join); - let mut p1 = Path::init(path); + let mut p1 = Path::new(path); let p2 = p1.clone(); p1.push(join); assert_eq!(p1, p2.join(join)); @@ -781,8 +781,8 @@ mod tests { macro_rules! t( (s: $path:expr, $push:expr, $exp:expr) => ( { - let mut p = Path::init($path); - let push = Path::init($push); + let mut p = Path::new($path); + let push = Path::new($push); p.push(&push); assert_eq!(p.as_str(), Some($exp)); } @@ -804,14 +804,14 @@ mod tests { macro_rules! t( (s: $path:expr, $push:expr, $exp:expr) => ( { - let mut p = Path::init($path); + let mut p = Path::new($path); p.push_many($push); assert_eq!(p.as_str(), Some($exp)); } ); (v: $path:expr, $push:expr, $exp:expr) => ( { - let mut p = Path::init($path); + let mut p = Path::new($path); p.push_many($push); assert_eq!(p.as_vec(), $exp); } @@ -835,7 +835,7 @@ mod tests { macro_rules! t( (s: $path:expr, $left:expr, $right:expr) => ( { - let mut p = Path::init($path); + let mut p = Path::new($path); let result = p.pop(); assert_eq!(p.as_str(), Some($left)); assert_eq!(result, $right); @@ -843,7 +843,7 @@ mod tests { ); (v: [$($path:expr),+], [$($left:expr),+], $right:expr) => ( { - let mut p = Path::init(b!($($path),+)); + let mut p = Path::new(b!($($path),+)); let result = p.pop(); assert_eq!(p.as_vec(), b!($($left),+)); assert_eq!(result, $right); @@ -869,21 +869,21 @@ mod tests { #[test] fn test_root_path() { - assert_eq!(Path::init(b!("a/b/c")).root_path(), None); - assert_eq!(Path::init(b!("/a/b/c")).root_path(), Some(Path::init("/"))); + assert_eq!(Path::new(b!("a/b/c")).root_path(), None); + assert_eq!(Path::new(b!("/a/b/c")).root_path(), Some(Path::new("/"))); } #[test] fn test_join() { - t!(v: Path::init(b!("a/b/c")).join(b!("..")), b!("a/b")); - t!(v: Path::init(b!("/a/b/c")).join(b!("d")), b!("/a/b/c/d")); - t!(v: Path::init(b!("a/", 0x80, "/c")).join(b!(0xff)), b!("a/", 0x80, "/c/", 0xff)); - t!(s: Path::init("a/b/c").join(".."), "a/b"); - t!(s: Path::init("/a/b/c").join("d"), "/a/b/c/d"); - t!(s: Path::init("a/b").join("c/d"), "a/b/c/d"); - t!(s: Path::init("a/b").join("/c/d"), "/c/d"); - t!(s: Path::init(".").join("a/b"), "a/b"); - t!(s: Path::init("/").join("a/b"), "/a/b"); + t!(v: Path::new(b!("a/b/c")).join(b!("..")), b!("a/b")); + t!(v: Path::new(b!("/a/b/c")).join(b!("d")), b!("/a/b/c/d")); + t!(v: Path::new(b!("a/", 0x80, "/c")).join(b!(0xff)), b!("a/", 0x80, "/c/", 0xff)); + t!(s: Path::new("a/b/c").join(".."), "a/b"); + t!(s: Path::new("/a/b/c").join("d"), "/a/b/c/d"); + t!(s: Path::new("a/b").join("c/d"), "a/b/c/d"); + t!(s: Path::new("a/b").join("/c/d"), "/c/d"); + t!(s: Path::new(".").join("a/b"), "a/b"); + t!(s: Path::new("/").join("a/b"), "/a/b"); } #[test] @@ -891,8 +891,8 @@ mod tests { macro_rules! t( (s: $path:expr, $join:expr, $exp:expr) => ( { - let path = Path::init($path); - let join = Path::init($join); + let path = Path::new($path); + let join = Path::new($join); let res = path.join(&join); assert_eq!(res.as_str(), Some($exp)); } @@ -914,14 +914,14 @@ mod tests { macro_rules! t( (s: $path:expr, $join:expr, $exp:expr) => ( { - let path = Path::init($path); + let path = Path::new($path); let res = path.join_many($join); assert_eq!(res.as_str(), Some($exp)); } ); (v: $path:expr, $join:expr, $exp:expr) => ( { - let path = Path::init($path); + let path = Path::new($path); let res = path.join_many($join); assert_eq!(res.as_vec(), $exp); } @@ -943,51 +943,51 @@ mod tests { fn test_with_helpers() { let empty: &[u8] = []; - t!(v: Path::init(b!("a/b/c")).with_filename(b!("d")), b!("a/b/d")); - t!(v: Path::init(b!("a/b/c", 0xff)).with_filename(b!(0x80)), b!("a/b/", 0x80)); - t!(v: Path::init(b!("/", 0xff, "/foo")).with_filename(b!(0xcd)), + t!(v: Path::new(b!("a/b/c")).with_filename(b!("d")), b!("a/b/d")); + t!(v: Path::new(b!("a/b/c", 0xff)).with_filename(b!(0x80)), b!("a/b/", 0x80)); + t!(v: Path::new(b!("/", 0xff, "/foo")).with_filename(b!(0xcd)), b!("/", 0xff, "/", 0xcd)); - t!(s: Path::init("a/b/c").with_filename("d"), "a/b/d"); - t!(s: Path::init(".").with_filename("foo"), "foo"); - t!(s: Path::init("/a/b/c").with_filename("d"), "/a/b/d"); - t!(s: Path::init("/").with_filename("foo"), "/foo"); - t!(s: Path::init("/a").with_filename("foo"), "/foo"); - t!(s: Path::init("foo").with_filename("bar"), "bar"); - t!(s: Path::init("/").with_filename("foo/"), "/foo"); - t!(s: Path::init("/a").with_filename("foo/"), "/foo"); - t!(s: Path::init("a/b/c").with_filename(""), "a/b"); - t!(s: Path::init("a/b/c").with_filename("."), "a/b"); - t!(s: Path::init("a/b/c").with_filename(".."), "a"); - t!(s: Path::init("/a").with_filename(""), "/"); - t!(s: Path::init("foo").with_filename(""), "."); - t!(s: Path::init("a/b/c").with_filename("d/e"), "a/b/d/e"); - t!(s: Path::init("a/b/c").with_filename("/d"), "a/b/d"); - t!(s: Path::init("..").with_filename("foo"), "../foo"); - t!(s: Path::init("../..").with_filename("foo"), "../../foo"); - t!(s: Path::init("..").with_filename(""), ".."); - t!(s: Path::init("../..").with_filename(""), "../.."); - - t!(v: Path::init(b!("hi/there", 0x80, ".txt")).with_extension(b!("exe")), + t!(s: Path::new("a/b/c").with_filename("d"), "a/b/d"); + t!(s: Path::new(".").with_filename("foo"), "foo"); + t!(s: Path::new("/a/b/c").with_filename("d"), "/a/b/d"); + t!(s: Path::new("/").with_filename("foo"), "/foo"); + t!(s: Path::new("/a").with_filename("foo"), "/foo"); + t!(s: Path::new("foo").with_filename("bar"), "bar"); + t!(s: Path::new("/").with_filename("foo/"), "/foo"); + t!(s: Path::new("/a").with_filename("foo/"), "/foo"); + t!(s: Path::new("a/b/c").with_filename(""), "a/b"); + t!(s: Path::new("a/b/c").with_filename("."), "a/b"); + t!(s: Path::new("a/b/c").with_filename(".."), "a"); + t!(s: Path::new("/a").with_filename(""), "/"); + t!(s: Path::new("foo").with_filename(""), "."); + t!(s: Path::new("a/b/c").with_filename("d/e"), "a/b/d/e"); + t!(s: Path::new("a/b/c").with_filename("/d"), "a/b/d"); + t!(s: Path::new("..").with_filename("foo"), "../foo"); + t!(s: Path::new("../..").with_filename("foo"), "../../foo"); + t!(s: Path::new("..").with_filename(""), ".."); + t!(s: Path::new("../..").with_filename(""), "../.."); + + t!(v: Path::new(b!("hi/there", 0x80, ".txt")).with_extension(b!("exe")), b!("hi/there", 0x80, ".exe")); - t!(v: Path::init(b!("hi/there.txt", 0x80)).with_extension(b!(0xff)), + t!(v: Path::new(b!("hi/there.txt", 0x80)).with_extension(b!(0xff)), b!("hi/there.", 0xff)); - t!(v: Path::init(b!("hi/there", 0x80)).with_extension(b!(0xff)), + t!(v: Path::new(b!("hi/there", 0x80)).with_extension(b!(0xff)), b!("hi/there", 0x80, ".", 0xff)); - t!(v: Path::init(b!("hi/there.", 0xff)).with_extension(empty), b!("hi/there")); - t!(s: Path::init("hi/there.txt").with_extension("exe"), "hi/there.exe"); - t!(s: Path::init("hi/there.txt").with_extension(""), "hi/there"); - t!(s: Path::init("hi/there.txt").with_extension("."), "hi/there.."); - t!(s: Path::init("hi/there.txt").with_extension(".."), "hi/there..."); - t!(s: Path::init("hi/there").with_extension("txt"), "hi/there.txt"); - t!(s: Path::init("hi/there").with_extension("."), "hi/there.."); - t!(s: Path::init("hi/there").with_extension(".."), "hi/there..."); - t!(s: Path::init("hi/there.").with_extension("txt"), "hi/there.txt"); - t!(s: Path::init("hi/.foo").with_extension("txt"), "hi/.foo.txt"); - t!(s: Path::init("hi/there.txt").with_extension(".foo"), "hi/there..foo"); - t!(s: Path::init("/").with_extension("txt"), "/"); - t!(s: Path::init("/").with_extension("."), "/"); - t!(s: Path::init("/").with_extension(".."), "/"); - t!(s: Path::init(".").with_extension("txt"), "."); + t!(v: Path::new(b!("hi/there.", 0xff)).with_extension(empty), b!("hi/there")); + t!(s: Path::new("hi/there.txt").with_extension("exe"), "hi/there.exe"); + t!(s: Path::new("hi/there.txt").with_extension(""), "hi/there"); + t!(s: Path::new("hi/there.txt").with_extension("."), "hi/there.."); + t!(s: Path::new("hi/there.txt").with_extension(".."), "hi/there..."); + t!(s: Path::new("hi/there").with_extension("txt"), "hi/there.txt"); + t!(s: Path::new("hi/there").with_extension("."), "hi/there.."); + t!(s: Path::new("hi/there").with_extension(".."), "hi/there..."); + t!(s: Path::new("hi/there.").with_extension("txt"), "hi/there.txt"); + t!(s: Path::new("hi/.foo").with_extension("txt"), "hi/.foo.txt"); + t!(s: Path::new("hi/there.txt").with_extension(".foo"), "hi/there..foo"); + t!(s: Path::new("/").with_extension("txt"), "/"); + t!(s: Path::new("/").with_extension("."), "/"); + t!(s: Path::new("/").with_extension(".."), "/"); + t!(s: Path::new(".").with_extension("txt"), "."); } #[test] @@ -997,9 +997,9 @@ mod tests { { let path = $path; let arg = $arg; - let mut p1 = Path::init(path); + let mut p1 = Path::new(path); p1.$set(arg); - let p2 = Path::init(path); + let p2 = Path::new(path); assert_eq!(p1, p2.$with(arg)); } ); @@ -1007,9 +1007,9 @@ mod tests { { let path = $path; let arg = $arg; - let mut p1 = Path::init(path); + let mut p1 = Path::new(path); p1.$set(arg); - let p2 = Path::init(path); + let p2 = Path::new(path); assert_eq!(p1, p2.$with(arg)); } ) @@ -1069,39 +1069,39 @@ mod tests { ) ) - t!(v: Path::init(b!("a/b/c")), Some(b!("c")), b!("a/b"), Some(b!("c")), None); - t!(v: Path::init(b!("a/b/", 0xff)), Some(b!(0xff)), b!("a/b"), Some(b!(0xff)), None); - t!(v: Path::init(b!("hi/there.", 0xff)), Some(b!("there.", 0xff)), b!("hi"), + t!(v: Path::new(b!("a/b/c")), Some(b!("c")), b!("a/b"), Some(b!("c")), None); + t!(v: Path::new(b!("a/b/", 0xff)), Some(b!(0xff)), b!("a/b"), Some(b!(0xff)), None); + t!(v: Path::new(b!("hi/there.", 0xff)), Some(b!("there.", 0xff)), b!("hi"), Some(b!("there")), Some(b!(0xff))); - t!(s: Path::init("a/b/c"), Some("c"), Some("a/b"), Some("c"), None); - t!(s: Path::init("."), None, Some("."), None, None); - t!(s: Path::init("/"), None, Some("/"), None, None); - t!(s: Path::init(".."), None, Some(".."), None, None); - t!(s: Path::init("../.."), None, Some("../.."), None, None); - t!(s: Path::init("hi/there.txt"), Some("there.txt"), Some("hi"), + t!(s: Path::new("a/b/c"), Some("c"), Some("a/b"), Some("c"), None); + t!(s: Path::new("."), None, Some("."), None, None); + t!(s: Path::new("/"), None, Some("/"), None, None); + t!(s: Path::new(".."), None, Some(".."), None, None); + t!(s: Path::new("../.."), None, Some("../.."), None, None); + t!(s: Path::new("hi/there.txt"), Some("there.txt"), Some("hi"), Some("there"), Some("txt")); - t!(s: Path::init("hi/there"), Some("there"), Some("hi"), Some("there"), None); - t!(s: Path::init("hi/there."), Some("there."), Some("hi"), + t!(s: Path::new("hi/there"), Some("there"), Some("hi"), Some("there"), None); + t!(s: Path::new("hi/there."), Some("there."), Some("hi"), Some("there"), Some("")); - t!(s: Path::init("hi/.there"), Some(".there"), Some("hi"), Some(".there"), None); - t!(s: Path::init("hi/..there"), Some("..there"), Some("hi"), + t!(s: Path::new("hi/.there"), Some(".there"), Some("hi"), Some(".there"), None); + t!(s: Path::new("hi/..there"), Some("..there"), Some("hi"), Some("."), Some("there")); - t!(s: Path::init(b!("a/b/", 0xff)), None, Some("a/b"), None, None); - t!(s: Path::init(b!("a/b/", 0xff, ".txt")), None, Some("a/b"), None, Some("txt")); - t!(s: Path::init(b!("a/b/c.", 0x80)), None, Some("a/b"), Some("c"), None); - t!(s: Path::init(b!(0xff, "/b")), Some("b"), None, Some("b"), None); + t!(s: Path::new(b!("a/b/", 0xff)), None, Some("a/b"), None, None); + t!(s: Path::new(b!("a/b/", 0xff, ".txt")), None, Some("a/b"), None, Some("txt")); + t!(s: Path::new(b!("a/b/c.", 0x80)), None, Some("a/b"), Some("c"), None); + t!(s: Path::new(b!(0xff, "/b")), Some("b"), None, Some("b"), None); } #[test] fn test_dir_path() { - t!(v: Path::init(b!("hi/there", 0x80)).dir_path(), b!("hi")); - t!(v: Path::init(b!("hi", 0xff, "/there")).dir_path(), b!("hi", 0xff)); - t!(s: Path::init("hi/there").dir_path(), "hi"); - t!(s: Path::init("hi").dir_path(), "."); - t!(s: Path::init("/hi").dir_path(), "/"); - t!(s: Path::init("/").dir_path(), "/"); - t!(s: Path::init("..").dir_path(), ".."); - t!(s: Path::init("../..").dir_path(), "../.."); + t!(v: Path::new(b!("hi/there", 0x80)).dir_path(), b!("hi")); + t!(v: Path::new(b!("hi", 0xff, "/there")).dir_path(), b!("hi", 0xff)); + t!(s: Path::new("hi/there").dir_path(), "hi"); + t!(s: Path::new("hi").dir_path(), "."); + t!(s: Path::new("/hi").dir_path(), "/"); + t!(s: Path::new("/").dir_path(), "/"); + t!(s: Path::new("..").dir_path(), ".."); + t!(s: Path::new("../..").dir_path(), "../.."); } #[test] @@ -1109,7 +1109,7 @@ mod tests { macro_rules! t( (s: $path:expr, $abs:expr, $rel:expr) => ( { - let path = Path::init($path); + let path = Path::new($path); assert_eq!(path.is_absolute(), $abs); assert_eq!(path.is_relative(), $rel); } @@ -1130,8 +1130,8 @@ mod tests { macro_rules! t( (s: $path:expr, $dest:expr, $exp:expr) => ( { - let path = Path::init($path); - let dest = Path::init($dest); + let path = Path::new($path); + let dest = Path::new($dest); assert_eq!(path.is_ancestor_of(&dest), $exp); } ) @@ -1164,15 +1164,15 @@ mod tests { macro_rules! t( (s: $path:expr, $child:expr, $exp:expr) => ( { - let path = Path::init($path); - let child = Path::init($child); + let path = Path::new($path); + let child = Path::new($child); assert_eq!(path.ends_with_path(&child), $exp); } ); (v: $path:expr, $child:expr, $exp:expr) => ( { - let path = Path::init($path); - let child = Path::init($child); + let path = Path::new($path); + let child = Path::new($child); assert_eq!(path.ends_with_path(&child), $exp); } ) @@ -1203,8 +1203,8 @@ mod tests { macro_rules! t( (s: $path:expr, $other:expr, $exp:expr) => ( { - let path = Path::init($path); - let other = Path::init($other); + let path = Path::new($path); + let other = Path::new($other); let res = path.path_relative_from(&other); assert_eq!(res.as_ref().and_then(|x| x.as_str()), $exp); } @@ -1248,7 +1248,7 @@ mod tests { macro_rules! t( (s: $path:expr, $exp:expr) => ( { - let path = Path::init($path); + let path = Path::new($path); let comps = path.components().to_owned_vec(); let exp: &[&str] = $exp; let exps = exp.iter().map(|x| x.as_bytes()).to_owned_vec(); @@ -1262,7 +1262,7 @@ mod tests { ); (v: [$($arg:expr),+], [$([$($exp:expr),*]),*]) => ( { - let path = Path::init(b!($($arg),+)); + let path = Path::new(b!($($arg),+)); let comps = path.components().to_owned_vec(); let exp: &[&[u8]] = [$(b!($($exp),*)),*]; assert!(comps.as_slice() == exp, "components: Expected {:?}, found {:?}", @@ -1297,7 +1297,7 @@ mod tests { macro_rules! t( (v: [$($arg:expr),+], $exp:expr) => ( { - let path = Path::init(b!($($arg),+)); + let path = Path::new(b!($($arg),+)); let comps = path.str_components().to_owned_vec(); let exp: &[Option<&str>] = $exp; assert!(comps.as_slice() == exp, @@ -1327,7 +1327,7 @@ mod bench { #[bench] fn join_home_dir(bh: &mut BenchHarness) { - let posix_path = Path::init("/"); + let posix_path = Path::new("/"); bh.iter(|| { posix_path.join("home"); }); @@ -1335,7 +1335,7 @@ mod bench { #[bench] fn join_abs_path_home_dir(bh: &mut BenchHarness) { - let posix_path = Path::init("/"); + let posix_path = Path::new("/"); bh.iter(|| { posix_path.join("/home"); }); @@ -1343,7 +1343,7 @@ mod bench { #[bench] fn join_many_home_dir(bh: &mut BenchHarness) { - let posix_path = Path::init("/"); + let posix_path = Path::new("/"); bh.iter(|| { posix_path.join_many(&["home"]); }); @@ -1351,7 +1351,7 @@ mod bench { #[bench] fn join_many_abs_path_home_dir(bh: &mut BenchHarness) { - let posix_path = Path::init("/"); + let posix_path = Path::new("/"); bh.iter(|| { posix_path.join_many(&["/home"]); }); @@ -1359,7 +1359,7 @@ mod bench { #[bench] fn push_home_dir(bh: &mut BenchHarness) { - let mut posix_path = Path::init("/"); + let mut posix_path = Path::new("/"); bh.iter(|| { posix_path.push("home"); }); @@ -1367,7 +1367,7 @@ mod bench { #[bench] fn push_abs_path_home_dir(bh: &mut BenchHarness) { - let mut posix_path = Path::init("/"); + let mut posix_path = Path::new("/"); bh.iter(|| { posix_path.push("/home"); }); @@ -1375,7 +1375,7 @@ mod bench { #[bench] fn push_many_home_dir(bh: &mut BenchHarness) { - let mut posix_path = Path::init("/"); + let mut posix_path = Path::new("/"); bh.iter(|| { posix_path.push_many(&["home"]); }); @@ -1383,7 +1383,7 @@ mod bench { #[bench] fn push_many_abs_path_home_dir(bh: &mut BenchHarness) { - let mut posix_path = Path::init("/"); + let mut posix_path = Path::new("/"); bh.iter(|| { posix_path.push_many(&["/home"]); }); @@ -1391,17 +1391,17 @@ mod bench { #[bench] fn ends_with_path_home_dir(bh: &mut BenchHarness) { - let posix_home_path = Path::init("/home"); + let posix_home_path = Path::new("/home"); bh.iter(|| { - posix_home_path.ends_with_path(&Path::init("home")); + posix_home_path.ends_with_path(&Path::new("home")); }); } #[bench] fn ends_with_path_missmatch_jome_home(bh: &mut BenchHarness) { - let posix_home_path = Path::init("/home"); + let posix_home_path = Path::new("/home"); bh.iter(|| { - posix_home_path.ends_with_path(&Path::init("jome")); + posix_home_path.ends_with_path(&Path::new("jome")); }); } } diff --git a/src/libstd/path/windows.rs b/src/libstd/path/windows.rs index abbb97981a6..cc2af54fd10 100644 --- a/src/libstd/path/windows.rs +++ b/src/libstd/path/windows.rs @@ -93,7 +93,7 @@ impl Eq for Path { impl FromStr for Path { fn from_str(s: &str) -> Option<Path> { - Path::init_opt(s) + Path::new_opt(s) } } @@ -162,7 +162,7 @@ impl GenericPathUnsafe for Path { /// /// Raises the `str::not_utf8` condition if not valid UTF-8. #[inline] - unsafe fn init_unchecked<T: BytesContainer>(path: T) -> Path { + unsafe fn new_unchecked<T: BytesContainer>(path: T) -> Path { let (prefix, path) = Path::normalize_(path.container_as_str()); assert!(!path.is_empty()); let mut ret = Path{ repr: path, prefix: prefix, sepidx: None }; @@ -303,7 +303,7 @@ impl GenericPathUnsafe for Path { impl GenericPath for Path { #[inline] - fn init_opt<T: BytesContainer>(path: T) -> Option<Path> { + fn new_opt<T: BytesContainer>(path: T) -> Option<Path> { let s = path.container_as_str_opt(); match s { None => None, @@ -311,7 +311,7 @@ impl GenericPath for Path { if contains_nul(s.as_bytes()) { None } else { - Some(unsafe { GenericPathUnsafe::init_unchecked(s) }) + Some(unsafe { GenericPathUnsafe::new_unchecked(s) }) } } } @@ -395,7 +395,7 @@ impl GenericPath for Path { } fn dir_path(&self) -> Path { - unsafe { GenericPathUnsafe::init_unchecked(self.dirname_str().unwrap()) } + unsafe { GenericPathUnsafe::new_unchecked(self.dirname_str().unwrap()) } } #[inline] @@ -426,14 +426,14 @@ impl GenericPath for Path { fn root_path(&self) -> Option<Path> { if self.is_absolute() { - Some(Path::init(match self.prefix { + Some(Path::new(match self.prefix { Some(VerbatimDiskPrefix)|Some(DiskPrefix) => { self.repr.slice_to(self.prefix_len()+1) } _ => self.repr.slice_to(self.prefix_len()) })) } else if is_vol_relative(self) { - Some(Path::init(self.repr.slice_to(1))) + Some(Path::new(self.repr.slice_to(1))) } else { None } @@ -563,7 +563,7 @@ impl GenericPath for Path { } } } - Some(Path::init(comps.connect("\\"))) + Some(Path::new(comps.connect("\\"))) } } @@ -591,14 +591,14 @@ impl Path { /// Raises the `null_byte` condition if the vector contains a NUL. /// Raises the `str::not_utf8` condition if invalid UTF-8. #[inline] - pub fn init<T: BytesContainer>(path: T) -> Path { - GenericPath::init(path) + pub fn new<T: BytesContainer>(path: T) -> Path { + GenericPath::new(path) } /// Returns a new Path from a byte vector or string, if possible #[inline] - pub fn init_opt<T: BytesContainer>(path: T) -> Option<Path> { - GenericPath::init_opt(path) + pub fn new_opt<T: BytesContainer>(path: T) -> Option<Path> { + GenericPath::new_opt(path) } /// Returns an iterator that yields each component of the path in turn as a Option<&str>. @@ -1147,100 +1147,100 @@ mod tests { #[test] fn test_paths() { let empty: &[u8] = []; - t!(v: Path::init(empty), b!(".")); - t!(v: Path::init(b!("\\")), b!("\\")); - t!(v: Path::init(b!("a\\b\\c")), b!("a\\b\\c")); - - t!(s: Path::init(""), "."); - t!(s: Path::init("\\"), "\\"); - t!(s: Path::init("hi"), "hi"); - t!(s: Path::init("hi\\"), "hi"); - t!(s: Path::init("\\lib"), "\\lib"); - t!(s: Path::init("\\lib\\"), "\\lib"); - t!(s: Path::init("hi\\there"), "hi\\there"); - t!(s: Path::init("hi\\there.txt"), "hi\\there.txt"); - t!(s: Path::init("/"), "\\"); - t!(s: Path::init("hi/"), "hi"); - t!(s: Path::init("/lib"), "\\lib"); - t!(s: Path::init("/lib/"), "\\lib"); - t!(s: Path::init("hi/there"), "hi\\there"); - - t!(s: Path::init("hi\\there\\"), "hi\\there"); - t!(s: Path::init("hi\\..\\there"), "there"); - t!(s: Path::init("hi/../there"), "there"); - t!(s: Path::init("..\\hi\\there"), "..\\hi\\there"); - t!(s: Path::init("\\..\\hi\\there"), "\\hi\\there"); - t!(s: Path::init("/../hi/there"), "\\hi\\there"); - t!(s: Path::init("foo\\.."), "."); - t!(s: Path::init("\\foo\\.."), "\\"); - t!(s: Path::init("\\foo\\..\\.."), "\\"); - t!(s: Path::init("\\foo\\..\\..\\bar"), "\\bar"); - t!(s: Path::init("\\.\\hi\\.\\there\\."), "\\hi\\there"); - t!(s: Path::init("\\.\\hi\\.\\there\\.\\.."), "\\hi"); - t!(s: Path::init("foo\\..\\.."), ".."); - t!(s: Path::init("foo\\..\\..\\.."), "..\\.."); - t!(s: Path::init("foo\\..\\..\\bar"), "..\\bar"); - - assert_eq!(Path::init(b!("foo\\bar")).into_vec(), b!("foo\\bar").to_owned()); - assert_eq!(Path::init(b!("\\foo\\..\\..\\bar")).into_vec(), + t!(v: Path::new(empty), b!(".")); + t!(v: Path::new(b!("\\")), b!("\\")); + t!(v: Path::new(b!("a\\b\\c")), b!("a\\b\\c")); + + t!(s: Path::new(""), "."); + t!(s: Path::new("\\"), "\\"); + t!(s: Path::new("hi"), "hi"); + t!(s: Path::new("hi\\"), "hi"); + t!(s: Path::new("\\lib"), "\\lib"); + t!(s: Path::new("\\lib\\"), "\\lib"); + t!(s: Path::new("hi\\there"), "hi\\there"); + t!(s: Path::new("hi\\there.txt"), "hi\\there.txt"); + t!(s: Path::new("/"), "\\"); + t!(s: Path::new("hi/"), "hi"); + t!(s: Path::new("/lib"), "\\lib"); + t!(s: Path::new("/lib/"), "\\lib"); + t!(s: Path::new("hi/there"), "hi\\there"); + + t!(s: Path::new("hi\\there\\"), "hi\\there"); + t!(s: Path::new("hi\\..\\there"), "there"); + t!(s: Path::new("hi/../there"), "there"); + t!(s: Path::new("..\\hi\\there"), "..\\hi\\there"); + t!(s: Path::new("\\..\\hi\\there"), "\\hi\\there"); + t!(s: Path::new("/../hi/there"), "\\hi\\there"); + t!(s: Path::new("foo\\.."), "."); + t!(s: Path::new("\\foo\\.."), "\\"); + t!(s: Path::new("\\foo\\..\\.."), "\\"); + t!(s: Path::new("\\foo\\..\\..\\bar"), "\\bar"); + t!(s: Path::new("\\.\\hi\\.\\there\\."), "\\hi\\there"); + t!(s: Path::new("\\.\\hi\\.\\there\\.\\.."), "\\hi"); + t!(s: Path::new("foo\\..\\.."), ".."); + t!(s: Path::new("foo\\..\\..\\.."), "..\\.."); + t!(s: Path::new("foo\\..\\..\\bar"), "..\\bar"); + + assert_eq!(Path::new(b!("foo\\bar")).into_vec(), b!("foo\\bar").to_owned()); + assert_eq!(Path::new(b!("\\foo\\..\\..\\bar")).into_vec(), b!("\\bar").to_owned()); - t!(s: Path::init("\\\\a"), "\\a"); - t!(s: Path::init("\\\\a\\"), "\\a"); - t!(s: Path::init("\\\\a\\b"), "\\\\a\\b"); - t!(s: Path::init("\\\\a\\b\\"), "\\\\a\\b"); - t!(s: Path::init("\\\\a\\b/"), "\\\\a\\b"); - t!(s: Path::init("\\\\\\b"), "\\b"); - t!(s: Path::init("\\\\a\\\\b"), "\\a\\b"); - t!(s: Path::init("\\\\a\\b\\c"), "\\\\a\\b\\c"); - t!(s: Path::init("\\\\server\\share/path"), "\\\\server\\share\\path"); - t!(s: Path::init("\\\\server/share/path"), "\\\\server\\share\\path"); - t!(s: Path::init("C:a\\b.txt"), "C:a\\b.txt"); - t!(s: Path::init("C:a/b.txt"), "C:a\\b.txt"); - t!(s: Path::init("z:\\a\\b.txt"), "Z:\\a\\b.txt"); - t!(s: Path::init("z:/a/b.txt"), "Z:\\a\\b.txt"); - t!(s: Path::init("ab:/a/b.txt"), "ab:\\a\\b.txt"); - t!(s: Path::init("C:\\"), "C:\\"); - t!(s: Path::init("C:"), "C:"); - t!(s: Path::init("q:"), "Q:"); - t!(s: Path::init("C:/"), "C:\\"); - t!(s: Path::init("C:\\foo\\.."), "C:\\"); - t!(s: Path::init("C:foo\\.."), "C:"); - t!(s: Path::init("C:\\a\\"), "C:\\a"); - t!(s: Path::init("C:\\a/"), "C:\\a"); - t!(s: Path::init("C:\\a\\b\\"), "C:\\a\\b"); - t!(s: Path::init("C:\\a\\b/"), "C:\\a\\b"); - t!(s: Path::init("C:a\\"), "C:a"); - t!(s: Path::init("C:a/"), "C:a"); - t!(s: Path::init("C:a\\b\\"), "C:a\\b"); - t!(s: Path::init("C:a\\b/"), "C:a\\b"); - t!(s: Path::init("\\\\?\\z:\\a\\b.txt"), "\\\\?\\z:\\a\\b.txt"); - t!(s: Path::init("\\\\?\\C:/a/b.txt"), "\\\\?\\C:/a/b.txt"); - t!(s: Path::init("\\\\?\\C:\\a/b.txt"), "\\\\?\\C:\\a/b.txt"); - t!(s: Path::init("\\\\?\\test\\a\\b.txt"), "\\\\?\\test\\a\\b.txt"); - t!(s: Path::init("\\\\?\\foo\\bar\\"), "\\\\?\\foo\\bar\\"); - t!(s: Path::init("\\\\.\\foo\\bar"), "\\\\.\\foo\\bar"); - t!(s: Path::init("\\\\.\\"), "\\\\.\\"); - t!(s: Path::init("\\\\?\\UNC\\server\\share\\foo"), "\\\\?\\UNC\\server\\share\\foo"); - t!(s: Path::init("\\\\?\\UNC\\server/share"), "\\\\?\\UNC\\server/share\\"); - t!(s: Path::init("\\\\?\\UNC\\server"), "\\\\?\\UNC\\server\\"); - t!(s: Path::init("\\\\?\\UNC\\"), "\\\\?\\UNC\\\\"); - t!(s: Path::init("\\\\?\\UNC"), "\\\\?\\UNC"); + t!(s: Path::new("\\\\a"), "\\a"); + t!(s: Path::new("\\\\a\\"), "\\a"); + t!(s: Path::new("\\\\a\\b"), "\\\\a\\b"); + t!(s: Path::new("\\\\a\\b\\"), "\\\\a\\b"); + t!(s: Path::new("\\\\a\\b/"), "\\\\a\\b"); + t!(s: Path::new("\\\\\\b"), "\\b"); + t!(s: Path::new("\\\\a\\\\b"), "\\a\\b"); + t!(s: Path::new("\\\\a\\b\\c"), "\\\\a\\b\\c"); + t!(s: Path::new("\\\\server\\share/path"), "\\\\server\\share\\path"); + t!(s: Path::new("\\\\server/share/path"), "\\\\server\\share\\path"); + t!(s: Path::new("C:a\\b.txt"), "C:a\\b.txt"); + t!(s: Path::new("C:a/b.txt"), "C:a\\b.txt"); + t!(s: Path::new("z:\\a\\b.txt"), "Z:\\a\\b.txt"); + t!(s: Path::new("z:/a/b.txt"), "Z:\\a\\b.txt"); + t!(s: Path::new("ab:/a/b.txt"), "ab:\\a\\b.txt"); + t!(s: Path::new("C:\\"), "C:\\"); + t!(s: Path::new("C:"), "C:"); + t!(s: Path::new("q:"), "Q:"); + t!(s: Path::new("C:/"), "C:\\"); + t!(s: Path::new("C:\\foo\\.."), "C:\\"); + t!(s: Path::new("C:foo\\.."), "C:"); + t!(s: Path::new("C:\\a\\"), "C:\\a"); + t!(s: Path::new("C:\\a/"), "C:\\a"); + t!(s: Path::new("C:\\a\\b\\"), "C:\\a\\b"); + t!(s: Path::new("C:\\a\\b/"), "C:\\a\\b"); + t!(s: Path::new("C:a\\"), "C:a"); + t!(s: Path::new("C:a/"), "C:a"); + t!(s: Path::new("C:a\\b\\"), "C:a\\b"); + t!(s: Path::new("C:a\\b/"), "C:a\\b"); + t!(s: Path::new("\\\\?\\z:\\a\\b.txt"), "\\\\?\\z:\\a\\b.txt"); + t!(s: Path::new("\\\\?\\C:/a/b.txt"), "\\\\?\\C:/a/b.txt"); + t!(s: Path::new("\\\\?\\C:\\a/b.txt"), "\\\\?\\C:\\a/b.txt"); + t!(s: Path::new("\\\\?\\test\\a\\b.txt"), "\\\\?\\test\\a\\b.txt"); + t!(s: Path::new("\\\\?\\foo\\bar\\"), "\\\\?\\foo\\bar\\"); + t!(s: Path::new("\\\\.\\foo\\bar"), "\\\\.\\foo\\bar"); + t!(s: Path::new("\\\\.\\"), "\\\\.\\"); + t!(s: Path::new("\\\\?\\UNC\\server\\share\\foo"), "\\\\?\\UNC\\server\\share\\foo"); + t!(s: Path::new("\\\\?\\UNC\\server/share"), "\\\\?\\UNC\\server/share\\"); + t!(s: Path::new("\\\\?\\UNC\\server"), "\\\\?\\UNC\\server\\"); + t!(s: Path::new("\\\\?\\UNC\\"), "\\\\?\\UNC\\\\"); + t!(s: Path::new("\\\\?\\UNC"), "\\\\?\\UNC"); // I'm not sure whether \\.\foo/bar should normalize to \\.\foo\bar // as information is sparse and this isn't really googleable. // I'm going to err on the side of not normalizing it, as this skips the filesystem - t!(s: Path::init("\\\\.\\foo/bar"), "\\\\.\\foo/bar"); - t!(s: Path::init("\\\\.\\foo\\bar"), "\\\\.\\foo\\bar"); + t!(s: Path::new("\\\\.\\foo/bar"), "\\\\.\\foo/bar"); + t!(s: Path::new("\\\\.\\foo\\bar"), "\\\\.\\foo\\bar"); } #[test] fn test_opt_paths() { - assert_eq!(Path::init_opt(b!("foo\\bar", 0)), None); - assert_eq!(Path::init_opt(b!("foo\\bar", 0x80)), None); - t!(v: Path::init_opt(b!("foo\\bar")).unwrap(), b!("foo\\bar")); - assert_eq!(Path::init_opt("foo\\bar\0"), None); - t!(s: Path::init_opt("foo\\bar").unwrap(), "foo\\bar"); + assert_eq!(Path::new_opt(b!("foo\\bar", 0)), None); + assert_eq!(Path::new_opt(b!("foo\\bar", 0x80)), None); + t!(v: Path::new_opt(b!("foo\\bar")).unwrap(), b!("foo\\bar")); + assert_eq!(Path::new_opt("foo\\bar\0"), None); + t!(s: Path::new_opt("foo\\bar").unwrap(), "foo\\bar"); } #[test] @@ -1253,7 +1253,7 @@ mod tests { assert_eq!(v.as_slice(), b!("foo\\bar", 0)); (b!("\\bar").to_owned()) }).inside(|| { - Path::init(b!("foo\\bar", 0)) + Path::new(b!("foo\\bar", 0)) }); assert!(handled); assert_eq!(p.as_vec(), b!("\\bar")); @@ -1301,12 +1301,12 @@ mod tests { cond.trap(|_| { (b!("null", 0).to_owned()) }).inside(|| { - Path::init(b!("foo\\bar", 0)) + Path::new(b!("foo\\bar", 0)) }); }) t!(~"set_filename w\\nul" => { - let mut p = Path::init(b!("foo\\bar")); + let mut p = Path::new(b!("foo\\bar")); cond.trap(|_| { (b!("null", 0).to_owned()) }).inside(|| { @@ -1315,7 +1315,7 @@ mod tests { }) t!(~"push w\\nul" => { - let mut p = Path::init(b!("foo\\bar")); + let mut p = Path::new(b!("foo\\bar")); cond.trap(|_| { (b!("null", 0).to_owned()) }).inside(|| { @@ -1327,25 +1327,25 @@ mod tests { #[test] #[should_fail] fn test_not_utf8_fail() { - Path::init(b!("hello", 0x80, ".txt")); + Path::new(b!("hello", 0x80, ".txt")); } #[test] fn test_display_str() { - let path = Path::init("foo"); + let path = Path::new("foo"); assert_eq!(path.display().to_str(), ~"foo"); - let path = Path::init(b!("\\")); + let path = Path::new(b!("\\")); assert_eq!(path.filename_display().to_str(), ~""); let mut called = false; - let path = Path::init("foo"); + let path = Path::new("foo"); path.display().with_str(|s| { assert_eq!(s, "foo"); called = true; }); assert!(called); called = false; - let path = Path::init(b!("\\")); + let path = Path::new(b!("\\")); path.filename_display().with_str(|s| { assert_eq!(s, ""); called = true; @@ -1358,7 +1358,7 @@ mod tests { macro_rules! t( ($path:expr, $exp:expr, $expf:expr) => ( { - let path = Path::init($path); + let path = Path::new($path); let f = format!("{}", path.display()); assert_eq!(f.as_slice(), $exp); let f = format!("{}", path.filename_display()); @@ -1377,20 +1377,20 @@ mod tests { macro_rules! t( (s: $path:expr, $op:ident, $exp:expr) => ( { - let path = Path::init($path); + let path = Path::new($path); assert_eq!(path.$op(), Some($exp)); } ); (s: $path:expr, $op:ident, $exp:expr, opt) => ( { - let path = Path::init($path); + let path = Path::new($path); let left = path.$op(); assert_eq!(left, $exp); } ); (v: $path:expr, $op:ident, $exp:expr) => ( { - let path = Path::init($path); + let path = Path::new($path); assert_eq!(path.$op(), $exp); } ) @@ -1499,7 +1499,7 @@ mod tests { { let path = ($path); let join = ($join); - let mut p1 = Path::init(path); + let mut p1 = Path::new(path); let p2 = p1.clone(); p1.push(join); assert_eq!(p1, p2.join(join)); @@ -1515,14 +1515,14 @@ mod tests { // so there's no need for the full set of prefix tests // we do want to check one odd case though to ensure the prefix is re-parsed - let mut p = Path::init("\\\\?\\C:"); + let mut p = Path::new("\\\\?\\C:"); assert_eq!(prefix(&p), Some(VerbatimPrefix(2))); p.push("foo"); assert_eq!(prefix(&p), Some(VerbatimDiskPrefix)); assert_eq!(p.as_str(), Some("\\\\?\\C:\\foo")); // and another with verbatim non-normalized paths - let mut p = Path::init("\\\\?\\C:\\a\\"); + let mut p = Path::new("\\\\?\\C:\\a\\"); p.push("foo"); assert_eq!(p.as_str(), Some("\\\\?\\C:\\a\\foo")); } @@ -1532,8 +1532,8 @@ mod tests { macro_rules! t( (s: $path:expr, $push:expr, $exp:expr) => ( { - let mut p = Path::init($path); - let push = Path::init($push); + let mut p = Path::new($path); + let push = Path::new($push); p.push(&push); assert_eq!(p.as_str(), Some($exp)); } @@ -1584,14 +1584,14 @@ mod tests { macro_rules! t( (s: $path:expr, $push:expr, $exp:expr) => ( { - let mut p = Path::init($path); + let mut p = Path::new($path); p.push_many($push); assert_eq!(p.as_str(), Some($exp)); } ); (v: $path:expr, $push:expr, $exp:expr) => ( { - let mut p = Path::init($path); + let mut p = Path::new($path); p.push_many($push); assert_eq!(p.as_vec(), $exp); } @@ -1616,7 +1616,7 @@ mod tests { (s: $path:expr, $left:expr, $right:expr) => ( { let pstr = $path; - let mut p = Path::init(pstr); + let mut p = Path::new(pstr); let result = p.pop(); let left = $left; assert!(p.as_str() == Some(left), @@ -1627,7 +1627,7 @@ mod tests { ); (v: [$($path:expr),+], [$($left:expr),+], $right:expr) => ( { - let mut p = Path::init(b!($($path),+)); + let mut p = Path::new(b!($($path),+)); let result = p.pop(); assert_eq!(p.as_vec(), b!($($left),+)); assert_eq!(result, $right); @@ -1673,28 +1673,28 @@ mod tests { #[test] fn test_root_path() { - assert_eq!(Path::init("a\\b\\c").root_path(), None); - assert_eq!(Path::init("\\a\\b\\c").root_path(), Some(Path::init("\\"))); - assert_eq!(Path::init("C:a").root_path(), None); - assert_eq!(Path::init("C:\\a").root_path(), Some(Path::init("C:\\"))); - assert_eq!(Path::init("\\\\a\\b\\c").root_path(), Some(Path::init("\\\\a\\b"))); - assert_eq!(Path::init("\\\\?\\a\\b").root_path(), Some(Path::init("\\\\?\\a"))); - assert_eq!(Path::init("\\\\?\\C:\\a").root_path(), Some(Path::init("\\\\?\\C:\\"))); - assert_eq!(Path::init("\\\\?\\UNC\\a\\b\\c").root_path(), - Some(Path::init("\\\\?\\UNC\\a\\b"))); - assert_eq!(Path::init("\\\\.\\a\\b").root_path(), Some(Path::init("\\\\.\\a"))); + assert_eq!(Path::new("a\\b\\c").root_path(), None); + assert_eq!(Path::new("\\a\\b\\c").root_path(), Some(Path::new("\\"))); + assert_eq!(Path::new("C:a").root_path(), None); + assert_eq!(Path::new("C:\\a").root_path(), Some(Path::new("C:\\"))); + assert_eq!(Path::new("\\\\a\\b\\c").root_path(), Some(Path::new("\\\\a\\b"))); + assert_eq!(Path::new("\\\\?\\a\\b").root_path(), Some(Path::new("\\\\?\\a"))); + assert_eq!(Path::new("\\\\?\\C:\\a").root_path(), Some(Path::new("\\\\?\\C:\\"))); + assert_eq!(Path::new("\\\\?\\UNC\\a\\b\\c").root_path(), + Some(Path::new("\\\\?\\UNC\\a\\b"))); + assert_eq!(Path::new("\\\\.\\a\\b").root_path(), Some(Path::new("\\\\.\\a"))); } #[test] fn test_join() { - t!(s: Path::init("a\\b\\c").join(".."), "a\\b"); - t!(s: Path::init("\\a\\b\\c").join("d"), "\\a\\b\\c\\d"); - t!(s: Path::init("a\\b").join("c\\d"), "a\\b\\c\\d"); - t!(s: Path::init("a\\b").join("\\c\\d"), "\\c\\d"); - t!(s: Path::init(".").join("a\\b"), "a\\b"); - t!(s: Path::init("\\").join("a\\b"), "\\a\\b"); - t!(v: Path::init(b!("a\\b\\c")).join(b!("..")), b!("a\\b")); - t!(v: Path::init(b!("\\a\\b\\c")).join(b!("d")), b!("\\a\\b\\c\\d")); + t!(s: Path::new("a\\b\\c").join(".."), "a\\b"); + t!(s: Path::new("\\a\\b\\c").join("d"), "\\a\\b\\c\\d"); + t!(s: Path::new("a\\b").join("c\\d"), "a\\b\\c\\d"); + t!(s: Path::new("a\\b").join("\\c\\d"), "\\c\\d"); + t!(s: Path::new(".").join("a\\b"), "a\\b"); + t!(s: Path::new("\\").join("a\\b"), "\\a\\b"); + t!(v: Path::new(b!("a\\b\\c")).join(b!("..")), b!("a\\b")); + t!(v: Path::new(b!("\\a\\b\\c")).join(b!("d")), b!("\\a\\b\\c\\d")); // full join testing is covered under test_push_path, so no need for // the full set of prefix tests } @@ -1704,8 +1704,8 @@ mod tests { macro_rules! t( (s: $path:expr, $join:expr, $exp:expr) => ( { - let path = Path::init($path); - let join = Path::init($join); + let path = Path::new($path); + let join = Path::new($join); let res = path.join(&join); assert_eq!(res.as_str(), Some($exp)); } @@ -1729,14 +1729,14 @@ mod tests { macro_rules! t( (s: $path:expr, $join:expr, $exp:expr) => ( { - let path = Path::init($path); + let path = Path::new($path); let res = path.join_many($join); assert_eq!(res.as_str(), Some($exp)); } ); (v: $path:expr, $join:expr, $exp:expr) => ( { - let path = Path::init($path); + let path = Path::new($path); let res = path.join_many($join); assert_eq!(res.as_vec(), $exp); } @@ -1760,7 +1760,7 @@ mod tests { (s: $path:expr, $op:ident, $arg:expr, $res:expr) => ( { let pstr = $path; - let path = Path::init(pstr); + let path = Path::new(pstr); let arg = $arg; let res = path.$op(arg); let exp = $res; @@ -1846,9 +1846,9 @@ mod tests { { let path = $path; let arg = $arg; - let mut p1 = Path::init(path); + let mut p1 = Path::new(path); p1.$set(arg); - let p2 = Path::init(path); + let p2 = Path::new(path); assert_eq!(p1, p2.$with(arg)); } ); @@ -1856,9 +1856,9 @@ mod tests { { let path = $path; let arg = $arg; - let mut p1 = Path::init(path); + let mut p1 = Path::new(path); p1.$set(arg); - let p2 = Path::init(path); + let p2 = Path::new(path); assert_eq!(p1, p2.$with(arg)); } ) @@ -1919,19 +1919,19 @@ mod tests { ) ) - t!(v: Path::init(b!("a\\b\\c")), Some(b!("c")), b!("a\\b"), Some(b!("c")), None); - t!(s: Path::init("a\\b\\c"), Some("c"), Some("a\\b"), Some("c"), None); - t!(s: Path::init("."), None, Some("."), None, None); - t!(s: Path::init("\\"), None, Some("\\"), None, None); - t!(s: Path::init(".."), None, Some(".."), None, None); - t!(s: Path::init("..\\.."), None, Some("..\\.."), None, None); - t!(s: Path::init("hi\\there.txt"), Some("there.txt"), Some("hi"), + t!(v: Path::new(b!("a\\b\\c")), Some(b!("c")), b!("a\\b"), Some(b!("c")), None); + t!(s: Path::new("a\\b\\c"), Some("c"), Some("a\\b"), Some("c"), None); + t!(s: Path::new("."), None, Some("."), None, None); + t!(s: Path::new("\\"), None, Some("\\"), None, None); + t!(s: Path::new(".."), None, Some(".."), None, None); + t!(s: Path::new("..\\.."), None, Some("..\\.."), None, None); + t!(s: Path::new("hi\\there.txt"), Some("there.txt"), Some("hi"), Some("there"), Some("txt")); - t!(s: Path::init("hi\\there"), Some("there"), Some("hi"), Some("there"), None); - t!(s: Path::init("hi\\there."), Some("there."), Some("hi"), + t!(s: Path::new("hi\\there"), Some("there"), Some("hi"), Some("there"), None); + t!(s: Path::new("hi\\there."), Some("there."), Some("hi"), Some("there"), Some("")); - t!(s: Path::init("hi\\.there"), Some(".there"), Some("hi"), Some(".there"), None); - t!(s: Path::init("hi\\..there"), Some("..there"), Some("hi"), + t!(s: Path::new("hi\\.there"), Some(".there"), Some("hi"), Some(".there"), None); + t!(s: Path::new("hi\\..there"), Some("..there"), Some("hi"), Some("."), Some("there")); // these are already tested in test_components, so no need for extended tests @@ -1939,12 +1939,12 @@ mod tests { #[test] fn test_dir_path() { - t!(s: Path::init("hi\\there").dir_path(), "hi"); - t!(s: Path::init("hi").dir_path(), "."); - t!(s: Path::init("\\hi").dir_path(), "\\"); - t!(s: Path::init("\\").dir_path(), "\\"); - t!(s: Path::init("..").dir_path(), ".."); - t!(s: Path::init("..\\..").dir_path(), "..\\.."); + t!(s: Path::new("hi\\there").dir_path(), "hi"); + t!(s: Path::new("hi").dir_path(), "."); + t!(s: Path::new("\\hi").dir_path(), "\\"); + t!(s: Path::new("\\").dir_path(), "\\"); + t!(s: Path::new("..").dir_path(), ".."); + t!(s: Path::new("..\\..").dir_path(), "..\\.."); // dir_path is just dirname interpreted as a path. // No need for extended tests @@ -1955,7 +1955,7 @@ mod tests { macro_rules! t( ($path:expr, $abs:expr, $vol:expr, $cwd:expr, $rel:expr) => ( { - let path = Path::init($path); + let path = Path::new($path); let (abs, vol, cwd, rel) = ($abs, $vol, $cwd, $rel); let b = path.is_absolute(); assert!(b == abs, "Path '{}'.is_absolute(): expected {:?}, found {:?}", @@ -1995,8 +1995,8 @@ mod tests { macro_rules! t( (s: $path:expr, $dest:expr, $exp:expr) => ( { - let path = Path::init($path); - let dest = Path::init($dest); + let path = Path::new($path); + let dest = Path::new($dest); let exp = $exp; let res = path.is_ancestor_of(&dest); assert!(res == exp, @@ -2098,8 +2098,8 @@ mod tests { macro_rules! t( (s: $path:expr, $child:expr, $exp:expr) => ( { - let path = Path::init($path); - let child = Path::init($child); + let path = Path::new($path); + let child = Path::new($child); assert_eq!(path.ends_with_path(&child), $exp); } ); @@ -2130,8 +2130,8 @@ mod tests { macro_rules! t( (s: $path:expr, $other:expr, $exp:expr) => ( { - let path = Path::init($path); - let other = Path::init($other); + let path = Path::new($path); + let other = Path::new($other); let res = path.path_relative_from(&other); let exp = $exp; assert!(res.as_ref().and_then(|x| x.as_str()) == exp, @@ -2264,7 +2264,7 @@ mod tests { macro_rules! t( (s: $path:expr, $exp:expr) => ( { - let path = Path::init($path); + let path = Path::new($path); let comps = path.str_components().map(|x|x.unwrap()).to_owned_vec(); let exp: &[&str] = $exp; assert!(comps.as_slice() == exp, @@ -2279,7 +2279,7 @@ mod tests { ); (v: [$($arg:expr),+], $exp:expr) => ( { - let path = Path::init(b!($($arg),+)); + let path = Path::new(b!($($arg),+)); let comps = path.str_components().map(|x|x.unwrap()).to_owned_vec(); let exp: &[&str] = $exp; assert!(comps.as_slice() == exp, @@ -2339,7 +2339,7 @@ mod tests { macro_rules! t( (s: $path:expr, $exp:expr) => ( { - let path = Path::init($path); + let path = Path::new($path); let comps = path.components().to_owned_vec(); let exp: &[&[u8]] = $exp; assert!(comps.as_slice() == exp, "components: Expected {:?}, found {:?}", |
