|
@@ -0,0 +1,236 @@
|
|
|
+// Code generated by easyjson for marshaling/unmarshaling. DO NOT EDIT.
|
|
|
+
|
|
|
+package utils
|
|
|
+
|
|
|
+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 easyjsonD579c6ceDecodeGitAionnectComAionnectGoCommonUtils(in *jlexer.Lexer, out *ResHead) {
|
|
|
+ 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 "errcode":
|
|
|
+ out.ErrCode = int(in.Int())
|
|
|
+ case "errmsg":
|
|
|
+ out.ErrMsg = string(in.String())
|
|
|
+ default:
|
|
|
+ in.SkipRecursive()
|
|
|
+ }
|
|
|
+ in.WantComma()
|
|
|
+ }
|
|
|
+ in.Delim('}')
|
|
|
+ if isTopLevel {
|
|
|
+ in.Consumed()
|
|
|
+ }
|
|
|
+}
|
|
|
+func easyjsonD579c6ceEncodeGitAionnectComAionnectGoCommonUtils(out *jwriter.Writer, in ResHead) {
|
|
|
+ out.RawByte('{')
|
|
|
+ first := true
|
|
|
+ _ = first
|
|
|
+ {
|
|
|
+ const prefix string = ",\"errcode\":"
|
|
|
+ out.RawString(prefix[1:])
|
|
|
+ out.Int(int(in.ErrCode))
|
|
|
+ }
|
|
|
+ if in.ErrMsg != "" {
|
|
|
+ const prefix string = ",\"errmsg\":"
|
|
|
+ out.RawString(prefix)
|
|
|
+ out.String(string(in.ErrMsg))
|
|
|
+ }
|
|
|
+ out.RawByte('}')
|
|
|
+}
|
|
|
+
|
|
|
+// MarshalJSON supports json.Marshaler interface
|
|
|
+func (v ResHead) MarshalJSON() ([]byte, error) {
|
|
|
+ w := jwriter.Writer{}
|
|
|
+ easyjsonD579c6ceEncodeGitAionnectComAionnectGoCommonUtils(&w, v)
|
|
|
+ return w.Buffer.BuildBytes(), w.Error
|
|
|
+}
|
|
|
+
|
|
|
+// MarshalEasyJSON supports easyjson.Marshaler interface
|
|
|
+func (v ResHead) MarshalEasyJSON(w *jwriter.Writer) {
|
|
|
+ easyjsonD579c6ceEncodeGitAionnectComAionnectGoCommonUtils(w, v)
|
|
|
+}
|
|
|
+
|
|
|
+// UnmarshalJSON supports json.Unmarshaler interface
|
|
|
+func (v *ResHead) UnmarshalJSON(data []byte) error {
|
|
|
+ r := jlexer.Lexer{Data: data}
|
|
|
+ easyjsonD579c6ceDecodeGitAionnectComAionnectGoCommonUtils(&r, v)
|
|
|
+ return r.Error()
|
|
|
+}
|
|
|
+
|
|
|
+// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
|
|
|
+func (v *ResHead) UnmarshalEasyJSON(l *jlexer.Lexer) {
|
|
|
+ easyjsonD579c6ceDecodeGitAionnectComAionnectGoCommonUtils(l, v)
|
|
|
+}
|
|
|
+func easyjsonD579c6ceDecodeGitAionnectComAionnectGoCommonUtils1(in *jlexer.Lexer, out *Res) {
|
|
|
+ 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 "head":
|
|
|
+ (out.Head).UnmarshalEasyJSON(in)
|
|
|
+ case "data":
|
|
|
+ if m, ok := out.Data.(easyjson.Unmarshaler); ok {
|
|
|
+ m.UnmarshalEasyJSON(in)
|
|
|
+ } else if m, ok := out.Data.(json.Unmarshaler); ok {
|
|
|
+ _ = m.UnmarshalJSON(in.Raw())
|
|
|
+ } else {
|
|
|
+ out.Data = in.Interface()
|
|
|
+ }
|
|
|
+ default:
|
|
|
+ in.SkipRecursive()
|
|
|
+ }
|
|
|
+ in.WantComma()
|
|
|
+ }
|
|
|
+ in.Delim('}')
|
|
|
+ if isTopLevel {
|
|
|
+ in.Consumed()
|
|
|
+ }
|
|
|
+}
|
|
|
+func easyjsonD579c6ceEncodeGitAionnectComAionnectGoCommonUtils1(out *jwriter.Writer, in Res) {
|
|
|
+ out.RawByte('{')
|
|
|
+ first := true
|
|
|
+ _ = first
|
|
|
+ {
|
|
|
+ const prefix string = ",\"head\":"
|
|
|
+ out.RawString(prefix[1:])
|
|
|
+ (in.Head).MarshalEasyJSON(out)
|
|
|
+ }
|
|
|
+ if in.Data != nil {
|
|
|
+ const prefix string = ",\"data\":"
|
|
|
+ out.RawString(prefix)
|
|
|
+ if m, ok := in.Data.(easyjson.Marshaler); ok {
|
|
|
+ m.MarshalEasyJSON(out)
|
|
|
+ } else if m, ok := in.Data.(json.Marshaler); ok {
|
|
|
+ out.Raw(m.MarshalJSON())
|
|
|
+ } else {
|
|
|
+ out.Raw(json.Marshal(in.Data))
|
|
|
+ }
|
|
|
+ }
|
|
|
+ out.RawByte('}')
|
|
|
+}
|
|
|
+
|
|
|
+// MarshalJSON supports json.Marshaler interface
|
|
|
+func (v Res) MarshalJSON() ([]byte, error) {
|
|
|
+ w := jwriter.Writer{}
|
|
|
+ easyjsonD579c6ceEncodeGitAionnectComAionnectGoCommonUtils1(&w, v)
|
|
|
+ return w.Buffer.BuildBytes(), w.Error
|
|
|
+}
|
|
|
+
|
|
|
+// MarshalEasyJSON supports easyjson.Marshaler interface
|
|
|
+func (v Res) MarshalEasyJSON(w *jwriter.Writer) {
|
|
|
+ easyjsonD579c6ceEncodeGitAionnectComAionnectGoCommonUtils1(w, v)
|
|
|
+}
|
|
|
+
|
|
|
+// UnmarshalJSON supports json.Unmarshaler interface
|
|
|
+func (v *Res) UnmarshalJSON(data []byte) error {
|
|
|
+ r := jlexer.Lexer{Data: data}
|
|
|
+ easyjsonD579c6ceDecodeGitAionnectComAionnectGoCommonUtils1(&r, v)
|
|
|
+ return r.Error()
|
|
|
+}
|
|
|
+
|
|
|
+// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
|
|
|
+func (v *Res) UnmarshalEasyJSON(l *jlexer.Lexer) {
|
|
|
+ easyjsonD579c6ceDecodeGitAionnectComAionnectGoCommonUtils1(l, v)
|
|
|
+}
|
|
|
+func easyjsonD579c6ceDecodeGitAionnectComAionnectGoCommonUtils2(in *jlexer.Lexer, out *RequestPromise) {
|
|
|
+ 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 {
|
|
|
+ default:
|
|
|
+ in.SkipRecursive()
|
|
|
+ }
|
|
|
+ in.WantComma()
|
|
|
+ }
|
|
|
+ in.Delim('}')
|
|
|
+ if isTopLevel {
|
|
|
+ in.Consumed()
|
|
|
+ }
|
|
|
+}
|
|
|
+func easyjsonD579c6ceEncodeGitAionnectComAionnectGoCommonUtils2(out *jwriter.Writer, in RequestPromise) {
|
|
|
+ out.RawByte('{')
|
|
|
+ first := true
|
|
|
+ _ = first
|
|
|
+ out.RawByte('}')
|
|
|
+}
|
|
|
+
|
|
|
+// MarshalJSON supports json.Marshaler interface
|
|
|
+func (v RequestPromise) MarshalJSON() ([]byte, error) {
|
|
|
+ w := jwriter.Writer{}
|
|
|
+ easyjsonD579c6ceEncodeGitAionnectComAionnectGoCommonUtils2(&w, v)
|
|
|
+ return w.Buffer.BuildBytes(), w.Error
|
|
|
+}
|
|
|
+
|
|
|
+// MarshalEasyJSON supports easyjson.Marshaler interface
|
|
|
+func (v RequestPromise) MarshalEasyJSON(w *jwriter.Writer) {
|
|
|
+ easyjsonD579c6ceEncodeGitAionnectComAionnectGoCommonUtils2(w, v)
|
|
|
+}
|
|
|
+
|
|
|
+// UnmarshalJSON supports json.Unmarshaler interface
|
|
|
+func (v *RequestPromise) UnmarshalJSON(data []byte) error {
|
|
|
+ r := jlexer.Lexer{Data: data}
|
|
|
+ easyjsonD579c6ceDecodeGitAionnectComAionnectGoCommonUtils2(&r, v)
|
|
|
+ return r.Error()
|
|
|
+}
|
|
|
+
|
|
|
+// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
|
|
|
+func (v *RequestPromise) UnmarshalEasyJSON(l *jlexer.Lexer) {
|
|
|
+ easyjsonD579c6ceDecodeGitAionnectComAionnectGoCommonUtils2(l, v)
|
|
|
+}
|