-
-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathlib.rs
1096 lines (978 loc) · 30.6 KB
/
lib.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
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//! Parsing library for [`defmt`] format strings.
//!
//! This is an implementation detail of [`defmt`] and not meant to be consumed by other tools at the
//! moment so all the API is unstable.
//!
//! [`defmt`]: https://github.com/knurling-rs/defmt
#![cfg(feature = "unstable")]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![cfg_attr(docsrs, doc(cfg(unstable)))]
#![doc(html_logo_url = "https://knurling.ferrous-systems.com/knurling_logo_light_text.svg")]
mod types;
use std::{borrow::Cow, ops::Range, str::FromStr};
pub use crate::types::Type;
/// A parameter of the form `{{0=Type:hint}}` in a format string.
#[derive(Clone, Debug, PartialEq)]
pub struct Parameter {
/// The argument index to display at this position.
pub index: usize,
/// The type of the argument to display, e.g. '=u8', '=bool'.
pub ty: Type,
/// The display hint, e.g. ':x', ':b', ':a'.
pub hint: Option<DisplayHint>,
}
/// All display hints
#[derive(Clone, Debug, PartialEq)]
pub enum DisplayHint {
NoHint {
zero_pad: usize,
},
/// `:x` OR `:X`
Hexadecimal {
alternate: bool,
uppercase: bool,
zero_pad: usize,
},
/// `:b`
Binary {
alternate: bool,
zero_pad: usize,
},
/// `:a`
Ascii,
/// `:?`
Debug,
/// `:µs`, formats integers as timestamps in microseconds
Microseconds,
/// Display hints currently not supported / understood
Unknown(String),
}
/// Parses the display hint (e.g. the `#x` in `{=u8:#x}`)
fn parse_display_hint(mut s: &str) -> Option<DisplayHint> {
// The `#` comes before any padding hints (I think this matches core::fmt).
// It is ignored for types that don't have an alternate representation.
let alternate = if matches!(s.chars().next(), Some('#')) {
s = &s[1..]; // '#' is always 1 byte
true
} else {
false
};
let zero_pad = if let Some(rest) = s.strip_prefix("0") {
let (rest, columns) = parse_integer::<usize>(rest)?;
s = rest;
columns
} else {
0 // default behavior is the same as no zero-padding.
};
Some(match s {
"" => DisplayHint::NoHint { zero_pad },
"µs" => DisplayHint::Microseconds,
"a" => DisplayHint::Ascii,
"b" => DisplayHint::Binary {
alternate,
zero_pad,
},
"x" => DisplayHint::Hexadecimal {
alternate,
uppercase: false,
zero_pad,
},
"X" => DisplayHint::Hexadecimal {
alternate,
uppercase: true,
zero_pad,
},
"?" => DisplayHint::Debug,
_ => return None,
})
}
/// A part of a format string.
#[derive(Clone, Debug, PartialEq)]
pub enum Fragment<'f> {
/// A literal string (eg. `"literal "` in `"literal {:?}"`).
Literal(Cow<'f, str>),
/// A format parameter.
Parameter(Parameter),
}
/// A parsed formatting parameter (contents of `{` `}` block).
///
/// # Syntax
///
/// ```notrust
/// param := '{' [ argument ] [ '=' argtype ] [ ':' format_spec ] '}'
/// argument := integer
///
/// argtype := bitfield | '?' | format-array | '[?]' | byte-array | '[u8]' | 'istr' | 'str' |
/// 'bool' | 'char' | 'u8' | 'u16' | 'u32' | 'u64' | 'u128' | 'usize' | 'i8' | 'i16' | 'i32' |
/// 'i64' | 'i128 | 'isize' | 'f32' | 'f64'
/// bitfield := integer '..' integer
/// format-array := '[?;' spaces integer ']'
/// byte-array := '[u8;' spaces integer ']'
/// spaces := ' '*
///
/// format_spec := [ zero_pad ] type
/// zero_pad := '0' integer
/// type := 'a' | 'b' | 'o' | 'x' | 'X' | '?' | 'µs'
/// ```
#[derive(Debug, PartialEq)]
struct Param {
index: Option<usize>,
ty: Type,
hint: Option<DisplayHint>,
}
/// The log level
#[derive(Clone, Copy, Debug, PartialEq, PartialOrd)]
pub enum Level {
Trace,
Debug,
Info,
Warn,
Error,
}
impl Level {
pub fn as_str(self) -> &'static str {
match self {
Level::Trace => "trace",
Level::Debug => "debug",
Level::Info => "info",
Level::Warn => "warn",
Level::Error => "error",
}
}
}
/// Parses an integer at the beginning of `s`.
///
/// Returns the integer and remaining text, if `s` started with an integer. Any errors parsing the
/// number (which we already know only contains digits) are silently ignored.
fn parse_integer<T: FromStr>(s: &str) -> Option<(&str, usize)> {
let start_digits = s
.as_bytes()
.iter()
.copied()
.take_while(|b| b.is_ascii_digit())
.count();
let num = s[..start_digits].parse().ok()?;
Some((&s[start_digits..], num))
}
fn parse_range(mut s: &str) -> Option<(Range<u8>, usize /* consumed */)> {
// consume first number
let start_digits = s
.as_bytes()
.iter()
.take_while(|b| (**b as char).is_ascii_digit())
.count();
let start = s[..start_digits].parse().ok()?;
// next two `char`s should be `..`
if &s[start_digits..start_digits + 2] != ".." {
return None;
}
s = &s[start_digits + 2..];
// consume second number
let end_digits = s
.as_bytes()
.iter()
.take_while(|b| (**b as char).is_ascii_digit())
.count();
let end = s[..end_digits].parse().ok()?;
// check for faulty state
if end <= start || start >= 128 || end > 128 {
return None;
}
Some((start..end, start_digits + end_digits + 2))
}
fn parse_array(mut s: &str) -> Result<usize, Cow<'static, str>> {
// skip spaces
let len_pos = s
.find(|c: char| c != ' ')
.ok_or("invalid array specifier (missing length)")?;
s = &s[len_pos..];
// consume length
let after_len = s
.find(|c: char| !c.is_digit(10))
.ok_or("invalid array specifier (missing `]`)")?;
let len = s[..after_len].parse::<usize>().map_err(|e| e.to_string())?;
s = &s[after_len..];
// consume final `]`
if s != "]" {
return Err("invalid array specifier (missing `]`)".into());
}
Ok(len)
}
/// Parser mode
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum ParserMode {
/// Rejects unknown display hints
Strict,
/// Accepts unknown display hints
ForwardsCompatible,
}
/// Parse `Param` from `&str`
///
/// * example `input`: `0=Type:hint` (note: no curly braces)
fn parse_param(mut input: &str, mode: ParserMode) -> Result<Param, Cow<'static, str>> {
const TYPE_PREFIX: &str = "=";
const HINT_PREFIX: &str = ":";
// First, optional argument index.
let mut index = None;
let index_end = input
.find(|c: char| !c.is_digit(10))
.unwrap_or_else(|| input.len());
if index_end != 0 {
index = Some(
input[..index_end]
.parse::<usize>()
.map_err(|e| e.to_string())?,
);
}
// Then, optional type
let mut ty = Type::default(); // when no explicit type; use the default one
input = &input[index_end..];
if input.starts_with(TYPE_PREFIX) {
// skip the prefix
input = &input[TYPE_PREFIX.len()..];
// type is delimited by `HINT_PREFIX` or end-of-string
let type_end = input.find(HINT_PREFIX).unwrap_or_else(|| input.len());
let type_fragment = &input[..type_end];
const FORMAT_ARRAY_START: &str = "[?;";
const U8_ARRAY_START: &str = "[u8;";
// what comes next is the type
ty = match type_fragment.parse() {
Ok(ty) => ty,
_ if input.starts_with(U8_ARRAY_START) => {
let len = parse_array(&type_fragment[U8_ARRAY_START.len()..])?;
Type::U8Array(len)
}
_ if input.starts_with(FORMAT_ARRAY_START) => {
let len = parse_array(&type_fragment[FORMAT_ARRAY_START.len()..])?;
Type::FormatArray(len)
}
_ => match parse_range(type_fragment) {
// Check for bitfield syntax.
Some((_, used)) if used != type_fragment.len() => {
return Err("trailing data after bitfield range".into());
}
Some((range, _)) => Type::BitField(range),
None => {
return Err(format!(
"malformed format string (invalid type specifier `{}`)",
input
)
.into());
}
},
};
input = &input[type_end..];
}
// Then, optional hint
let mut hint = None;
if input.starts_with(HINT_PREFIX) {
// skip the prefix
input = &input[HINT_PREFIX.len()..];
hint = Some(match parse_display_hint(input) {
Some(a) => a,
None => match mode {
ParserMode::Strict => {
return Err(format!("unknown display hint: {:?}", input).into());
}
ParserMode::ForwardsCompatible => DisplayHint::Unknown(input.to_owned()),
},
});
} else if !input.is_empty() {
return Err(format!("unexpected content {:?} in format string", input).into());
}
Ok(Param { index, ty, hint })
}
fn push_literal<'f>(
frag: &mut Vec<Fragment<'f>>,
unescaped_literal: &'f str,
) -> Result<(), Cow<'static, str>> {
// Replace `{{` with `{` and `}}` with `}`. Single braces are errors.
// Scan for single braces first. The rest is trivial.
let mut last_open = false;
let mut last_close = false;
for c in unescaped_literal.chars() {
match c {
'{' => last_open = !last_open,
'}' => last_close = !last_close,
_ => {
if last_open {
return Err("unmatched `{` in format string".into());
}
if last_close {
return Err("unmatched `}` in format string".into());
}
}
}
}
// Handle trailing unescaped `{` or `}`.
if last_open {
return Err("unmatched `{` in format string".into());
}
if last_close {
return Err("unmatched `}` in format string".into());
}
// FIXME: This always allocates a `String`, so the `Cow` is useless.
let literal = unescaped_literal.replace("{{", "{").replace("}}", "}");
frag.push(Fragment::Literal(literal.into()));
Ok(())
}
/// Returns `Some(smallest_bit_index, largest_bit_index)` contained in `params` if
/// `params` contains any bitfields. Otherwise `None`.
pub fn get_max_bitfield_range<'a, I>(params: I) -> Option<(u8, u8)>
where
I: Iterator<Item = &'a Parameter> + Clone,
{
let largest_bit_index = params
.clone()
.map(|param| match ¶m.ty {
Type::BitField(range) => range.end,
_ => unreachable!(),
})
.max();
let smallest_bit_index = params
.map(|param| match ¶m.ty {
Type::BitField(range) => range.start,
_ => unreachable!(),
})
.min();
match (smallest_bit_index, largest_bit_index) {
(Some(smallest), Some(largest)) => Some((smallest, largest)),
(None, None) => None,
_ => unreachable!(),
}
}
pub fn parse<'f>(
format_string: &'f str,
mode: ParserMode,
) -> Result<Vec<Fragment<'f>>, Cow<'static, str>> {
let mut fragments = Vec::new();
// Index after the `}` of the last format specifier.
let mut end_pos = 0;
// Next argument index assigned to a parameter without an explicit one.
let mut next_arg_index = 0;
let mut chars = format_string.char_indices();
while let Some((brace_pos, ch)) = chars.next() {
if ch != '{' {
// Part of a literal fragment.
continue;
}
// Peek at the next char.
if chars.as_str().starts_with('{') {
// Escaped `{{`, also part of a literal fragment.
chars.next(); // Move after both `{`s.
continue;
}
if brace_pos > end_pos {
// There's a literal fragment with at least 1 character before this parameter fragment.
let unescaped_literal = &format_string[end_pos..brace_pos];
push_literal(&mut fragments, unescaped_literal)?;
}
// Else, this is a format specifier. It ends at the next `}`.
let len = chars
.as_str()
.find('}')
.ok_or("missing `}` in format string")?;
end_pos = brace_pos + 1 + len + 1;
// Parse the contents inside the braces.
let param_str = &format_string[brace_pos + 1..][..len];
let param = parse_param(param_str, mode)?;
fragments.push(Fragment::Parameter(Parameter {
index: param.index.unwrap_or_else(|| {
// If there is no explicit index, assign the next one.
let idx = next_arg_index;
next_arg_index += 1;
idx
}),
ty: param.ty,
hint: param.hint,
}));
}
// Trailing literal.
if end_pos != format_string.len() {
push_literal(&mut fragments, &format_string[end_pos..])?;
}
// Check for argument type conflicts.
let mut args = Vec::new();
for frag in &fragments {
if let Fragment::Parameter(Parameter { index, ty, .. }) = frag {
if args.len() <= *index {
args.resize(*index + 1, None);
}
match &mut args[*index] {
none @ None => {
*none = Some(ty.clone());
}
Some(other_ty) => match (other_ty, ty) {
// FIXME: Bitfield range shouldn't be part of the type.
(Type::BitField(_), Type::BitField(_)) => {}
(a, b) if a != b => {
return Err(format!(
"conflicting types for argument {}: used as {:?} and {:?}",
index, a, ty
)
.into());
}
_ => {}
},
}
}
}
// Check that argument indices are dense (all arguments must be used).
for (index, arg) in args.iter().enumerate() {
if arg.is_none() {
return Err(format!("argument {} is not used in this format string", index).into());
}
}
Ok(fragments)
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn all_parse_param_cases() {
// no `Param` field present - 1 case
assert_eq!(
parse_param("", ParserMode::Strict),
Ok(Param {
index: None,
ty: Type::Format,
hint: None,
})
);
// only one `Param` field present - 3 cases
assert_eq!(
parse_param("=u8", ParserMode::Strict),
Ok(Param {
index: None,
ty: Type::U8,
hint: None,
})
);
assert_eq!(
parse_param(":a", ParserMode::Strict),
Ok(Param {
index: None,
ty: Type::Format,
hint: Some(DisplayHint::Ascii),
})
);
assert_eq!(
parse_param("1", ParserMode::Strict),
Ok(Param {
index: Some(1),
ty: Type::Format,
hint: None,
})
);
// two `Param` fields present - 3 cases
assert_eq!(
parse_param("=u8:x", ParserMode::Strict),
Ok(Param {
index: None,
ty: Type::U8,
hint: Some(DisplayHint::Hexadecimal {
alternate: false,
uppercase: false,
zero_pad: 0
}),
})
);
assert_eq!(
parse_param("0=u8", ParserMode::Strict),
Ok(Param {
index: Some(0),
ty: Type::U8,
hint: None,
})
);
assert_eq!(
parse_param("0:a", ParserMode::Strict),
Ok(Param {
index: Some(0),
ty: Type::Format,
hint: Some(DisplayHint::Ascii),
})
);
// all `Param` fields present - 1 case
assert_eq!(
parse_param("1=u8:b", ParserMode::Strict),
Ok(Param {
index: Some(1),
ty: Type::U8,
hint: Some(DisplayHint::Binary {
alternate: false,
zero_pad: 0,
}),
})
);
}
#[test]
fn all_display_hints() {
assert_eq!(
parse_param(":a", ParserMode::Strict),
Ok(Param {
index: None,
ty: Type::Format,
hint: Some(DisplayHint::Ascii),
})
);
assert_eq!(
parse_param(":b", ParserMode::Strict),
Ok(Param {
index: None,
ty: Type::Format,
hint: Some(DisplayHint::Binary {
alternate: false,
zero_pad: 0,
}),
})
);
assert_eq!(
parse_param(":#b", ParserMode::Strict),
Ok(Param {
index: None,
ty: Type::Format,
hint: Some(DisplayHint::Binary {
alternate: true,
zero_pad: 0,
}),
})
);
assert_eq!(
parse_param(":x", ParserMode::Strict),
Ok(Param {
index: None,
ty: Type::Format,
hint: Some(DisplayHint::Hexadecimal {
alternate: false,
uppercase: false,
zero_pad: 0
}),
})
);
assert_eq!(
parse_param(":#x", ParserMode::Strict),
Ok(Param {
index: None,
ty: Type::Format,
hint: Some(DisplayHint::Hexadecimal {
alternate: true,
uppercase: false,
zero_pad: 0
}),
})
);
assert_eq!(
parse_param(":X", ParserMode::Strict),
Ok(Param {
index: None,
ty: Type::Format,
hint: Some(DisplayHint::Hexadecimal {
alternate: false,
uppercase: true,
zero_pad: 0
}),
})
);
assert_eq!(
parse_param(":#X", ParserMode::Strict),
Ok(Param {
index: None,
ty: Type::Format,
hint: Some(DisplayHint::Hexadecimal {
alternate: true,
uppercase: true,
zero_pad: 0
}),
})
);
assert_eq!(
parse_param(":?", ParserMode::Strict),
Ok(Param {
index: None,
ty: Type::Format,
hint: Some(DisplayHint::Debug),
})
);
assert_eq!(
parse_param(":unknown", ParserMode::ForwardsCompatible),
Ok(Param {
index: None,
ty: Type::Format,
hint: Some(DisplayHint::Unknown("unknown".to_string())),
})
);
}
#[test]
fn all_types() {
assert_eq!(
parse_param("=bool", ParserMode::Strict),
Ok(Param {
index: None,
ty: Type::Bool,
hint: None,
})
);
assert_eq!(
parse_param("=?", ParserMode::Strict),
Ok(Param {
index: None,
ty: Type::Format,
hint: None,
})
);
assert_eq!(
parse_param("=i16", ParserMode::Strict),
Ok(Param {
index: None,
ty: Type::I16,
hint: None,
})
);
assert_eq!(
parse_param("=i32", ParserMode::Strict),
Ok(Param {
index: None,
ty: Type::I32,
hint: None,
})
);
assert_eq!(
parse_param("=i64", ParserMode::Strict),
Ok(Param {
index: None,
ty: Type::I64,
hint: None,
})
);
assert_eq!(
parse_param("=i128", ParserMode::Strict),
Ok(Param {
index: None,
ty: Type::I128,
hint: None,
})
);
assert_eq!(
parse_param("=i8", ParserMode::Strict),
Ok(Param {
index: None,
ty: Type::I8,
hint: None,
})
);
assert_eq!(
parse_param("=str", ParserMode::Strict),
Ok(Param {
index: None,
ty: Type::Str,
hint: None,
})
);
assert_eq!(
parse_param("=u16", ParserMode::Strict),
Ok(Param {
index: None,
ty: Type::U16,
hint: None,
})
);
assert_eq!(
parse_param("=u24", ParserMode::Strict),
Ok(Param {
index: None,
ty: Type::U24,
hint: None,
})
);
assert_eq!(
parse_param("=u32", ParserMode::Strict),
Ok(Param {
index: None,
ty: Type::U32,
hint: None,
})
);
assert_eq!(
parse_param("=u64", ParserMode::Strict),
Ok(Param {
index: None,
ty: Type::U64,
hint: None,
})
);
assert_eq!(
parse_param("=u128", ParserMode::Strict),
Ok(Param {
index: None,
ty: Type::U128,
hint: None,
})
);
assert_eq!(
parse_param("=f32", ParserMode::Strict),
Ok(Param {
index: None,
ty: Type::F32,
hint: None,
})
);
assert_eq!(
parse_param("=u8", ParserMode::Strict),
Ok(Param {
index: None,
ty: Type::U8,
hint: None,
})
);
assert_eq!(
parse_param("=[u8]", ParserMode::Strict),
Ok(Param {
index: None,
ty: Type::U8Slice,
hint: None,
})
);
assert_eq!(
parse_param("=usize", ParserMode::Strict),
Ok(Param {
index: None,
ty: Type::Usize,
hint: None,
})
);
assert_eq!(
parse_param("=isize", ParserMode::Strict),
Ok(Param {
index: None,
ty: Type::Isize,
hint: None,
})
);
}
#[test]
fn zero_pad() {
assert_eq!(
parse_param(":02", ParserMode::Strict),
Ok(Param {
index: None,
ty: Type::Format,
hint: Some(DisplayHint::NoHint { zero_pad: 2 })
})
)
}
#[test]
fn index() {
// implicit
assert_eq!(
parse("{=u8}{=u16}", ParserMode::Strict),
Ok(vec![
Fragment::Parameter(Parameter {
index: 0,
ty: Type::U8,
hint: None,
}),
Fragment::Parameter(Parameter {
index: 1,
ty: Type::U16,
hint: None,
}),
])
);
// single parameter formatted twice
assert_eq!(
parse("{=u8}{0=u8}", ParserMode::Strict),
Ok(vec![
Fragment::Parameter(Parameter {
index: 0,
ty: Type::U8,
hint: None,
}),
Fragment::Parameter(Parameter {
index: 0,
ty: Type::U8,
hint: None,
}),
])
);
// explicit index
assert_eq!(
parse("{=u8}{1=u16}", ParserMode::Strict),
Ok(vec![
Fragment::Parameter(Parameter {
index: 0,
ty: Type::U8,
hint: None,
}),
Fragment::Parameter(Parameter {
index: 1,
ty: Type::U16,
hint: None,
}),
])
);
// reversed order
assert_eq!(
parse("{1=u8}{0=u16}", ParserMode::Strict),
Ok(vec![
Fragment::Parameter(Parameter {
index: 1,
ty: Type::U8,
hint: None,
}),
Fragment::Parameter(Parameter {
index: 0,
ty: Type::U16,
hint: None,
}),
])
);
// two different types for the same index
assert!(parse("{0=u8}{0=u16}", ParserMode::Strict).is_err());
// same thing, except `{:bool}` is auto-assigned index 0
assert!(parse("Hello {1=u16} {0=u8} {=bool}", ParserMode::Strict).is_err());
// omitted index 0
assert!(parse("{1=u8}", ParserMode::Strict).is_err());
// index 1 is missing
assert!(parse("{2=u8}{=u16}", ParserMode::Strict).is_err());
// index 0 is missing
assert!(parse("{2=u8}{1=u16}", ParserMode::Strict).is_err());
}
#[test]
fn range() {
assert_eq!(
parse("{=0..4}", ParserMode::Strict),
Ok(vec![Fragment::Parameter(Parameter {
index: 0,
ty: Type::BitField(0..4),
hint: None,
})])
);
assert_eq!(
parse("{0=30..31}{1=0..4}{1=2..6}", ParserMode::Strict),
Ok(vec![
Fragment::Parameter(Parameter {
index: 0,
ty: Type::BitField(30..31),
hint: None,
}),
Fragment::Parameter(Parameter {
index: 1,
ty: Type::BitField(0..4),
hint: None,
}),
Fragment::Parameter(Parameter {
index: 1,
ty: Type::BitField(2..6),
hint: None,
}),
])
);
// empty range
assert!(parse("{=0..0}", ParserMode::Strict).is_err());
// start > end
assert!(parse("{=1..0}", ParserMode::Strict).is_err());
// out of 128-bit range
assert!(parse("{=0..129}", ParserMode::Strict).is_err());
assert!(parse("{=128..128}", ParserMode::Strict).is_err());
// just inside 128-bit range
assert!(parse("{=0..128}", ParserMode::Strict).is_ok());
assert!(parse("{=127..128}", ParserMode::Strict).is_ok());
// missing parts
assert!(parse("{=0..4", ParserMode::Strict).is_err());
assert!(parse("{=0..}", ParserMode::Strict).is_err());
assert!(parse("{=..4}", ParserMode::Strict).is_err());
assert!(parse("{=0.4}", ParserMode::Strict).is_err());
assert!(parse("{=0...4}", ParserMode::Strict).is_err());
}
#[test]
fn arrays() {
assert_eq!(
parse("{=[u8; 0]}", ParserMode::Strict),
Ok(vec![Fragment::Parameter(Parameter {