-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathevents.rs
81 lines (71 loc) · 2.61 KB
/
events.rs
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
use redis_module::{
redis_module, Context, NotifyEvent, RedisError, RedisResult, RedisString, RedisValue, Status,
};
use std::ptr::NonNull;
use std::sync::atomic::{AtomicI64, Ordering};
static NUM_KEY_MISSES: AtomicI64 = AtomicI64::new(0);
static NUM_KEYS: AtomicI64 = AtomicI64::new(0);
fn on_event(ctx: &Context, event_type: NotifyEvent, event: &str, key: &[u8]) {
if key == b"num_sets" {
// break infinit look
return;
}
let msg = format!(
"Received event: {:?} on key: {} via event: {}",
event_type,
std::str::from_utf8(key).unwrap(),
event
);
ctx.log_notice(msg.as_str());
let _ = ctx.add_post_notification_job(|ctx| {
// it is not safe to write inside the notification callback itself.
// So we perform the write on a post job notificaiton.
if let Err(e) = ctx.call("incr", &["num_sets"]) {
ctx.log_warning(&format!("Error on incr command, {}.", e));
}
});
}
fn on_stream(ctx: &Context, _event_type: NotifyEvent, _event: &str, _key: &[u8]) {
ctx.log_debug("Stream event received!");
}
fn event_send(ctx: &Context, args: Vec<RedisString>) -> RedisResult {
if args.len() > 1 {
return Err(RedisError::WrongArity);
}
let key_name = RedisString::create(NonNull::new(ctx.ctx), "mykey");
let status = ctx.notify_keyspace_event(NotifyEvent::GENERIC, "events.send", &key_name);
match status {
Status::Ok => Ok("Event sent".into()),
Status::Err => Err(RedisError::Str("Generic error")),
}
}
fn on_key_miss(_ctx: &Context, _event_type: NotifyEvent, _event: &str, _key: &[u8]) {
NUM_KEY_MISSES.fetch_add(1, Ordering::SeqCst);
}
fn num_key_miss(_ctx: &Context, _args: Vec<RedisString>) -> RedisResult {
Ok(RedisValue::Integer(NUM_KEY_MISSES.load(Ordering::SeqCst)))
}
fn on_new_key(_ctx: &Context, _event_type: NotifyEvent, _event: &str, _key: &[u8]) {
NUM_KEYS.fetch_add(1, Ordering::SeqCst);
}
fn num_keys(_ctx: &Context, _args: Vec<RedisString>) -> RedisResult {
Ok(RedisValue::Integer(NUM_KEYS.load(Ordering::SeqCst)))
}
//////////////////////////////////////////////////////
redis_module! {
name: "events",
version: 1,
allocator: (redis_module::alloc::RedisAlloc, redis_module::alloc::RedisAlloc),
data_types: [],
commands: [
["events.send", event_send, "", 0, 0, 0, ""],
["events.num_key_miss", num_key_miss, "", 0, 0, 0, ""],
["events.num_keys", num_keys, "", 0, 0, 0, ""],
],
event_handlers: [
[@STRING: on_event],
[@STREAM: on_stream],
[@MISSED: on_key_miss],
[@NEW: on_new_key],
],
}