123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 |
- // Code generated by easyjson for marshaling/unmarshaling. DO NOT EDIT.
- package elastic
- 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 easyjson8092efb6DecodeGopkgInOlivereElasticV5(in *jlexer.Lexer, out *bulkDeleteRequestCommandOp) {
- 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 "_id":
- out.Id = string(in.String())
- case "_index":
- out.Index = string(in.String())
- case "_parent":
- out.Parent = string(in.String())
- case "_routing":
- out.Routing = string(in.String())
- case "_type":
- out.Type = string(in.String())
- case "_version":
- out.Version = int64(in.Int64())
- case "_version_type":
- out.VersionType = string(in.String())
- default:
- in.SkipRecursive()
- }
- in.WantComma()
- }
- in.Delim('}')
- if isTopLevel {
- in.Consumed()
- }
- }
- func easyjson8092efb6EncodeGopkgInOlivereElasticV5(out *jwriter.Writer, in bulkDeleteRequestCommandOp) {
- out.RawByte('{')
- first := true
- _ = first
- if in.Id != "" {
- const prefix string = ",\"_id\":"
- if first {
- first = false
- out.RawString(prefix[1:])
- } else {
- out.RawString(prefix)
- }
- out.String(string(in.Id))
- }
- if in.Index != "" {
- const prefix string = ",\"_index\":"
- if first {
- first = false
- out.RawString(prefix[1:])
- } else {
- out.RawString(prefix)
- }
- out.String(string(in.Index))
- }
- if in.Parent != "" {
- const prefix string = ",\"_parent\":"
- if first {
- first = false
- out.RawString(prefix[1:])
- } else {
- out.RawString(prefix)
- }
- out.String(string(in.Parent))
- }
- if in.Routing != "" {
- const prefix string = ",\"_routing\":"
- if first {
- first = false
- out.RawString(prefix[1:])
- } else {
- out.RawString(prefix)
- }
- out.String(string(in.Routing))
- }
- if in.Type != "" {
- const prefix string = ",\"_type\":"
- if first {
- first = false
- out.RawString(prefix[1:])
- } else {
- out.RawString(prefix)
- }
- out.String(string(in.Type))
- }
- if in.Version != 0 {
- const prefix string = ",\"_version\":"
- if first {
- first = false
- out.RawString(prefix[1:])
- } else {
- out.RawString(prefix)
- }
- out.Int64(int64(in.Version))
- }
- if in.VersionType != "" {
- const prefix string = ",\"_version_type\":"
- if first {
- first = false
- out.RawString(prefix[1:])
- } else {
- out.RawString(prefix)
- }
- out.String(string(in.VersionType))
- }
- out.RawByte('}')
- }
- // MarshalJSON supports json.Marshaler interface
- func (v bulkDeleteRequestCommandOp) MarshalJSON() ([]byte, error) {
- w := jwriter.Writer{}
- easyjson8092efb6EncodeGopkgInOlivereElasticV5(&w, v)
- return w.Buffer.BuildBytes(), w.Error
- }
- // MarshalEasyJSON supports easyjson.Marshaler interface
- func (v bulkDeleteRequestCommandOp) MarshalEasyJSON(w *jwriter.Writer) {
- easyjson8092efb6EncodeGopkgInOlivereElasticV5(w, v)
- }
- // UnmarshalJSON supports json.Unmarshaler interface
- func (v *bulkDeleteRequestCommandOp) UnmarshalJSON(data []byte) error {
- r := jlexer.Lexer{Data: data}
- easyjson8092efb6DecodeGopkgInOlivereElasticV5(&r, v)
- return r.Error()
- }
- // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
- func (v *bulkDeleteRequestCommandOp) UnmarshalEasyJSON(l *jlexer.Lexer) {
- easyjson8092efb6DecodeGopkgInOlivereElasticV5(l, v)
- }
- func easyjson8092efb6DecodeGopkgInOlivereElasticV51(in *jlexer.Lexer, out *bulkDeleteRequestCommand) {
- isTopLevel := in.IsStart()
- if in.IsNull() {
- in.Skip()
- } else {
- in.Delim('{')
- if !in.IsDelim('}') {
- *out = make(bulkDeleteRequestCommand)
- } else {
- *out = nil
- }
- for !in.IsDelim('}') {
- key := string(in.String())
- in.WantColon()
- var v1 bulkDeleteRequestCommandOp
- (v1).UnmarshalEasyJSON(in)
- (*out)[key] = v1
- in.WantComma()
- }
- in.Delim('}')
- }
- if isTopLevel {
- in.Consumed()
- }
- }
- func easyjson8092efb6EncodeGopkgInOlivereElasticV51(out *jwriter.Writer, in bulkDeleteRequestCommand) {
- if in == nil && (out.Flags&jwriter.NilMapAsEmpty) == 0 {
- out.RawString(`null`)
- } else {
- out.RawByte('{')
- v2First := true
- for v2Name, v2Value := range in {
- if v2First {
- v2First = false
- } else {
- out.RawByte(',')
- }
- out.String(string(v2Name))
- out.RawByte(':')
- (v2Value).MarshalEasyJSON(out)
- }
- out.RawByte('}')
- }
- }
- // MarshalJSON supports json.Marshaler interface
- func (v bulkDeleteRequestCommand) MarshalJSON() ([]byte, error) {
- w := jwriter.Writer{}
- easyjson8092efb6EncodeGopkgInOlivereElasticV51(&w, v)
- return w.Buffer.BuildBytes(), w.Error
- }
- // MarshalEasyJSON supports easyjson.Marshaler interface
- func (v bulkDeleteRequestCommand) MarshalEasyJSON(w *jwriter.Writer) {
- easyjson8092efb6EncodeGopkgInOlivereElasticV51(w, v)
- }
- // UnmarshalJSON supports json.Unmarshaler interface
- func (v *bulkDeleteRequestCommand) UnmarshalJSON(data []byte) error {
- r := jlexer.Lexer{Data: data}
- easyjson8092efb6DecodeGopkgInOlivereElasticV51(&r, v)
- return r.Error()
- }
- // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
- func (v *bulkDeleteRequestCommand) UnmarshalEasyJSON(l *jlexer.Lexer) {
- easyjson8092efb6DecodeGopkgInOlivereElasticV51(l, v)
- }
|