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
use super::*;
use crate::error::{Error, Result};
use crate::{de::FogDeserializer, element::*, value::Value, value_ref::ValueRef};
use serde::{Deserialize, Serialize};
use std::{default::Default, iter::repeat};
#[inline]
fn is_false(v: &bool) -> bool {
!v
}
#[inline]
fn validator_is_any(v: &Validator) -> bool {
*v == Validator::Any
}
#[inline]
fn u32_is_zero(v: &u32) -> bool {
*v == 0
}
#[inline]
fn u32_is_max(v: &u32) -> bool {
*v == u32::MAX
}
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
#[serde(deny_unknown_fields, default)]
pub struct ArrayValidator {
#[serde(skip_serializing_if = "String::is_empty")]
pub comment: String,
#[serde(skip_serializing_if = "Vec::is_empty")]
pub contains: Vec<Validator>,
#[serde(skip_serializing_if = "validator_is_any")]
pub items: Box<Validator>,
#[serde(skip_serializing_if = "Vec::is_empty")]
pub prefix: Vec<Validator>,
#[serde(skip_serializing_if = "u32_is_max")]
pub max_len: u32,
#[serde(skip_serializing_if = "u32_is_zero")]
pub min_len: u32,
#[serde(rename = "in", skip_serializing_if = "Vec::is_empty")]
pub in_list: Vec<Vec<Value>>,
#[serde(rename = "nin", skip_serializing_if = "Vec::is_empty")]
pub nin_list: Vec<Vec<Value>>,
#[serde(skip_serializing_if = "is_false")]
pub unique: bool,
#[serde(skip_serializing_if = "is_false")]
pub query: bool,
#[serde(skip_serializing_if = "is_false")]
pub array: bool,
#[serde(skip_serializing_if = "is_false")]
pub contains_ok: bool,
#[serde(skip_serializing_if = "is_false")]
pub unique_ok: bool,
#[serde(skip_serializing_if = "is_false")]
pub size: bool,
}
impl Default for ArrayValidator {
fn default() -> Self {
Self {
comment: String::new(),
contains: Vec::new(),
items: Box::new(Validator::Any),
prefix: Vec::new(),
max_len: u32::MAX,
min_len: u32::MIN,
in_list: Vec::new(),
nin_list: Vec::new(),
unique: false,
query: false,
array: false,
contains_ok: false,
unique_ok: false,
size: false,
}
}
}
impl ArrayValidator {
pub fn new() -> Self {
Self::default()
}
pub fn comment(mut self, comment: impl Into<String>) -> Self {
self.comment = comment.into();
self
}
pub fn contains_add(mut self, validator: Validator) -> Self {
self.contains.push(validator);
self
}
pub fn items(mut self, items: Validator) -> Self {
self.items = Box::new(items);
self
}
pub fn prefix_add(mut self, prefix: Validator) -> Self {
self.prefix.push(prefix);
self
}
pub fn max_len(mut self, max_len: u32) -> Self {
self.max_len = max_len;
self
}
pub fn min_len(mut self, min_len: u32) -> Self {
self.min_len = min_len;
self
}
pub fn in_add(mut self, add: impl Into<Vec<Value>>) -> Self {
self.in_list.push(add.into());
self
}
pub fn nin_add(mut self, add: impl Into<Vec<Value>>) -> Self {
self.nin_list.push(add.into());
self
}
pub fn unique(mut self, unique: bool) -> Self {
self.unique = unique;
self
}
pub fn query(mut self, query: bool) -> Self {
self.query = query;
self
}
pub fn array(mut self, array: bool) -> Self {
self.array = array;
self
}
pub fn contains_ok(mut self, contains_ok: bool) -> Self {
self.contains_ok = contains_ok;
self
}
pub fn unique_ok(mut self, unique_ok: bool) -> Self {
self.unique_ok = unique_ok;
self
}
pub fn size(mut self, size: bool) -> Self {
self.size = size;
self
}
pub fn build(self) -> Validator {
Validator::Array(self)
}
pub(crate) fn validate<'de, 'c>(
&'c self,
types: &'c BTreeMap<String, Validator>,
mut parser: Parser<'de>,
mut checklist: Option<Checklist<'c>>,
) -> Result<(Parser<'de>, Option<Checklist<'c>>)> {
let val_parser = parser.clone();
let elem = parser
.next()
.ok_or_else(|| Error::FailValidate("Expected an array".to_string()))??;
let len = if let Element::Array(len) = elem {
len
} else {
return Err(Error::FailValidate(format!(
"Expected Array, got {}",
elem.name()
)));
};
if (len as u32) > self.max_len {
return Err(Error::FailValidate(format!(
"Array is {} elements, longer than maximum allowed of {}",
len, self.max_len
)));
}
if (len as u32) < self.min_len {
return Err(Error::FailValidate(format!(
"Array is {} elements, shorter than minimum allowed of {}",
len, self.min_len
)));
}
if self.unique || !self.in_list.is_empty() || !self.nin_list.is_empty() {
let mut de = FogDeserializer::from_parser(val_parser);
let array = Vec::<ValueRef>::deserialize(&mut de)?;
if !self.in_list.is_empty() && !self.in_list.iter().any(|v| *v == array) {
return Err(Error::FailValidate("Array is not on `in` list".to_string()));
}
if self.nin_list.iter().any(|v| *v == array) {
return Err(Error::FailValidate("Array is on `nin` list".to_string()));
}
if self.unique
&& array
.iter()
.enumerate()
.any(|(index, lhs)| array.iter().skip(index).any(|rhs| lhs == rhs))
{
return Err(Error::FailValidate(
"Array does not contain unique elements".to_string(),
));
}
}
let mut contains_result = vec![false; self.contains.len()];
let mut validators = self.prefix.iter().chain(repeat(self.items.as_ref()));
for _ in 0..len {
if !self.contains.is_empty() {
self.contains
.iter()
.zip(contains_result.iter_mut())
.for_each(|(validator, passed)| {
if !*passed {
let result =
validator.validate(types, parser.clone(), checklist.clone());
if let Ok((_, c)) = result {
*passed = true;
checklist = c;
}
}
});
}
let (p, c) = validators
.next()
.unwrap()
.validate(types, parser, checklist)?;
parser = p;
checklist = c;
}
if !contains_result.iter().all(|x| *x) {
let mut err_str = String::from("Array was missing items satisfying `contains` list:");
let iter = contains_result
.iter()
.enumerate()
.filter(|(_, pass)| !**pass)
.map(|(index, _)| format!(" {},", index));
err_str.extend(iter);
err_str.pop();
return Err(Error::FailValidate(err_str));
}
Ok((parser, checklist))
}
fn query_check_self(
&self,
types: &BTreeMap<String, Validator>,
other: &ArrayValidator,
) -> bool {
let initial_check = (self.query || (other.in_list.is_empty() && other.nin_list.is_empty()))
&& (self.array || (other.prefix.is_empty() && validator_is_any(&other.items)))
&& (self.contains_ok || other.contains.is_empty())
&& (self.unique_ok || !other.unique)
&& (self.size || (u32_is_max(&other.max_len) && u32_is_zero(&other.min_len)));
if !initial_check {
return false;
}
if self.contains_ok {
let contains_ok = other.contains.iter().all(|other| {
self.items.query_check(types, other)
&& self
.prefix
.iter()
.all(|mine| mine.query_check(types, other))
});
if !contains_ok {
return false;
}
}
if self.array {
self.items.query_check(types, other.items.as_ref())
&& self
.prefix
.iter()
.chain(repeat(self.items.as_ref()))
.zip(other.prefix.iter().chain(repeat(other.items.as_ref())))
.take(self.prefix.len().max(other.prefix.len()))
.all(|(mine, other)| mine.query_check(types, other))
} else {
true
}
}
pub(crate) fn query_check(
&self,
types: &BTreeMap<String, Validator>,
other: &Validator,
) -> bool {
match other {
Validator::Array(other) => self.query_check_self(types, other),
Validator::Multi(list) => list.iter().all(|other| match other {
Validator::Array(other) => self.query_check_self(types, other),
_ => false,
}),
Validator::Any => true,
_ => false,
}
}
}
#[cfg(test)]
mod test {
use super::*;
use crate::{de::FogDeserializer, ser::FogSerializer};
#[test]
fn ser_default() {
let schema = ArrayValidator::default();
let mut ser = FogSerializer::default();
schema.serialize(&mut ser).unwrap();
let expected: Vec<u8> = vec![0x80];
let actual = ser.finish();
println!("expected: {:x?}", expected);
println!("actual: {:x?}", actual);
assert_eq!(expected, actual);
let mut de = FogDeserializer::with_debug(&actual, " ");
let decoded = ArrayValidator::deserialize(&mut de).unwrap();
println!("{}", de.get_debug().unwrap());
assert_eq!(schema, decoded);
}
}