1use std::{path::PathBuf, string::FromUtf8Error};
2
3use alpm_types::SchemaVersion;
4
5#[derive(Debug, thiserror::Error)]
7#[non_exhaustive]
8pub enum Error {
9 #[error("ALPM type parse error: {0}")]
11 AlpmType(#[from] alpm_types::Error),
12
13 #[error("I/O error at path {0:?} while {1}:\n{2}")]
15 IoPathError(PathBuf, &'static str, std::io::Error),
16
17 #[error("Read error while {context}:\n{source}")]
19 IoReadError {
20 context: &'static str,
21 source: std::io::Error,
22 },
23
24 #[error(transparent)]
26 InvalidUTF8(#[from] FromUtf8Error),
27
28 #[error("Failed to deserialize BUILDINFO file:\n{0}")]
30 DeserializeError(#[from] alpm_parsers::custom_ini::Error),
31
32 #[error("No input file given.")]
34 NoInputFile,
35
36 #[error("Unsupported schema version: {0}")]
38 UnsupportedSchemaVersion(String),
39
40 #[error("Wrong schema version used to create a BUILDINFO: {0}")]
42 WrongSchemaVersion(SchemaVersion),
43
44 #[error("Missing format field")]
46 MissingFormatField,
47
48 #[error("JSON error: {0}")]
50 Json(#[from] serde_json::Error),
51}