forked from RedisJSON/RedisJSON
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkey_value.rs
437 lines (391 loc) · 14.6 KB
/
key_value.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
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
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
use std::collections::HashMap;
use redis_module::{RedisResult, RedisValue};
use serde::Serialize;
use serde_json::Value;
use crate::{
commands::{FoundIndex, ObjectLen, Values},
error::Error,
formatter::RedisJsonFormatter,
jsonpath::{
calc_once, calc_once_paths, compile,
json_path::JsonPathToken,
select_value::{SelectValue, SelectValueType},
},
manager::{
err_msg_json_expected, err_msg_json_path_doesnt_exist_with_param, AddUpdateInfo,
SetUpdateInfo, UpdateInfo,
},
redisjson::{normalize_arr_indices, Format, Path, SetOptions},
};
pub struct KeyValue<'a, V: SelectValue> {
val: &'a V,
}
impl<'a, V: SelectValue + 'a> KeyValue<'a, V> {
pub const fn new(v: &'a V) -> KeyValue<'a, V> {
KeyValue { val: v }
}
pub fn get_first<'b>(&'a self, path: &'b str) -> Result<&'a V, Error> {
let results = self.get_values(path)?;
match results.first() {
Some(s) => Ok(s),
None => Err(err_msg_json_path_doesnt_exist_with_param(path)
.as_str()
.into()),
}
}
pub fn resp_serialize(&'a self, path: Path) -> RedisResult {
if path.is_legacy() {
let v = self.get_first(path.get_path())?;
Ok(Self::resp_serialize_inner(v))
} else {
Ok(self
.get_values(path.get_path())?
.iter()
.map(|v| Self::resp_serialize_inner(v))
.collect::<Vec<RedisValue>>()
.into())
}
}
fn resp_serialize_inner(v: &V) -> RedisValue {
match v.get_type() {
SelectValueType::Null => RedisValue::Null,
SelectValueType::Bool => {
let bool_val = v.get_bool();
match bool_val {
true => RedisValue::SimpleString("true".to_string()),
false => RedisValue::SimpleString("false".to_string()),
}
}
SelectValueType::Long => RedisValue::Integer(v.get_long()),
SelectValueType::Double => RedisValue::Float(v.get_double()),
SelectValueType::String => RedisValue::BulkString(v.get_str()),
SelectValueType::Array => {
let mut res: Vec<RedisValue> = Vec::with_capacity(v.len().unwrap() + 1);
res.push(RedisValue::SimpleStringStatic("["));
v.values()
.unwrap()
.for_each(|v| res.push(Self::resp_serialize_inner(v)));
RedisValue::Array(res)
}
SelectValueType::Object => {
let mut res: Vec<RedisValue> = Vec::with_capacity(v.len().unwrap() + 1);
res.push(RedisValue::SimpleStringStatic("{"));
for (k, v) in v.items().unwrap() {
res.push(RedisValue::BulkString(k.to_string()));
res.push(Self::resp_serialize_inner(v));
}
RedisValue::Array(res)
}
}
}
pub fn get_values<'b>(&'a self, path: &'b str) -> Result<Vec<&'a V>, Error> {
let query = compile(path)?;
let results = calc_once(query, self.val);
Ok(results)
}
pub fn serialize_object<O: Serialize>(
o: &O,
indent: Option<&str>,
newline: Option<&str>,
space: Option<&str>,
) -> String {
let formatter = RedisJsonFormatter::new(indent, space, newline);
let mut out = serde_json::Serializer::with_formatter(Vec::new(), formatter);
o.serialize(&mut out).unwrap();
String::from_utf8(out.into_inner()).unwrap()
}
fn to_json_multi(
&'a self,
paths: &mut Vec<Path>,
indent: Option<&str>,
newline: Option<&str>,
space: Option<&str>,
is_legacy: bool,
) -> Result<RedisValue, Error> {
// TODO: Creating a temp doc here duplicates memory usage. This can be very memory inefficient.
// A better way would be to create a doc of references to the original doc but no current support
// in serde_json. I'm going for this implementation anyway because serde_json isn't supposed to be
// memory efficient and we're using it anyway. See https://github.com/serde-rs/json/issues/635.
let mut missing_path = None;
let path_len = paths.len();
let temp_doc =
paths
.drain(..)
.fold(HashMap::with_capacity(path_len), |mut acc, path: Path| {
let query = compile(path.get_path());
// If we can't compile the path, we can't continue
if query.is_err() {
return acc;
}
let query = query.unwrap();
let results = calc_once(query, self.val);
let value = if is_legacy {
if results.is_empty() {
None
} else {
Some(Values::Single(results[0]))
}
} else {
Some(Values::Multi(results))
};
if value.is_none() && missing_path.is_none() {
missing_path = Some(path.get_original().to_string());
}
acc.insert(path.get_original(), value);
acc
});
if let Some(p) = missing_path {
return Err(err_msg_json_path_doesnt_exist_with_param(p.as_str()).into());
}
Ok(Self::serialize_object(&temp_doc, indent, newline, space).into())
}
fn to_json_single(
&'a self,
path: &str,
indent: Option<&str>,
newline: Option<&str>,
space: Option<&str>,
is_legacy: bool,
) -> Result<RedisValue, Error> {
if is_legacy {
Ok(self.to_string_single(path, indent, newline, space)?.into())
} else {
Ok(self.to_string_multi(path, indent, newline, space)?.into())
}
}
pub fn to_json(
&'a self,
paths: &mut Vec<Path>,
indent: Option<&str>,
newline: Option<&str>,
space: Option<&str>,
format: Format,
) -> Result<RedisValue, Error> {
if format == Format::BSON {
return Err("ERR Soon to come...".into());
}
let is_legacy = !paths.iter().any(|p| !p.is_legacy());
if paths.len() > 1 {
self.to_json_multi(paths, indent, newline, space, is_legacy)
} else {
self.to_json_single(paths[0].get_path(), indent, newline, space, is_legacy)
}
}
fn find_add_paths(&mut self, path: &str) -> Result<Vec<UpdateInfo>, Error> {
let mut query = compile(path)?;
if !query.is_static() {
return Err("Err wrong static path".into());
}
if query.size() < 1 {
return Err("Err path must end with object key to set".into());
}
let (last, token_type) = query.pop_last().unwrap();
match token_type {
JsonPathToken::String => {
if query.size() == 1 {
// Adding to the root
Ok(vec![UpdateInfo::AUI(AddUpdateInfo {
path: Vec::new(),
key: last,
})])
} else {
// Adding somewhere in existing object
let res = calc_once_paths(query, self.val);
Ok(res
.into_iter()
.map(|v| {
UpdateInfo::AUI(AddUpdateInfo {
path: v,
key: last.to_string(),
})
})
.collect())
}
}
JsonPathToken::Number => {
// if we reach here with array path we are either out of range
// or no-oping an NX where the value is already present
let query = compile(path)?;
let res = calc_once_paths(query, self.val);
if res.is_empty() {
Err("ERR array index out of range".into())
} else {
Ok(Vec::new())
}
}
}
}
pub fn find_paths(
&mut self,
path: &str,
option: &SetOptions,
) -> Result<Vec<UpdateInfo>, Error> {
if SetOptions::NotExists != *option {
let query = compile(path)?;
let res = calc_once_paths(query, self.val);
if !res.is_empty() {
return Ok(res
.into_iter()
.map(|v| UpdateInfo::SUI(SetUpdateInfo { path: v }))
.collect());
}
}
if SetOptions::AlreadyExists == *option {
Ok(Vec::new()) // empty vector means no updates
} else {
self.find_add_paths(path)
}
}
pub fn to_string_single(
&self,
path: &str,
indent: Option<&str>,
newline: Option<&str>,
space: Option<&str>,
) -> Result<String, Error> {
let result = self.get_first(path)?;
Ok(Self::serialize_object(&result, indent, newline, space))
}
pub fn to_string_multi(
&self,
path: &str,
indent: Option<&str>,
newline: Option<&str>,
space: Option<&str>,
) -> Result<String, Error> {
let results = self.get_values(path)?;
Ok(Self::serialize_object(&results, indent, newline, space))
}
pub fn get_type(&self, path: &str) -> Result<String, Error> {
let s = Self::value_name(self.get_first(path)?);
Ok(s.to_string())
}
pub fn value_name(value: &V) -> &str {
match value.get_type() {
SelectValueType::Null => "null",
SelectValueType::Bool => "boolean",
SelectValueType::Long => "integer",
SelectValueType::Double => "number",
SelectValueType::String => "string",
SelectValueType::Array => "array",
SelectValueType::Object => "object",
}
}
pub fn str_len(&self, path: &str) -> Result<usize, Error> {
let first = self.get_first(path)?;
match first.get_type() {
SelectValueType::String => Ok(first.get_str().len()),
_ => Err(
err_msg_json_expected("string", self.get_type(path).unwrap().as_str())
.as_str()
.into(),
),
}
}
pub fn obj_len(&self, path: &str) -> Result<ObjectLen, Error> {
match self.get_first(path) {
Ok(first) => match first.get_type() {
SelectValueType::Object => Ok(ObjectLen::Len(first.len().unwrap())),
_ => Err(
err_msg_json_expected("object", self.get_type(path).unwrap().as_str())
.as_str()
.into(),
),
},
_ => Ok(ObjectLen::NoneExisting),
}
}
pub fn is_equal<T1: SelectValue, T2: SelectValue>(a: &T1, b: &T2) -> bool {
match (a.get_type(), b.get_type()) {
(SelectValueType::Null, SelectValueType::Null) => true,
(SelectValueType::Bool, SelectValueType::Bool) => a.get_bool() == b.get_bool(),
(SelectValueType::Long, SelectValueType::Long) => a.get_long() == b.get_long(),
(SelectValueType::Double, SelectValueType::Double) => a.get_double() == b.get_double(),
(SelectValueType::String, SelectValueType::String) => a.get_str() == b.get_str(),
(SelectValueType::Array, SelectValueType::Array) => {
if a.len().unwrap() != b.len().unwrap() {
false
} else {
for (i, e) in a.values().unwrap().enumerate() {
if !Self::is_equal(e, b.get_index(i).unwrap()) {
return false;
}
}
true
}
}
(SelectValueType::Object, SelectValueType::Object) => {
if a.len().unwrap() != b.len().unwrap() {
false
} else {
for k in a.keys().unwrap() {
let temp1 = a.get_key(k);
let temp2 = b.get_key(k);
match (temp1, temp2) {
(Some(a1), Some(b1)) => {
if !Self::is_equal(a1, b1) {
return false;
}
}
(_, _) => return false,
}
}
true
}
}
(_, _) => false,
}
}
pub fn arr_index(
&self,
path: &str,
json_value: Value,
start: i64,
end: i64,
) -> Result<RedisValue, Error> {
let res = self
.get_values(path)?
.iter()
.map(|value| Self::arr_first_index_single(value, &json_value, start, end).into())
.collect::<Vec<RedisValue>>();
Ok(res.into())
}
pub fn arr_index_legacy(
&self,
path: &str,
json_value: Value,
start: i64,
end: i64,
) -> Result<RedisValue, Error> {
let arr = self.get_first(path)?;
match Self::arr_first_index_single(arr, &json_value, start, end) {
FoundIndex::NotArray => Err(Error::from(err_msg_json_expected(
"array",
self.get_type(path).unwrap().as_str(),
))),
i => Ok(i.into()),
}
}
/// Returns first array index of `v` in `arr`, or `NotFound` if not found in `arr`, or `NotArray` if `arr` is not an array
fn arr_first_index_single(arr: &V, v: &Value, start: i64, end: i64) -> FoundIndex {
if !arr.is_array() {
return FoundIndex::NotArray;
}
let len = arr.len().unwrap() as i64;
if len == 0 {
return FoundIndex::NotFound;
}
// end=0 means INFINITY to support backward with RedisJSON
let (start, end) = normalize_arr_indices(start, end, len);
if end < start {
// don't search at all
return FoundIndex::NotFound;
}
for index in start..end {
if Self::is_equal(arr.get_index(index as usize).unwrap(), v) {
return FoundIndex::Index(index);
}
}
FoundIndex::NotFound
}
}