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
#[cfg(unix)] use crate::os::unix::net::{UnixDatagram, UnixListener, UnixStream}; use crate::{ fs::{DirBuilder, File, Metadata, OpenOptions, Permissions, ReadDir}, sys, }; #[cfg(unix)] use std::os::unix::io::{AsRawFd, FromRawFd, IntoRawFd, RawFd}; #[cfg(windows)] use std::os::windows::io::{AsRawHandle, FromRawHandle, IntoRawHandle, RawHandle}; use std::{ fs, io, path::{Path, PathBuf}, }; /// A reference to an open directory on a filesystem. /// /// TODO: Add OFlag::CLOEXEC to yanix and use it in `open_file` and friends. /// /// TODO: Windows support. /// /// Unlike `std::fs`, this API's `canonicalize` returns a relative path since /// absolute paths don't interoperate well with the capability model. pub struct Dir { sys: sys::fs::Dir, } impl Dir { /// Constructs a new instance of `Self` from the given `std::fs::File`. #[inline] pub fn from_std_file(std_file: fs::File) -> Self { Self { sys: sys::fs::Dir::from_std_file(std_file), } } /// Attempts to open a file in read-only mode. /// /// This corresponds to [`std::fs::File::open`], but only accesses paths /// relative to `self`. /// /// [`std::fs::File::open`]: https://doc.rust-lang.org/std/fs/struct.File.html#method.open #[inline] pub fn open_file<P: AsRef<Path>>(&self, path: P) -> io::Result<File> { self.sys.open_file(path.as_ref()) } /// Opens a file at `path` with the options specified by `self`. /// /// This corresponds to [`std::fs::OpenOptions::open`]. /// /// Instead of being a method on `OpenOptions`, this is a method on `Dir`, /// and it only accesses functions relative to `self`. /// /// [`std::fs::OpenOptions::open`]: https://doc.rust-lang.org/std/fs/struct.OpenOptions.html#method.open #[inline] pub fn open_file_with<P: AsRef<Path>>( &self, path: P, options: &OpenOptions, ) -> io::Result<File> { self.sys.open_file_with(path.as_ref(), options) } /// Attempts to open a directory. #[inline] pub fn open_dir<P: AsRef<Path>>(&self, path: P) -> io::Result<Self> { self.sys.open_dir(path.as_ref()) } /// Creates a new, empty directory at the provided path. /// /// This corresponds to [`std::fs::create_dir`], but only accesses paths /// relative to `self`. /// /// [`std::fs::create_dir`]: https://doc.rust-lang.org/std/fs/fn.create_dir.html #[inline] pub fn create_dir<P: AsRef<Path>>(&self, path: P) -> io::Result<()> { self.sys.create_dir(path.as_ref()) } /// Recursively create a directory and all of its parent components if they are missing. /// /// This corresponds to [`std::fs::create_dir_all`], but only accesses paths /// relative to `self`. /// /// [`std::fs::create_dir_all`]: https://doc.rust-lang.org/std/fs/fn.create_dir_all.html #[inline] pub fn create_dir_all<P: AsRef<Path>>(&self, path: P) -> io::Result<()> { self.sys.create_dir_all(path.as_ref()) } /// Opens a file in write-only mode. /// /// This corresponds to [`std::fs::File::create`], but only accesses paths /// relative to `self`. /// /// [`std::fs::File::create`]: https://doc.rust-lang.org/std/fs/struct.File.html#method.create #[inline] pub fn create_file<P: AsRef<Path>>(&self, path: P) -> io::Result<File> { self.sys.create_file(path.as_ref()) } /// Returns the canonical form of a path with all intermediate components normalized /// and symbolic links resolved. /// /// This corresponds to [`std::fs::canonicalize`], but instead of returning an /// absolute path, returns a path relative to the directory represented by `self`. /// /// [`std::fs::canonicalize`]: https://doc.rust-lang.org/std/fs/fn.canonicalize.html #[inline] pub fn canonicalize<P: AsRef<Path>>(&self, path: P) -> io::Result<PathBuf> { self.sys.canonicalize(path.as_ref()) } /// Copies the contents of one file to another. This function will also copy the permission /// bits of the original file to the destination file. /// /// This corresponds to [`std::fs::copy`], but only accesses paths /// relative to `self`. /// /// [`std::fs::copy`]: https://doc.rust-lang.org/std/fs/fn.copy.html #[inline] pub fn copy<P: AsRef<Path>, Q: AsRef<Path>>(&self, from: P, to: Q) -> io::Result<u64> { self.sys.copy(from.as_ref(), to.as_ref()) } /// Creates a new hard link on a filesystem. /// /// This corresponds to [`std::fs::hard_link`], but only accesses paths /// relative to `self`. /// /// [`std::fs::hard_link`]: https://doc.rust-lang.org/std/fs/fn.hard_link.html #[inline] pub fn hard_link<P: AsRef<Path>, Q: AsRef<Path>>(&self, src: P, dst: Q) -> io::Result<()> { self.sys.hard_link(src.as_ref(), dst.as_ref()) } /// Given a path, query the file system to get information about a file, directory, etc. /// /// This corresponds to [`std::fs::metadata`], but only accesses paths /// relative to `self`. /// /// [`std::fs::metadata`]: https://doc.rust-lang.org/std/fs/fn.metadata.html #[inline] pub fn metadata<P: AsRef<Path>>(&self, path: P) -> io::Result<Metadata> { self.sys.metadata(path.as_ref()) } /// Returns an iterator over the entries within a directory. /// /// This corresponds to [`std::fs::read_dir`], but only accesses paths /// relative to `self`. /// /// [`std::fs::read_dir`]: https://doc.rust-lang.org/std/fs/fn.read_dir.html #[inline] pub fn read_dir<P: AsRef<Path>>(&self, path: P) -> io::Result<ReadDir> { self.sys.read_dir(path.as_ref()) } /// Read the entire contents of a file into a bytes vector. /// /// This corresponds to [`std::fs::read`], but only accesses paths /// relative to `self`. /// /// [`std::fs::read`]: https://doc.rust-lang.org/std/fs/fn.read.html #[inline] pub fn read_file<P: AsRef<Path>>(&self, path: P) -> io::Result<Vec<u8>> { use io::Read; let mut file = self.open_file(path)?; let mut bytes = Vec::with_capacity(initial_buffer_size(&file)); file.read_to_end(&mut bytes)?; Ok(bytes) } /// Reads a symbolic link, returning the file that the link points to. /// /// This corresponds to [`std::fs::read_link`], but only accesses paths /// relative to `self`. /// /// [`std::fs::read_link`]: https://doc.rust-lang.org/std/fs/fn.read_link.html #[inline] pub fn read_link<P: AsRef<Path>>(&self, path: P) -> io::Result<PathBuf> { self.sys.read_link(path.as_ref()) } /// Read the entire contents of a file into a string. /// /// This corresponds to [`std::fs::read_to_string`], but only accesses paths /// relative to `self`. /// /// [`std::fs::read_to_string`]: https://doc.rust-lang.org/std/fs/fn.read_to_string.html #[inline] pub fn read_to_string<P: AsRef<Path>>(&self, path: P) -> io::Result<String> { self.sys.read_to_string(path.as_ref()) } /// Removes an existing, empty directory. /// /// This corresponds to [`std::fs::remove_dir`], but only accesses paths /// relative to `self`. /// /// [`std::fs::remove_dir`]: https://doc.rust-lang.org/std/fs/fn.remove_dir.html #[inline] pub fn remove_dir<P: AsRef<Path>>(&self, path: P) -> io::Result<()> { self.sys.remove_dir(path.as_ref()) } /// Removes a directory at this path, after removing all its contents. Use carefully! /// /// This corresponds to [`std::fs::remove_dir_all`], but only accesses paths /// relative to `self`. /// /// [`std::fs::remove_dir_all`]: https://doc.rust-lang.org/std/fs/fn.remove_dir_all.html #[inline] pub fn remove_dir_all<P: AsRef<Path>>(&self, path: P) -> io::Result<()> { self.sys.remove_dir_all(path.as_ref()) } /// Removes a file from a filesystem. /// /// This corresponds to [`std::fs::remove_file`], but only accesses paths /// relative to `self`. /// /// [`std::fs::remove_file`]: https://doc.rust-lang.org/std/fs/fn.remove_file.html #[inline] pub fn remove_file<P: AsRef<Path>>(&self, path: P) -> io::Result<()> { self.sys.remove_file(path.as_ref()) } /// Rename a file or directory to a new name, replacing the original file if to already exists. /// /// This corresponds to [`std::fs::rename`], but only accesses paths /// relative to `self`. /// /// [`std::fs::rename`]: https://doc.rust-lang.org/std/fs/fn.rename.html #[inline] pub fn rename<P: AsRef<Path>, Q: AsRef<Path>>(&self, from: P, to: Q) -> io::Result<()> { self.sys.rename(from.as_ref(), to.as_ref()) } /// Changes the permissions found on a file or a directory. /// /// This corresponds to [`std::fs::set_permissions`], but only accesses paths /// relative to `self`. /// /// [`std::fs::set_permissions`]: https://doc.rust-lang.org/std/fs/fn.set_permissions.html #[inline] pub fn set_permissions<P: AsRef<Path>>(&self, path: P, perm: Permissions) -> io::Result<()> { self.sys.set_permissions(path.as_ref(), perm) } /// Query the metadata about a file without following symlinks. /// /// This corresponds to [`std::fs::symlink_metadata`], but only accesses paths /// relative to `self`. /// /// [`std::fs::symlink_metadata`]: https://doc.rust-lang.org/std/fs/fn.symlink_metadata.html #[inline] pub fn symlink_metadata<P: AsRef<Path>>(&self, path: P) -> io::Result<Metadata> { self.sys.symlink_metadata(path.as_ref()) } /// Write a slice as the entire contents of a file. /// /// This corresponds to [`std::fs::write`], but only accesses paths /// relative to `self`. /// /// [`std::fs::write`]: https://doc.rust-lang.org/std/fs/fn.write.html #[inline] pub fn write_file<P: AsRef<Path>, C: AsRef<[u8]>>( &self, path: P, contents: C, ) -> io::Result<()> { use io::Write; let mut file = self.create_file(path)?; file.write_all(contents.as_ref()) } /// Creates the specified directory with the options configured in this builder. /// /// This corresponds to [`std::fs::DirBuilder::create`]. /// /// [`std::fs::DirBuilder::create`]: https://doc.rust-lang.org/std/fs/struct.DirBuilder.html#method.create #[inline] pub fn create_with_dir_builder<P: AsRef<Path>>( &self, dir_builder: &DirBuilder, path: P, ) -> io::Result<()> { self.sys.create_with_dir_builder(dir_builder, path.as_ref()) } /// Creates a new symbolic link on a filesystem. /// /// This corresponds to [`std::os::unix::fs::symlink`], but only accesses paths /// relative to `self`. /// /// [`std::os::unix::fs::symlink`]: https://doc.rust-lang.org/std/os/unix/fs/fn.symlink.html #[cfg(unix)] #[inline] pub fn symlink<P: AsRef<Path>, Q: AsRef<Path>>(&self, src: P, dst: Q) -> io::Result<()> { self.sys.symlink(src.as_ref(), dst.as_ref()) } /// Creates a new `UnixListener` bound to the specified socket. /// /// This corresponds to [`std::os::unix::net::UnixListener::bind`], but only /// accesses paths relative to `self`. /// /// [`std::os::unix::net::UnixListener::bind`]: https://doc.rust-lang.org/std/os/unix/net/struct.UnixListener.html#method.bind #[cfg(unix)] #[inline] pub fn bind_unix_listener<P: AsRef<Path>>(&self, path: P) -> io::Result<UnixListener> { self.sys.bind_unix_listener(path.as_ref()) } /// Connects to the socket named by path. /// /// This corresponds to [`std::os::unix::net::UnixStream::connect`], but only /// accesses paths relative to `self`. /// /// [`std::os::unix::net::UnixStream::connect`]: https://doc.rust-lang.org/std/os/unix/net/struct.UnixStream.html#method.connect #[cfg(unix)] #[inline] pub fn connect_unix_stream<P: AsRef<Path>>(&self, path: P) -> io::Result<UnixStream> { self.sys.connect_unix_stream(path.as_ref()) } /// Creates a Unix datagram socket bound to the given path. /// /// This corresponds to [`std::os::unix::net::UnixDatagram::bind`], but only /// accesses paths relative to `self`. /// /// [`std::os::unix::net::UnixDatagram::bind`]: https://doc.rust-lang.org/std/os/unix/net/struct.UnixDatagram.html#method.bind #[cfg(unix)] #[inline] pub fn bind_unix_datagram<P: AsRef<Path>>(&self, path: P) -> io::Result<UnixDatagram> { self.sys.bind_unix_datagram(path.as_ref()) } /// Connects the socket to the specified address. /// /// This corresponds to [`std::os::unix::net::UnixDatagram::connect`], but only /// accesses paths relative to `self`. /// /// [`std::os::unix::net::UnixDatagram::connect`]: https://doc.rust-lang.org/std/os/unix/net/struct.UnixDatagram.html#method.connect #[cfg(unix)] #[inline] pub fn connect_unix_datagram<P: AsRef<Path>>( &self, unix_datagram: &UnixDatagram, path: P, ) -> io::Result<()> { self.sys.connect_unix_datagram(unix_datagram, path.as_ref()) } /// Sends data on the socket to the specified address. /// /// This corresponds to [`std::os::unix::net::UnixDatagram::send_to`], but only /// accesses paths relative to `self`. /// /// [`std::os::unix::net::UnixDatagram::send_to`]: https://doc.rust-lang.org/std/os/unix/net/struct.UnixDatagram.html#method.send_to #[cfg(unix)] #[inline] pub fn send_to_unix_datagram_addr<P: AsRef<Path>>( &self, unix_datagram: &UnixDatagram, buf: &[u8], path: P, ) -> io::Result<usize> { self.sys .send_to_unix_datagram_addr(unix_datagram, buf, path.as_ref()) } /// Creates a new `Dir` instance that shares the same underlying file handle as the existing /// `Dir` instance. #[inline] pub fn try_clone(&self) -> io::Result<Self> { Ok(Self { sys: self.sys.try_clone()?, }) } } #[cfg(unix)] impl FromRawFd for Dir { unsafe fn from_raw_fd(fd: RawFd) -> Self { Self::from_std_file(fs::File::from_raw_fd(fd)) } } #[cfg(windows)] impl FromRawHandle for Dir { unsafe fn from_raw_fd(handle: RawHandle) -> Self { Self::from_std_file(fs::File::from_raw_handle(handle)) } } #[cfg(unix)] impl AsRawFd for Dir { fn as_raw_fd(&self) -> RawFd { self.sys.as_raw_fd() } } #[cfg(windows)] impl AsRawHandle for Dir { fn as_raw_handle(&self) -> RawHandle { self.sys.as_raw_handle() } } #[cfg(unix)] impl IntoRawFd for Dir { fn into_raw_fd(self) -> RawFd { self.sys.into_raw_fd() } } #[cfg(windows)] impl IntoRawHandle for Dir { fn into_raw_handle(self) -> RawHandle { self.sys.into_raw_handle() } } /// Indicates how large a buffer to pre-allocate before reading the entire file. /// /// Derived from the function of the same name in libstd. fn initial_buffer_size(file: &File) -> usize { // Allocate one extra byte so the buffer doesn't need to grow before the // final `read` call at the end of the file. Don't worry about `usize` // overflow because reading will fail regardless in that case. file.metadata().map(|m| m.len() as usize + 1).unwrap_or(0) } // TODO: impl Debug for Dir? But don't expose Dir's path...