2023-05-17 17:33:22 +02:00
|
|
|
//! This module implements a wrapper around tvix-eval's [EvalIO] type,
|
|
|
|
//! adding functionality which is required by tvix-cli:
|
|
|
|
//!
|
|
|
|
//! 1. Marking plain paths known to the reference scanner.
|
|
|
|
//! 2. Handling the C++ Nix `__corepkgs__`-hack for nixpkgs bootstrapping.
|
|
|
|
//!
|
|
|
|
//! All uses of [EvalIO] in tvix-cli must make use of this wrapper,
|
|
|
|
//! otherwise fundamental features like nixpkgs bootstrapping and hash
|
|
|
|
//! calculation will not work.
|
|
|
|
|
2023-05-21 10:00:49 +02:00
|
|
|
use std::io;
|
2023-05-17 17:33:22 +02:00
|
|
|
use std::path::{Path, PathBuf};
|
2023-05-21 10:00:49 +02:00
|
|
|
use tvix_eval::{EvalIO, FileType};
|
2023-05-17 17:33:22 +02:00
|
|
|
|
2023-09-02 20:16:35 +02:00
|
|
|
// TODO: Merge this together with TvixStoreIO?
|
2023-11-03 12:34:37 +01:00
|
|
|
pub struct TvixIO<T: EvalIO> {
|
2023-05-17 17:33:22 +02:00
|
|
|
// Actual underlying [EvalIO] implementation.
|
|
|
|
actual: T,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: EvalIO> TvixIO<T> {
|
2023-12-26 02:03:05 +01:00
|
|
|
pub fn new(actual: T) -> Self {
|
|
|
|
Self { actual }
|
2023-05-17 17:33:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: EvalIO> EvalIO for TvixIO<T> {
|
|
|
|
fn store_dir(&self) -> Option<String> {
|
|
|
|
self.actual.store_dir()
|
|
|
|
}
|
|
|
|
|
2023-12-12 14:44:30 +01:00
|
|
|
fn import_path(&self, path: &Path) -> io::Result<PathBuf> {
|
2023-05-17 17:33:22 +02:00
|
|
|
let imported_path = self.actual.import_path(path)?;
|
|
|
|
Ok(imported_path)
|
|
|
|
}
|
|
|
|
|
2023-12-12 14:44:30 +01:00
|
|
|
fn path_exists(&self, path: &Path) -> io::Result<bool> {
|
2023-05-17 17:33:22 +02:00
|
|
|
if path.starts_with("/__corepkgs__") {
|
|
|
|
return Ok(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
self.actual.path_exists(path)
|
|
|
|
}
|
|
|
|
|
2023-12-12 14:44:30 +01:00
|
|
|
fn read_to_string(&self, path: &Path) -> io::Result<String> {
|
2023-05-17 17:33:22 +02:00
|
|
|
// Bundled version of corepkgs/fetchurl.nix. The counterpart
|
2023-11-03 13:03:19 +01:00
|
|
|
// of this happens in [crate::configure_nix_path], where the `nix_path`
|
|
|
|
// of the evaluation has `nix=/__corepkgs__` added to it.
|
2023-05-17 17:33:22 +02:00
|
|
|
//
|
|
|
|
// This workaround is similar to what cppnix does for passing
|
|
|
|
// the path through.
|
|
|
|
//
|
|
|
|
// TODO: this comparison is bad and allocates, we should use
|
|
|
|
// the sane path library.
|
|
|
|
if path.starts_with("/__corepkgs__/fetchurl.nix") {
|
|
|
|
return Ok(include_str!("fetchurl.nix").to_string());
|
|
|
|
}
|
|
|
|
|
|
|
|
self.actual.read_to_string(path)
|
|
|
|
}
|
|
|
|
|
2023-12-12 14:44:30 +01:00
|
|
|
fn read_dir(&self, path: &Path) -> io::Result<Vec<(bytes::Bytes, FileType)>> {
|
2023-05-17 17:33:22 +02:00
|
|
|
self.actual.read_dir(path)
|
|
|
|
}
|
|
|
|
}
|