github.com/antihax/goesi@v0.0.0-20240126031043-6c54d0cb7f95/esi/model_get_fw_systems_200_ok_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 easyjsonB042087bDecodeGithubComAntihaxGoesiEsi(in *jlexer.Lexer, out *GetFwSystems200OkList) {
    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(GetFwSystems200OkList, 0, 1)
    31  			} else {
    32  				*out = GetFwSystems200OkList{}
    33  			}
    34  		} else {
    35  			*out = (*out)[:0]
    36  		}
    37  		for !in.IsDelim(']') {
    38  			var v1 GetFwSystems200Ok
    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 easyjsonB042087bEncodeGithubComAntihaxGoesiEsi(out *jwriter.Writer, in GetFwSystems200OkList) {
    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 GetFwSystems200OkList) MarshalJSON() ([]byte, error) {
    66  	w := jwriter.Writer{}
    67  	easyjsonB042087bEncodeGithubComAntihaxGoesiEsi(&w, v)
    68  	return w.Buffer.BuildBytes(), w.Error
    69  }
    70  
    71  // MarshalEasyJSON supports easyjson.Marshaler interface
    72  func (v GetFwSystems200OkList) MarshalEasyJSON(w *jwriter.Writer) {
    73  	easyjsonB042087bEncodeGithubComAntihaxGoesiEsi(w, v)
    74  }
    75  
    76  // UnmarshalJSON supports json.Unmarshaler interface
    77  func (v *GetFwSystems200OkList) UnmarshalJSON(data []byte) error {
    78  	r := jlexer.Lexer{Data: data}
    79  	easyjsonB042087bDecodeGithubComAntihaxGoesiEsi(&r, v)
    80  	return r.Error()
    81  }
    82  
    83  // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
    84  func (v *GetFwSystems200OkList) UnmarshalEasyJSON(l *jlexer.Lexer) {
    85  	easyjsonB042087bDecodeGithubComAntihaxGoesiEsi(l, v)
    86  }
    87  func easyjsonB042087bDecodeGithubComAntihaxGoesiEsi1(in *jlexer.Lexer, out *GetFwSystems200Ok) {
    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 "contested":
   107  			out.Contested = string(in.String())
   108  		case "occupier_faction_id":
   109  			out.OccupierFactionId = int32(in.Int32())
   110  		case "owner_faction_id":
   111  			out.OwnerFactionId = int32(in.Int32())
   112  		case "solar_system_id":
   113  			out.SolarSystemId = int32(in.Int32())
   114  		case "victory_points":
   115  			out.VictoryPoints = int32(in.Int32())
   116  		case "victory_points_threshold":
   117  			out.VictoryPointsThreshold = 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 easyjsonB042087bEncodeGithubComAntihaxGoesiEsi1(out *jwriter.Writer, in GetFwSystems200Ok) {
   129  	out.RawByte('{')
   130  	first := true
   131  	_ = first
   132  	if in.Contested != "" {
   133  		const prefix string = ",\"contested\":"
   134  		first = false
   135  		out.RawString(prefix[1:])
   136  		out.String(string(in.Contested))
   137  	}
   138  	if in.OccupierFactionId != 0 {
   139  		const prefix string = ",\"occupier_faction_id\":"
   140  		if first {
   141  			first = false
   142  			out.RawString(prefix[1:])
   143  		} else {
   144  			out.RawString(prefix)
   145  		}
   146  		out.Int32(int32(in.OccupierFactionId))
   147  	}
   148  	if in.OwnerFactionId != 0 {
   149  		const prefix string = ",\"owner_faction_id\":"
   150  		if first {
   151  			first = false
   152  			out.RawString(prefix[1:])
   153  		} else {
   154  			out.RawString(prefix)
   155  		}
   156  		out.Int32(int32(in.OwnerFactionId))
   157  	}
   158  	if in.SolarSystemId != 0 {
   159  		const prefix string = ",\"solar_system_id\":"
   160  		if first {
   161  			first = false
   162  			out.RawString(prefix[1:])
   163  		} else {
   164  			out.RawString(prefix)
   165  		}
   166  		out.Int32(int32(in.SolarSystemId))
   167  	}
   168  	if in.VictoryPoints != 0 {
   169  		const prefix string = ",\"victory_points\":"
   170  		if first {
   171  			first = false
   172  			out.RawString(prefix[1:])
   173  		} else {
   174  			out.RawString(prefix)
   175  		}
   176  		out.Int32(int32(in.VictoryPoints))
   177  	}
   178  	if in.VictoryPointsThreshold != 0 {
   179  		const prefix string = ",\"victory_points_threshold\":"
   180  		if first {
   181  			first = false
   182  			out.RawString(prefix[1:])
   183  		} else {
   184  			out.RawString(prefix)
   185  		}
   186  		out.Int32(int32(in.VictoryPointsThreshold))
   187  	}
   188  	out.RawByte('}')
   189  }
   190  
   191  // MarshalJSON supports json.Marshaler interface
   192  func (v GetFwSystems200Ok) MarshalJSON() ([]byte, error) {
   193  	w := jwriter.Writer{}
   194  	easyjsonB042087bEncodeGithubComAntihaxGoesiEsi1(&w, v)
   195  	return w.Buffer.BuildBytes(), w.Error
   196  }
   197  
   198  // MarshalEasyJSON supports easyjson.Marshaler interface
   199  func (v GetFwSystems200Ok) MarshalEasyJSON(w *jwriter.Writer) {
   200  	easyjsonB042087bEncodeGithubComAntihaxGoesiEsi1(w, v)
   201  }
   202  
   203  // UnmarshalJSON supports json.Unmarshaler interface
   204  func (v *GetFwSystems200Ok) UnmarshalJSON(data []byte) error {
   205  	r := jlexer.Lexer{Data: data}
   206  	easyjsonB042087bDecodeGithubComAntihaxGoesiEsi1(&r, v)
   207  	return r.Error()
   208  }
   209  
   210  // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
   211  func (v *GetFwSystems200Ok) UnmarshalEasyJSON(l *jlexer.Lexer) {
   212  	easyjsonB042087bDecodeGithubComAntihaxGoesiEsi1(l, v)
   213  }