-
Notifications
You must be signed in to change notification settings - Fork 87
/
event.go
163 lines (104 loc) · 3.28 KB
/
event.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
// Code generated by github.com/actgardner/gogen-avro. DO NOT EDIT.
/*
* SOURCE:
* union.avsc
*/
package avro
import (
"io"
"github.com/actgardner/gogen-avro/vm/types"
"github.com/actgardner/gogen-avro/vm"
"github.com/actgardner/gogen-avro/compiler"
)
// The test record
type Event struct {
// Unique ID for this event.
Id string
// Start IP of this observation's IP range.
Start_ip Ip_address
// End IP of this observation's IP range.
End_ip Ip_address
}
const EventAvroCRC64Fingerprint = "\xebZ\xc0m\xf9OV\x97"
func NewEvent() (*Event) {
return &Event{}
}
func DeserializeEvent(r io.Reader) (*Event, error) {
t := NewEvent()
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 DeserializeEventFromSchema(r io.Reader, schema string) (*Event, error) {
t := NewEvent()
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 writeEvent(r *Event, w io.Writer) error {
var err error
err = vm.WriteString( r.Id, w)
if err != nil {
return err
}
err = writeIp_address( r.Start_ip, w)
if err != nil {
return err
}
err = writeIp_address( r.End_ip, w)
if err != nil {
return err
}
return err
}
func (r *Event) Serialize(w io.Writer) error {
return writeEvent(r, w)
}
func (r *Event) Schema() string {
return "{\"doc\":\"The test record\",\"fields\":[{\"doc\":\"Unique ID for this event.\",\"name\":\"id\",\"type\":\"string\"},{\"doc\":\"Start IP of this observation's IP range.\",\"name\":\"start_ip\",\"type\":{\"aliases\":[\"IPAddr\",\"ipAddr\"],\"name\":\"ip_address\",\"size\":16,\"type\":\"fixed\"}},{\"doc\":\"End IP of this observation's IP range.\",\"name\":\"end_ip\",\"type\":\"ip_address\"}],\"name\":\"event\",\"subject\":\"event\",\"type\":\"record\"}"
}
func (r *Event) SchemaName() string {
return "event"
}
func (_ *Event) SetBoolean(v bool) { panic("Unsupported operation") }
func (_ *Event) SetInt(v int32) { panic("Unsupported operation") }
func (_ *Event) SetLong(v int64) { panic("Unsupported operation") }
func (_ *Event) SetFloat(v float32) { panic("Unsupported operation") }
func (_ *Event) SetDouble(v float64) { panic("Unsupported operation") }
func (_ *Event) SetBytes(v []byte) { panic("Unsupported operation") }
func (_ *Event) SetString(v string) { panic("Unsupported operation") }
func (_ *Event) SetUnionElem(v int64) { panic("Unsupported operation") }
func (r *Event) Get(i int) types.Field {
switch (i) {
case 0:
return (*types.String)(&r.Id)
case 1:
return (*Ip_addressWrapper)(&r.Start_ip)
case 2:
return (*Ip_addressWrapper)(&r.End_ip)
}
panic("Unknown field index")
}
func (r *Event) SetDefault(i int) {
switch (i) {
}
panic("Unknown field index")
}
func (_ *Event) AppendMap(key string) types.Field { panic("Unsupported operation") }
func (_ *Event) AppendArray() types.Field { panic("Unsupported operation") }
func (_ *Event) Finalize() { }
func (_ *Event) AvroCRC64Fingerprint() []byte {
return []byte(EventAvroCRC64Fingerprint)
}