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
use codec::{Compact, Decode, Encode, Input, Output};
use serde_json::{json, Map, Value};

#[cfg(not(feature = "std"))]
use alloc::{format, string::String};
use sp_std::prelude::*;

use crate::error::*;
use crate::schema::*;
use crate::type_def::*;

pub mod de;

#[derive(Clone)]
pub struct TypeCodec {
  type_lookup: TypeLookup,
  ty: Type,
  id: TypeId,
}

impl TypeCodec {
  pub fn new(type_lookup: &TypeLookup, type_ref: TypeRef) -> Option<Self> {
    type_ref.ty.map(|ty| Self {
      type_lookup: type_lookup.clone(),
      ty,
      id: type_ref.id,
    })
  }

  pub fn decode_value<I: Input>(&self, input: &mut I, is_compact: bool) -> Result<Value> {
    self.ty.decode_value(&self.type_lookup, input, is_compact)
  }

  pub fn decode(&self, mut data: &[u8]) -> Result<Value> {
    self.decode_value(&mut data, false)
  }

  pub fn encode_to<T: Output + ?Sized>(&self, value: &Value, dest: &mut T) -> Result<()> {
    self.ty.encode_to(&self.type_lookup, value, dest, false)
  }

  pub fn encode(&self, value: &Value) -> Result<Vec<u8>> {
    let mut buf = Vec::with_capacity(1024);
    self.encode_to(value, &mut buf)?;
    Ok(buf)
  }

  pub fn from_slice<'a, T>(&'a self, data: &'a [u8]) -> Result<T>
  where
    T: serde::de::Deserialize<'a>,
  {
    let mut deserializer = de::TypeDeserializer::from_slice(self, data);
    Ok(T::deserialize(&mut deserializer)?)
  }
}

impl TypeLookup {
  pub fn type_codec(&self, name: &str) -> Option<TypeCodec> {
    let type_ref = self.resolve(name);
    TypeCodec::new(self, type_ref)
  }

  pub fn decode_value<I: Input>(
    &self,
    type_id: TypeId,
    input: &mut I,
    is_compact: bool,
  ) -> Result<Value> {
    let ty = self
      .get_type(type_id)
      .ok_or_else(|| Error::DecodeTypeFailed(format!("Missing type_id: {type_id:?}")))?;
    if ty.path().is_empty() {
      log::trace!("decode type[{type_id:?}]");
    } else {
      log::trace!("decode type[{type_id:?}]: {}", ty.path());
    }
    ty.decode_value(self, input, is_compact)
  }

  pub fn encode_to<T: Output + ?Sized>(
    &self,
    type_id: TypeId,
    value: &Value,
    dest: &mut T,
    is_compact: bool,
  ) -> Result<()> {
    let ty = self
      .get_type(type_id)
      .ok_or_else(|| Error::DecodeTypeFailed(format!("Missing type_id: {type_id:?}")))?;
    if ty.path().is_empty() {
      log::trace!("encode type[{type_id:?}]");
    } else {
      log::trace!("encode type[{type_id:?}]: {}", ty.path());
    }
    ty.encode_to(self, value, dest, is_compact)
  }
}

impl Type {
  pub fn decode_value<I: Input>(
    &self,
    type_lookup: &TypeLookup,
    input: &mut I,
    is_compact: bool,
  ) -> Result<Value> {
    if !self.path().is_empty() {
      log::trace!("decode type: {}", self.path());
    }
    self
      .type_def
      .decode_value(self, type_lookup, input, is_compact)
  }

  pub fn encode_to<T: Output + ?Sized>(
    &self,
    type_lookup: &TypeLookup,
    value: &Value,
    dest: &mut T,
    is_compact: bool,
  ) -> Result<()> {
    if !self.path().is_empty() {
      log::trace!("encode type: {}", self.path());
    }
    self
      .type_def
      .encode_to(self, type_lookup, value, dest, is_compact)
  }
}

