github.com/antihax/goesi@v0.0.0-20240126031043-6c54d0cb7f95/esi/model_get_dogma_effects_effect_id_modifier_easyjson.go (about)

     1  // Code generated by easyjson for marshaling/unmarshaling. DO NOT EDIT.
     2  
     3  package esi
     4  
     5  import (
     6  	json "encoding/json"
     7  
     8  	easyjson "github.com/mailru/easyjson"
     9  	jlexer "github.com/mailru/easyjson/jlexer"
    10  	jwriter "github.com/mailru/easyjson/jwriter"
    11  )
    12  
    13  // suppress unused package warning
    14  var (
    15  	_ *json.RawMessage
    16  	_ *jlexer.Lexer
    17  	_ *jwriter.Writer
    18  	_ easyjson.Marshaler
    19  )
    20  
    21  func easyjsonAd79ccc0DecodeGithubComAntihaxGoesiEsi(in *jlexer.Lexer, out *GetDogmaEffectsEffectIdModifierList) {
    22  	isTopLevel := in.IsStart()
    23  	if in.IsNull() {
    24  		in.Skip()
    25  		*out = nil
    26  	} else {
    27  		in.Delim('[')
    28  		if *out == nil {
    29  			if !in.IsDelim(']') {
    30  				*out = make(GetDogmaEffectsEffectIdModifierList, 0, 1)
    31  			} else {
    32  				*out = GetDogmaEffectsEffectIdModifierList{}
    33  			}
    34  		} else {
    35  			*out = (*out)[:0]
    36  		}
    37  		for !in.IsDelim(']') {
    38  			var v1 GetDogmaEffectsEffectIdModifier
    39  			(v1).UnmarshalEasyJSON(in)
    40  			*out = append(*out, v1)
    41  			in.WantComma()
    42  		}
    43  		in.Delim(']')
    44  	}
    45  	if isTopLevel {
    46  		in.Consumed()
    47  	}
    48  }
    49  func easyjsonAd79ccc0EncodeGithubComAntihaxGoesiEsi(out *jwriter.Writer, in GetDogmaEffectsEffectIdModifierList) {
    50  	if in == nil && (out.Flags&jwriter.NilSliceAsEmpty) == 0 {
    51  		out.RawString("null")
    52  	} else {
    53  		out.RawByte('[')
    54  		for v2, v3 := range in {
    55  			if v2 > 0 {
    56  				out.RawByte(',')
    57  			}
    58  			(v3).MarshalEasyJSON(out)
    59  		}
    60  		out.RawByte(']')
    61  	}
    62  }
    63  
    64  // MarshalJSON supports json.Marshaler interface
    65  func (v GetDogmaEffectsEffectIdModifierList) MarshalJSON() ([]byte, error) {
    66  	w := jwriter.Writer{}
    67  	easyjsonAd79ccc0EncodeGithubComAntihaxGoesiEsi(&w, v)
    68  	return w.Buffer.BuildBytes(), w.Error
    69  }
    70  
    71  // MarshalEasyJSON supports easyjson.Marshaler interface
    72  func (v GetDogmaEffectsEffectIdModifierList) MarshalEasyJSON(w *jwriter.Writer) {
    73  	easyjsonAd79ccc0EncodeGithubComAntihaxGoesiEsi(w, v)
    74  }
    75  
    76  // UnmarshalJSON supports json.Unmarshaler interface
    77  func (v *GetDogmaEffectsEffectIdModifierList) UnmarshalJSON(data []byte) error {
    78  	r := jlexer.Lexer{Data: data}
    79  	easyjsonAd79ccc0DecodeGithubComAntihaxGoesiEsi(&r, v)
    80  	return r.Error()
    81  }
    82  
    83  // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
    84  func (v *GetDogmaEffectsEffectIdModifierList) UnmarshalEasyJSON(l *jlexer.Lexer) {
    85  	easyjsonAd79ccc0DecodeGithubComAntihaxGoesiEsi(l, v)
    86  }
    87  func easyjsonAd79ccc0DecodeGithubComAntihaxGoesiEsi1(in *jlexer.Lexer, out *GetDogmaEffectsEffectIdModifier) {
    88  	isTopLevel := in.IsStart()
    89  	if in.IsNull() {
    90  		if isTopLevel {
    91  			in.Consumed()
    92  		}
    93  		in.Skip()
    94  		return
    95  	}
    96  	in.Delim('{')
    97  	for !in.IsDelim('}') {
    98  		key := in.UnsafeFieldName(false)
    99  		in.WantColon()
   100  		if in.IsNull() {
   101  			in.Skip()
   102  			in.WantComma()
   103  			continue
   104  		}
   105  		switch key {
   106  		case "domain":
   107  			out.Domain = string(in.String())
   108  		case "effect_id":
   109  			out.EffectId = int32(in.Int32())
   110  		case "func":
   111  			out.Func_ = string(in.String())
   112  		case "modified_attribute_id":
   113  			out.ModifiedAttributeId = int32(in.Int32())
   114  		case "modifying_attribute_id":
   115  			out.ModifyingAttributeId = int32(in.Int32())
   116  		case "operator":
   117  			out.Operator = int32(in.Int32())
   118  		default:
   119  			in.SkipRecursive()
   120  		}
   121  		in.WantComma()
   122  	}
   123  	in.Delim('}')
   124  	if isTopLevel {
   125  		in.Consumed()
   126  	}
   127  }
   128  func easyjsonAd79ccc0EncodeGithubComAntihaxGoesiEsi1(out *jwriter.Writer, in GetDogmaEffectsEffectIdModifier) {
   129  	out.RawByte('{')
   130  	first := true
   131  	_ = first
   132  	if in.Domain != "" {
   133  		const prefix string = ",\"domain\":"
   134  		first = false
   135  		out.RawString(prefix[1:])
   136  		out.String(string(in.Domain))
   137  	}
   138  	if in.EffectId != 0 {
   139  		const prefix string = ",\"effect_id\":"
   140  		if first {
   141  			first = false
   142  			out.RawString(prefix[1:])
   143  		} else {
   144  			out.RawString(prefix)
   145  		}
   146  		out.Int32(int32(in.EffectId))
   147  	}
   148  	if in.Func_ != "" {
   149  		const prefix string = ",\"func\":"
   150  		if first {
   151  			first = false
   152  			out.RawString(prefix[1:])
   153  		} else {
   154  			out.RawString(prefix)
   155  		}
   156  		out.String(string(in.Func_))
   157  	}
   158  	if in.ModifiedAttributeId != 0 {
   159  		const prefix string = ",\"modified_attribute_id\":"
   160  		if first {
   161  			first = false
   162  			out.RawString(prefix[1:])
   163  		} else {
   164  			out.RawString(prefix)
   165  		}
   166  		out.Int32(int32(in.ModifiedAttributeId))
   167  	}
   168  	if in.ModifyingAttributeId != 0 {
   169  		const prefix string = ",\"modifying_attribute_id\":"
   170  		if first {
   171  			first = false
   172  			out.RawString(prefix[1:])
   173  		} else {
   174  			out.RawString(prefix)
   175  		}
   176  		out.Int32(int32(in.ModifyingAttributeId))
   177  	}
   178  	if in.Operator != 0 {
   179  		const prefix string = ",\"operator\":"
   180  		if first {
   181  			first = false
   182  			out.RawString(prefix[1:])
   183  		} else {
   184  			out.RawString(prefix)
   185  		}
   186  		out.Int32(int32(in.Operator))
   187  	}
   188  	out.RawByte('}')
   189  }
   190  
   191  // MarshalJSON supports json.Marshaler interface
   192  func (v GetDogmaEffectsEffectIdModifier) MarshalJSON() ([]byte, error) {
   193  	w := jwriter.Writer{}
   194  	easyjsonAd79ccc0EncodeGithubComAntihaxGoesiEsi1(&w, v)
   195  	return w.Buffer.BuildBytes(), w.Error
   196  }
   197  
   198  // MarshalEasyJSON supports easyjson.Marshaler interface
   199  func (v GetDogmaEffectsEffectIdModifier) MarshalEasyJSON(w *jwriter.Writer) {
   200  	easyjsonAd79ccc0EncodeGithubComAntihaxGoesiEsi1(w, v)
   201  }
   202  
   203  // UnmarshalJSON supports json.Unmarshaler interface
   204  func (v *GetDogmaEffectsEffectIdModifier) UnmarshalJSON(data []byte) error {
   205  	r := jlexer.Lexer{Data: data}
   206  	easyjsonAd79ccc0DecodeGithubComAntihaxGoesiEsi1(&r, v)
   207  	return r.Error()
   208  }
   209  
   210  // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
   211  func (v *GetDogmaEffectsEffectIdModifier) UnmarshalEasyJSON(l *jlexer.Lexer) {
   212  	easyjsonAd79ccc0DecodeGithubComAntihaxGoesiEsi1(l, v)
   213  }