-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequest_easyjson.go
170 lines (162 loc) · 3.54 KB
/
request_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
// Code generated by easyjson for marshaling/unmarshaling. DO NOT EDIT.
package namec
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 easyjson3c9d2b01DecodeGithubComKzmakeFreeza(in *jlexer.Lexer, out *Request) {
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 "method":
out.Method = string(in.String())
case "url":
out.URL = string(in.String())
case "body":
out.Body = string(in.String())
case "header":
if in.IsNull() {
in.Skip()
} else {
in.Delim('{')
if !in.IsDelim('}') {
out.Header = make(map[string][]string)
} else {
out.Header = nil
}
for !in.IsDelim('}') {
key := string(in.String())
in.WantColon()
var v1 []string
if in.IsNull() {
in.Skip()
v1 = nil
} else {
in.Delim('[')
if v1 == nil {
if !in.IsDelim(']') {
v1 = make([]string, 0, 4)
} else {
v1 = []string{}
}
} else {
v1 = (v1)[:0]
}
for !in.IsDelim(']') {
var v2 string
v2 = string(in.String())
v1 = append(v1, v2)
in.WantComma()
}
in.Delim(']')
}
(out.Header)[key] = v1
in.WantComma()
}
in.Delim('}')
}
default:
in.SkipRecursive()
}
in.WantComma()
}
in.Delim('}')
if isTopLevel {
in.Consumed()
}
}
func easyjson3c9d2b01EncodeGithubComKzmakeFreeza(out *jwriter.Writer, in Request) {
out.RawByte('{')
first := true
_ = first
{
const prefix string = ",\"method\":"
out.RawString(prefix[1:])
out.String(string(in.Method))
}
{
const prefix string = ",\"url\":"
out.RawString(prefix)
out.String(string(in.URL))
}
if in.Body != "" {
const prefix string = ",\"body\":"
out.RawString(prefix)
out.String(string(in.Body))
}
if len(in.Header) != 0 {
const prefix string = ",\"header\":"
out.RawString(prefix)
{
out.RawByte('{')
v3First := true
for v3Name, v3Value := range in.Header {
if v3First {
v3First = false
} else {
out.RawByte(',')
}
out.String(string(v3Name))
out.RawByte(':')
if v3Value == nil && (out.Flags&jwriter.NilSliceAsEmpty) == 0 {
out.RawString("null")
} else {
out.RawByte('[')
for v4, v5 := range v3Value {
if v4 > 0 {
out.RawByte(',')
}
out.String(string(v5))
}
out.RawByte(']')
}
}
out.RawByte('}')
}
}
out.RawByte('}')
}
// MarshalJSON supports json.Marshaler interface
func (v Request) MarshalJSON() ([]byte, error) {
w := jwriter.Writer{}
easyjson3c9d2b01EncodeGithubComKzmakeFreeza(&w, v)
return w.Buffer.BuildBytes(), w.Error
}
// MarshalEasyJSON supports easyjson.Marshaler interface
func (v Request) MarshalEasyJSON(w *jwriter.Writer) {
easyjson3c9d2b01EncodeGithubComKzmakeFreeza(w, v)
}
// UnmarshalJSON supports json.Unmarshaler interface
func (v *Request) UnmarshalJSON(data []byte) error {
r := jlexer.Lexer{Data: data}
easyjson3c9d2b01DecodeGithubComKzmakeFreeza(&r, v)
return r.Error()
}
// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (v *Request) UnmarshalEasyJSON(l *jlexer.Lexer) {
easyjson3c9d2b01DecodeGithubComKzmakeFreeza(l, v)
}