impl TypeDef {
  pub fn decode_value<I: Input>(
    &self,
    ty: &Type,
    type_lookup: &TypeLookup,
    input: &mut I,
    is_compact: bool,
  ) -> Result<Value> {
    match self {
      TypeDef::Composite(def) => def.decode_value(type_lookup, input, is_compact),
      TypeDef::Variant(def) => {
        let is_option = ty.path().segments == &["Option"];
        def.decode_value(type_lookup, input, is_compact, is_option)
      }
      TypeDef::Sequence(def) => def.decode_value(type_lookup, input, is_compact),
      TypeDef::Array(def) => def.decode_value(type_lookup, input, is_compact),
      TypeDef::Tuple(def) => def.decode_value(type_lookup, input, is_compact),
      TypeDef::Primitive(prim) => {
        log::trace!("decode Primitive: {prim:?}, is_compact: {is_compact}");
        match prim {
          TypeDefPrimitive::Bool => match input.read_byte()? {
            0 => Ok(json!(false)),
            1 => Ok(json!(true)),
            num => Err(Error::DecodeTypeFailed(format!(
              "Invalid bool byte: {num:?}"
            ))),
          },
          TypeDefPrimitive::Char => {
            let ch = input.read_byte()? as char;
            Ok(json!(ch))
          }
          TypeDefPrimitive::Str => {
            let s = String::decode(input)?;
            Ok(json!(s))
          }
          TypeDefPrimitive::U8 => {
            let num = u8::decode(input)?;
            Ok(json!(num))
          }
          TypeDefPrimitive::U16 => {
            let num = if is_compact {
              Compact::<u16>::decode(input)?.0
            } else {
              u16::decode(input)?
            };
            Ok(json!(num))
          }
          TypeDefPrimitive::U32 => {
            let num = if is_compact {
              Compact::<u32>::decode(input)?.0
            } else {
              u32::decode(input)?
            };
            Ok(json!(num))
          }
          TypeDefPrimitive::U64 => {
            let num = if is_compact {
              Compact::<u64>::decode(input)?.0
            } else {
              u64::decode(input)?
            };
            Ok(json!(num))
          }
          TypeDefPrimitive::U128 => {
            let num = if is_compact {
              Compact::<u128>::decode(input)?.0
            } else {
              u128::decode(input)?
            };
            Ok(json!(num))
          }
          TypeDefPrimitive::U256 => {
            unimplemented!();
          }
          TypeDefPrimitive::I8 => {
            let num = i8::decode(input)?;
            Ok(json!(num))
          }
          TypeDefPrimitive::I16 => {
            let num = if is_compact {
              Compact::<u16>::decode(input)?.0 as i16
            } else {
              i16::decode(input)?
            };
            Ok(json!(num))
          }
          TypeDefPrimitive::I32 => {
            let num = if is_compact {
              Compact::<u32>::decode(input)?.0 as i32
            } else {
              i32::decode(input)?
            };
            Ok(json!(num))
          }
          TypeDefPrimitive::I64 => {
            let num = if is_compact {
              Compact::<u64>::decode(input)?.0 as i64
            } else {
              i64::decode(input)?
            };
            Ok(json!(num))
          }
          TypeDefPrimitive::I128 => {
            let num = if is_compact {
              Compact::<u128>::decode(input)?.0 as i128
            } else {
              i128::decode(input)?
            };
            Ok(json!(num))
          }
          TypeDefPrimitive::I256 => {
            unimplemented!();
          }
        }
      }
      TypeDef::Compact(def) => def.decode_value(type_lookup, input, is_compact),
    }
  }

