path_abs/file.rs
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
/* Copyright (c) 2018 Garrett Berg, vitiral@gmail.com
*
* Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
* http://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
* http://opensource.org/licenses/MIT>, at your option. This file may not be
* copied, modified, or distributed except according to those terms.
*/
use std::ffi;
use std::fmt;
use std::fs;
use std::io;
use std_prelude::*;
use super::{Error, Result};
use super::{FileEdit, FileRead, FileWrite, PathAbs, PathDir, PathInfo, PathOps};
#[derive(Clone, Eq, Hash, PartialEq, PartialOrd, Ord)]
/// a `PathAbs` that was a file at the time of initialization, with associated methods.
pub struct PathFile(pub(crate) PathAbs);
impl PathFile {
/// Instantiate a new `PathFile`. The file must exist or `io::Error` will be returned.
///
/// Returns `io::ErrorKind::InvalidInput` if the path exists but is not a file.
///
/// # Examples
/// ```rust
/// # extern crate path_abs;
/// use path_abs::PathFile;
///
/// # fn try_main() -> ::std::io::Result<()> {
/// let lib = PathFile::new("src/lib.rs")?;
/// # Ok(()) } fn main() { try_main().unwrap() }
/// ```
pub fn new<P: AsRef<Path>>(path: P) -> Result<PathFile> {
let abs = PathAbs::new(path)?;
PathFile::try_from(abs)
}
/// Create a `PathFile` unchecked.
///
/// This is mostly used for constructing during tests, or if the path was previously validated.
/// This is effectively the same as a `Arc<PathBuf>`.
///
/// > Note: This is memory safe, so is not marked `unsafe`. However, it could cause
/// > panics in some methods if the path was not properly validated.
pub fn new_unchecked<P: Into<Arc<PathBuf>>>(path: P) -> PathFile {
PathFile(PathAbs::new_unchecked(path))
}
/// Convert a `PathAbs` into a `PathFile`, first validating that the path is a file.
///
/// # Error
/// If the path is not a file.
///
/// # Examples
/// ```rust
/// # extern crate path_abs;
/// use path_abs::{PathAbs, PathFile};
///
/// # fn try_main() -> ::std::io::Result<()> {
/// let lib_abs = PathAbs::new("src/lib.rs")?;
/// let lib_file = PathFile::try_from(lib_abs)?;
/// # Ok(()) } fn main() { try_main().unwrap() }
/// ```
pub fn try_from<P: Into<PathAbs>>(path: P) -> Result<PathFile> {
let abs = path.into();
if abs.is_file() {
Ok(PathFile::new_unchecked(abs))
} else {
Err(Error::new(
io::Error::new(io::ErrorKind::InvalidInput, "path is not a file"),
"resolving",
abs.into(),
))
}
}
/// Get the parent directory of this file as a `PathDir`.
///
/// > This does not make aditional syscalls, as the parent by definition must be a directory
/// > and exist.
///
/// # Panics
/// Panics if there is no parent. The only way this could happen is if
/// it was constructed with `new_unchecked` using a relative path.
///
/// # Examples
/// ```rust
/// # extern crate path_abs;
/// use path_abs::{PathDir, PathFile};
///
/// # fn try_main() -> ::std::io::Result<()> {
/// let lib = PathFile::new("src/lib.rs")?;
/// let src = lib.parent_dir();
/// assert_eq!(PathDir::new("src")?, src);
/// # Ok(()) } fn main() { try_main().unwrap() }
/// ```
pub fn parent_dir(&self) -> PathDir {
let path = self.parent().expect("PathFile did not have a parent.");
PathDir::new_unchecked(PathAbs::new_unchecked(path.to_path_buf()))
}
/// Instantiate a new `PathFile`, creating an empty file if it doesn't exist.
///
/// # Examples
/// ```rust
/// # extern crate path_abs;
/// # extern crate tempdir;
/// use path_abs::PathFile;
///
/// # fn try_main() -> ::std::io::Result<()> {
/// let example = "example.txt";
/// # let tmp = tempdir::TempDir::new("ex")?;
/// # let example = &tmp.path().join(example);
///
/// # let tmp = tempdir::TempDir::new("ex")?;
/// # let example = &tmp.path().join(example);
///
/// let file = PathFile::create(example)?;
///
/// // It can be done twice with no effect.
/// let _ = PathFile::create(example)?;
/// # Ok(()) } fn main() { try_main().unwrap() }
/// ```
pub fn create<P: AsRef<Path>>(path: P) -> Result<PathFile> {
fs::OpenOptions::new()
.write(true)
.create(true)
.open(&path)
.map_err(|err| Error::new(err, "opening", path.as_ref().to_path_buf().into()))?;
PathFile::new(path)
}
/// Read the entire contents of the file into a `String`.
///
/// # Examples
/// ```rust
/// # extern crate path_abs;
/// # extern crate tempdir;
/// use path_abs::PathFile;
///
/// # fn try_main() -> ::std::io::Result<()> {
/// let example = "example.txt";
/// # let tmp = tempdir::TempDir::new("ex")?;
/// # let example = &tmp.path().join(example);
/// let file = PathFile::create(example)?;
///
/// let expected = "foo\nbar";
/// file.write_str(expected)?;
/// assert_eq!(expected, file.read_string()?);
/// # Ok(()) } fn main() { try_main().unwrap() }
/// ```
pub fn read_string(&self) -> Result<String> {
let mut f = self.open_read()?;
f.read_string()
}
/// Write the `str` to a file, truncating it first if it exists and creating it otherwise.
///
/// # Examples
/// ```rust
/// # extern crate path_abs;
/// # extern crate tempdir;
/// use path_abs::PathFile;
///
/// # fn try_main() -> ::std::io::Result<()> {
/// let example = "example.txt";
/// # let tmp = tempdir::TempDir::new("ex")?;
/// # let example = &tmp.path().join(example);
/// let file = PathFile::create(example)?;
///
/// let expected = "foo\nbar";
/// file.write_str(expected)?;
/// assert_eq!(expected, file.read_string()?);
/// # Ok(()) } fn main() { try_main().unwrap() }
/// ```
pub fn write_str(&self, s: &str) -> Result<()> {
let mut options = fs::OpenOptions::new();
options.create(true);
options.truncate(true);
let mut f = FileWrite::open_abs(self.clone(), options)?;
if s.is_empty() {
return Ok(());
}
f.write_str(s)?;
f.flush()
}
/// Append the `str` to a file, creating it if it doesn't exist.
///
/// # Examples
/// ```rust
/// # extern crate path_abs;
/// # extern crate tempdir;
/// use path_abs::PathFile;
///
/// # fn try_main() -> ::std::io::Result<()> {
/// let example = "example.txt";
/// # let tmp = tempdir::TempDir::new("ex")?;
/// # let example = &tmp.path().join(example);
/// let file = PathFile::create(example)?;
///
/// let expected = "foo\nbar\nbaz";
/// file.append_str("foo\nbar")?;
/// file.append_str("\nbaz")?;
/// assert_eq!(expected, file.read_string()?);
/// # Ok(()) } fn main() { try_main().unwrap() }
/// ```
pub fn append_str(&self, s: &str) -> Result<()> {
let mut f = self.open_append()?;
if s.is_empty() {
return Ok(());
}
f.write_str(s)?;
f.flush()
}
/// Open the file as read-only.
///
/// # Examples
/// ```rust
/// # extern crate path_abs;
/// # extern crate tempdir;
/// use std::io::Read;
/// use path_abs::PathFile;
///
/// # fn try_main() -> ::std::io::Result<()> {
/// let example = "example.txt";
/// # let tmp = tempdir::TempDir::new("ex")?;
/// # let example = &tmp.path().join(example);
/// let file = PathFile::create(example)?;
///
/// let expected = "foo\nbar";
/// file.write_str(expected)?;
///
/// let mut read = file.open_read()?;
/// let mut s = String::new();
/// read.read_to_string(&mut s)?;
/// assert_eq!(expected, s);
/// # Ok(()) } fn main() { try_main().unwrap() }
/// ```
pub fn open_read(&self) -> Result<FileRead> {
FileRead::open_abs(self.clone())
}
/// Open the file as write-only in append mode.
///
/// # Examples
/// ```rust
/// # extern crate path_abs;
/// # extern crate tempdir;
/// use std::io::Write;
/// use path_abs::PathFile;
///
/// # fn try_main() -> ::std::io::Result<()> {
/// let example = "example.txt";
/// # let tmp = tempdir::TempDir::new("ex")?;
/// # let example = &tmp.path().join(example);
/// let file = PathFile::create(example)?;
///
/// let expected = "foo\nbar\n";
/// file.write_str("foo\n")?;
///
/// let mut append = file.open_append()?;
/// append.write_all(b"bar\n")?;
/// append.flush();
/// assert_eq!(expected, file.read_string()?);
/// # Ok(()) } fn main() { try_main().unwrap() }
/// ```
pub fn open_append(&self) -> Result<FileWrite> {
let mut options = fs::OpenOptions::new();
options.append(true);
FileWrite::open_abs(self.clone(), options)
}
/// Open the file for editing (reading and writing).
///
/// # Examples
/// ```rust
/// # extern crate path_abs;
/// # extern crate tempdir;
/// use std::io::{Read, Seek, Write, SeekFrom};
/// use path_abs::PathFile;
///
/// # fn try_main() -> ::std::io::Result<()> {
/// let example = "example.txt";
/// # let tmp = tempdir::TempDir::new("ex")?;
/// # let example = &tmp.path().join(example);
/// let file = PathFile::create(example)?;
///
/// let expected = "foo\nbar";
///
/// let mut edit = file.open_edit()?;
/// let mut s = String::new();
///
/// edit.write_all(expected.as_bytes())?;
/// edit.seek(SeekFrom::Start(0))?;
/// edit.read_to_string(&mut s)?;
/// assert_eq!(expected, s);
/// # Ok(()) } fn main() { try_main().unwrap() }
/// ```
pub fn open_edit(&self) -> Result<FileEdit> {
FileEdit::open_abs(self.clone(), fs::OpenOptions::new())
}
/// Copy the file to another location, including permission bits
///
/// # Examples
///
/// ```rust
/// # extern crate path_abs;
/// # extern crate tempdir;
/// use path_abs::PathFile;
/// use std::path::Path;
///
/// # fn try_main() -> ::std::io::Result<()> {
/// let example = "example.txt";
/// let example_bk = "example.txt.bk";
/// # let tmp = tempdir::TempDir::new("ex")?;
/// # let example = &tmp.path().join(example);
/// # let example_bk = &tmp.path().join(example_bk);
/// let file = PathFile::create(example)?;
///
/// let contents = "This is some contents";
/// file.write_str(contents);
/// let file_bk = file.copy(example_bk)?;
/// assert_eq!(contents, file.read_string()?);
/// assert_eq!(contents, file_bk.read_string()?);
/// # Ok(()) } fn main() { try_main().unwrap() }
/// ```
pub fn copy<P: AsRef<Path>>(&self, path: P) -> Result<PathFile> {
fs::copy(&self, &path).map_err(|err| {
Error::new(
err,
&format!("copying {} from", path.as_ref().display()),
self.clone().into(),
)
})?;
Ok(PathFile::new(path)?)
}
/// Rename a file, replacing the original file if `to` already exists.
///
/// This will not work if the new name is on a different mount point.
///
/// # Examples
/// ```rust
/// # extern crate path_abs;
/// # extern crate tempdir;
/// use path_abs::{PathFile, PathInfo};
/// use std::path::Path;
///
/// # fn try_main() -> ::std::io::Result<()> {
/// let example = "example.txt";
/// let example_bk = "example.txt.bk";
/// # let tmp = tempdir::TempDir::new("ex")?;
/// # let example = &tmp.path().join(example);
/// # let example_bk = &tmp.path().join(example_bk);
/// let file = PathFile::create(example)?;
///
/// let contents = "This is some contents";
/// file.write_str(contents);
/// let file_bk = file.clone().rename(example_bk)?;
/// assert!(!file.exists());
/// assert_eq!(contents, file_bk.read_string()?);
/// # Ok(()) } fn main() { try_main().unwrap() }
/// ```
pub fn rename<P: AsRef<Path>>(self, to: P) -> Result<PathFile> {
fs::rename(&self, &to).map_err(|err| {
Error::new(
err,
&format!("renaming to {} from", to.as_ref().display()),
self.clone().into(),
)
})?;
Ok(PathFile::new(to)?)
}
/// Creates a new symbolic link on the filesystem to the dst.
///
/// This handles platform specific behavior correctly.
///
/// # Examples
///
/// ```rust
/// # extern crate path_abs;
/// # extern crate tempdir;
/// use path_abs::PathFile;
/// use std::path::Path;
///
/// # fn try_main() -> ::std::io::Result<()> {
/// let example = "example.txt";
/// let example_sym = "example.txt.sym";
/// # let tmp = tempdir::TempDir::new("ex")?;
/// # let example = &tmp.path().join(example);
/// # let example_sym = &tmp.path().join(example_sym);
/// let file = PathFile::create(example)?;
///
/// let contents = "This is some contents";
/// file.write_str(contents);
/// let file_sym = file.symlink(example_sym)?;
///
/// // They have a different "absolute path"
/// assert_ne!(file, file_sym);
///
/// // But they can be canonicalized to the same file.
/// let file_can = file_sym.canonicalize()?;
/// assert_eq!(file, file_can);
/// # Ok(()) } fn main() { try_main().unwrap() }
/// ```
pub fn symlink<P: AsRef<Path>>(&self, dst: P) -> Result<PathFile> {
symlink_file(&self, &dst).map_err(|err| {
Error::new(
err,
&format!("linking from {} to", dst.as_ref().display()),
self.clone().into(),
)
})?;
PathFile::new(dst)
}
/// Remove (delete) the file from the filesystem, consuming self.
///
/// # Examples
///
/// ```rust
/// # extern crate path_abs;
/// # extern crate tempdir;
/// use path_abs::{PathFile, PathInfo};
/// use std::path::Path;
///
/// # fn try_main() -> ::std::io::Result<()> {
/// let example = "example.txt";
/// # let tmp = tempdir::TempDir::new("ex")?;
/// # let example = &tmp.path().join(example);
/// let file = PathFile::create(example)?;
/// assert!(file.exists());
/// file.remove()?;
///
/// // file.exists() <--- COMPILER ERROR, `file` was consumed
///
/// assert!(!Path::new(example).exists());
/// # Ok(()) } fn main() { try_main().unwrap() }
/// ```
pub fn remove(self) -> Result<()> {
fs::remove_file(&self).map_err(|err| Error::new(err, "removing", self.into()))
}
/// Return a reference to a basic `std::path::Path`
pub fn as_path(&self) -> &Path {
self.as_ref()
}
/// Returns the canonical form of the path with all intermediate components normalized and
/// symbolic links resolved.
///
/// See [`PathAbs::canonicalize`]
///
/// [`PathAbs::canonicalize`]: struct.PathAbs.html#method.canonicalize
pub fn canonicalize(&self) -> Result<PathFile> {
Ok(PathFile(self.0.canonicalize()?))
}
}
impl fmt::Debug for PathFile {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
self.0.fmt(f)
}
}
impl AsRef<ffi::OsStr> for PathFile {
fn as_ref(&self) -> &std::ffi::OsStr {
self.0.as_ref()
}
}
impl AsRef<PathAbs> for PathFile {
fn as_ref(&self) -> &PathAbs {
&self.0
}
}
impl AsRef<Path> for PathFile {
fn as_ref(&self) -> &Path {
self.0.as_ref()
}
}
impl AsRef<PathBuf> for PathFile {
fn as_ref(&self) -> &PathBuf {
self.0.as_ref()
}
}
impl Borrow<PathAbs> for PathFile {
fn borrow(&self) -> &PathAbs {
self.as_ref()
}
}
impl Borrow<Path> for PathFile {
fn borrow(&self) -> &Path {
self.as_ref()
}
}
impl Borrow<PathBuf> for PathFile {
fn borrow(&self) -> &PathBuf {
self.as_ref()
}
}
impl<'a> Borrow<PathAbs> for &'a PathFile {
fn borrow(&self) -> &PathAbs {
self.as_ref()
}
}
impl<'a> Borrow<Path> for &'a PathFile {
fn borrow(&self) -> &Path {
self.as_ref()
}
}
impl<'a> Borrow<PathBuf> for &'a PathFile {
fn borrow(&self) -> &PathBuf {
self.as_ref()
}
}
impl From<PathFile> for PathAbs {
fn from(path: PathFile) -> PathAbs {
path.0
}
}
impl From<PathFile> for Arc<PathBuf> {
fn from(path: PathFile) -> Arc<PathBuf> {
let abs: PathAbs = path.into();
abs.into()
}
}
impl From<PathFile> for PathBuf {
fn from(path: PathFile) -> PathBuf {
let abs: PathAbs = path.into();
abs.into()
}
}
impl PathOps for PathFile {
type Output = PathAbs;
fn concat<P: AsRef<Path>>(&self, path: P) -> Result<Self::Output> {
Ok(self.0.concat(path)?)
}
fn join<P: AsRef<Path>>(&self, path: P) -> Self::Output {
let buf = Path::join(self.as_path(), path);
Self::Output::new_unchecked(buf)
}
fn with_file_name<S: AsRef<ffi::OsStr>>(&self, file_name: S) -> Self::Output {
self.0.with_file_name(file_name)
}
fn with_extension<S: AsRef<ffi::OsStr>>(&self, extension: S) -> Self::Output {
self.0.with_extension(extension)
}
}
#[cfg(target_os = "wasi")]
fn symlink_file<P: AsRef<Path>, Q: AsRef<Path>>(src: P, dst: Q) -> io::Result<()> {
std::os::wasi::fs::symlink_path(src, dst)
}
#[cfg(unix)]
fn symlink_file<P: AsRef<Path>, Q: AsRef<Path>>(src: P, dst: Q) -> io::Result<()> {
::std::os::unix::fs::symlink(src, dst)
}
#[cfg(windows)]
fn symlink_file<P: AsRef<Path>, Q: AsRef<Path>>(src: P, dst: Q) -> io::Result<()> {
::std::os::windows::fs::symlink_file(src, dst)
}