-
Notifications
You must be signed in to change notification settings - Fork 0
/
size_easyjson.go
98 lines (90 loc) · 2.08 KB
/
size_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
// Code generated by easyjson for marshaling/unmarshaling. DO NOT EDIT.
package yahb
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 easyjsonFb556197DecodeGithubComKrecuYahb(in *jlexer.Lexer, out *Size) {
isTopLevel := in.IsStart()
if in.IsNull() {
if isTopLevel {
in.Consumed()
}
in.Skip()
return
}
in.Delim('{')
for !in.IsDelim('}') {
key := in.UnsafeFieldName(false)
in.WantColon()
if in.IsNull() {
in.Skip()
in.WantComma()
continue
}
switch key {
case "width":
out.Width = int(in.Int())
case "height":
out.Height = int(in.Int())
default:
in.SkipRecursive()
}
in.WantComma()
}
in.Delim('}')
if isTopLevel {
in.Consumed()
}
}
func easyjsonFb556197EncodeGithubComKrecuYahb(out *jwriter.Writer, in Size) {
out.RawByte('{')
first := true
_ = first
if in.Width != 0 {
const prefix string = ",\"width\":"
first = false
out.RawString(prefix[1:])
out.Int(int(in.Width))
}
if in.Height != 0 {
const prefix string = ",\"height\":"
if first {
first = false
out.RawString(prefix[1:])
} else {
out.RawString(prefix)
}
out.Int(int(in.Height))
}
out.RawByte('}')
}
// MarshalJSON supports json.Marshaler interface
func (v Size) MarshalJSON() ([]byte, error) {
w := jwriter.Writer{}
easyjsonFb556197EncodeGithubComKrecuYahb(&w, v)
return w.Buffer.BuildBytes(), w.Error
}
// MarshalEasyJSON supports easyjson.Marshaler interface
func (v Size) MarshalEasyJSON(w *jwriter.Writer) {
easyjsonFb556197EncodeGithubComKrecuYahb(w, v)
}
// UnmarshalJSON supports json.Unmarshaler interface
func (v *Size) UnmarshalJSON(data []byte) error {
r := jlexer.Lexer{Data: data}
easyjsonFb556197DecodeGithubComKrecuYahb(&r, v)
return r.Error()
}
// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (v *Size) UnmarshalEasyJSON(l *jlexer.Lexer) {
easyjsonFb556197DecodeGithubComKrecuYahb(l, v)
}