-
Notifications
You must be signed in to change notification settings - Fork 87
/
union_rec.go
121 lines (86 loc) · 2.54 KB
/
union_rec.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
// Code generated by github.com/actgardner/gogen-avro. DO NOT EDIT.
/*
* SOURCE:
* evolution.avsc
*/
package avro
import (
"io"
"github.com/actgardner/gogen-avro/vm/types"
"github.com/actgardner/gogen-avro/vm"
"github.com/actgardner/gogen-avro/compiler"
)
type UnionRec struct {
A int32
}
const UnionRecAvroCRC64Fingerprint = "1\xf9\xae\xb7W\x80#\xf9"
func NewUnionRec() (*UnionRec) {
return &UnionRec{}
}
func DeserializeUnionRec(r io.Reader) (*UnionRec, error) {
t := NewUnionRec()
deser, err := compiler.CompileSchemaBytes([]byte(t.Schema()), []byte(t.Schema()))
if err != nil {
return nil, err
}
err = vm.Eval(r, deser, t)
if err != nil {
return nil, err
}
return t, err
}
func DeserializeUnionRecFromSchema(r io.Reader, schema string) (*UnionRec, error) {
t := NewUnionRec()
deser, err := compiler.CompileSchemaBytes([]byte(schema), []byte(t.Schema()))
if err != nil {
return nil, err
}
err = vm.Eval(r, deser, t)
if err != nil {
return nil, err
}
return t, err
}
func writeUnionRec(r *UnionRec, w io.Writer) error {
var err error
err = vm.WriteInt( r.A, w)
if err != nil {
return err
}
return err
}
func (r *UnionRec) Serialize(w io.Writer) error {
return writeUnionRec(r, w)
}
func (r *UnionRec) Schema() string {
return "{\"fields\":[{\"name\":\"a\",\"type\":\"int\"}],\"name\":\"unionRec\",\"type\":\"record\"}"
}
func (r *UnionRec) SchemaName() string {
return "unionRec"
}
func (_ *UnionRec) SetBoolean(v bool) { panic("Unsupported operation") }
func (_ *UnionRec) SetInt(v int32) { panic("Unsupported operation") }
func (_ *UnionRec) SetLong(v int64) { panic("Unsupported operation") }
func (_ *UnionRec) SetFloat(v float32) { panic("Unsupported operation") }
func (_ *UnionRec) SetDouble(v float64) { panic("Unsupported operation") }
func (_ *UnionRec) SetBytes(v []byte) { panic("Unsupported operation") }
func (_ *UnionRec) SetString(v string) { panic("Unsupported operation") }
func (_ *UnionRec) SetUnionElem(v int64) { panic("Unsupported operation") }
func (r *UnionRec) Get(i int) types.Field {
switch (i) {
case 0:
return (*types.Int)(&r.A)
}
panic("Unknown field index")
}
func (r *UnionRec) SetDefault(i int) {
switch (i) {
}
panic("Unknown field index")
}
func (_ *UnionRec) AppendMap(key string) types.Field { panic("Unsupported operation") }
func (_ *UnionRec) AppendArray() types.Field { panic("Unsupported operation") }
func (_ *UnionRec) Finalize() { }
func (_ *UnionRec) AvroCRC64Fingerprint() []byte {
return []byte(UnionRecAvroCRC64Fingerprint)
}