From 270b1084e890d2c69456d342e6e2cad7e13ad9a7 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Tue, 13 Dec 2022 00:12:13 +0300 Subject: feat(tvix/eval): use `EvalIO::import_path` when coercing paths This "ties the knot" of importing files into a store when referring to them through path literals, e.g. inside of strings. I'm not yet sure if this interface is sufficient for builtins.path (which we haven't implemented at all yet), but it's enough to wire up eval & store initially. In the default implementations nothing interesting happens in this function at all. Change-Id: Ie01ff4161617d1e743a68dbd1a5e54c1b40c0990 Reviewed-on: https://cl.tvl.fyi/c/depot/+/7582 Reviewed-by: grfn Tested-by: BuildkiteCI --- tvix/eval/src/io.rs | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) (limited to 'tvix/eval/src/io.rs') diff --git a/tvix/eval/src/io.rs b/tvix/eval/src/io.rs index 4e7404ef9c53..d20912f21f61 100644 --- a/tvix/eval/src/io.rs +++ b/tvix/eval/src/io.rs @@ -16,7 +16,7 @@ //! how store paths are opened and so on. use smol_str::SmolStr; -use std::path::PathBuf; +use std::path::{Path, PathBuf}; use std::rc::Rc; use crate::errors::ErrorKind; @@ -42,6 +42,15 @@ pub trait EvalIO { /// of its entries associated with their [`FileType`]. fn read_dir(&self, path: PathBuf) -> Result, ErrorKind>; + /// Import the given path. What this means depends on the + /// implementation, for example for a `std::io`-based + /// implementation this might be a no-op, while for a Tvix store + /// this might be a copy of the given files to the store. + /// + /// This is primarily used in the context of things like coercing + /// a local path to a string, or builtins like `path`. + fn import_path(&self, path: &Path) -> Result; + /// Returns the root of the store directory, if such a thing /// exists in the evaluation context. fn store_dir(&self) -> Option { @@ -103,6 +112,12 @@ impl EvalIO for StdIO { Ok(result) } + + // this is a no-op for `std::io`, as the user can already refer to + // the path directly + fn import_path(&self, path: &Path) -> Result { + Ok(path.to_path_buf()) + } } /// Dummy implementation of [`EvalIO`], can be used in contexts where @@ -127,4 +142,10 @@ impl EvalIO for DummyIO { "I/O methods are not implemented in DummyIO", )) } + + fn import_path(&self, _: &Path) -> Result { + Err(ErrorKind::NotImplemented( + "I/O methods are not implemented in DummyIO", + )) + } } -- cgit 1.4.1