This removes all the intermediate helper functions and reorganizes the import code to only do the calculations where/when needed, and hopefully makes things easier to understand as well. Change-Id: I7e4c89c742bf8569b45e303523f7f801da7127ea Reviewed-on: https://cl.tvl.fyi/c/depot/+/12627 Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI Reviewed-by: Jörg Thalheim <joerg@thalheim.io> Reviewed-by: edef <edef@edef.eu>
80 lines
2.5 KiB
Rust
80 lines
2.5 KiB
Rust
//! Contains errors that can occur during evaluation of builtins in this crate
|
|
use nix_compat::{
|
|
nixhash::{self, NixHash},
|
|
store_path::BuildStorePathError,
|
|
};
|
|
use reqwest::Url;
|
|
use std::{path::PathBuf, rc::Rc};
|
|
use thiserror::Error;
|
|
use tvix_castore::import;
|
|
|
|
/// Errors related to derivation construction
|
|
#[derive(Debug, Error)]
|
|
pub enum DerivationError {
|
|
#[error("an output with the name '{0}' is already defined")]
|
|
DuplicateOutput(String),
|
|
#[error("fixed-output derivations can only have the default `out`-output")]
|
|
ConflictingOutputTypes,
|
|
#[error("the environment variable '{0}' has already been set in this derivation")]
|
|
DuplicateEnvVar(String),
|
|
#[error("invalid derivation parameters: {0}")]
|
|
InvalidDerivation(#[from] nix_compat::derivation::DerivationError),
|
|
#[error("invalid output hash: {0}")]
|
|
InvalidOutputHash(#[from] nixhash::Error),
|
|
#[error("invalid output hash mode: '{0}', only 'recursive' and 'flat` are supported")]
|
|
InvalidOutputHashMode(String),
|
|
}
|
|
|
|
impl From<DerivationError> for tvix_eval::ErrorKind {
|
|
fn from(err: DerivationError) -> Self {
|
|
tvix_eval::ErrorKind::TvixError(Rc::new(err))
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, Error)]
|
|
pub enum FetcherError {
|
|
#[error("hash mismatch in file downloaded from {url}:\n wanted: {wanted}\n got: {got}")]
|
|
HashMismatch {
|
|
url: Url,
|
|
wanted: NixHash,
|
|
got: NixHash,
|
|
},
|
|
|
|
#[error("Invalid hash type '{0}' for fetcher")]
|
|
InvalidHashType(&'static str),
|
|
|
|
#[error("Unable to parse URL: {0}")]
|
|
InvalidUrl(#[from] url::ParseError),
|
|
|
|
#[error(transparent)]
|
|
Http(#[from] reqwest::Error),
|
|
|
|
#[error(transparent)]
|
|
Io(#[from] std::io::Error),
|
|
|
|
#[error(transparent)]
|
|
Import(#[from] tvix_castore::import::IngestionError<import::archive::Error>),
|
|
|
|
#[error("Error calculating store path for fetcher output: {0}")]
|
|
StorePath(#[from] BuildStorePathError),
|
|
}
|
|
|
|
/// Errors related to `builtins.path` and `builtins.filterSource`,
|
|
/// a.k.a. "importing" builtins.
|
|
#[derive(Debug, Error)]
|
|
pub enum ImportError {
|
|
#[error("non-file '{0}' cannot be imported in 'flat' mode")]
|
|
FlatImportOfNonFile(PathBuf),
|
|
|
|
#[error("hash mismatch at ingestion of '{0}', expected: '{1}', got: '{2}'")]
|
|
HashMismatch(PathBuf, NixHash, NixHash),
|
|
|
|
#[error("path '{}' is not absolute or invalid", .0.display())]
|
|
PathNotAbsoluteOrInvalid(PathBuf),
|
|
}
|
|
|
|
impl From<ImportError> for tvix_eval::ErrorKind {
|
|
fn from(err: ImportError) -> Self {
|
|
tvix_eval::ErrorKind::TvixError(Rc::new(err))
|
|
}
|
|
}
|