  pub fn encode_to<T: Output + ?Sized>(
    &self,
    ty: &Type,
    type_lookup: &TypeLookup,
    value: &Value,
    dest: &mut T,
    is_compact: bool,
  ) -> Result<()> {
    match self {
      TypeDef::Composite(def) => def.encode_to(type_lookup, value, dest, is_compact),
      TypeDef::Variant(def) => {
        let is_option = ty.path().segments == &["Option"];
        def.encode_to(type_lookup, value, dest, is_compact, is_option)
      }
      TypeDef::Sequence(def) => def.encode_to(type_lookup, value, dest, is_compact),
      TypeDef::Array(def) => def.encode_to(type_lookup, value, dest, is_compact),
      TypeDef::Tuple(def) => def.encode_to(type_lookup, value, dest, is_compact),
      TypeDef::Primitive(prim) => {
        log::trace!("encode Primitive: {prim:?}, is_compact: {is_compact}");
        match prim {
          TypeDefPrimitive::Bool => match value.as_bool() {
            Some(v) => {
              dest.push_byte(if v { 1 } else { 0 });
              Ok(())
            }
            None => Err(Error::EncodeTypeFailed(format!(
              "Expected a bool, got {:?}",
              value
            ))),
          },
          TypeDefPrimitive::Char => match value.as_str() {
            Some(v) if v.len() == 1 => {
              let ch = v.as_bytes()[0];
              dest.push_byte(ch);
              Ok(())
            }
            _ => Err(Error::EncodeTypeFailed(format!(
              "Expected a char (string), got {:?}",
              value
            ))),
          },
          TypeDefPrimitive::Str => match value.as_str() {
            Some(v) => {
              v.encode_to(dest);
              Ok(())
            }
            None => Err(Error::EncodeTypeFailed(format!(
              "Expected a string, got {:?}",
              value
            ))),
          },
          TypeDefPrimitive::U8 => match value.as_u64() {
            Some(num) => {
              let num: u8 = num
                .try_into()
                .map_err(|e| Error::EncodeTypeFailed(format!("Not a u8 number: {e:?}")))?;
              num.encode_to(dest);
              Ok(())
            }
            None => Err(Error::EncodeTypeFailed(format!(
              "Expected a number, got {:?}",
              value
            ))),
          },
          TypeDefPrimitive::U16 => match value.as_u64() {
            Some(num) => {
              let num: u16 = num
                .try_into()
                .map_err(|e| Error::EncodeTypeFailed(format!("Not a u16 number: {e:?}")))?;
              if is_compact {
                Compact(num).encode_to(dest);
              } else {
                num.encode_to(dest);
              }
              Ok(())
            }
            None => Err(Error::EncodeTypeFailed(format!(
              "Expected a number, got {:?}",
              value
            ))),
          },
          TypeDefPrimitive::U32 => match value.as_u64() {
            Some(num) => {
              let num: u32 = num
                .try_into()
                .map_err(|e| Error::EncodeTypeFailed(format!("Not a u32 number: {e:?}")))?;
              if is_compact {
                Compact(num).encode_to(dest);
              } else {
                num.encode_to(dest);
              }
              Ok(())
            }
            None => Err(Error::EncodeTypeFailed(format!(
              "Expected a number, got {:?}",
              value
            ))),
          },
          TypeDefPrimitive::U64 => match value.as_u64() {
            Some(num) => {
              if is_compact {
                Compact(num).encode_to(dest);
              } else {
                num.encode_to(dest);
              }
              Ok(())
            }
            None => Err(Error::EncodeTypeFailed(format!(
              "Expected a number, got {:?}",
              value
            ))),
          },
          TypeDefPrimitive::U128 => match value.as_u64() {
            Some(num) => {
              let num: u128 = num
                .try_into()
                .map_err(|e| Error::EncodeTypeFailed(format!("Not a u128 number: {e:?}")))?;
              if is_compact {
                Compact(num).encode_to(dest);
              } else {
                num.encode_to(dest);
              }
              Ok(())
            }
            None => Err(Error::EncodeTypeFailed(format!(
              "Expected a number, got {:?}",
              value
            ))),
          },
          TypeDefPrimitive::U256 => {
            unimplemented!();
          }
          TypeDefPrimitive::I8 => match value.as_i64() {
            Some(num) => {
              let num: i8 = num
                .try_into()
                .map_err(|e| Error::EncodeTypeFailed(format!("Not a i8 number: {e:?}")))?;
              num.encode_to(dest);
              Ok(())
            }
            None => Err(Error::EncodeTypeFailed(format!(
              "Expected a number, got {:?}",
              value
            ))),
          },
          TypeDefPrimitive::I16 => match value.as_i64() {
            Some(num) => {
              let num: i16 = num
                .try_into()
                .map_err(|e| Error::EncodeTypeFailed(format!("Not a i16 number: {e:?}")))?;
              if is_compact {
                Compact(num as u128).encode_to(dest);
              } else {
                num.encode_to(dest);
              }
              Ok(())
            }
            None => Err(Error::EncodeTypeFailed(format!(
              "Expected a number, got {:?}",
              value
            ))),
          },
          TypeDefPrimitive::I32 => match value.as_i64() {
            Some(num) => {
              let num: i32 = num
                .try_into()
                .map_err(|e| Error::EncodeTypeFailed(format!("Not a i32 number: {e:?}")))?;
              if is_compact {
                Compact(num as u128).encode_to(dest);
              } else {
                num.encode_to(dest);
              }
              Ok(())
            }
            None => Err(Error::EncodeTypeFailed(format!(
              "Expected a number, got {:?}",
              value
            ))),
          },
          TypeDefPrimitive::I64 => match value.as_i64() {
            Some(num) => {
              if is_compact {
                Compact(num as u128).encode_to(dest);
              } else {
                num.encode_to(dest);
              }
              Ok(())
            }
            None => Err(Error::EncodeTypeFailed(format!(
              "Expected a number, got {:?}",
              value
            ))),
          },
          TypeDefPrimitive::I128 => match value.as_i64() {
            Some(num) => {
              let num: i128 = num
                .try_into()
                .map_err(|e| Error::EncodeTypeFailed(format!("Not a i128 number: {e:?}")))?;
              if is_compact {
                Compact(num as u128).encode_to(dest);
              } else {
                num.encode_to(dest);
              }
              Ok(())
            }
            None => Err(Error::EncodeTypeFailed(format!(
              "Expected a number, got {:?}",
              value
            ))),
          },
          TypeDefPrimitive::I256 => {
            unimplemented!();
          }
        }
      }
      TypeDef::Compact(def) => def.encode_to(type_lookup, value, dest, is_compact),
    }
  }
}

