forked from tendermint/go-amino
-
Notifications
You must be signed in to change notification settings - Fork 2
/
codec.go
789 lines (695 loc) · 22.1 KB
/
codec.go
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
package amino
import (
"bytes"
"crypto/sha256"
"fmt"
"io"
"reflect"
"strings"
"sync"
"unicode"
)
//----------------------------------------
// PrefixBytes/DisambBytes/DisfixBytes types
// Lengths
const (
PrefixBytesLen = 4
DisambBytesLen = 3
DisfixBytesLen = PrefixBytesLen + DisambBytesLen
)
// Prefix types
type (
PrefixBytes [PrefixBytesLen]byte
DisambBytes [DisambBytesLen]byte
DisfixBytes [DisfixBytesLen]byte // Disamb+Prefix
)
// Copy into PrefixBytes
func NewPrefixBytes(prefixBytes []byte) PrefixBytes {
pb := PrefixBytes{}
copy(pb[:], prefixBytes)
return pb
}
func (pb PrefixBytes) Bytes() []byte { return pb[:] }
func (pb PrefixBytes) EqualBytes(bz []byte) bool { return bytes.Equal(pb[:], bz) }
func (db DisambBytes) Bytes() []byte { return db[:] }
func (db DisambBytes) EqualBytes(bz []byte) bool { return bytes.Equal(db[:], bz) }
func (df DisfixBytes) Bytes() []byte { return df[:] }
func (df DisfixBytes) EqualBytes(bz []byte) bool { return bytes.Equal(df[:], bz) }
// Return the DisambBytes and the PrefixBytes for a given name.
func NameToDisfix(name string) (db DisambBytes, pb PrefixBytes) {
return nameToDisfix(name)
}
//----------------------------------------
// Codec internals
type TypeInfo struct {
Type reflect.Type // Interface type.
PtrToType reflect.Type
ZeroValue reflect.Value
ZeroProto interface{}
InterfaceInfo
ConcreteInfo
StructInfo
}
type InterfaceInfo struct {
Priority []DisfixBytes // Disfix priority.
Implementers map[PrefixBytes][]*TypeInfo // Mutated over time.
InterfaceOptions
}
type InterfaceOptions struct {
Priority []string // Disamb priority.
AlwaysDisambiguate bool // If true, include disamb for all types.
}
type ConcreteInfo struct {
// These fields are only set when registered (as implementing an interface).
Registered bool // Registered with RegisterConcrete().
PointerPreferred bool // Deserialize to pointer type if possible.
// NilPreferred bool // Deserialize to nil for empty structs if PointerPreferred.
Name string // Registered name.
Disamb DisambBytes // Disambiguation bytes derived from name.
Prefix PrefixBytes // Prefix bytes derived from name.
ConcreteOptions // Registration options.
// These fields get set for all concrete types,
// even those not manually registered (e.g. are never interface values).
IsAminoMarshaler bool // Implements MarshalAmino() (<ReprObject>, error).
AminoMarshalReprType reflect.Type // <ReprType>
IsAminoUnmarshaler bool // Implements UnmarshalAmino(<ReprObject>) (error).
AminoUnmarshalReprType reflect.Type // <ReprType>
}
type StructInfo struct {
Fields []FieldInfo // If a struct.
}
func (cinfo ConcreteInfo) GetDisfix() DisfixBytes {
return toDisfix(cinfo.Disamb, cinfo.Prefix)
}
type ConcreteOptions struct {
}
type FieldInfo struct {
Name string // Struct field name
Type reflect.Type // Struct field type
Index int // Struct field index
ZeroValue reflect.Value // Could be nil pointer unlike TypeInfo.ZeroValue.
UnpackedList bool // True iff this field should be encoded as an unpacked list.
FieldOptions // Encoding options
}
type FieldOptions struct {
JSONName string // (JSON) field name
JSONOmitEmpty bool // (JSON) omitempty
BinFixed64 bool // (Binary) Encode as fixed64
BinFixed32 bool // (Binary) Encode as fixed32
BinFieldNum uint32 // (Binary) max 1<<29-1
Unsafe bool // e.g. if this field is a float.
WriteEmpty bool // write empty structs and lists (default false except for pointers)
EmptyElements bool // Slice and Array elements are never nil, decode 0x00 as empty struct.
}
//----------------------------------------
// Codec
type Codec struct {
mtx sync.RWMutex
sealed bool
typeInfos map[reflect.Type]*TypeInfo
interfaceInfos []*TypeInfo
concreteInfos []*TypeInfo
disfixToTypeInfo map[DisfixBytes]*TypeInfo
nameToTypeInfo map[string]*TypeInfo
}
func NewCodec() *Codec {
cdc := &Codec{
sealed: false,
typeInfos: make(map[reflect.Type]*TypeInfo),
disfixToTypeInfo: make(map[DisfixBytes]*TypeInfo),
nameToTypeInfo: make(map[string]*TypeInfo),
}
return cdc
}
// This function should be used to register all interfaces that will be
// encoded/decoded by go-amino.
// Usage:
// `amino.RegisterInterface((*MyInterface1)(nil), nil)`
func (cdc *Codec) RegisterInterface(ptr interface{}, iopts *InterfaceOptions) {
cdc.assertNotSealed()
// Get reflect.Type from ptr.
rt := getTypeFromPointer(ptr)
if rt.Kind() != reflect.Interface {
panic(fmt.Sprintf("RegisterInterface expects an interface, got %v", rt))
}
// Construct InterfaceInfo
var info = cdc.newTypeInfoFromInterfaceType(rt, iopts)
// Finally, check conflicts and register.
func() {
cdc.mtx.Lock()
defer cdc.mtx.Unlock()
cdc.collectImplementers_nolock(info)
err := cdc.checkConflictsInPrio_nolock(info)
if err != nil {
panic(err)
}
cdc.setTypeInfo_nolock(info)
}()
/*
NOTE: The above func block is a defensive pattern.
First of all, the defer call is necessary to recover from panics,
otherwise the Codec would become unusable after a single panic.
This “defer-panic-unlock” pattern requires a func block to denote the
boundary outside of which the defer call is guaranteed to have been
called. In other words, using any other form of curly braces (e.g. in
the form of a conditional or looping block) won't actually unlock when
it might appear to visually. Consider:
```
var info = ...
{
cdc.mtx.Lock()
defer cdc.mtx.Unlock()
...
}
// Here, cdc.mtx.Unlock() hasn't been called yet.
```
So, while the above code could be simplified, it's there for defense.
*/
}
// This function should be used to register concrete types that will appear in
// interface fields/elements to be encoded/decoded by go-amino.
// Usage:
// `amino.RegisterConcrete(MyStruct1{}, "com.tendermint/MyStruct1", nil)`
func (cdc *Codec) RegisterConcrete(o interface{}, name string, copts *ConcreteOptions) {
cdc.assertNotSealed()
var pointerPreferred bool
// Get reflect.Type.
rt := reflect.TypeOf(o)
if rt.Kind() == reflect.Interface {
panic(fmt.Sprintf("expected a non-interface: %v", rt))
}
if rt.Kind() == reflect.Ptr {
rt = rt.Elem()
if rt.Kind() == reflect.Ptr {
// We can encode/decode pointer-pointers, but not register them.
panic(fmt.Sprintf("registering pointer-pointers not yet supported: *%v", rt))
}
if rt.Kind() == reflect.Interface {
// MARKER: No interface-pointers
panic(fmt.Sprintf("registering interface-pointers not yet supported: *%v", rt))
}
pointerPreferred = true
}
// Construct ConcreteInfo.
var info = cdc.newTypeInfoFromRegisteredConcreteType(rt, pointerPreferred, name, copts)
// Finally, check conflicts and register.
func() {
cdc.mtx.Lock()
defer cdc.mtx.Unlock()
cdc.addCheckConflictsWithConcrete_nolock(info)
cdc.setTypeInfo_nolock(info)
}()
}
func (cdc *Codec) Seal() *Codec {
cdc.mtx.Lock()
defer cdc.mtx.Unlock()
cdc.sealed = true
return cdc
}
// PrintTypes writes all registered types in a markdown-style table.
// The table's header is:
//
// | Type | Name | Prefix | Notes |
//
// Where Type is the golang type name and Name is the name the type was registered with.
func (cdc Codec) PrintTypes(out io.Writer) error {
cdc.mtx.RLock()
defer cdc.mtx.RUnlock()
// print header
if _, err := io.WriteString(out, "| Type | Name | Prefix | Length | Notes |\n"); err != nil {
return err
}
if _, err := io.WriteString(out, "| ---- | ---- | ------ | ----- | ------ |\n"); err != nil {
return err
}
// only print concrete types for now (if we want everything, we can iterate over the typeInfos map instead)
for _, i := range cdc.concreteInfos {
io.WriteString(out, "| ")
// TODO(ismail): optionally create a link to code on github:
if _, err := io.WriteString(out, i.Type.Name()); err != nil {
return err
}
if _, err := io.WriteString(out, " | "); err != nil {
return err
}
if _, err := io.WriteString(out, i.Name); err != nil {
return err
}
if _, err := io.WriteString(out, " | "); err != nil {
return err
}
if _, err := io.WriteString(out, fmt.Sprintf("0x%X", i.Prefix)); err != nil {
return err
}
if _, err := io.WriteString(out, " | "); err != nil {
return err
}
if _, err := io.WriteString(out, getLengthStr(i)); err != nil {
return err
}
if _, err := io.WriteString(out, " | "); err != nil {
return err
}
// empty notes table data by default // TODO(ismail): make this configurable
io.WriteString(out, " |\n")
}
// finish table
return nil
}
// A heuristic to guess the size of a registered type and return it as a string.
// If the size is not fixed it returns "variable".
func getLengthStr(info *TypeInfo) string {
switch info.Type.Kind() {
case reflect.Array,
reflect.Int8,
reflect.Int16, reflect.Int32, reflect.Int64,
reflect.Float32, reflect.Float64,
reflect.Complex64, reflect.Complex128:
s := info.Type.Size()
return fmt.Sprintf("0x%X", s)
default:
return "variable"
}
}
//----------------------------------------
func (cdc *Codec) assertNotSealed() {
cdc.mtx.Lock()
defer cdc.mtx.Unlock()
if cdc.sealed {
panic("codec sealed")
}
}
func (cdc *Codec) setTypeInfo_nolock(info *TypeInfo) {
if info.Type.Kind() == reflect.Ptr {
panic(fmt.Sprintf("unexpected pointer type"))
}
if _, ok := cdc.typeInfos[info.Type]; ok {
panic(fmt.Sprintf("TypeInfo already exists for %v", info.Type))
}
cdc.typeInfos[info.Type] = info
if info.Type.Kind() == reflect.Interface {
cdc.interfaceInfos = append(cdc.interfaceInfos, info)
} else if info.Registered {
cdc.concreteInfos = append(cdc.concreteInfos, info)
disfix := info.GetDisfix()
if existing, ok := cdc.disfixToTypeInfo[disfix]; ok {
panic(fmt.Sprintf("disfix <%X> already registered for %v", disfix, existing.Type))
}
if existing, ok := cdc.nameToTypeInfo[info.Name]; ok {
panic(fmt.Sprintf("name <%s> already registered for %v", info.Name, existing.Type))
}
cdc.disfixToTypeInfo[disfix] = info
cdc.nameToTypeInfo[info.Name] = info
//cdc.prefixToTypeInfos[prefix] =
// append(cdc.prefixToTypeInfos[prefix], info)
}
}
func (cdc *Codec) getTypeInfo_wlock(rt reflect.Type) (info *TypeInfo, err error) {
cdc.mtx.Lock() // requires wlock because we might set.
defer cdc.mtx.Unlock()
// Dereference pointer type.
for rt.Kind() == reflect.Ptr {
rt = rt.Elem()
}
info, ok := cdc.typeInfos[rt]
if !ok {
if rt.Kind() == reflect.Interface {
err = fmt.Errorf("Unregistered interface %v", rt)
return
}
info = cdc.newTypeInfoUnregistered(rt)
cdc.setTypeInfo_nolock(info)
}
return info, nil
}
// iinfo: TypeInfo for the interface for which we must decode a
// concrete type with prefix bytes pb.
func (cdc *Codec) getTypeInfoFromPrefix_rlock(iinfo *TypeInfo, pb PrefixBytes) (info *TypeInfo, err error) {
cdc.mtx.RLock()
defer cdc.mtx.RUnlock()
infos, ok := iinfo.Implementers[pb]
if !ok {
err = fmt.Errorf("unrecognized prefix bytes %X", pb)
return
}
if len(infos) > 1 {
err = fmt.Errorf("conflicting concrete types registered for %X: e.g. %v and %v", pb, infos[0].Type, infos[1].Type)
return
}
info = infos[0]
return
}
func (cdc *Codec) getTypeInfoFromDisfix_rlock(df DisfixBytes) (info *TypeInfo, err error) {
cdc.mtx.RLock()
defer cdc.mtx.RUnlock()
info, ok := cdc.disfixToTypeInfo[df]
if !ok {
err = fmt.Errorf("unrecognized disambiguation+prefix bytes %X", df)
return
}
return
}
func (cdc *Codec) getTypeInfoFromName_rlock(name string) (info *TypeInfo, err error) {
cdc.mtx.RLock()
defer cdc.mtx.RUnlock()
info, ok := cdc.nameToTypeInfo[name]
if !ok {
err = fmt.Errorf("unrecognized concrete type name %s", name)
return
}
return
}
func (cdc *Codec) parseStructInfo(rt reflect.Type) (sinfo StructInfo) {
if rt.Kind() != reflect.Struct {
panic("should not happen")
}
var infos = make([]FieldInfo, 0, rt.NumField())
for i := 0; i < rt.NumField(); i++ {
var field = rt.Field(i)
var ftype = field.Type
var unpackedList = false
if !isExported(field) {
continue // field is unexported
}
skip, fopts := cdc.parseFieldOptions(field)
if skip {
continue // e.g. json:"-"
}
if ftype.Kind() == reflect.Array || ftype.Kind() == reflect.Slice {
if ftype.Elem().Kind() == reflect.Uint8 {
// These get handled by our optimized methods,
// encodeReflectBinaryByte[Slice/Array].
unpackedList = false
} else {
etype := ftype.Elem()
for etype.Kind() == reflect.Ptr {
etype = etype.Elem()
}
typ3 := typeToTyp3(etype, fopts)
if typ3 == Typ3_ByteLength {
unpackedList = true
}
}
}
// NOTE: This is going to change a bit.
// NOTE: BinFieldNum starts with 1.
fopts.BinFieldNum = uint32(len(infos) + 1)
fieldInfo := FieldInfo{
Name: field.Name, // Mostly for debugging.
Index: i,
Type: ftype,
ZeroValue: reflect.Zero(ftype),
UnpackedList: unpackedList,
FieldOptions: fopts,
}
checkUnsafe(fieldInfo)
infos = append(infos, fieldInfo)
}
sinfo = StructInfo{infos}
return
}
func (cdc *Codec) parseFieldOptions(field reflect.StructField) (skip bool, fopts FieldOptions) {
binTag := field.Tag.Get("binary")
aminoTag := field.Tag.Get("amino")
jsonTag := field.Tag.Get("json")
// If `json:"-"`, don't encode.
// NOTE: This skips binary as well.
if jsonTag == "-" {
skip = true
return
}
// Get JSON field name.
jsonTagParts := strings.Split(jsonTag, ",")
if jsonTagParts[0] == "" {
fopts.JSONName = field.Name
} else {
fopts.JSONName = jsonTagParts[0]
}
// Get JSON omitempty.
if len(jsonTagParts) > 1 {
if jsonTagParts[1] == "omitempty" {
fopts.JSONOmitEmpty = true
}
}
// Parse binary tags.
if binTag == "fixed64" { // TODO: extend
fopts.BinFixed64 = true
} else if binTag == "fixed32" {
fopts.BinFixed32 = true
}
// Parse amino tags.
aminoTags := strings.Split(aminoTag, ",")
for _, aminoTag := range aminoTags {
if aminoTag == "unsafe" {
fopts.Unsafe = true
}
if aminoTag == "write_empty" {
fopts.WriteEmpty = true
}
if aminoTag == "empty_elements" {
fopts.EmptyElements = true
}
}
return
}
// Constructs a *TypeInfo automatically, not from registration.
func (cdc *Codec) newTypeInfoUnregistered(rt reflect.Type) *TypeInfo {
if rt.Kind() == reflect.Ptr {
panic("unexpected pointer type") // should not happen.
}
if rt.Kind() == reflect.Interface {
panic("unexpected interface type") // should not happen.
}
var info = new(TypeInfo)
info.Type = rt
info.PtrToType = reflect.PtrTo(rt)
info.ZeroValue = reflect.Zero(rt)
info.ZeroProto = reflect.Zero(rt).Interface()
if rt.Kind() == reflect.Struct {
info.StructInfo = cdc.parseStructInfo(rt)
}
if rm, ok := rt.MethodByName("MarshalAmino"); ok {
info.ConcreteInfo.IsAminoMarshaler = true
info.ConcreteInfo.AminoMarshalReprType = marshalAminoReprType(rm)
}
if rm, ok := reflect.PtrTo(rt).MethodByName("UnmarshalAmino"); ok {
info.ConcreteInfo.IsAminoUnmarshaler = true
info.ConcreteInfo.AminoUnmarshalReprType = unmarshalAminoReprType(rm)
}
return info
}
func (cdc *Codec) newTypeInfoFromInterfaceType(rt reflect.Type, iopts *InterfaceOptions) *TypeInfo {
if rt.Kind() != reflect.Interface {
panic(fmt.Sprintf("expected interface type, got %v", rt))
}
var info = new(TypeInfo)
info.Type = rt
info.PtrToType = reflect.PtrTo(rt)
info.ZeroValue = reflect.Zero(rt)
info.ZeroProto = reflect.Zero(rt).Interface()
info.InterfaceInfo.Implementers = make(map[PrefixBytes][]*TypeInfo)
if iopts != nil {
info.InterfaceInfo.InterfaceOptions = *iopts
info.InterfaceInfo.Priority = make([]DisfixBytes, len(iopts.Priority))
// Construct Priority []DisfixBytes
for i, name := range iopts.Priority {
disamb, prefix := nameToDisfix(name)
disfix := toDisfix(disamb, prefix)
info.InterfaceInfo.Priority[i] = disfix
}
}
return info
}
func (cdc *Codec) newTypeInfoFromRegisteredConcreteType(rt reflect.Type, pointerPreferred bool, name string, copts *ConcreteOptions) *TypeInfo {
if rt.Kind() == reflect.Interface ||
rt.Kind() == reflect.Ptr {
panic(fmt.Sprintf("expected non-interface non-pointer concrete type, got %v", rt))
}
var info = cdc.newTypeInfoUnregistered(rt)
info.ConcreteInfo.Registered = true
info.ConcreteInfo.PointerPreferred = pointerPreferred
info.ConcreteInfo.Name = name
info.ConcreteInfo.Disamb = nameToDisamb(name)
info.ConcreteInfo.Prefix = nameToPrefix(name)
if copts != nil {
info.ConcreteOptions = *copts
}
return info
}
// Find all conflicting prefixes for concrete types
// that "implement" the interface. "Implement" in quotes because
// we only consider the pointer, for extra safety.
func (cdc *Codec) collectImplementers_nolock(info *TypeInfo) {
for _, cinfo := range cdc.concreteInfos {
if cinfo.PtrToType.Implements(info.Type) {
info.Implementers[cinfo.Prefix] = append(
info.Implementers[cinfo.Prefix], cinfo)
}
}
}
// Ensure that prefix-conflicting implementing concrete types
// are all registered in the priority list.
// Returns an error if a disamb conflict is found.
func (cdc *Codec) checkConflictsInPrio_nolock(iinfo *TypeInfo) error {
for _, cinfos := range iinfo.Implementers {
if len(cinfos) < 2 {
continue
}
for _, cinfo := range cinfos {
var inPrio = false
for _, disfix := range iinfo.InterfaceInfo.Priority {
if cinfo.GetDisfix() == disfix {
inPrio = true
}
}
if !inPrio {
return fmt.Errorf("%v conflicts with %v other(s). Add it to the priority list for %v.",
cinfo.Type, len(cinfos), iinfo.Type)
}
}
}
return nil
}
func (cdc *Codec) addCheckConflictsWithConcrete_nolock(cinfo *TypeInfo) {
// Iterate over registered interfaces that this "implements".
// "Implement" in quotes because we only consider the pointer, for extra
// safety.
for _, iinfo := range cdc.interfaceInfos {
if !cinfo.PtrToType.Implements(iinfo.Type) {
continue
}
// Add cinfo to iinfo.Implementers.
var origImpls = iinfo.Implementers[cinfo.Prefix]
iinfo.Implementers[cinfo.Prefix] = append(origImpls, cinfo)
// Finally, check that all conflicts are in `.Priority`.
// NOTE: This could be optimized, but it's non-trivial.
err := cdc.checkConflictsInPrio_nolock(iinfo)
if err != nil {
// Return to previous state.
iinfo.Implementers[cinfo.Prefix] = origImpls
panic(err)
}
}
}
//----------------------------------------
// .String()
func (ti TypeInfo) String() string {
buf := new(bytes.Buffer)
buf.Write([]byte("TypeInfo{"))
buf.Write([]byte(fmt.Sprintf("Type:%v,", ti.Type)))
if ti.Type.Kind() == reflect.Interface {
buf.Write([]byte(fmt.Sprintf("Priority:%v,", ti.Priority)))
buf.Write([]byte("Implementers:{"))
for pb, cinfos := range ti.Implementers {
buf.Write([]byte(fmt.Sprintf("\"%X\":", pb)))
buf.Write([]byte(fmt.Sprintf("%v,", cinfos)))
}
buf.Write([]byte("}"))
buf.Write([]byte(fmt.Sprintf("Priority:%v,", ti.InterfaceOptions.Priority)))
buf.Write([]byte(fmt.Sprintf("AlwaysDisambiguate:%v,", ti.InterfaceOptions.AlwaysDisambiguate)))
}
if ti.Type.Kind() != reflect.Interface {
if ti.ConcreteInfo.Registered {
buf.Write([]byte("Registered:true,"))
buf.Write([]byte(fmt.Sprintf("PointerPreferred:%v,", ti.PointerPreferred)))
buf.Write([]byte(fmt.Sprintf("Name:\"%v\",", ti.Name)))
buf.Write([]byte(fmt.Sprintf("Disamb:\"%X\",", ti.Disamb)))
buf.Write([]byte(fmt.Sprintf("Prefix:\"%X\",", ti.Prefix)))
} else {
buf.Write([]byte("Registered:false,"))
}
buf.Write([]byte(fmt.Sprintf("AminoMarshalReprType:\"%v\",", ti.AminoMarshalReprType)))
buf.Write([]byte(fmt.Sprintf("AminoUnmarshalReprType:\"%v\",", ti.AminoUnmarshalReprType)))
if ti.Type.Kind() == reflect.Struct {
buf.Write([]byte(fmt.Sprintf("Fields:%v,", ti.Fields)))
}
}
buf.Write([]byte("}"))
return buf.String()
}
//----------------------------------------
// Misc.
func isExported(field reflect.StructField) bool {
// Test 1:
if field.PkgPath != "" {
return false
}
// Test 2:
var first rune
for _, c := range field.Name {
first = c
break
}
// TODO: JAE: I'm not sure that the unicode spec
// is the correct spec to use, so this might be wrong.
if !unicode.IsUpper(first) {
return false
}
// Ok, it's exported.
return true
}
func nameToDisamb(name string) (db DisambBytes) {
db, _ = nameToDisfix(name)
return
}
func nameToPrefix(name string) (pb PrefixBytes) {
_, pb = nameToDisfix(name)
return
}
func nameToDisfix(name string) (db DisambBytes, pb PrefixBytes) {
hasher := sha256.New()
hasher.Write([]byte(name))
bz := hasher.Sum(nil)
for bz[0] == 0x00 {
bz = bz[1:]
}
copy(db[:], bz[0:3])
bz = bz[3:]
for bz[0] == 0x00 {
bz = bz[1:]
}
copy(pb[:], bz[0:4])
return
}
func toDisfix(db DisambBytes, pb PrefixBytes) (df DisfixBytes) {
copy(df[0:3], db[0:3])
copy(df[3:7], pb[0:4])
return
}
func marshalAminoReprType(rm reflect.Method) (rrt reflect.Type) {
// Verify form of this method.
if rm.Type.NumIn() != 1 {
panic(fmt.Sprintf("MarshalAmino should have 1 input parameters (including receiver); got %v", rm.Type))
}
if rm.Type.NumOut() != 2 {
panic(fmt.Sprintf("MarshalAmino should have 2 output parameters; got %v", rm.Type))
}
if out := rm.Type.Out(1); out != errorType {
panic(fmt.Sprintf("MarshalAmino should have second output parameter of error type, got %v", out))
}
rrt = rm.Type.Out(0)
if rrt.Kind() == reflect.Ptr {
panic(fmt.Sprintf("Representative objects cannot be pointers; got %v", rrt))
}
return
}
func unmarshalAminoReprType(rm reflect.Method) (rrt reflect.Type) {
// Verify form of this method.
if rm.Type.NumIn() != 2 {
panic(fmt.Sprintf("UnmarshalAmino should have 2 input parameters (including receiver); got %v", rm.Type))
}
if in1 := rm.Type.In(0); in1.Kind() != reflect.Ptr {
panic(fmt.Sprintf("UnmarshalAmino first input parameter should be pointer type but got %v", in1))
}
if rm.Type.NumOut() != 1 {
panic(fmt.Sprintf("UnmarshalAmino should have 1 output parameters; got %v", rm.Type))
}
if out := rm.Type.Out(0); out != errorType {
panic(fmt.Sprintf("UnmarshalAmino should have first output parameter of error type, got %v", out))
}
rrt = rm.Type.In(1)
if rrt.Kind() == reflect.Ptr {
panic(fmt.Sprintf("Representative objects cannot be pointers; got %v", rrt))
}
return
}