1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
use std::fmt;
use std::result::Result as StdResult;
use thiserror::Error;
use crate::{common::Error as HsError, ffi};
pub type Result<T> = StdResult<T, Error>;
#[derive(Debug, Error, PartialEq, Eq)]
pub enum Error {
#[error(transparent)]
Hyperscan(#[from] crate::common::Error),
#[cfg(feature = "chimera")]
#[error(transparent)]
Chimera(#[from] crate::chimera::Error),
#[error(transparent)]
Expr(#[from] crate::compile::ExprError),
#[error(transparent)]
Utf8(#[from] std::str::Utf8Error),
#[error(transparent)]
ParseInt(#[from] std::num::ParseIntError),
#[error(transparent)]
NulByte(#[from] std::ffi::NulError),
#[error("invalid pattern flag: {0}")]
InvalidFlag(char),
}
pub trait AsResult
where
Self: Sized,
{
type Output;
type Error: fmt::Debug;
fn ok(self) -> StdResult<Self::Output, Self::Error>;
fn map<U, F: FnOnce(Self::Output) -> U>(self, op: F) -> StdResult<U, Self::Error> {
self.ok().map(op)
}
fn and_then<U, F: FnOnce(Self::Output) -> StdResult<U, Self::Error>>(self, op: F) -> StdResult<U, Self::Error> {
self.ok().and_then(op)
}
fn expect(self, msg: &str) -> Self::Output {
self.ok().expect(msg)
}
}
impl AsResult for ffi::hs_error_t {
type Output = ();
type Error = Error;
fn ok(self) -> StdResult<Self::Output, Self::Error> {
if self == ffi::HS_SUCCESS as ffi::hs_error_t {
Ok(())
} else {
Err(HsError::from(self).into())
}
}
}