From 27c07b72c64cba129cc42507fb5e26398031924d Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Tue, 12 Dec 2023 15:44:30 +0200 Subject: refactor(tvix): use io::Result for EvalIO This is just a alias for Result<_, io::Error>, but shorter. Change-Id: I7c22f61b85e3014885a747b5c1e5abd11b0ef17d Reviewed-on: https://cl.tvl.fyi/c/depot/+/10327 Tested-by: BuildkiteCI Autosubmit: flokli Reviewed-by: raitobezarius --- tvix/glue/src/tvix_io.rs | 8 ++++---- tvix/glue/src/tvix_store_io.rs | 12 ++++++------ 2 files changed, 10 insertions(+), 10 deletions(-) (limited to 'tvix/glue/src') diff --git a/tvix/glue/src/tvix_io.rs b/tvix/glue/src/tvix_io.rs index 09e1417a2157..52bbd7bc9cda 100644 --- a/tvix/glue/src/tvix_io.rs +++ b/tvix/glue/src/tvix_io.rs @@ -40,7 +40,7 @@ impl EvalIO for TvixIO { self.actual.store_dir() } - fn import_path(&self, path: &Path) -> Result { + fn import_path(&self, path: &Path) -> io::Result { let imported_path = self.actual.import_path(path)?; self.known_paths .borrow_mut() @@ -49,7 +49,7 @@ impl EvalIO for TvixIO { Ok(imported_path) } - fn path_exists(&self, path: &Path) -> Result { + fn path_exists(&self, path: &Path) -> io::Result { if path.starts_with("/__corepkgs__") { return Ok(true); } @@ -57,7 +57,7 @@ impl EvalIO for TvixIO { self.actual.path_exists(path) } - fn read_to_string(&self, path: &Path) -> Result { + fn read_to_string(&self, path: &Path) -> io::Result { // Bundled version of corepkgs/fetchurl.nix. The counterpart // of this happens in [crate::configure_nix_path], where the `nix_path` // of the evaluation has `nix=/__corepkgs__` added to it. @@ -74,7 +74,7 @@ impl EvalIO for TvixIO { self.actual.read_to_string(path) } - fn read_dir(&self, path: &Path) -> Result, io::Error> { + fn read_dir(&self, path: &Path) -> io::Result> { self.actual.read_dir(path) } } diff --git a/tvix/glue/src/tvix_store_io.rs b/tvix/glue/src/tvix_store_io.rs index 3cd59d559aa0..9073aeeb3ebb 100644 --- a/tvix/glue/src/tvix_store_io.rs +++ b/tvix/glue/src/tvix_store_io.rs @@ -59,7 +59,7 @@ impl TvixStoreIO { &self, store_path: &StorePath, sub_path: &Path, - ) -> Result, io::Error> { + ) -> io::Result> { let path_info_service = self.path_info_service.clone(); let task = self.tokio_handle.spawn({ let digest = *store_path.digest(); @@ -102,7 +102,7 @@ impl TvixStoreIO { impl EvalIO for TvixStoreIO { #[instrument(skip(self), ret, err)] - fn path_exists(&self, path: &Path) -> Result { + fn path_exists(&self, path: &Path) -> io::Result { if let Ok((store_path, sub_path)) = StorePath::from_absolute_path_full(&path.to_string_lossy()) { @@ -123,7 +123,7 @@ impl EvalIO for TvixStoreIO { } #[instrument(skip(self), ret, err)] - fn read_to_string(&self, path: &Path) -> Result { + fn read_to_string(&self, path: &Path) -> io::Result { if let Ok((store_path, sub_path)) = StorePath::from_absolute_path_full(&path.to_string_lossy()) { @@ -195,7 +195,7 @@ impl EvalIO for TvixStoreIO { } #[instrument(skip(self), ret, err)] - fn read_dir(&self, path: &Path) -> Result, io::Error> { + fn read_dir(&self, path: &Path) -> io::Result> { if let Ok((store_path, sub_path)) = StorePath::from_absolute_path_full(&path.to_string_lossy()) { @@ -263,7 +263,7 @@ impl EvalIO for TvixStoreIO { } #[instrument(skip(self), ret, err)] - fn import_path(&self, path: &std::path::Path) -> Result { + fn import_path(&self, path: &std::path::Path) -> io::Result { let p = path.to_owned(); let blob_service = self.blob_service.clone(); let directory_service = self.directory_service.clone(); @@ -307,7 +307,7 @@ async fn import_path_with_pathinfo( directory_service: Arc, path_info_service: Arc, path: &std::path::Path, -) -> Result { +) -> io::Result { // Call [import::ingest_path], which will walk over the given path and return a root_node. let root_node = import::ingest_path(blob_service.clone(), directory_service.clone(), path) .await -- cgit 1.4.1