From 11771a06aed715b5e7a921b879e9415ccad48711 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Sun, 21 May 2023 11:17:34 +0300 Subject: refactor(tvix/eval): use &Path instead of PathBuf This allows getting rid of some clones in eval/src/vm/generators.rs. Change-Id: I330390307d3bcfeef19c98954c753ee55b1ccee3 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8604 Autosubmit: flokli Tested-by: BuildkiteCI Reviewed-by: tazjin --- tvix/eval/src/io.rs | 18 +++++++++--------- tvix/eval/src/nix_search_path.rs | 2 +- tvix/eval/src/vm/generators.rs | 6 +++--- 3 files changed, 13 insertions(+), 13 deletions(-) (limited to 'tvix/eval') diff --git a/tvix/eval/src/io.rs b/tvix/eval/src/io.rs index 3299c92d1fdb..f14da723db90 100644 --- a/tvix/eval/src/io.rs +++ b/tvix/eval/src/io.rs @@ -33,14 +33,14 @@ pub enum FileType { /// Defines how filesystem interaction occurs inside of tvix-eval. pub trait EvalIO { /// Verify whether the file at the specified path exists. - fn path_exists(&mut self, path: PathBuf) -> Result; + fn path_exists(&mut self, path: &Path) -> Result; /// Read the file at the specified path to a string. - fn read_to_string(&mut self, path: PathBuf) -> Result; + fn read_to_string(&mut self, path: &Path) -> Result; /// Read the directory at the specified path and return the names /// of its entries associated with their [`FileType`]. - fn read_dir(&mut self, path: PathBuf) -> Result, io::Error>; + fn read_dir(&mut self, path: &Path) -> Result, io::Error>; /// Import the given path. What this means depends on the /// implementation, for example for a `std::io`-based @@ -65,15 +65,15 @@ pub struct StdIO; #[cfg(feature = "impure")] impl EvalIO for StdIO { - fn path_exists(&mut self, path: PathBuf) -> Result { + fn path_exists(&mut self, path: &Path) -> Result { path.try_exists() } - fn read_to_string(&mut self, path: PathBuf) -> Result { + fn read_to_string(&mut self, path: &Path) -> Result { std::fs::read_to_string(&path) } - fn read_dir(&mut self, path: PathBuf) -> Result, io::Error> { + fn read_dir(&mut self, path: &Path) -> Result, io::Error> { let mut result = vec![]; for entry in path.read_dir()? { @@ -108,21 +108,21 @@ impl EvalIO for StdIO { pub struct DummyIO; impl EvalIO for DummyIO { - fn path_exists(&mut self, _: PathBuf) -> Result { + fn path_exists(&mut self, _: &Path) -> Result { Err(io::Error::new( io::ErrorKind::Unsupported, "I/O methods are not implemented in DummyIO", )) } - fn read_to_string(&mut self, _: PathBuf) -> Result { + fn read_to_string(&mut self, _: &Path) -> Result { Err(io::Error::new( io::ErrorKind::Unsupported, "I/O methods are not implemented in DummyIO", )) } - fn read_dir(&mut self, _: PathBuf) -> Result, io::Error> { + fn read_dir(&mut self, _: &Path) -> Result, io::Error> { Err(io::Error::new( io::ErrorKind::Unsupported, "I/O methods are not implemented in DummyIO", diff --git a/tvix/eval/src/nix_search_path.rs b/tvix/eval/src/nix_search_path.rs index 8e23c2d9c24b..79c19752f6c1 100644 --- a/tvix/eval/src/nix_search_path.rs +++ b/tvix/eval/src/nix_search_path.rs @@ -85,7 +85,7 @@ impl NixSearchPathEntry { } }; - if io.path_exists(path.clone()).map_err(|e| ErrorKind::IO { + if io.path_exists(&path).map_err(|e| ErrorKind::IO { path: Some(path.clone()), error: e.into(), })? { diff --git a/tvix/eval/src/vm/generators.rs b/tvix/eval/src/vm/generators.rs index 0e3123ae3758..f86683dff542 100644 --- a/tvix/eval/src/vm/generators.rs +++ b/tvix/eval/src/vm/generators.rs @@ -421,7 +421,7 @@ impl<'o> VM<'o> { VMRequest::ReadToString(path) => { let content = self .io_handle - .read_to_string(path.clone()) + .read_to_string(&path) .map_err(|e| ErrorKind::IO { path: Some(path), error: e.into(), @@ -434,7 +434,7 @@ impl<'o> VM<'o> { VMRequest::PathExists(path) => { let exists = self .io_handle - .path_exists(path.clone()) + .path_exists(&path) .map_err(|e| ErrorKind::IO { path: Some(path), error: e.into(), @@ -448,7 +448,7 @@ impl<'o> VM<'o> { VMRequest::ReadDir(path) => { let dir = self .io_handle - .read_dir(path.clone()) + .read_dir(&path) .map_err(|e| ErrorKind::IO { path: Some(path), error: e.into(), -- cgit 1.4.1