fn decode_fields<I: Input>(
  fields: &Vec<Field>,
  is_struct: bool,
  type_lookup: &TypeLookup,
  input: &mut I,
  is_compact: bool,
) -> Result<Value> {
  let len = fields.len();
  if len == 0 {
    return Ok(Value::Null);
  }
  match fields.len() {
    0 => Ok(Value::Null),
    1 if fields[0].name.is_none() => {
      Ok(type_lookup.decode_value(fields[0].ty, input, is_compact)?)
    }
    len if is_struct => {
      let mut m = Map::with_capacity(len);
      for (idx, field) in fields.iter().enumerate() {
        let name = field
          .name
          .as_ref()
          .cloned()
          .unwrap_or_else(|| format!("{idx}"));
        log::trace!("decode Composite field: {name}");
        m.insert(name, type_lookup.decode_value(field.ty, input, is_compact)?);
      }
      Ok(m.into())
    }
    len => {
      log::trace!("decode Composite tuple fields");
      let mut arr = Vec::with_capacity(len);
      for field in fields.iter() {
        arr.push(type_lookup.decode_value(field.ty, input, is_compact)?);
      }
      Ok(arr.into())
    }
  }
}

fn encode_struct_fields<T: Output + ?Sized>(
  fields: &Vec<Field>,
  type_lookup: &TypeLookup,
  value: &Value,
  dest: &mut T,
  is_compact: bool,
) -> Result<()> {
  let len = fields.len();
  match value {
    Value::Object(map) if map.len() == len => {
      for field in fields {
        let value = field.name.as_ref().and_then(|n| map.get(n));
        match value {
          Some(value) => {
            log::trace!("encode Composite struct field: {:?}", field);
            type_lookup.encode_to(field.ty, value, dest, is_compact)?;
          }
          None => {
            return Err(Error::EncodeTypeFailed(format!(
              "Encode struct missing field {:?}",
              field.name
            )));
          }
        }
      }
      Ok(())
    }
    Value::Object(map) => Err(Error::EncodeTypeFailed(format!(
      "Encode struct expected {len} field, got {}",
      map.len()
    ))),
    _ => Err(Error::EncodeTypeFailed(format!(
      "Encode struct expect an object got {:?}",
      value
    ))),
  }
}

