filesystem/lib.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
#![feature(io_error_more)]
// Copyright (c) 2017 Isobel Redelmeier
// Copyright (c) 2021 Miguel Barreto
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
#[cfg(any(feature = "mock", test))]
extern crate pseudo;
#[cfg(feature = "temp")]
extern crate rand;
#[cfg(feature = "temp")]
extern crate tempdir;
use std::ffi::OsString;
use std::io::Result;
use std::path::{Path, PathBuf};
#[cfg(feature = "fake")]
pub use fake::{FakeFileSystem, FakeTempDir};
#[cfg(any(feature = "mock", test))]
pub use mock::{FakeError, MockFileSystem};
pub use os::OsFileSystem;
#[cfg(feature = "temp")]
pub use os::OsTempDir;
#[cfg(feature = "fake")]
mod fake;
#[cfg(any(feature = "mock", test))]
mod mock;
mod os;
/// Provides standard file system operations.
pub trait FileSystem {
type DirEntry: DirEntry;
type ReadDir: ReadDir<Self::DirEntry>;
/// Returns the current working directory.
/// This is based on [`std::env::current_dir`].
///
/// [`std::env::current_dir`]: https://doc.rust-lang.org/std/env/fn.current_dir.html
fn current_dir(&self) -> Result<PathBuf>;
/// Updates the current working directory.
/// This is based on [`std::env::set_current_dir`].
///
/// [`std::env::set_current_dir`]: https://doc.rust-lang.org/std/env/fn.set_current_dir.html
fn set_current_dir<P: AsRef<Path>>(&self, path: P) -> Result<()>;
/// Determines whether the path exists and points to a directory.
fn is_dir<P: AsRef<Path>>(&self, path: P) -> bool;
/// Determines whether the path exists and points to a file.
fn is_file<P: AsRef<Path>>(&self, path: P) -> bool;
/// Creates a new directory.
/// This is based on [`std::fs::create_dir`].
///
/// [`std::fs::create_dir`]: https://doc.rust-lang.org/std/fs/fn.create_dir.html
fn create_dir<P: AsRef<Path>>(&self, path: P) -> Result<()>;
/// Recursively creates a directory and any missing parents.
/// This is based on [`std::fs::create_dir`].
///
/// [`std::fs::create_dir_all`]: https://doc.rust-lang.org/std/fs/fn.create_dir_all.html
fn create_dir_all<P: AsRef<Path>>(&self, path: P) -> Result<()>;
/// Removes an empty directory.
/// This is based on [`std::fs::remove_dir`].
///
/// [`std::fs::remove_dir`]: https://doc.rust-lang.org/std/fs/fn.remove_dir.html
fn remove_dir<P: AsRef<Path>>(&self, path: P) -> Result<()>;
/// Removes a directory and any child files or directories.
/// This is based on [`std::fs::remove_dir_all`].
///
/// [`std::fs::remove_dir_all`]: https://doc.rust-lang.org/std/fs/fn.remove_dir_all.html
fn remove_dir_all<P: AsRef<Path>>(&self, path: P) -> Result<()>;
/// Returns an iterator over the entries in a directory.
/// This is based on [`std::fs::read_dir`].
///
/// [`std::fs::read_dir`]: https://doc.rust-lang.org/std/fs/fn.read_dir.html
fn read_dir<P: AsRef<Path>>(&self, path: P) -> Result<Self::ReadDir>;
/// Writes `buf` to a new file at `path`.
///
/// # Errors
///
/// * A file or directory already exists at `path`.
/// * The parent directory of `path` does not exist.
/// * Current user has insufficient permissions.
fn create_file<P, B>(&self, path: P, buf: B) -> Result<()>
where
P: AsRef<Path>,
B: AsRef<[u8]>;
/// Writes `buf` to a new or existing file at `buf`.
/// This will overwrite any contents that already exist.
///
/// # Errors
///
/// * The parent directory of `path` does not exist.
/// * Current user has insufficient permissions.
fn write_file<P, B>(&self, path: P, buf: B) -> Result<()>
where
P: AsRef<Path>,
B: AsRef<[u8]>;
/// Writes `buf` to an existing file at `buf`.
/// This will overwrite any contents that already exist.
///
/// # Errors
///
/// * No file `file` does not exist.
/// * The node at `file` is a directory.
/// * Current user has insufficient permissions.
fn overwrite_file<P, B>(&self, path: P, buf: B) -> Result<()>
where
P: AsRef<Path>,
B: AsRef<[u8]>;
/// Returns the contents of `path`.
///
/// # Errors
///
/// * `path` does not exist.
/// * `path` is a directory.
/// * Current user has insufficient permissions.
fn read_file<P: AsRef<Path>>(&self, path: P) -> Result<Vec<u8>>;
/// Returns the contents of `path` as a string.
///
/// # Errors
///
/// * `path` does not exist.
/// * `path` is a directory.
/// * Current user has insufficient permissions.
/// * Contents are not valid UTF-8
fn read_file_to_string<P: AsRef<Path>>(&self, path: P) -> Result<String>;
/// Writes the contents of `path` into the buffer. If successful, returns
/// the number of bytes that were read.
///
/// # Errors
///
/// * `path` does not exist.
/// * `path` is a directory.
/// * Current user has insufficient permissions.
fn read_file_into<P, B>(&self, path: P, buf: B) -> Result<usize>
where
P: AsRef<Path>,
B: AsMut<Vec<u8>>;
/// Removes the file at `path`.
/// This is based on [`std::fs::remove_file`].
///
/// [`std::fs::remove_file`]: https://doc.rust-lang.org/std/fs/fn.remove_file.html
fn remove_file<P: AsRef<Path>>(&self, path: P) -> Result<()>;
/// Copies the file at path `from` to the path `to`.
/// This is based on [`std::fs::copy`].
///
/// [`std::fs::copy`]: https://doc.rust-lang.org/std/fs/fn.copy.html
fn copy_file<P, Q>(&self, from: P, to: Q) -> Result<()>
where
P: AsRef<Path>,
Q: AsRef<Path>;
/// Renames a file or directory.
/// If both `from` and `to` are files, `to` will be replaced.
/// Based on [`std::fs::rename`].
///
/// [`std::fs::rename`]: https://doc.rust-lang.org/std/fs/fn.rename.html
fn rename<P, Q>(&self, from: P, to: Q) -> Result<()>
where
P: AsRef<Path>,
Q: AsRef<Path>;
/// Returns `true` if `path` is a readonly file.
///
/// # Errors
///
/// * `path` does not exist.
/// * Current user has insufficient permissions.
fn readonly<P: AsRef<Path>>(&self, path: P) -> Result<bool>;
/// Sets or unsets the readonly flag of `path`.
///
/// # Errors
///
/// * `path` does not exist.
/// * Current user has insufficient permissions.
fn set_readonly<P: AsRef<Path>>(&self, path: P, readonly: bool) -> Result<()>;
/// Returns the length of the node at the path
/// or 0 if the node does not exist.
fn len<P: AsRef<Path>>(&self, path: P) -> u64;
}
pub trait DirEntry {
fn file_name(&self) -> OsString;
fn path(&self) -> PathBuf;
}
pub trait ReadDir<T: DirEntry>: Iterator<Item = Result<T>> {}
#[cfg(unix)]
pub trait UnixFileSystem {
/// Returns the current mode bits of `path`.
///
/// # Errors
///
/// * `path` does not exist.
/// * Current user has insufficient permissions.
fn mode<P: AsRef<Path>>(&self, path: P) -> Result<u32>;
/// Sets the mode bits of `path`.
///
/// # Errors
///
/// * `path` does not exist.
/// * Current user has insufficient permissions.
fn set_mode<P: AsRef<Path>>(&self, path: P, mode: u32) -> Result<()>;
/// Creates a new symbolic link on the filesystem.
///
/// The `dst` path will be a symbolic link pointing to the `src` path.
///
/// Based on [`std::os::unix::fs::symlink`].
///
/// [`std::os::unix::fs::symlink`]: https://doc.rust-lang.org/std/os/unix/fs/fn.symlink.html
fn symlink<P: AsRef<Path>, Q: AsRef<Path>>(&self, src: P, dst: Q) -> Result<()>;
/// Gets the source for a symlink.
///
/// Based on [`std::fs::read_link`]
fn get_symlink_src<P: AsRef<Path>>(&self, dst: P) -> Result<PathBuf>;
}
#[cfg(feature = "temp")]
/// Tracks a temporary directory that will be deleted once the struct goes out of scope.
pub trait TempDir {
/// Returns the [`Path`] of the temporary directory.
///
/// [`Path`]: https://doc.rust-lang.org/std/path/struct.Path.html
fn path(&self) -> &Path;
}
#[cfg(feature = "temp")]
pub trait TempFileSystem {
type TempDir: TempDir;
/// Creates a new temporary directory.
fn temp_dir<S: AsRef<str>>(&self, prefix: S) -> Result<Self::TempDir>;
}