alpm_buildinfo/
error.rs

1use std::{path::PathBuf, string::FromUtf8Error};
2
3use alpm_types::SchemaVersion;
4
5/// The Error that can occur when working with BUILDINFO files
6#[derive(Debug, thiserror::Error)]
7#[non_exhaustive]
8pub enum Error {
9    /// ALPM type error
10    #[error("ALPM type parse error: {0}")]
11    AlpmType(#[from] alpm_types::Error),
12
13    /// IO error
14    #[error("I/O error at path {0:?} while {1}:\n{2}")]
15    IoPathError(PathBuf, &'static str, std::io::Error),
16
17    /// I/O error while reading a buffer.
18    #[error("Read error while {context}:\n{source}")]
19    IoReadError {
20        context: &'static str,
21        source: std::io::Error,
22    },
23
24    /// UTF-8 parse error
25    #[error(transparent)]
26    InvalidUTF8(#[from] FromUtf8Error),
27
28    // Deserialize error
29    #[error("Failed to deserialize BUILDINFO file:\n{0}")]
30    DeserializeError(#[from] alpm_parsers::custom_ini::Error),
31
32    /// No input file given
33    #[error("No input file given.")]
34    NoInputFile,
35
36    /// Unsupported schema version
37    #[error("Unsupported schema version: {0}")]
38    UnsupportedSchemaVersion(String),
39
40    /// A SchemaVersion with the wrong version is used
41    #[error("Wrong schema version used to create a BUILDINFO: {0}")]
42    WrongSchemaVersion(SchemaVersion),
43
44    /// BuildInfo file is missing the format field
45    #[error("Missing format field")]
46    MissingFormatField,
47
48    /// JSON error
49    #[error("JSON error: {0}")]
50    Json(#[from] serde_json::Error),
51}