fn encode_tuple_fields<T: Output + ?Sized>(
  fields: &Vec<Field>,
  type_lookup: &TypeLookup,
  value: &Value,
  dest: &mut T,
  is_compact: bool,
) -> Result<()> {
  let len = fields.len();
  if len == 1 {
    return type_lookup.encode_to(fields[0].ty, value, dest, is_compact);
  }
  match value.as_array() {
    Some(arr) if arr.len() == len => {
      for (v, field) in arr.into_iter().zip(fields.iter()) {
        log::trace!("encode Composite tuple field: {:?}", field);
        type_lookup.encode_to(field.ty, v, dest, is_compact)?;
      }
      Ok(())
    }
    Some(arr) => Err(Error::EncodeTypeFailed(format!(
      "Encode struct tuple expect array with length {len}, got {}",
      arr.len()
    ))),
    None => Err(Error::EncodeTypeFailed(format!(
      "Encode struct tuple expect array value got {:?}",
      value
    ))),
  }
}

fn encode_fields<T: Output + ?Sized>(
  fields: &Vec<Field>,
  is_struct: bool,
  type_lookup: &TypeLookup,
  value: &Value,
  dest: &mut T,
  is_compact: bool,
) -> Result<()> {
  if is_struct {
    encode_struct_fields(fields, type_lookup, value, dest, is_compact)
  } else {
    encode_tuple_fields(fields, type_lookup, value, dest, is_compact)
  }
}

impl TypeDefComposite {
  pub fn decode_value<I: Input>(
    &self,
    type_lookup: &TypeLookup,
    input: &mut I,
    is_compact: bool,
  ) -> Result<Value> {
    decode_fields(
      &self.fields,
      self.is_struct(),
      type_lookup,
      input,
      is_compact,
    )
  }

  pub fn encode_to<T: Output + ?Sized>(
    &self,
    type_lookup: &TypeLookup,
    value: &Value,
    dest: &mut T,
    is_compact: bool,
  ) -> Result<()> {
    encode_fields(
      &self.fields,
      self.is_struct(),
      type_lookup,
      value,
      dest,
      is_compact,
    )
  }
}

impl TypeDefVariant {
  pub fn decode_value<I: Input>(
    &self,
    type_lookup: &TypeLookup,
    input: &mut I,
    is_compact: bool,
    is_option: bool,
  ) -> Result<Value> {
    let val = input.read_byte()?;
    match (val, self.get_by_idx(val), is_option) {
      (0, Some(_variant), true) => Ok(Value::Null),
      (1, Some(variant), true) => decode_fields(
        &variant.fields,
        variant.is_struct(),
        type_lookup,
        input,
        is_compact,
      ),
      (_, Some(variant), _) if variant.fields.len() == 0 => Ok(json!(variant.name)),
      (_, Some(variant), _) => {
        let mut m = Map::new();
        let name = variant.name.clone();
        m.insert(
          name,
          decode_fields(
            &variant.fields,
            variant.is_struct(),
            type_lookup,
            input,
            is_compact,
          )?,
        );
        Ok(m.into())
      }
      (_, None, _) if val == 0 => Ok(Value::Null),
      (_, None, _) => {
        log::debug!(
          "Invalid variant: {}, bytes remaining: {:?}, variants: {:?}",
          val,
          input.remaining_len()?,
          self.variants
        );
        Err(Error::DecodeTypeFailed(format!("Invalid variant: {val}")))
      }
    }
  }

  fn encode_option<T: Output + ?Sized>(
    &self,
    type_lookup: &TypeLookup,
    value: &Value,
    dest: &mut T,
    is_compact: bool,
  ) -> Result<()> {
    if value.is_null() {
      dest.push_byte(0);
      return Ok(());
    }
    dest.push_byte(1);
    let variant = self
      .variants
      .get(1)
      .ok_or_else(|| Error::EncodeTypeFailed("Option type doesn't have a Some variant".into()))?;
    encode_fields(
      &variant.fields,
      variant.is_struct(),
      type_lookup,
      value,
      dest,
      is_compact,
    )
  }

