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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
use std::str;
use std::convert::From;
use std::fmt::{Debug, Display, Formatter, Result as FmtResult};
#[derive(Clone, Eq, PartialEq)]
pub enum Value {
Int(i64),
Str(String),
Err(String),
BStr(Option<String>),
Array(Option<Vec<Value>>),
}
impl Value {
const ENCODED_NULL_BSTR: &'static str = "$-1\r\n";
const ENCODED_EMPTY_BSTR: &'static str = "$0\r\n\r\n";
const ENCODED_NULL_ARRAY: &'static str = "*-1\r\n";
const ENCODED_EMPTY_ARRAY: &'static str = "*0\r\n";
pub fn encode(&self) -> String {
match self {
&Value::Int(ref datum) => {
let datum_str = &datum.to_string();
let mut encoded = String::with_capacity(datum_str.len() + 3);
encoded.push(':');
encoded.push_str(datum_str);
encoded.push_str("\r\n");
encoded
}
&Value::Str(ref datum) => {
let mut encoded = String::with_capacity(datum.len() + 3);
encoded.push('+');
encoded.push_str(datum);
encoded.push_str("\r\n");
encoded
}
&Value::Err(ref datum) => {
let mut encoded = String::with_capacity(datum.len() + 3);
encoded.push('-');
encoded.push_str(datum);
encoded.push_str("\r\n");
encoded
}
&Value::BStr(ref inner) => match inner {
&None => Value::ENCODED_NULL_BSTR.to_owned(),
&Some(ref datum) => match datum.len() {
0 => Value::ENCODED_EMPTY_BSTR.to_owned(),
len => {
let len_str = &len.to_string();
let mut encoded = String::with_capacity(len + len_str.len() + 5);
encoded.push('$');
encoded.push_str(len_str);
encoded.push_str("\r\n");
encoded.push_str(datum);
encoded.push_str("\r\n");
encoded
}
},
},
&Value::Array(ref inner) => match inner {
&None => Value::ENCODED_NULL_ARRAY.to_owned(),
&Some(ref data) => match data.len() {
0 => Value::ENCODED_EMPTY_ARRAY.to_owned(),
len => {
let len_str = len.to_string();
let mut encoded_len = len_str.len() + 3;
let encoded_values: Vec<String> = {
data.iter()
.map(|value| {
let encoded = value.encode();
encoded_len += encoded.len();
encoded
})
.collect()
};
let mut encoded = String::with_capacity(encoded_len);
encoded.push('*');
encoded.push_str(&len_str);
encoded.push_str("\r\n");
encoded.push_str(&encoded_values.concat());
encoded
}
},
},
}
}
#[inline(always)]
pub fn encode_bytes(&self) -> Vec<u8> {
self.encode().into_bytes()
}
#[inline]
pub fn is_null(&self) -> bool {
match self {
&Value::Array(None) | &Value::BStr(None) => true,
_ => false,
}
}
#[inline]
pub fn is_empty(&self) -> bool {
match self {
&Value::Int(_) => false,
&Value::Str(ref value) | &Value::Err(ref value) => value.is_empty(),
&Value::BStr(ref inner) => match inner {
&None => true,
&Some(ref value) => value.is_empty(),
},
&Value::Array(ref inner) => match inner {
&None => true,
&Some(ref items) => items.is_empty(),
},
}
}
#[inline(always)]
pub fn int(value: i64) -> Self {
Value::Int(value)
}
#[inline(always)]
pub fn str<T>(value: T) -> Self
where
T: ToString,
{
Value::Str(value.to_string())
}
#[inline(always)]
pub fn err<T>(error: T) -> Self
where
T: ToString,
{
Value::Err(error.to_string())
}
#[inline(always)]
pub fn b_str<T>(value: Option<T>) -> Self
where
T: ToString,
{
Value::BStr(value.map(|v| v.to_string()))
}
#[inline(always)]
pub fn array(values: Option<Vec<Value>>) -> Self {
Value::Array(values)
}
}
impl Debug for Value {
fn fmt(&self, f: &mut Formatter) -> FmtResult {
match self {
&Value::Int(ref datum) => write!(f, "Int({})", datum),
&Value::Str(ref datum) => write!(f, r#"Str("{}")"#, datum),
&Value::Err(ref datum) => write!(f, r#"Err("{}")"#, datum),
&Value::BStr(ref value) => match value {
&None => write!(f, "BStr(None)"),
&Some(ref datum) => match datum.len() {
0 => write!(f, "BStr(0)"),
len => write!(f, r#"BStr({}, "{}")"#, len, datum),
},
},
&Value::Array(ref value) => {
write!(f, "Array[")?;
match value {
&Some(ref data) => {
write!(f, "{}](", data.len())?;
for (i, datum) in data.iter().enumerate() {
write!(f, "{:?}", datum)?;
if data.len() - 1 > i {
write!(f, ", ")?;
}
}
write!(f, ")")
}
&None => write!(f, "-1]"),
}
}
}
}
}
impl Display for Value {
fn fmt(&self, f: &mut Formatter) -> FmtResult {
match self {
&Value::Int(ref datum) => write!(f, "(integer) {}", datum),
&Value::Str(ref datum) => write!(f, "{}", datum),
&Value::Err(ref datum) => write!(f, "(error) {}", datum),
&Value::BStr(ref value) => match value {
&Some(ref datum) => write!(f, r#""{}""#, datum),
&None => write!(f, r#""""#),
},
&Value::Array(ref value) => match value {
&Some(ref data) => {
for (i, datum) in data.iter().enumerate() {
let n = i + 1;
write!(f, "{}) {}", n, datum)?;
if n < data.len() {
write!(f, "\r\n")?;
}
}
Ok(())
}
&None => write!(f, "(empty list or set)"),
},
}
}
}
impl From<i64> for Value {
fn from(value: i64) -> Self {
Value::int(value)
}
}