This repository has been archived by the owner on Sep 29, 2020. It is now read-only.
generated from OtusGolang/home_work
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstats_easyjson.go
127 lines (119 loc) · 2.91 KB
/
stats_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
// Code generated by easyjson for marshaling/unmarshaling. DO NOT EDIT.
package hw10_program_optimization
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 easyjsonE3ab7953DecodeGithubComFreakyGrannyOtusHw10ProgramOptimization(in *jlexer.Lexer, out *User) {
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 "ID":
out.ID = int(in.Int())
case "Name":
out.Name = string(in.String())
case "Username":
out.Username = string(in.String())
case "Email":
out.Email = string(in.String())
case "Phone":
out.Phone = string(in.String())
case "Password":
out.Password = string(in.String())
case "Address":
out.Address = string(in.String())
default:
in.SkipRecursive()
}
in.WantComma()
}
in.Delim('}')
if isTopLevel {
in.Consumed()
}
}
func easyjsonE3ab7953EncodeGithubComFreakyGrannyOtusHw10ProgramOptimization(out *jwriter.Writer, in User) {
out.RawByte('{')
first := true
_ = first
{
const prefix string = ",\"ID\":"
out.RawString(prefix[1:])
out.Int(int(in.ID))
}
{
const prefix string = ",\"Name\":"
out.RawString(prefix)
out.String(string(in.Name))
}
{
const prefix string = ",\"Username\":"
out.RawString(prefix)
out.String(string(in.Username))
}
{
const prefix string = ",\"Email\":"
out.RawString(prefix)
out.String(string(in.Email))
}
{
const prefix string = ",\"Phone\":"
out.RawString(prefix)
out.String(string(in.Phone))
}
{
const prefix string = ",\"Password\":"
out.RawString(prefix)
out.String(string(in.Password))
}
{
const prefix string = ",\"Address\":"
out.RawString(prefix)
out.String(string(in.Address))
}
out.RawByte('}')
}
// MarshalJSON supports json.Marshaler interface
func (v User) MarshalJSON() ([]byte, error) {
w := jwriter.Writer{}
easyjsonE3ab7953EncodeGithubComFreakyGrannyOtusHw10ProgramOptimization(&w, v)
return w.Buffer.BuildBytes(), w.Error
}
// MarshalEasyJSON supports easyjson.Marshaler interface
func (v User) MarshalEasyJSON(w *jwriter.Writer) {
easyjsonE3ab7953EncodeGithubComFreakyGrannyOtusHw10ProgramOptimization(w, v)
}
// UnmarshalJSON supports json.Unmarshaler interface
func (v *User) UnmarshalJSON(data []byte) error {
r := jlexer.Lexer{Data: data}
easyjsonE3ab7953DecodeGithubComFreakyGrannyOtusHw10ProgramOptimization(&r, v)
return r.Error()
}
// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (v *User) UnmarshalEasyJSON(l *jlexer.Lexer) {
easyjsonE3ab7953DecodeGithubComFreakyGrannyOtusHw10ProgramOptimization(l, v)
}