diff options
author | Aspen Smith <root@gws.fyi> | 2024-02-22T21·09-0500 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-02-23T15·47+0000 |
commit | ffb134398dedcae6cd13cdf49b2cd57d43793bda (patch) | |
tree | 01e6187c128347d13f693ad180a105a060d9c6c4 /tvix/glue/src/builtins/errors.rs | |
parent | 782cfa9e3372d0cfe13471597968d58deb181e71 (diff) |
refactor(tvix/glue): Make a single errors.rs module r/7596
To pave the way for adding a new error type for builtins in this crate, move DerivationError to a new builtins::errors module. Change-Id: I65fcad63e43ed40ad39c2c6540a2ab80fdd90fd4 Reviewed-on: https://cl.tvl.fyi/c/depot/+/11016 Tested-by: BuildkiteCI Reviewed-by: flokli <flokli@flokli.de> Autosubmit: aspen <root@gws.fyi>
Diffstat (limited to 'tvix/glue/src/builtins/errors.rs')
-rw-r--r-- | tvix/glue/src/builtins/errors.rs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tvix/glue/src/builtins/errors.rs b/tvix/glue/src/builtins/errors.rs new file mode 100644 index 000000000000..b606aa6a7c48 --- /dev/null +++ b/tvix/glue/src/builtins/errors.rs @@ -0,0 +1,27 @@ +//! Contains errors that can occur during evaluation of builtins in this crate +use nix_compat::nixhash; +use std::rc::Rc; +use thiserror::Error; + +/// 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)) + } +} |