diff options
author | Florian Klink <flokli@flokli.de> | 2023-02-13T15·44+0100 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2023-03-10T10·58+0000 |
commit | df3223fd681f64d54f6f393e53647d3a487eff25 (patch) | |
tree | 6fb955fcb902fd155aa1cafc30e56502df6b48be /tvix/store/src/nar/mod.rs | |
parent | cdb94583107eb9c2f8c28457f9847018aa8c97c8 (diff) |
chore(tvix/store): move NAR rendering logic into Renderer struct r/5915
This moves the logic rendering NARs to a struct using the previously introduced, more granular BlobService, ChunkService and DirectoryService. Instead of passing them around to the helper functions, they're kept as members of a struct. Remove the async invocations in the nar_renderer tests, there's nothing async in here. Change-Id: Ic6d24aaad68a1fda46ce29f2cdb5f7b87f481d5c Reviewed-on: https://cl.tvl.fyi/c/depot/+/8095 Reviewed-by: raitobezarius <tvl@lahfa.xyz> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/store/src/nar/mod.rs')
-rw-r--r-- | tvix/store/src/nar/mod.rs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tvix/store/src/nar/mod.rs b/tvix/store/src/nar/mod.rs new file mode 100644 index 000000000000..d7d2cec4d803 --- /dev/null +++ b/tvix/store/src/nar/mod.rs @@ -0,0 +1,22 @@ +use data_encoding::BASE64; +use thiserror::Error; + +mod renderer; + +pub use renderer::NARRenderer; + +/// Errors that can encounter while rendering NARs. +#[derive(Debug, Error)] +pub enum RenderError { + #[error("failure talking to a backing store client: {0}")] + StoreError(crate::Error), + + #[error("unable to find directory {}, referred from {}", BASE64.encode(.0), .1)] + DirectoryNotFound(Vec<u8>, String), + + #[error("unable to find blob {}, referred from {}", BASE64.encode(.0), .1)] + BlobNotFound(Vec<u8>, String), + + #[error("failure using the NAR writer: {0}")] + NARWriterError(std::io::Error), +} |