forked from bsm/openrtb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnative_easyjson.go
177 lines (169 loc) · 3.86 KB
/
native_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
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
// Code generated by easyjson for marshaling/unmarshaling. DO NOT EDIT.
package openrtb
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 easyjson3eeb1cddDecodeGithubComStokitoOpenrtbEasyjsonV3(in *jlexer.Lexer, out *Native) {
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 "request":
if data := in.Raw(); in.Ok() {
in.AddError((out.Request).UnmarshalJSON(data))
}
case "ver":
out.Version = string(in.String())
case "api":
if in.IsNull() {
in.Skip()
out.APIs = nil
} else {
in.Delim('[')
if out.APIs == nil {
if !in.IsDelim(']') {
out.APIs = make([]APIFramework, 0, 8)
} else {
out.APIs = []APIFramework{}
}
} else {
out.APIs = (out.APIs)[:0]
}
for !in.IsDelim(']') {
var v1 APIFramework
v1 = APIFramework(in.Int())
out.APIs = append(out.APIs, v1)
in.WantComma()
}
in.Delim(']')
}
case "battr":
if in.IsNull() {
in.Skip()
out.BlockedAttrs = nil
} else {
in.Delim('[')
if out.BlockedAttrs == nil {
if !in.IsDelim(']') {
out.BlockedAttrs = make([]CreativeAttribute, 0, 8)
} else {
out.BlockedAttrs = []CreativeAttribute{}
}
} else {
out.BlockedAttrs = (out.BlockedAttrs)[:0]
}
for !in.IsDelim(']') {
var v2 CreativeAttribute
v2 = CreativeAttribute(in.Int())
out.BlockedAttrs = append(out.BlockedAttrs, v2)
in.WantComma()
}
in.Delim(']')
}
case "ext":
if data := in.Raw(); in.Ok() {
in.AddError((out.Ext).UnmarshalJSON(data))
}
default:
in.SkipRecursive()
}
in.WantComma()
}
in.Delim('}')
if isTopLevel {
in.Consumed()
}
}
func easyjson3eeb1cddEncodeGithubComStokitoOpenrtbEasyjsonV3(out *jwriter.Writer, in Native) {
out.RawByte('{')
first := true
_ = first
{
const prefix string = ",\"request\":"
out.RawString(prefix[1:])
out.Raw((in.Request).MarshalJSON())
}
if in.Version != "" {
const prefix string = ",\"ver\":"
out.RawString(prefix)
out.String(string(in.Version))
}
if len(in.APIs) != 0 {
const prefix string = ",\"api\":"
out.RawString(prefix)
{
out.RawByte('[')
for v3, v4 := range in.APIs {
if v3 > 0 {
out.RawByte(',')
}
out.Int(int(v4))
}
out.RawByte(']')
}
}
if len(in.BlockedAttrs) != 0 {
const prefix string = ",\"battr\":"
out.RawString(prefix)
{
out.RawByte('[')
for v5, v6 := range in.BlockedAttrs {
if v5 > 0 {
out.RawByte(',')
}
out.Int(int(v6))
}
out.RawByte(']')
}
}
if len(in.Ext) != 0 {
const prefix string = ",\"ext\":"
out.RawString(prefix)
out.Raw((in.Ext).MarshalJSON())
}
out.RawByte('}')
}
// MarshalJSON supports json.Marshaler interface
func (v Native) MarshalJSON() ([]byte, error) {
w := jwriter.Writer{}
easyjson3eeb1cddEncodeGithubComStokitoOpenrtbEasyjsonV3(&w, v)
return w.Buffer.BuildBytes(), w.Error
}
// MarshalEasyJSON supports easyjson.Marshaler interface
func (v Native) MarshalEasyJSON(w *jwriter.Writer) {
easyjson3eeb1cddEncodeGithubComStokitoOpenrtbEasyjsonV3(w, v)
}
// UnmarshalJSON supports json.Unmarshaler interface
func (v *Native) UnmarshalJSON(data []byte) error {
r := jlexer.Lexer{Data: data}
easyjson3eeb1cddDecodeGithubComStokitoOpenrtbEasyjsonV3(&r, v)
return r.Error()
}
// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (v *Native) UnmarshalEasyJSON(l *jlexer.Lexer) {
easyjson3eeb1cddDecodeGithubComStokitoOpenrtbEasyjsonV3(l, v)
}