  pub fn encode_to<T: Output + ?Sized>(
    &self,
    type_lookup: &TypeLookup,
    value: &Value,
    dest: &mut T,
    is_compact: bool,
    is_option: bool,
  ) -> Result<()> {
    if is_option {
      return self.encode_option(type_lookup, value, dest, is_compact);
    }
    let len = self.variants.len();
    match value {
      Value::Null if len == 0 => {
        // unit
        dest.push_byte(0);
        Ok(())
      }
      Value::String(s) => match self.get_by_name(&s) {
        Some(v) if v.fields.len() == 0 => {
          log::trace!("encode enum variant: {:?}", v);
          dest.push_byte(v.index);
          Ok(())
        }
        Some(v) => Err(Error::EncodeTypeFailed(format!(
          "Variant {} has fields, got just the name.",
          v.name
        ))),
        None => Err(Error::EncodeTypeFailed(format!("Unknown variant name {s}"))),
      },
      Value::Object(map) if map.len() == 1 => match map.iter().next() {
        Some((key, value)) => match self.get_by_name(&key) {
          Some(v) if v.fields.len() == 0 => {
            log::trace!("encode enum variant: {:?}", v);
            dest.push_byte(v.index);
            Ok(())
          }
          Some(v) => {
            log::trace!("encode enum variant: {:?}", v);
            dest.push_byte(v.index);
            if v.fields.len() > 0 {
              encode_fields(
                &v.fields,
                v.is_struct(),
                type_lookup,
                value,
                dest,
                is_compact,
              )
            } else {
              Ok(())
            }
          }
          None => Err(Error::EncodeTypeFailed(format!(
            "Unknown variant {:?}",
            map
          ))),
        },
        None => Err(Error::EncodeTypeFailed(format!(
          "Unknown variant {:?}",
          map
        ))),
      },
      Value::Object(map) => Err(Error::EncodeTypeFailed(format!(
        "Expect a variant, got a map with the wrong number of fields {}",
        map.len()
      ))),
      value => Err(Error::EncodeTypeFailed(format!(
        "Expect a variant, got {value:?}"
      ))),
    }
  }
}

impl TypeDefSequence {
  pub fn decode_value<I: Input>(
    &self,
    type_lookup: &TypeLookup,
    input: &mut I,
    is_compact: bool,
  ) -> Result<Value> {
    let len = Compact::<u64>::decode(input)?.0 as usize;
    let ty = type_lookup
      .get_type(self.type_param)
      .ok_or_else(|| Error::DecodeTypeFailed(format!("Missing type_id: {:?}", self.type_param)))?;
    if ty.is_u8() {
      log::trace!("--- decode byte sequence[{len}]: {:?}", ty);
      let mut vec = Vec::with_capacity(len);
      // Byte array.
      for _ in 0..len {
        vec.push(input.read_byte()?);
      }
      Ok(Value::String(hex::encode(vec)))
    } else {
      let mut vec = Vec::with_capacity(len.max(256));
      for _ in 0..len {
        vec.push(ty.decode_value(type_lookup, input, is_compact)?);
      }
      Ok(vec.into())
    }
  }

  pub fn encode_to<T: Output + ?Sized>(
    &self,
    type_lookup: &TypeLookup,
    value: &Value,
    dest: &mut T,
    is_compact: bool,
  ) -> Result<()> {
    let ty = type_lookup
      .get_type(self.type_param)
      .ok_or_else(|| Error::DecodeTypeFailed(format!("Missing type_id: {:?}", self.type_param)))?;
    match value {
      Value::Array(arr) => {
        let len = Compact::<u64>(arr.len() as u64);
        len.encode_to(dest);
        log::trace!("encode sequence: len={}", arr.len());
        for v in arr {
          ty.encode_to(type_lookup, v, dest, is_compact)?;
        }
        Ok(())
      }
      Value::String(s) if ty.is_u8() => {
        let off = if s.starts_with("0x") { 2 } else { 0 };
        let arr = hex::decode(&s[off..])?;
        log::trace!("--- encode byte sequence[{}]: {:?}", arr.len(), ty);
        let len = Compact::<u64>(arr.len() as u64);
        len.encode_to(dest);
        // Try hex decoding for byte arrays.
        dest.write(&arr[..]);
        Ok(())
      }
      _ => Err(Error::EncodeTypeFailed(format!(
        "Encode sequence expect array value got {:?}",
        value
      ))),
    }
  }
}

