about summary refs log tree commit diff
path: root/tvix/store/src/nar/mod.rs
blob: d7d2cec4d8036ab21366050697347485cc75465f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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),
}