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
use regex::{self, Error as RegexError};
use std::str::FromStr;

use streamson_lib::{matcher::MatchMaker, path::Path};

/// Regex path matcher
///
/// It uses regex to match path
///
/// # Examples
/// ```
/// use streamson_lib::{handler, strategy};
/// use streamson_extra_matchers::Regex;
///
/// use std::{str::FromStr, sync::{Arc, Mutex}};
///
/// let handler = Arc::new(Mutex::new(handler::PrintLn::new()));
/// let matcher = Regex::from_str(r#"\{"[Uu]ser"\}\[\]"#).unwrap();
///
/// let mut trigger = strategy::Trigger::new();
///
/// trigger.add_matcher(
///     Box::new(matcher),
///     &[handler],
/// );
///
/// for input in vec![
///     br#"{"Users": [1,2]"#.to_vec(),
///     br#", "users": [3, 4]}"#.to_vec(),
/// ] {
///     trigger.process(&input).unwrap();
/// }
///
/// ```
///
#[derive(Debug, Clone)]
pub struct Regex {
    regex: regex::Regex,
}

impl Regex {
    /// Creates new regex matcher
    ///
    /// # Arguments
    /// * `rgx` - regex structure
    pub fn new(rgx: regex::Regex) -> Self {
        Self { regex: rgx }
    }
}

impl MatchMaker for Regex {
    fn match_path(&self, path: &Path) -> bool {
        let str_path: String = path.to_string();
        self.regex.is_match(&str_path)
    }
}

impl FromStr for Regex {
    type Err = RegexError;
    fn from_str(path: &str) -> Result<Self, Self::Err> {
        let regex = regex::Regex::from_str(path)?;
        Ok(Self::new(regex))
    }
}