2023-05-31 12:54:51 -04:00
|
|
|
//! This module provides the error enum to handle different errors associated while requesting data from
|
|
|
|
//! the upstream search engines with the search query provided by the user.
|
|
|
|
|
2023-06-14 08:42:30 -04:00
|
|
|
use error_stack::Context;
|
|
|
|
use std::fmt;
|
2023-05-31 12:54:51 -04:00
|
|
|
|
|
|
|
/// A custom error type used for handle engine associated errors.
|
|
|
|
///
|
|
|
|
/// This enum provides variants three different categories of errors:
|
|
|
|
/// * `RequestError` - This variant handles all request related errors like forbidden, not found,
|
|
|
|
/// etc.
|
|
|
|
/// * `EmptyResultSet` - This variant handles the not results found error provide by the upstream
|
|
|
|
/// search engines.
|
|
|
|
/// * `UnexpectedError` - This variant handles all the errors which are unexpected or occur rarely
|
|
|
|
/// and are errors mostly related to failure in initialization of HeaderMap, Selector errors and
|
2023-06-04 04:56:07 -04:00
|
|
|
/// all other errors occuring within the code handling the `upstream search engines`.
|
2023-05-16 05:22:00 -04:00
|
|
|
#[derive(Debug)]
|
2023-06-14 08:42:30 -04:00
|
|
|
pub enum EngineError {
|
2023-05-31 12:54:51 -04:00
|
|
|
EmptyResultSet,
|
2023-06-14 08:42:30 -04:00
|
|
|
RequestError,
|
|
|
|
UnexpectedError,
|
2023-05-31 12:54:51 -04:00
|
|
|
}
|
|
|
|
|
2023-06-14 08:42:30 -04:00
|
|
|
impl fmt::Display for EngineError {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
2023-05-31 12:54:51 -04:00
|
|
|
match self {
|
2023-06-14 08:42:30 -04:00
|
|
|
EngineError::EmptyResultSet => {
|
2023-05-31 12:54:51 -04:00
|
|
|
write!(f, "The upstream search engine returned an empty result set")
|
|
|
|
}
|
2023-06-14 08:42:30 -04:00
|
|
|
EngineError::RequestError => {
|
|
|
|
write!(f, "Request error")
|
2023-06-04 04:56:07 -04:00
|
|
|
}
|
2023-06-14 08:42:30 -04:00
|
|
|
EngineError::UnexpectedError => write!(f, "Unexpected error"),
|
2023-05-31 12:54:51 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-14 08:42:30 -04:00
|
|
|
impl Context for EngineError {}
|