impl TypeDefArray {
  pub fn decode_value<I: Input>(
    &self,
    type_lookup: &TypeLookup,
    input: &mut I,
    is_compact: bool,
  ) -> Result<Value> {
    let len = self.len as usize;
    let ty = type_lookup
      .get_type(self.type_param)
      .ok_or_else(|| Error::DecodeTypeFailed(format!("Missing type_id: {:?}", self.type_param)))?;
    if ty.is_u8() {
      log::trace!("--- decode byte array[{len}]: {:?}", ty);
      let mut vec = Vec::with_capacity(len);
      // Byte array.
      for _ in 0..len {
        vec.push(input.read_byte()?);
      }
      Ok(Value::String(hex::encode(vec)))
    } else {
      let mut vec = Vec::with_capacity(len);
      for _ in 0..len {
        vec.push(ty.decode_value(type_lookup, input, is_compact)?);
      }
      Ok(vec.into())
    }
  }

  pub fn encode_to<T: Output + ?Sized>(
    &self,
    type_lookup: &TypeLookup,
    value: &Value,
    dest: &mut T,
    is_compact: bool,
  ) -> Result<()> {
    let len = self.len as usize;
    let ty = type_lookup
      .get_type(self.type_param)
      .ok_or_else(|| Error::DecodeTypeFailed(format!("Missing type_id: {:?}", self.type_param)))?;
    match value {
      Value::Array(arr) if arr.len() == len => {
        log::trace!("encode array: len={len}");
        for v in arr {
          ty.encode_to(type_lookup, v, dest, is_compact)?;
        }
        Ok(())
      }
      Value::Array(arr) => Err(Error::EncodeTypeFailed(format!(
        "Expect array with length {len}, got {}",
        arr.len()
      ))),
      Value::String(s) if ty.is_u8() && s.len() >= 2 * len => {
        log::trace!("--- encode byte array[{len}]: {:?}", ty);
        // Try hex decoding for byte arrays.
        let off = if s.starts_with("0x") { 2 } else { 0 };
        let arr = hex::decode(&s[off..])?;
        dest.write(&arr[..]);
        Ok(())
      }
      _ => Err(Error::EncodeTypeFailed(format!(
        "Expect array value got {:?}",
        value
      ))),
    }
  }
}

impl TypeDefTuple {
  pub fn decode_value<I: Input>(
    &self,
    type_lookup: &TypeLookup,
    input: &mut I,
    is_compact: bool,
  ) -> Result<Value> {
    match self.fields.len() {
      0 => Ok(Value::Null),
      1 => Ok(type_lookup.decode_value(self.fields[0], input, is_compact)?),
      len => {
        let mut vec = Vec::with_capacity(len);
        for field in &self.fields {
          vec.push(type_lookup.decode_value(*field, input, is_compact)?);
        }
        Ok(vec.into())
      }
    }
  }

  pub fn encode_to<T: Output + ?Sized>(
    &self,
    type_lookup: &TypeLookup,
    value: &Value,
    dest: &mut T,
    is_compact: bool,
  ) -> Result<()> {
    let len = self.fields.len();
    log::trace!("encode tuple: len={len}");
    if len == 1 {
      return type_lookup.encode_to(self.fields[0], value, dest, is_compact);
    }
    match value.as_array() {
      Some(arr) if arr.len() == len => {
        for (v, field) in arr.into_iter().zip(self.fields.iter()) {
          type_lookup.encode_to(*field, v, dest, is_compact)?;
        }
        Ok(())
      }
      Some(arr) => Err(Error::EncodeTypeFailed(format!(
        "Encode tuple expect array with length {len}, got {}",
        arr.len()
      ))),
      None => Err(Error::EncodeTypeFailed(format!(
        "Encode tuple expect array value got {:?}",
        value
      ))),
    }
  }
}

impl TypeDefCompact {
  pub fn decode_value<I: Input>(
    &self,
    type_lookup: &TypeLookup,
    input: &mut I,
    _is_compact: bool,
  ) -> Result<Value> {
    type_lookup.decode_value(self.type_param, input, true)
  }

  pub fn encode_to<T: Output + ?Sized>(
    &self,
    type_lookup: &TypeLookup,
    value: &Value,
    dest: &mut T,
    _is_compact: bool,
  ) -> Result<()> {
    type_lookup.encode_to(self.type_param, value, dest, true)
  }
}