From 771200df7c311fc8b87a0a65a02e22a11d80cd66 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Wed, 21 Feb 2024 20:39:53 +0700 Subject: fix(tvix/eval): allow reading non-UTF8 files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit With our values using bstr now, we're not restricted to only reading files that contain valid UTF-8. Update our `read_to_string` function to `read_to_end` (named like `std::io::Read::read_to_end`), and have it return a Vec. Change-Id: I87f0291dc855a132689576559c891d66c30ddf2b Reviewed-on: https://cl.tvl.fyi/c/depot/+/11003 Tested-by: BuildkiteCI Autosubmit: flokli Reviewed-by: Pádraic Ó Mhuiris Reviewed-by: flokli --- tvix/eval/src/io.rs | 10 +++++----- tvix/eval/src/vm/generators.rs | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'tvix/eval/src') diff --git a/tvix/eval/src/io.rs b/tvix/eval/src/io.rs index ccbc7dfdbc..6589c0dc5c 100644 --- a/tvix/eval/src/io.rs +++ b/tvix/eval/src/io.rs @@ -48,13 +48,13 @@ pub trait EvalIO { /// * `builtins.pathExists :: path -> bool` fn path_exists(&self, path: &Path) -> io::Result; - /// Read the file at the specified path to a string. + /// Read the file at the specified path to a Vec. /// /// This is used for the following language evaluation cases: /// /// * `builtins.readFile :: path -> string` /// * `builtins.import :: path -> any` - fn read_to_string(&self, path: &Path) -> io::Result; + fn read_to_end(&self, path: &Path) -> io::Result>; /// Read the directory at the specified path and return the names /// of its entries associated with their [`FileType`]. @@ -99,8 +99,8 @@ impl EvalIO for StdIO { path.try_exists() } - fn read_to_string(&self, path: &Path) -> io::Result { - std::fs::read_to_string(path) + fn read_to_end(&self, path: &Path) -> io::Result> { + std::fs::read(path) } fn read_dir(&self, path: &Path) -> io::Result> { @@ -145,7 +145,7 @@ impl EvalIO for DummyIO { )) } - fn read_to_string(&self, _: &Path) -> io::Result { + fn read_to_end(&self, _: &Path) -> io::Result> { Err(io::Error::new( io::ErrorKind::Unsupported, "I/O methods are not implemented in DummyIO", diff --git a/tvix/eval/src/vm/generators.rs b/tvix/eval/src/vm/generators.rs index fba4e7cd90..2a2710dc34 100644 --- a/tvix/eval/src/vm/generators.rs +++ b/tvix/eval/src/vm/generators.rs @@ -429,7 +429,7 @@ where let content = self .io_handle .as_ref() - .read_to_string(&path) + .read_to_end(&path) .map_err(|e| ErrorKind::IO { path: Some(path), error: e.into(), -- cgit 1.4.1