-
Notifications
You must be signed in to change notification settings - Fork 1
/
version_easyjson.go
110 lines (102 loc) · 2.47 KB
/
version_easyjson.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
// Code generated by easyjson for marshaling/unmarshaling. DO NOT EDIT.
package garcon
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 easyjson8e52a332DecodeGithubComTealFinanceGarcon(in *jlexer.Lexer, out *versionInfo) {
isTopLevel := in.IsStart()
if in.IsNull() {
if isTopLevel {
in.Consumed()
}
in.Skip()
return
}
in.Delim('{')
for !in.IsDelim('}') {
key := in.UnsafeFieldName(true)
in.WantColon()
if in.IsNull() {
in.Skip()
in.WantComma()
continue
}
switch key {
case "version":
out.Version = string(in.String())
case "short":
out.Short = string(in.String())
case "last_commit":
out.LastCommit = string(in.String())
case "ago":
out.Ago = string(in.String())
default:
in.AddError(&jlexer.LexerError{
Offset: in.GetPos(),
Reason: "unknown field",
Data: key,
})
}
in.WantComma()
}
in.Delim('}')
if isTopLevel {
in.Consumed()
}
}
func easyjson8e52a332EncodeGithubComTealFinanceGarcon(out *jwriter.Writer, in versionInfo) {
out.RawByte('{')
first := true
_ = first
{
const prefix string = ",\"version\":"
out.RawString(prefix[1:])
out.String(string(in.Version))
}
{
const prefix string = ",\"short\":"
out.RawString(prefix)
out.String(string(in.Short))
}
{
const prefix string = ",\"last_commit\":"
out.RawString(prefix)
out.String(string(in.LastCommit))
}
{
const prefix string = ",\"ago\":"
out.RawString(prefix)
out.String(string(in.Ago))
}
out.RawByte('}')
}
// MarshalJSON supports json.Marshaler interface
func (v versionInfo) MarshalJSON() ([]byte, error) {
w := jwriter.Writer{}
easyjson8e52a332EncodeGithubComTealFinanceGarcon(&w, v)
return w.Buffer.BuildBytes(), w.Error
}
// MarshalEasyJSON supports easyjson.Marshaler interface
func (v versionInfo) MarshalEasyJSON(w *jwriter.Writer) {
easyjson8e52a332EncodeGithubComTealFinanceGarcon(w, v)
}
// UnmarshalJSON supports json.Unmarshaler interface
func (v *versionInfo) UnmarshalJSON(data []byte) error {
r := jlexer.Lexer{Data: data}
easyjson8e52a332DecodeGithubComTealFinanceGarcon(&r, v)
return r.Error()
}
// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (v *versionInfo) UnmarshalEasyJSON(l *jlexer.Lexer) {
easyjson8e52a332DecodeGithubComTealFinanceGarcon(l, v)
}