1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
//! 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.
use crate::KnownPaths;
use smol_str::SmolStr;
use std::cell::RefCell;
use std::path::{Path, PathBuf};
use std::rc::Rc;
use tvix_eval::{ErrorKind, EvalIO, FileType};
pub(crate) struct TvixIO<T: EvalIO> {
/// Ingested paths must be reported to this known paths tracker
/// for accurate build reference scanning.
known_paths: Rc<RefCell<KnownPaths>>,
// Actual underlying [EvalIO] implementation.
actual: T,
}
impl<T: EvalIO> TvixIO<T> {
pub(crate) fn new(known_paths: Rc<RefCell<KnownPaths>>, actual: T) -> Self {
Self {
known_paths,
actual,
}
}
}
impl<T: EvalIO> EvalIO for TvixIO<T> {
fn store_dir(&self) -> Option<String> {
self.actual.store_dir()
}
fn import_path(&mut self, path: &Path) -> Result<PathBuf, ErrorKind> {
let imported_path = self.actual.import_path(path)?;
self.known_paths
.borrow_mut()
.plain(imported_path.to_string_lossy());
Ok(imported_path)
}
fn path_exists(&mut self, path: PathBuf) -> Result<bool, ErrorKind> {
if path.starts_with("/__corepkgs__") {
return Ok(true);
}
self.actual.path_exists(path)
}
fn read_to_string(&mut self, path: PathBuf) -> Result<String, ErrorKind> {
// Bundled version of corepkgs/fetchurl.nix. The counterpart
// of this happens in `main`, where the `nix_path` of the
// evaluation has `nix=/__corepkgs__` added to it.
//
// 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)
}
fn read_dir(&mut self, path: PathBuf) -> Result<Vec<(SmolStr, FileType)>, ErrorKind> {
self.actual.read_dir(path)
}
}
|