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
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
#![deny(missing_docs)]
// Documentation
//! This is a simple domain matching algorithm to match domains against a set of user-defined domain rules.
//!
//! Features:
//!
//! -  Super fast (200 ns per match for a 73300+ domain rule set)
//! -  No dependencies
//!
//! # Getting Started
//!
//! ```
//! let mut matcher = Dmatcher::new();
//! matcher.insert("apple.com");
//! assert_eq!(matcher.contains("store.apple.com"), true);
//! ```

use std::collections::HashMap;

#[derive(Debug, PartialEq, Clone)]
struct LevelNode<'a> {
    name: Option<&'a str>,
    next_lvs: HashMap<&'a str, LevelNode<'a>>,
}

impl<'a> LevelNode<'a> {
    fn new(name: &'a str) -> Self {
        Self {
            name: Some(name),
            next_lvs: HashMap::new(),
        }
    }
}

#[derive(Debug)]
/// Dmatcher matcher algorithm
pub struct Dmatcher<'a> {
    root: LevelNode<'a>,
}

impl<'a> Default for Dmatcher<'a> {
    fn default() -> Self {
        Self::new()
    }
}

impl<'a> Dmatcher<'a> {
    /// Create a matcher.
    pub fn new() -> Self {
        Self {
            root: LevelNode {
                name: None,
                next_lvs: HashMap::new(),
            },
        }
    }

    #[cfg(test)]
    fn get_root(&self) -> &LevelNode {
        &self.root
    }

    /// Pass in a string containing `\n` and get all domains inserted.
    pub fn insert_lines(&mut self, domain: &'a str) {
        let lvs: Vec<&str> = domain.split('\n').collect();
        for lv in lvs {
            self.insert(lv);
        }
    }

    /// Pass in a domain and insert it in the matcher.
    pub fn insert(&mut self, domain: &'a str) {
        let mut lvs: Vec<&str> = domain.split('.').collect();
        lvs.reverse();
        let mut ptr = &mut self.root;
        for lv in lvs {
            if lv == "" {
                // We should not include sub-levels like ""
                continue;
            }
            ptr = ptr.next_lvs.entry(lv).or_insert_with(|| LevelNode::new(lv));
        }
    }

    /// Match the domain against inserted domain rules. If `apple.com` is inserted, then `www.apple.com` and `stores.www.apple.com` is considered as matched while `apple.cn` is not.
    pub fn contains(&self, domain: &str) -> bool {
        let mut lvs: Vec<&str> = domain.split('.').collect();
        lvs.reverse();
        let mut ptr = &self.root;
        for lv in lvs {
            if ptr.next_lvs.is_empty() {
                break;
            }
            ptr = match ptr.next_lvs.get(lv) {
                Some(v) => v,
                None => return false,
            };
        }
        true
    }
}

#[cfg(test)]
mod tests {
    use super::{Dmatcher, LevelNode};
    use std::collections::HashMap;

    #[test]
    fn contains() {
        let mut matcher = Dmatcher::new();
        matcher.insert("apple.com");
        matcher.insert("apple.cn");
        assert_eq!(matcher.contains("store.apple.com"), true);
        assert_eq!(matcher.contains("baidu"), false);
        assert_eq!(matcher.contains("你好.store.www.apple.com"), true);
    }

    #[test]
    fn insertion() {
        let mut matcher = Dmatcher::new();
        matcher.insert("apple.com");
        matcher.insert("apple.cn");
        println!("{:?}", matcher.get_root());
        assert_eq!(
            matcher.get_root(),
            &LevelNode {
                name: None,
                next_lvs: [
                    (
                        "cn",
                        LevelNode {
                            name: Some("cn"),
                            next_lvs: [(
                                "apple",
                                LevelNode {
                                    name: Some("apple"),
                                    next_lvs: []
                                        .iter()
                                        .cloned()
                                        .collect::<HashMap<&str, LevelNode>>()
                                }
                            )]
                            .iter()
                            .cloned()
                            .collect::<HashMap<&str, LevelNode>>()
                        }
                    ),
                    (
                        "com",
                        LevelNode {
                            name: Some("com"),
                            next_lvs: [(
                                "apple",
                                LevelNode {
                                    name: Some("apple"),
                                    next_lvs: []
                                        .iter()
                                        .cloned()
                                        .collect::<HashMap<&str, LevelNode>>()
                                }
                            )]
                            .iter()
                            .cloned()
                            .collect::<HashMap<&str, LevelNode>>()
                        }
                    )
                ]
                .iter()
                .cloned()
                .collect::<HashMap<&str, LevelNode>>()
            }
        );
    }
}