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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
|
use anyhow::{anyhow, Context, Result};
use irc::client::prelude::*;
use sedregex::ReplaceCommand;
use std::collections::HashMap;
static LOG_MAX_SIZE: usize = 10000;
thread_local!(static RE: regex::Regex = regex::Regex::new(r"^s/").unwrap());
pub struct Sed(HashMap<String, Vec<(String, String)>>);
impl Sed {
pub fn new() -> Sed {
Sed(HashMap::new())
}
pub fn log(&mut self, _bot: &crate::Bot, msg: Message) {
match self.log_msg(msg) {
Ok(_) => (),
Err(err) => tracing::error!("failed to log new message: {:?}", err),
}
}
fn log_msg(&mut self, msg: Message) -> Result<()> {
if let Command::PRIVMSG(target, text) = msg.command.clone() {
match self.0.get_mut(&target) {
Some(log) => {
if log.len() >= LOG_MAX_SIZE {
let _ = log.remove(0);
}
log.push((msg.source_nickname().unwrap().to_string(), text))
}
None => {
let mut log = Vec::with_capacity(LOG_MAX_SIZE);
log.push((msg.source_nickname().unwrap().to_string(), text));
self.0.insert(target, log);
}
}
}
Ok(())
}
pub fn replace(&mut self, bot: &crate::Bot, msg: Message) {
match self.find_and_replace(&msg) {
Ok(res) => match bot.send_privmsg(msg.response_target().unwrap(), res.as_str()) {
Ok(_) => (),
Err(_) => tracing::error!(
"failed to send message: \"{:?}\" to channel: {:?}",
msg.response_target().unwrap(),
res
),
},
Err(_) => tracing::debug!("did not find match for: {:?}", msg),
}
}
fn find_and_replace(&mut self, msg: &Message) -> Result<String> {
if let Command::PRIVMSG(target, text) = msg.command.clone() {
let cmd = match ReplaceCommand::new(text.as_str()) {
Ok(cmd) => cmd,
Err(_) => return Err(anyhow!("building replace command failed")),
};
let log = self
.0
.get(&target)
.context("did not find log for current channel")?;
return log
.iter()
.rev()
.find(|(_, text)| cmd.expr.is_match(text) && !RE.with(|re| re.is_match(text)))
.and_then(|(nick, text)| Some(format!("<{}> {}", nick, cmd.execute(text))))
.map_or(Err(anyhow!("replace failed")), |v| Ok(v));
}
Err(anyhow!("not a privmsg"))
}
}
#[cfg(test)]
mod tests {
use super::*;
use test::Bencher;
fn populate_log() -> Sed {
let mut sed = Sed::new();
sed.log_msg(
Message::new(
Some("user!user@user.com"),
"PRIVMSG",
vec!["user", "this is a long message which will be replaced"],
)
.unwrap(),
)
.unwrap();
for _ in 0..LOG_MAX_SIZE - 1 {
sed.log_msg(
Message::new(
Some("user!user@user.com"),
"PRIVMSG",
vec!["user", "this is a long message which doesn't matter"],
)
.unwrap(),
)
.unwrap();
}
return sed;
}
#[test]
fn test_log_push_max() {
let mut sed = Sed::new();
sed.log_msg(
Message::new(Some("user!user@user.com"), "PRIVMSG", vec!["user", "one"]).unwrap(),
)
.unwrap();
for _ in 0..LOG_MAX_SIZE - 2 {
sed.log_msg(
Message::new(Some("user!user@user.com"), "PRIVMSG", vec!["user", "two"]).unwrap(),
)
.unwrap();
}
sed.log_msg(
Message::new(Some("user!user@user.com"), "PRIVMSG", vec!["user", "three"]).unwrap(),
)
.unwrap();
{
let log = sed.0.get("user").unwrap();
assert_eq!(
log[LOG_MAX_SIZE - 1],
("user".to_string(), "three".to_string())
);
assert_eq!(log[0], ("user".to_string(), "one".to_string()));
}
sed.log_msg(
Message::new(Some("user!user@user.com"), "PRIVMSG", vec!["user", "four"]).unwrap(),
)
.unwrap();
{
let log = sed.0.get("user").unwrap();
assert_eq!(
log[LOG_MAX_SIZE - 1],
("user".to_string(), "four".to_string())
);
assert_eq!(log[0], ("user".to_string(), "two".to_string()));
}
}
#[test]
fn test_log_limit() {
let mut sed = populate_log();
{
let log = sed.0.get("user").unwrap();
assert_eq!(log.len(), LOG_MAX_SIZE);
}
sed.log_msg(
Message::new(
Some("user!user@user.com"),
"PRIVMSG",
vec!["user", "this is the 10001th message"],
)
.unwrap(),
)
.unwrap();
{
let log = sed.0.get("user").unwrap();
assert_eq!(log.len(), LOG_MAX_SIZE);
}
}
#[test]
fn test_replace() {
let mut sed = populate_log();
assert_eq!(
sed.find_and_replace(&Message {
tags: None,
prefix: None,
command: Command::PRIVMSG("user".to_string(), "s/will be/has been/".to_string(),),
})
.unwrap(),
"<user> this is a long message which has been replaced"
)
}
#[test]
fn test_replace_complex() {
let mut sed = populate_log();
assert_eq!(
sed.find_and_replace(&Message {
tags: None,
prefix: None,
command: Command::PRIVMSG("user".to_string(), "s/(will).*(be)/$2 $1/".to_string(),),
})
.unwrap(),
"<user> this is a long message which be will replaced"
)
}
#[bench]
fn bench_replace(b: &mut Bencher) {
let mut sed = populate_log();
b.iter(|| {
sed.find_and_replace(&Message {
tags: None,
prefix: None,
command: Command::PRIVMSG("user".to_string(), "s/will be/has been/".to_string()),
})
});
}
#[bench]
fn bench_replace_complex(b: &mut Bencher) {
let mut sed = populate_log();
b.iter(|| {
sed.find_and_replace(&Message {
tags: None,
prefix: None,
command: Command::PRIVMSG("user".to_string(), "s/(will).*(be)/$2 $1/".to_string()),
})
});
}
}
|