-
Notifications
You must be signed in to change notification settings - Fork 218
Expand file tree
/
Copy pathinfo_easyjson.go
More file actions
84 lines (78 loc) · 1.63 KB
/
info_easyjson.go
File metadata and controls
84 lines (78 loc) · 1.63 KB
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
// Code generated by easyjson for marshaling/unmarshaling. DO NOT EDIT.
package binlog
import (
json "encoding/json"
easyjson "github.com/mailru/easyjson"
jlexer "github.com/mailru/easyjson/jlexer"
jwriter "github.com/mailru/easyjson/jwriter"
)
// suppress unused package warning
var (
_ *json.RawMessage
_ *jlexer.Lexer
_ *jwriter.Writer
_ easyjson.Marshaler
)
func easyjsonDdc53814DecodeBinlog(in *jlexer.Lexer, out *info) {
isTopLevel := in.IsStart()
if in.IsNull() {
if isTopLevel {
in.Consumed()
}
in.Skip()
return
}
in.Delim('{')
for !in.IsDelim('}') {
key := in.UnsafeString()
in.WantColon()
if in.IsNull() {
in.Skip()
in.WantComma()
continue
}
switch key {
case "binlog":
out.Binlog = string(in.String())
case "gtid":
out.Timestamp = int64(in.Int64())
default:
in.SkipRecursive()
}
in.WantComma()
}
in.Delim('}')
if isTopLevel {
in.Consumed()
}
}
func easyjsonDdc53814EncodeBinlog(out *jwriter.Writer, in info) {
out.RawByte('{')
first := true
_ = first
if !first {
out.RawByte(',')
}
first = false
out.RawString("\"binlog\":")
out.String(string(in.Binlog))
if !first {
out.RawByte(',')
}
first = false
out.RawString("\"gtid\":")
out.Int64(int64(in.Timestamp))
out.RawByte('}')
}
// MarshalJSON supports json.Marshaler interface
func (v info) MarshalJSON() ([]byte, error) {
w := jwriter.Writer{}
easyjsonDdc53814EncodeBinlog(&w, v)
return w.Buffer.BuildBytes(), w.Error
}
// UnmarshalJSON supports json.Unmarshaler interface
func (v *info) UnmarshalJSON(data []byte) error {
r := jlexer.Lexer{Data: data}
easyjsonDdc53814DecodeBinlog(&r, v)
return r.Error()
}