-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathredis.rs
196 lines (178 loc) · 6.47 KB
/
redis.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
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
extern crate redis;
use async_trait::async_trait;
use redis::{AsyncCommands, RedisError};
use std::ops;
use crate::backend::{CommitBackend, DequeuBackend, EnqueuBackend};
/// Configuration for Redis backend.
/// You can use it to create `RedisBackend` instance.
pub struct RedisBackendConfig<S: ToString> {
/// Redis key is used to store tasks.
pub queue_key: S,
/// Number of tasks to read in one batch.
pub read_batch_size: usize,
/// If `true`, tasks will be deleted from queue after reading.
/// If autodelete is `false`, tasks should be deleted explicitly from queue after reading with `RedisBackend::delete`.
///
/// New in version 0.5.0.
pub autodelete: bool,
}
impl<S: ToString> RedisBackendConfig<S> {
/// Create `RedisBackend` instance.
/// It requires `redis::Client` instance.
///
/// New in version 0.5.0.
pub fn with_client(self, client: redis::Client) -> RedisBackend {
RedisBackend::new(
client,
self.queue_key.to_string(),
self.read_batch_size,
self.autodelete,
)
}
}
impl<S: ToString> ops::Add<redis::Client> for RedisBackendConfig<S> {
type Output = RedisBackend;
/// Create `RedisBackend` instance.
/// It requires `redis::Client` instance.
/// Alias for `RedisBackendConfig::with_client`.
fn add(self, client: redis::Client) -> RedisBackend {
self.with_client(client)
}
}
/// Redis backend.
/// It implements both `DequeuBackend` and `EnqueuBackend` traits.
/// You can use score to sort tasks in queue. Usually it is unix timestamp.
#[derive(Clone)]
pub struct RedisBackend {
client: redis::Client,
queue_key: String,
pop_schedule_script: redis::Script,
read_batch_size: usize,
pub(crate) autodelete: bool,
}
impl RedisBackend {
/// Create new instance of `RedisBackend`.
///
/// It requires `redis::Client` instance, redis key used to store tasks and number of tasks to read in one batch.
/// It also creates lua script used to pop tasks from redis.
/// * `client` - redis client.
/// * `queue_key` - redis key is used to store tasks.
/// * `read_batch_size` - number of tasks to read in one batch.
/// * `autodelete` - if `true`, tasks will be deleted from queue after reading. If `false`, tasks should be deleted explicitly from queue after reading with `RedisBackend::delete`. New in version 0.5.0.
pub fn new(
client: redis::Client,
queue_key: String,
read_batch_size: usize,
autodelete: bool,
) -> Self {
Self {
client,
queue_key,
pop_schedule_script: redis::Script::new(
r"
local key = KEYS[1]
local unix_ts = ARGV[1]
local limit = ARGV[2]
local autodelete = ARGV[3] == '1'
local res = redis.call('zrange', key, '-inf', unix_ts, 'byscore', 'limit', 0, limit)
if autodelete then
for _, raw in ipairs(res) do
redis.call('zrem', key, raw)
end
end
return res",
),
read_batch_size,
autodelete,
}
}
/// Calls lua script to pop tasks from redis.
/// If there are no tasks in queue it returns empty vector.
/// If there are no tasks with score less than `score`, returns empty vector.
pub async fn read(&self, score: &f64) -> Result<Vec<String>, RedisError> {
let mut con = match self.client.get_multiplexed_async_connection().await {
Ok(con) => con,
Err(e) => return Err(e),
};
let result: Vec<String> = match self
.pop_schedule_script
.key(self.queue_key.as_str())
.arg(score)
.arg(self.read_batch_size)
.arg(self.autodelete as u8)
.invoke_async(&mut con)
.await
{
Ok(result) => result,
Err(e) => return Err(e),
};
Ok(result)
}
/// Adds a task to redis.
/// It uses score to sort tasks in queue. Usually it is unix timestamp.
pub async fn write(&self, task: &String, score: &f64) -> Result<(), RedisError> {
let mut con = match self.client.get_multiplexed_async_connection().await {
Ok(con) => con,
Err(e) => return Err(e),
};
con.zadd(self.queue_key.as_str(), task, score).await
}
/// Delete a task from queue.
///
/// New in version 0.5.0.
pub async fn delete(&self, task: &String) -> Result<(), RedisError> {
if self.autodelete {
return Ok(());
}
let mut con = match self.client.get_multiplexed_async_connection().await {
Ok(con) => con,
Err(e) => return Err(e),
};
con.zrem(self.queue_key.as_str(), task).await
}
/// Check redis version.
///
/// New in version 0.6.0.
pub async fn is_redis_version_ok(&self) -> Result<bool, RedisError> {
let mut con = self.client.get_multiplexed_async_connection().await?;
let res: String = redis::cmd("INFO").query_async(&mut con).await?;
let mut ver = res
.lines()
.find(|s| s.contains("redis_version:"))
.unwrap()
.split(':')
.last()
.unwrap()
.split('.')
.take(2);
let major: u8 = ver.next().unwrap().parse().unwrap();
let minor: u8 = ver.next().unwrap().parse().unwrap();
Ok((major, minor) >= (6, 2))
}
}
#[async_trait]
impl CommitBackend<String, RedisError> for RedisBackend {
/// Delete a task from queue.
///
/// New in version 0.5.1.
async fn commit(&self, task: &String) -> Result<(), RedisError> {
self.delete(task).await
}
}
#[async_trait]
impl DequeuBackend<String, f64, RedisError> for RedisBackend {
/// Calls lua script to pop tasks from redis.
/// If there are no tasks in queue it returns empty vector.
/// If there are no tasks with score less than `score`, returns empty vector.
async fn dequeue(&self, score: &f64) -> Result<Vec<String>, RedisError> {
self.read(score).await
}
}
#[async_trait]
impl EnqueuBackend<String, f64, RedisError> for RedisBackend {
/// Adds a task to redis.
/// It uses score to sort tasks in queue. Usually it is unix timestamp.
async fn enqueue(&self, task: &String, score: &f64) -> Result<(), RedisError> {
self.write(task, score).await
}
}