/** * Autogenerated by Thrift Compiler (0.9.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package org.elasticsearch.thrift; import org.apache.thrift.scheme.IScheme; import org.apache.thrift.scheme.SchemeFactory; import org.apache.thrift.scheme.StandardScheme; import org.apache.thrift.scheme.TupleScheme; import org.apache.thrift.protocol.TTupleProtocol; import org.apache.thrift.protocol.TProtocolException; import org.apache.thrift.EncodingUtils; import org.apache.thrift.TException; import java.util.List; import java.util.ArrayList; import java.util.Map; import java.util.HashMap; import java.util.EnumMap; import java.util.Set; import java.util.HashSet; import java.util.EnumSet; import java.util.Collections; import java.util.BitSet; import java.nio.ByteBuffer; import java.util.Arrays; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class RestRequest implements org.apache.thrift.TBase<RestRequest, RestRequest._Fields>, java.io.Serializable, Cloneable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("RestRequest"); private static final org.apache.thrift.protocol.TField METHOD_FIELD_DESC = new org.apache.thrift.protocol.TField("method", org.apache.thrift.protocol.TType.I32, (short)1); private static final org.apache.thrift.protocol.TField URI_FIELD_DESC = new org.apache.thrift.protocol.TField("uri", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField PARAMETERS_FIELD_DESC = new org.apache.thrift.protocol.TField("parameters", org.apache.thrift.protocol.TType.MAP, (short)3); private static final org.apache.thrift.protocol.TField HEADERS_FIELD_DESC = new org.apache.thrift.protocol.TField("headers", org.apache.thrift.protocol.TType.MAP, (short)4); private static final org.apache.thrift.protocol.TField BODY_FIELD_DESC = new org.apache.thrift.protocol.TField("body", org.apache.thrift.protocol.TType.STRING, (short)5); private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>(); static { schemes.put(StandardScheme.class, new RestRequestStandardSchemeFactory()); schemes.put(TupleScheme.class, new RestRequestTupleSchemeFactory()); } /** * * @see Method */ public Method method; // required public String uri; // required public Map<String,String> parameters; // optional public Map<String,String> headers; // optional public ByteBuffer body; // optional /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ public enum _Fields implements org.apache.thrift.TFieldIdEnum { /** * * @see Method */ METHOD((short)1, "method"), URI((short)2, "uri"), PARAMETERS((short)3, "parameters"), HEADERS((short)4, "headers"), BODY((short)5, "body"); private static final Map<String, _Fields> byName = new HashMap<String, _Fields>(); static { for (_Fields field : EnumSet.allOf(_Fields.class)) { byName.put(field.getFieldName(), field); } } /** * Find the _Fields constant that matches fieldId, or null if its not found. */ public static _Fields findByThriftId(int fieldId) { switch(fieldId) { case 1: // METHOD return METHOD; case 2: // URI return URI; case 3: // PARAMETERS return PARAMETERS; case 4: // HEADERS return HEADERS; case 5: // BODY return BODY; default: return null; } } /** * Find the _Fields constant that matches fieldId, throwing an exception * if it is not found. */ public static _Fields findByThriftIdOrThrow(int fieldId) { _Fields fields = findByThriftId(fieldId); if (fields == null) throw new IllegalArgumentException("Field " + fieldId + " doesn't exist!"); return fields; } /** * Find the _Fields constant that matches name, or null if its not found. */ public static _Fields findByName(String name) { return byName.get(name); } private final short _thriftId; private final String _fieldName; _Fields(short thriftId, String fieldName) { _thriftId = thriftId; _fieldName = fieldName; } public short getThriftFieldId() { return _thriftId; } public String getFieldName() { return _fieldName; } } // isset id assignments private _Fields optionals[] = {_Fields.PARAMETERS,_Fields.HEADERS,_Fields.BODY}; public static final Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.METHOD, new org.apache.thrift.meta_data.FieldMetaData("method", org.apache.thrift.TFieldRequirementType.REQUIRED, new org.apache.thrift.meta_data.EnumMetaData(org.apache.thrift.protocol.TType.ENUM, Method.class))); tmpMap.put(_Fields.URI, new org.apache.thrift.meta_data.FieldMetaData("uri", org.apache.thrift.TFieldRequirementType.REQUIRED, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.PARAMETERS, new org.apache.thrift.meta_data.FieldMetaData("parameters", org.apache.thrift.TFieldRequirementType.OPTIONAL, new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); tmpMap.put(_Fields.HEADERS, new org.apache.thrift.meta_data.FieldMetaData("headers", org.apache.thrift.TFieldRequirementType.OPTIONAL, new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); tmpMap.put(_Fields.BODY, new org.apache.thrift.meta_data.FieldMetaData("body", org.apache.thrift.TFieldRequirementType.OPTIONAL, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , true))); metaDataMap = Collections.unmodifiableMap(tmpMap); org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(RestRequest.class, metaDataMap); } public RestRequest() { } public RestRequest( Method method, String uri) { this(); this.method = method; this.uri = uri; } /** * Performs a deep copy on <i>other</i>. */ public RestRequest(RestRequest other) { if (other.isSetMethod()) { this.method = other.method; } if (other.isSetUri()) { this.uri = other.uri; } if (other.isSetParameters()) { Map<String,String> __this__parameters = new HashMap<String,String>(); for (Map.Entry<String, String> other_element : other.parameters.entrySet()) { String other_element_key = other_element.getKey(); String other_element_value = other_element.getValue(); String __this__parameters_copy_key = other_element_key; String __this__parameters_copy_value = other_element_value; __this__parameters.put(__this__parameters_copy_key, __this__parameters_copy_value); } this.parameters = __this__parameters; } if (other.isSetHeaders()) { Map<String,String> __this__headers = new HashMap<String,String>(); for (Map.Entry<String, String> other_element : other.headers.entrySet()) { String other_element_key = other_element.getKey(); String other_element_value = other_element.getValue(); String __this__headers_copy_key = other_element_key; String __this__headers_copy_value = other_element_value; __this__headers.put(__this__headers_copy_key, __this__headers_copy_value); } this.headers = __this__headers; } if (other.isSetBody()) { this.body = org.apache.thrift.TBaseHelper.copyBinary(other.body); ; } } public RestRequest deepCopy() { return new RestRequest(this); } @Override public void clear() { this.method = null; this.uri = null; this.parameters = null; this.headers = null; this.body = null; } /** * * @see Method */ public Method getMethod() { return this.method; } /** * * @see Method */ public RestRequest setMethod(Method method) { this.method = method; return this; } public void unsetMethod() { this.method = null; } /** Returns true if field method is set (has been assigned a value) and false otherwise */ public boolean isSetMethod() { return this.method != null; } public void setMethodIsSet(boolean value) { if (!value) { this.method = null; } } public String getUri() { return this.uri; } public RestRequest setUri(String uri) { this.uri = uri; return this; } public void unsetUri() { this.uri = null; } /** Returns true if field uri is set (has been assigned a value) and false otherwise */ public boolean isSetUri() { return this.uri != null; } public void setUriIsSet(boolean value) { if (!value) { this.uri = null; } } public int getParametersSize() { return (this.parameters == null) ? 0 : this.parameters.size(); } public void putToParameters(String key, String val) { if (this.parameters == null) { this.parameters = new HashMap<String,String>(); } this.parameters.put(key, val); } public Map<String,String> getParameters() { return this.parameters; } public RestRequest setParameters(Map<String,String> parameters) { this.parameters = parameters; return this; } public void unsetParameters() { this.parameters = null; } /** Returns true if field parameters is set (has been assigned a value) and false otherwise */ public boolean isSetParameters() { return this.parameters != null; } public void setParametersIsSet(boolean value) { if (!value) { this.parameters = null; } } public int getHeadersSize() { return (this.headers == null) ? 0 : this.headers.size(); } public void putToHeaders(String key, String val) { if (this.headers == null) { this.headers = new HashMap<String,String>(); } this.headers.put(key, val); } public Map<String,String> getHeaders() { return this.headers; } public RestRequest setHeaders(Map<String,String> headers) { this.headers = headers; return this; } public void unsetHeaders() { this.headers = null; } /** Returns true if field headers is set (has been assigned a value) and false otherwise */ public boolean isSetHeaders() { return this.headers != null; } public void setHeadersIsSet(boolean value) { if (!value) { this.headers = null; } } public byte[] getBody() { setBody(org.apache.thrift.TBaseHelper.rightSize(body)); return body == null ? null : body.array(); } public ByteBuffer bufferForBody() { return body; } public RestRequest setBody(byte[] body) { setBody(body == null ? (ByteBuffer)null : ByteBuffer.wrap(body)); return this; } public RestRequest setBody(ByteBuffer body) { this.body = body; return this; } public void unsetBody() { this.body = null; } /** Returns true if field body is set (has been assigned a value) and false otherwise */ public boolean isSetBody() { return this.body != null; } public void setBodyIsSet(boolean value) { if (!value) { this.body = null; } } public void setFieldValue(_Fields field, Object value) { switch (field) { case METHOD: if (value == null) { unsetMethod(); } else { setMethod((Method)value); } break; case URI: if (value == null) { unsetUri(); } else { setUri((String)value); } break; case PARAMETERS: if (value == null) { unsetParameters(); } else { setParameters((Map<String,String>)value); } break; case HEADERS: if (value == null) { unsetHeaders(); } else { setHeaders((Map<String,String>)value); } break; case BODY: if (value == null) { unsetBody(); } else { setBody((ByteBuffer)value); } break; } } public Object getFieldValue(_Fields field) { switch (field) { case METHOD: return getMethod(); case URI: return getUri(); case PARAMETERS: return getParameters(); case HEADERS: return getHeaders(); case BODY: return getBody(); } throw new IllegalStateException(); } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ public boolean isSet(_Fields field) { if (field == null) { throw new IllegalArgumentException(); } switch (field) { case METHOD: return isSetMethod(); case URI: return isSetUri(); case PARAMETERS: return isSetParameters(); case HEADERS: return isSetHeaders(); case BODY: return isSetBody(); } throw new IllegalStateException(); } @Override public boolean equals(Object that) { if (that == null) return false; if (that instanceof RestRequest) return this.equals((RestRequest)that); return false; } public boolean equals(RestRequest that) { if (that == null) return false; boolean this_present_method = true && this.isSetMethod(); boolean that_present_method = true && that.isSetMethod(); if (this_present_method || that_present_method) { if (!(this_present_method && that_present_method)) return false; if (!this.method.equals(that.method)) return false; } boolean this_present_uri = true && this.isSetUri(); boolean that_present_uri = true && that.isSetUri(); if (this_present_uri || that_present_uri) { if (!(this_present_uri && that_present_uri)) return false; if (!this.uri.equals(that.uri)) return false; } boolean this_present_parameters = true && this.isSetParameters(); boolean that_present_parameters = true && that.isSetParameters(); if (this_present_parameters || that_present_parameters) { if (!(this_present_parameters && that_present_parameters)) return false; if (!this.parameters.equals(that.parameters)) return false; } boolean this_present_headers = true && this.isSetHeaders(); boolean that_present_headers = true && that.isSetHeaders(); if (this_present_headers || that_present_headers) { if (!(this_present_headers && that_present_headers)) return false; if (!this.headers.equals(that.headers)) return false; } boolean this_present_body = true && this.isSetBody(); boolean that_present_body = true && that.isSetBody(); if (this_present_body || that_present_body) { if (!(this_present_body && that_present_body)) return false; if (!this.body.equals(that.body)) return false; } return true; } @Override public int hashCode() { return 0; } public int compareTo(RestRequest other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; RestRequest typedOther = (RestRequest)other; lastComparison = Boolean.valueOf(isSetMethod()).compareTo(typedOther.isSetMethod()); if (lastComparison != 0) { return lastComparison; } if (isSetMethod()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.method, typedOther.method); if (lastComparison != 0) { return lastComparison; } } lastComparison = Boolean.valueOf(isSetUri()).compareTo(typedOther.isSetUri()); if (lastComparison != 0) { return lastComparison; } if (isSetUri()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.uri, typedOther.uri); if (lastComparison != 0) { return lastComparison; } } lastComparison = Boolean.valueOf(isSetParameters()).compareTo(typedOther.isSetParameters()); if (lastComparison != 0) { return lastComparison; } if (isSetParameters()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.parameters, typedOther.parameters); if (lastComparison != 0) { return lastComparison; } } lastComparison = Boolean.valueOf(isSetHeaders()).compareTo(typedOther.isSetHeaders()); if (lastComparison != 0) { return lastComparison; } if (isSetHeaders()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.headers, typedOther.headers); if (lastComparison != 0) { return lastComparison; } } lastComparison = Boolean.valueOf(isSetBody()).compareTo(typedOther.isSetBody()); if (lastComparison != 0) { return lastComparison; } if (isSetBody()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.body, typedOther.body); if (lastComparison != 0) { return lastComparison; } } return 0; } public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { schemes.get(iprot.getScheme()).getScheme().read(iprot, this); } public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { schemes.get(oprot.getScheme()).getScheme().write(oprot, this); } @Override public String toString() { StringBuilder sb = new StringBuilder("RestRequest("); boolean first = true; sb.append("method:"); if (this.method == null) { sb.append("null"); } else { sb.append(this.method); } first = false; if (!first) sb.append(", "); sb.append("uri:"); if (this.uri == null) { sb.append("null"); } else { sb.append(this.uri); } first = false; if (isSetParameters()) { if (!first) sb.append(", "); sb.append("parameters:"); if (this.parameters == null) { sb.append("null"); } else { sb.append(this.parameters); } first = false; } if (isSetHeaders()) { if (!first) sb.append(", "); sb.append("headers:"); if (this.headers == null) { sb.append("null"); } else { sb.append(this.headers); } first = false; } if (isSetBody()) { if (!first) sb.append(", "); sb.append("body:"); if (this.body == null) { sb.append("null"); } else { org.apache.thrift.TBaseHelper.toString(this.body, sb); } first = false; } sb.append(")"); return sb.toString(); } public void validate() throws org.apache.thrift.TException { // check for required fields if (method == null) { throw new org.apache.thrift.protocol.TProtocolException("Required field 'method' was not present! Struct: " + toString()); } if (uri == null) { throw new org.apache.thrift.protocol.TProtocolException("Required field 'uri' was not present! Struct: " + toString()); } // check for sub-struct validity } private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException { try { write(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(out))); } catch (org.apache.thrift.TException te) { throw new java.io.IOException(te); } } private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException { try { read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in))); } catch (org.apache.thrift.TException te) { throw new java.io.IOException(te); } } private static class RestRequestStandardSchemeFactory implements SchemeFactory { public RestRequestStandardScheme getScheme() { return new RestRequestStandardScheme(); } } private static class RestRequestStandardScheme extends StandardScheme<RestRequest> { public void read(org.apache.thrift.protocol.TProtocol iprot, RestRequest struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) { schemeField = iprot.readFieldBegin(); if (schemeField.type == org.apache.thrift.protocol.TType.STOP) { break; } switch (schemeField.id) { case 1: // METHOD if (schemeField.type == org.apache.thrift.protocol.TType.I32) { struct.method = Method.findByValue(iprot.readI32()); struct.setMethodIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 2: // URI if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.uri = iprot.readString(); struct.setUriIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 3: // PARAMETERS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { org.apache.thrift.protocol.TMap _map0 = iprot.readMapBegin(); struct.parameters = new HashMap<String,String>(2*_map0.size); for (int _i1 = 0; _i1 < _map0.size; ++_i1) { String _key2; // required String _val3; // optional _key2 = iprot.readString(); _val3 = iprot.readString(); struct.parameters.put(_key2, _val3); } iprot.readMapEnd(); } struct.setParametersIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 4: // HEADERS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { org.apache.thrift.protocol.TMap _map4 = iprot.readMapBegin(); struct.headers = new HashMap<String,String>(2*_map4.size); for (int _i5 = 0; _i5 < _map4.size; ++_i5) { String _key6; // required String _val7; // optional _key6 = iprot.readString(); _val7 = iprot.readString(); struct.headers.put(_key6, _val7); } iprot.readMapEnd(); } struct.setHeadersIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 5: // BODY if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.body = iprot.readBinary(); struct.setBodyIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } iprot.readFieldEnd(); } iprot.readStructEnd(); // check for required fields of primitive type, which can't be checked in the validate method struct.validate(); } public void write(org.apache.thrift.protocol.TProtocol oprot, RestRequest struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.method != null) { oprot.writeFieldBegin(METHOD_FIELD_DESC); oprot.writeI32(struct.method.getValue()); oprot.writeFieldEnd(); } if (struct.uri != null) { oprot.writeFieldBegin(URI_FIELD_DESC); oprot.writeString(struct.uri); oprot.writeFieldEnd(); } if (struct.parameters != null) { if (struct.isSetParameters()) { oprot.writeFieldBegin(PARAMETERS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.parameters.size())); for (Map.Entry<String, String> _iter8 : struct.parameters.entrySet()) { oprot.writeString(_iter8.getKey()); oprot.writeString(_iter8.getValue()); } oprot.writeMapEnd(); } oprot.writeFieldEnd(); } } if (struct.headers != null) { if (struct.isSetHeaders()) { oprot.writeFieldBegin(HEADERS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.headers.size())); for (Map.Entry<String, String> _iter9 : struct.headers.entrySet()) { oprot.writeString(_iter9.getKey()); oprot.writeString(_iter9.getValue()); } oprot.writeMapEnd(); } oprot.writeFieldEnd(); } } if (struct.body != null) { if (struct.isSetBody()) { oprot.writeFieldBegin(BODY_FIELD_DESC); oprot.writeBinary(struct.body); oprot.writeFieldEnd(); } } oprot.writeFieldStop(); oprot.writeStructEnd(); } } private static class RestRequestTupleSchemeFactory implements SchemeFactory { public RestRequestTupleScheme getScheme() { return new RestRequestTupleScheme(); } } private static class RestRequestTupleScheme extends TupleScheme<RestRequest> { @Override public void write(org.apache.thrift.protocol.TProtocol prot, RestRequest struct) throws org.apache.thrift.TException { TTupleProtocol oprot = (TTupleProtocol) prot; oprot.writeI32(struct.method.getValue()); oprot.writeString(struct.uri); BitSet optionals = new BitSet(); if (struct.isSetParameters()) { optionals.set(0); } if (struct.isSetHeaders()) { optionals.set(1); } if (struct.isSetBody()) { optionals.set(2); } oprot.writeBitSet(optionals, 3); if (struct.isSetParameters()) { { oprot.writeI32(struct.parameters.size()); for (Map.Entry<String, String> _iter10 : struct.parameters.entrySet()) { oprot.writeString(_iter10.getKey()); oprot.writeString(_iter10.getValue()); } } } if (struct.isSetHeaders()) { { oprot.writeI32(struct.headers.size()); for (Map.Entry<String, String> _iter11 : struct.headers.entrySet()) { oprot.writeString(_iter11.getKey()); oprot.writeString(_iter11.getValue()); } } } if (struct.isSetBody()) { oprot.writeBinary(struct.body); } } @Override public void read(org.apache.thrift.protocol.TProtocol prot, RestRequest struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; struct.method = Method.findByValue(iprot.readI32()); struct.setMethodIsSet(true); struct.uri = iprot.readString(); struct.setUriIsSet(true); BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { org.apache.thrift.protocol.TMap _map12 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); struct.parameters = new HashMap<String,String>(2*_map12.size); for (int _i13 = 0; _i13 < _map12.size; ++_i13) { String _key14; // required String _val15; // optional _key14 = iprot.readString(); _val15 = iprot.readString(); struct.parameters.put(_key14, _val15); } } struct.setParametersIsSet(true); } if (incoming.get(1)) { { org.apache.thrift.protocol.TMap _map16 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); struct.headers = new HashMap<String,String>(2*_map16.size); for (int _i17 = 0; _i17 < _map16.size; ++_i17) { String _key18; // required String _val19; // optional _key18 = iprot.readString(); _val19 = iprot.readString(); struct.headers.put(_key18, _val19); } } struct.setHeadersIsSet(true); } if (incoming.get(2)) { struct.body = iprot.readBinary(); struct.setBodyIsSet(true); } } } }