-
Notifications
You must be signed in to change notification settings - Fork 658
/
user.go
206 lines (171 loc) · 4.59 KB
/
user.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
// Code generated by github.com/actgardner/gogen-avro/v10. DO NOT EDIT.
/*
* SOURCE:
* user.avsc
*/
package main
import (
"encoding/json"
"fmt"
"io"
"github.com/actgardner/gogen-avro/v10/compiler"
"github.com/actgardner/gogen-avro/v10/vm"
"github.com/actgardner/gogen-avro/v10/vm/types"
)
var _ = fmt.Printf
type User struct {
Name string `json:"name"`
Favorite_number int64 `json:"favorite_number"`
Favorite_color string `json:"favorite_color"`
}
const UserAvroCRC64Fingerprint = "\xada\x86\b\x06ɏ\xa2"
func NewUser() User {
r := User{}
return r
}
func DeserializeUser(r io.Reader) (User, error) {
t := NewUser()
deser, err := compiler.CompileSchemaBytes([]byte(t.Schema()), []byte(t.Schema()))
if err != nil {
return t, err
}
err = vm.Eval(r, deser, &t)
return t, err
}
func DeserializeUserFromSchema(r io.Reader, schema string) (User, error) {
t := NewUser()
deser, err := compiler.CompileSchemaBytes([]byte(schema), []byte(t.Schema()))
if err != nil {
return t, err
}
err = vm.Eval(r, deser, &t)
return t, err
}
func writeUser(r User, w io.Writer) error {
var err error
err = vm.WriteString(r.Name, w)
if err != nil {
return err
}
err = vm.WriteLong(r.Favorite_number, w)
if err != nil {
return err
}
err = vm.WriteString(r.Favorite_color, w)
if err != nil {
return err
}
return err
}
func (r User) Serialize(w io.Writer) error {
return writeUser(r, w)
}
func (r User) Schema() string {
return "{\"fields\":[{\"name\":\"name\",\"type\":\"string\"},{\"name\":\"favorite_number\",\"type\":\"long\"},{\"name\":\"favorite_color\",\"type\":\"string\"}],\"name\":\"confluent.io.examples.serialization.avro.User\",\"type\":\"record\"}"
}
func (r User) SchemaName() string {
return "confluent.io.examples.serialization.avro.User"
}
func (_ User) SetBoolean(v bool) { panic("Unsupported operation") }
func (_ User) SetInt(v int32) { panic("Unsupported operation") }
func (_ User) SetLong(v int64) { panic("Unsupported operation") }
func (_ User) SetFloat(v float32) { panic("Unsupported operation") }
func (_ User) SetDouble(v float64) { panic("Unsupported operation") }
func (_ User) SetBytes(v []byte) { panic("Unsupported operation") }
func (_ User) SetString(v string) { panic("Unsupported operation") }
func (_ User) SetUnionElem(v int64) { panic("Unsupported operation") }
func (r *User) Get(i int) types.Field {
switch i {
case 0:
w := types.String{Target: &r.Name}
return w
case 1:
w := types.Long{Target: &r.Favorite_number}
return w
case 2:
w := types.String{Target: &r.Favorite_color}
return w
}
panic("Unknown field index")
}
func (r *User) SetDefault(i int) {
switch i {
}
panic("Unknown field index")
}
func (r *User) NullField(i int) {
switch i {
}
panic("Not a nullable field index")
}
func (_ User) AppendMap(key string) types.Field { panic("Unsupported operation") }
func (_ User) AppendArray() types.Field { panic("Unsupported operation") }
func (_ User) HintSize(int) { panic("Unsupported operation") }
func (_ User) Finalize() {}
func (_ User) AvroCRC64Fingerprint() []byte {
return []byte(UserAvroCRC64Fingerprint)
}
func (r User) MarshalJSON() ([]byte, error) {
var err error
output := make(map[string]json.RawMessage)
output["name"], err = json.Marshal(r.Name)
if err != nil {
return nil, err
}
output["favorite_number"], err = json.Marshal(r.Favorite_number)
if err != nil {
return nil, err
}
output["favorite_color"], err = json.Marshal(r.Favorite_color)
if err != nil {
return nil, err
}
return json.Marshal(output)
}
func (r *User) UnmarshalJSON(data []byte) error {
var fields map[string]json.RawMessage
if err := json.Unmarshal(data, &fields); err != nil {
return err
}
var val json.RawMessage
val = func() json.RawMessage {
if v, ok := fields["name"]; ok {
return v
}
return nil
}()
if val != nil {
if err := json.Unmarshal([]byte(val), &r.Name); err != nil {
return err
}
} else {
return fmt.Errorf("no value specified for name")
}
val = func() json.RawMessage {
if v, ok := fields["favorite_number"]; ok {
return v
}
return nil
}()
if val != nil {
if err := json.Unmarshal([]byte(val), &r.Favorite_number); err != nil {
return err
}
} else {
return fmt.Errorf("no value specified for favorite_number")
}
val = func() json.RawMessage {
if v, ok := fields["favorite_color"]; ok {
return v
}
return nil
}()
if val != nil {
if err := json.Unmarshal([]byte(val), &r.Favorite_color); err != nil {
return err
}
} else {
return fmt.Errorf("no value specified for favorite_color")
}
return nil
}