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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
use std::slice::Iter;
use crate::cmd::sorted_sets::AGGREGATE::{MAX, MIN, SUM};
use crate::cmd::strings::ExistType;
use crate::cmd::strings::ExistType::{NX, XX};
#[derive(Debug)]
pub struct ZADD<'a> {
pub key: &'a [u8],
pub exist_type: Option<ExistType>,
pub ch: Option<bool>,
pub incr: Option<bool>,
pub items: Vec<Item<'a>>,
}
#[derive(Debug)]
pub struct Item<'a> {
pub score: &'a [u8],
pub member: &'a [u8],
}
pub(crate) fn parse_zadd(mut iter: Iter<Vec<u8>>) -> ZADD {
let key = iter.next().unwrap();
let mut exist_type = None;
let mut ch = None;
let mut incr = None;
let mut items = Vec::new();
while let Some(next_arg) = iter.next() {
let arg_upper = String::from_utf8_lossy(next_arg).to_uppercase();
if &arg_upper == "NX" {
exist_type = Some(NX);
} else if &arg_upper == "XX" {
exist_type = Some(XX);
} else if &arg_upper == "CH" {
ch = Some(true);
} else if &arg_upper == "INCR" {
incr = Some(true);
} else {
let member = iter.next().unwrap();
items.push(Item { score: next_arg, member });
}
}
ZADD {
key,
exist_type,
ch,
incr,
items,
}
}
#[derive(Debug)]
pub struct ZINCRBY<'a> {
pub key: &'a [u8],
pub increment: &'a [u8],
pub member: &'a [u8],
}
pub(crate) fn parse_zincrby(mut iter: Iter<Vec<u8>>) -> ZINCRBY {
let key = iter.next().unwrap();
let increment = iter.next().unwrap();
let member = iter.next().unwrap();
ZINCRBY {
key,
increment,
member,
}
}
#[derive(Debug)]
pub struct ZINTERSTORE<'a> {
pub destination: &'a [u8],
pub num_keys: i32,
pub keys: Vec<&'a [u8]>,
pub weights: Option<Vec<&'a [u8]>>,
pub aggregate: Option<AGGREGATE>,
}
#[derive(Debug)]
pub enum AGGREGATE {
SUM,
MIN,
MAX,
}
pub(crate) fn parse_zinterstore(mut iter: Iter<Vec<u8>>) -> ZINTERSTORE {
let destination = iter.next().unwrap();
let num_keys = String::from_utf8_lossy(iter.next().unwrap());
let num_keys = num_keys.parse::<i32>().unwrap();
let mut keys = Vec::new();
for _ in 0..num_keys {
let next_key = iter.next().unwrap();
keys.push(next_key.as_slice());
}
let mut _weights = Vec::new();
let mut aggregate = None;
while let Some(next_arg) = iter.next() {
let arg_upper = String::from_utf8_lossy(next_arg).to_uppercase();
if &arg_upper == "WEIGHTS" || &arg_upper == "AGGREGATE" {
continue;
} else if &arg_upper == "SUM" {
aggregate = Some(SUM);
} else if &arg_upper == "MIN" {
aggregate = Some(MIN);
} else if &arg_upper == "MAX" {
aggregate = Some(MAX);
} else {
_weights.push(next_arg.as_slice());
}
}
let weights;
if _weights.is_empty() {
weights = None;
} else {
weights = Some(_weights);
}
ZINTERSTORE {
destination,
num_keys,
keys,
weights,
aggregate,
}
}
#[derive(Debug)]
pub struct ZPOPMAX<'a> {
pub key: &'a [u8],
pub count: Option<&'a [u8]>,
}
pub(crate) fn parse_zpopmax(mut iter: Iter<Vec<u8>>) -> ZPOPMAX {
let key = iter.next().unwrap();
let mut count = None;
if let Some(next_arg) = iter.next() {
count = Some(next_arg.as_slice());
}
ZPOPMAX { key, count }
}
#[derive(Debug)]
pub struct ZPOPMIN<'a> {
pub key: &'a [u8],
pub count: Option<&'a [u8]>,
}
pub(crate) fn parse_zpopmin(mut iter: Iter<Vec<u8>>) -> ZPOPMIN {
let key = iter.next().unwrap();
let mut count = None;
if let Some(next_arg) = iter.next() {
count = Some(next_arg.as_slice());
}
ZPOPMIN { key, count }
}
#[derive(Debug)]
pub struct ZREM<'a> {
pub key: &'a [u8],
pub members: Vec<&'a [u8]>,
}
pub(crate) fn parse_zrem(mut iter: Iter<Vec<u8>>) -> ZREM {
let key = iter.next().unwrap();
let mut members = Vec::new();
while let Some(next_arg) = iter.next() {
members.push(next_arg.as_slice());
}
ZREM { key, members }
}
#[derive(Debug)]
pub struct ZREMRANGEBYLEX<'a> {
pub key: &'a [u8],
pub min: &'a [u8],
pub max: &'a [u8],
}
pub(crate) fn parse_zremrangebylex(mut iter: Iter<Vec<u8>>) -> ZREMRANGEBYLEX {
let key = iter.next().unwrap();
let min = iter.next().unwrap();
let max = iter.next().unwrap();
ZREMRANGEBYLEX { key, min, max }
}
#[derive(Debug)]
pub struct ZREMRANGEBYRANK<'a> {
pub key: &'a [u8],
pub start: &'a [u8],
pub stop: &'a [u8],
}
pub(crate) fn parse_zremrangebyrank(mut iter: Iter<Vec<u8>>) -> ZREMRANGEBYRANK {
let key = iter.next().unwrap();
let start = iter.next().unwrap();
let stop = iter.next().unwrap();
ZREMRANGEBYRANK { key, start, stop }
}
#[derive(Debug)]
pub struct ZREMRANGEBYSCORE<'a> {
pub key: &'a [u8],
pub min: &'a [u8],
pub max: &'a [u8],
}
pub(crate) fn parse_zremrangebyscore(mut iter: Iter<Vec<u8>>) -> ZREMRANGEBYSCORE {
let key = iter.next().unwrap();
let min = iter.next().unwrap();
let max = iter.next().unwrap();
ZREMRANGEBYSCORE { key, min, max }
}
#[derive(Debug)]
pub struct ZUNIONSTORE<'a> {
pub destination: &'a [u8],
pub num_keys: i32,
pub keys: Vec<&'a [u8]>,
pub weights: Option<Vec<&'a [u8]>>,
pub aggregate: Option<AGGREGATE>,
}
pub(crate) fn parse_zunionstore(mut iter: Iter<Vec<u8>>) -> ZUNIONSTORE {
let destination = iter.next().unwrap();
let num_keys = String::from_utf8_lossy(iter.next().unwrap());
let num_keys = num_keys.parse::<i32>().unwrap();
let mut keys = Vec::new();
for _ in 0..num_keys {
let next_key = iter.next().unwrap();
keys.push(next_key.as_slice());
}
let mut _weights = Vec::new();
let mut aggregate = None;
while let Some(next_arg) = iter.next() {
let arg_upper = String::from_utf8_lossy(next_arg).to_uppercase();
if &arg_upper == "WEIGHTS" || &arg_upper == "AGGREGATE" {
continue;
} else if &arg_upper == "SUM" {
aggregate = Some(SUM);
} else if &arg_upper == "MIN" {
aggregate = Some(MIN);
} else if &arg_upper == "MAX" {
aggregate = Some(MAX);
} else {
_weights.push(next_arg.as_slice());
}
}
let weights;
if _weights.is_empty() {
weights = None;
} else {
weights = Some(_weights);
}
ZUNIONSTORE {
destination,
num_keys,
keys,
weights,
aggregate,
}
}