1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-02-09 05:15:37 +01:00

136 lines
3.5 KiB
Rust
Raw Normal View History

use std::{env::VarError, io, num::ParseIntError, path::PathBuf, str::ParseBoolError};
use toml::de::Error as TomlError;
2022-07-31 21:12:19 +02:00
/// Errors that can be returned from methods in this crate.
#[derive(Debug, Clone)]
pub enum Error {
2022-07-31 21:12:19 +02:00
/// Environment variable does not exists or is invalid.
EnvVarError(VarError),
2022-07-31 21:12:19 +02:00
/// File already exists on disk.
FileExists(PathBuf),
2022-07-31 21:12:19 +02:00
/// Invalid value.
#[allow(missing_docs)]
InvalidValue {
expected: &'static str,
got: String,
file: &'static str,
line: u32,
column: u32,
},
2022-07-31 21:12:19 +02:00
/// I/O error.
IoError(ioe::IoError),
2022-07-31 21:12:19 +02:00
/// Value is not a boolean.
ParseBoolError(ParseBoolError),
2022-07-31 21:12:19 +02:00
/// Value is not an integer.
ParseIntError(ParseIntError),
2022-07-31 21:12:19 +02:00
/// Value is not an address.
ParseAddressError(String),
2022-07-31 21:12:19 +02:00
/// Error deserializing as TOML.
TomlError(TomlError),
}
macro_rules! InvalidValue {
(expected: $expected:expr, got: $got:expr,) => {
crate::Error::InvalidValue {
expected: $expected,
got: $got.to_string(),
file: file!(),
line: line!(),
column: column!(),
}
};
}
impl From<io::Error> for Error {
fn from(err: io::Error) -> Self {
Self::IoError(ioe::IoError::from(err))
}
}
impl From<ioe::IoError> for Error {
fn from(err: ioe::IoError) -> Self {
Self::IoError(err)
}
}
impl From<ParseBoolError> for Error {
fn from(err: ParseBoolError) -> Self {
Self::ParseBoolError(err)
}
}
impl From<ParseIntError> for Error {
fn from(err: ParseIntError) -> Self {
Self::ParseIntError(err)
}
}
impl From<TomlError> for Error {
fn from(err: TomlError) -> Self {
Self::TomlError(err)
}
}
impl From<VarError> for Error {
fn from(err: VarError) -> Self {
Self::EnvVarError(err)
}
}
impl From<Error> for io::Error {
fn from(err: Error) -> Self {
match err {
Error::EnvVarError(var_error) => {
2023-01-07 01:04:16 +00:00
let msg = format!("Env var error: {var_error}");
io::Error::new(io::ErrorKind::InvalidInput, msg)
}
Error::FileExists(path_buf) => {
let msg = format!("File exists: {}", path_buf.display());
io::Error::new(io::ErrorKind::AlreadyExists, msg)
}
Error::InvalidValue {
expected,
ref got,
file,
line,
column,
} => {
2023-01-07 01:04:16 +00:00
let msg = format!("Expected {expected}, got {got} (@ {file}:{line}:{column})");
io::Error::new(io::ErrorKind::InvalidInput, msg)
}
Error::IoError(io_error) => io_error.into(),
Error::ParseBoolError(parse_bool_error) => {
2023-01-07 01:04:16 +00:00
let msg = format!("Failed to parse boolean: {parse_bool_error}");
io::Error::new(io::ErrorKind::InvalidInput, msg)
}
Error::ParseIntError(parse_int_error) => {
2023-01-07 01:04:16 +00:00
let msg = format!("Failed to parse integer: {parse_int_error}");
io::Error::new(io::ErrorKind::InvalidInput, msg)
}
Error::ParseAddressError(string) => {
2023-01-07 01:04:16 +00:00
let msg = format!("Failed to parse address: {string}");
io::Error::new(io::ErrorKind::InvalidInput, msg)
}
Error::TomlError(toml_error) => {
2023-01-07 01:04:16 +00:00
let msg = format!("TOML error: {toml_error}");
io::Error::new(io::ErrorKind::InvalidInput, msg)
}
}
}
}