/** * Autogenerated by Thrift Compiler (0.9.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package edu.berkeley.thebes.hat.common.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 DataDependencyRequest implements org.apache.thrift.TBase<DataDependencyRequest, DataDependencyRequest._Fields>, java.io.Serializable, Cloneable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("DataDependencyRequest"); private static final org.apache.thrift.protocol.TField SERVER_ID_FIELD_DESC = new org.apache.thrift.protocol.TField("serverId", org.apache.thrift.protocol.TType.I32, (short)1); private static final org.apache.thrift.protocol.TField REQUEST_ID_FIELD_DESC = new org.apache.thrift.protocol.TField("requestId", org.apache.thrift.protocol.TType.I64, (short)2); private static final org.apache.thrift.protocol.TField DEPENDENCY_FIELD_DESC = new org.apache.thrift.protocol.TField("dependency", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>(); static { schemes.put(StandardScheme.class, new DataDependencyRequestStandardSchemeFactory()); schemes.put(TupleScheme.class, new DataDependencyRequestTupleSchemeFactory()); } public int serverId; // required public long requestId; // required public ThriftDataDependency dependency; // required /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ public enum _Fields implements org.apache.thrift.TFieldIdEnum { SERVER_ID((short)1, "serverId"), REQUEST_ID((short)2, "requestId"), DEPENDENCY((short)3, "dependency"); 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: // SERVER_ID return SERVER_ID; case 2: // REQUEST_ID return REQUEST_ID; case 3: // DEPENDENCY return DEPENDENCY; 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 static final int __SERVERID_ISSET_ID = 0; private static final int __REQUESTID_ISSET_ID = 1; private byte __isset_bitfield = 0; 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.SERVER_ID, new org.apache.thrift.meta_data.FieldMetaData("serverId", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I32))); tmpMap.put(_Fields.REQUEST_ID, new org.apache.thrift.meta_data.FieldMetaData("requestId", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.DEPENDENCY, new org.apache.thrift.meta_data.FieldMetaData("dependency", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, ThriftDataDependency.class))); metaDataMap = Collections.unmodifiableMap(tmpMap); org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(DataDependencyRequest.class, metaDataMap); } public DataDependencyRequest() { } public DataDependencyRequest( int serverId, long requestId, ThriftDataDependency dependency) { this(); this.serverId = serverId; setServerIdIsSet(true); this.requestId = requestId; setRequestIdIsSet(true); this.dependency = dependency; } /** * Performs a deep copy on <i>other</i>. */ public DataDependencyRequest(DataDependencyRequest other) { __isset_bitfield = other.__isset_bitfield; this.serverId = other.serverId; this.requestId = other.requestId; if (other.isSetDependency()) { this.dependency = new ThriftDataDependency(other.dependency); } } public DataDependencyRequest deepCopy() { return new DataDependencyRequest(this); } @Override public void clear() { setServerIdIsSet(false); this.serverId = 0; setRequestIdIsSet(false); this.requestId = 0; this.dependency = null; } public int getServerId() { return this.serverId; } public DataDependencyRequest setServerId(int serverId) { this.serverId = serverId; setServerIdIsSet(true); return this; } public void unsetServerId() { __isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __SERVERID_ISSET_ID); } /** Returns true if field serverId is set (has been assigned a value) and false otherwise */ public boolean isSetServerId() { return EncodingUtils.testBit(__isset_bitfield, __SERVERID_ISSET_ID); } public void setServerIdIsSet(boolean value) { __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __SERVERID_ISSET_ID, value); } public long getRequestId() { return this.requestId; } public DataDependencyRequest setRequestId(long requestId) { this.requestId = requestId; setRequestIdIsSet(true); return this; } public void unsetRequestId() { __isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __REQUESTID_ISSET_ID); } /** Returns true if field requestId is set (has been assigned a value) and false otherwise */ public boolean isSetRequestId() { return EncodingUtils.testBit(__isset_bitfield, __REQUESTID_ISSET_ID); } public void setRequestIdIsSet(boolean value) { __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __REQUESTID_ISSET_ID, value); } public ThriftDataDependency getDependency() { return this.dependency; } public DataDependencyRequest setDependency(ThriftDataDependency dependency) { this.dependency = dependency; return this; } public void unsetDependency() { this.dependency = null; } /** Returns true if field dependency is set (has been assigned a value) and false otherwise */ public boolean isSetDependency() { return this.dependency != null; } public void setDependencyIsSet(boolean value) { if (!value) { this.dependency = null; } } public void setFieldValue(_Fields field, Object value) { switch (field) { case SERVER_ID: if (value == null) { unsetServerId(); } else { setServerId((Integer)value); } break; case REQUEST_ID: if (value == null) { unsetRequestId(); } else { setRequestId((Long)value); } break; case DEPENDENCY: if (value == null) { unsetDependency(); } else { setDependency((ThriftDataDependency)value); } break; } } public Object getFieldValue(_Fields field) { switch (field) { case SERVER_ID: return Integer.valueOf(getServerId()); case REQUEST_ID: return Long.valueOf(getRequestId()); case DEPENDENCY: return getDependency(); } 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 SERVER_ID: return isSetServerId(); case REQUEST_ID: return isSetRequestId(); case DEPENDENCY: return isSetDependency(); } throw new IllegalStateException(); } @Override public boolean equals(Object that) { if (that == null) return false; if (that instanceof DataDependencyRequest) return this.equals((DataDependencyRequest)that); return false; } public boolean equals(DataDependencyRequest that) { if (that == null) return false; boolean this_present_serverId = true; boolean that_present_serverId = true; if (this_present_serverId || that_present_serverId) { if (!(this_present_serverId && that_present_serverId)) return false; if (this.serverId != that.serverId) return false; } boolean this_present_requestId = true; boolean that_present_requestId = true; if (this_present_requestId || that_present_requestId) { if (!(this_present_requestId && that_present_requestId)) return false; if (this.requestId != that.requestId) return false; } boolean this_present_dependency = true && this.isSetDependency(); boolean that_present_dependency = true && that.isSetDependency(); if (this_present_dependency || that_present_dependency) { if (!(this_present_dependency && that_present_dependency)) return false; if (!this.dependency.equals(that.dependency)) return false; } return true; } @Override public int hashCode() { return 0; } public int compareTo(DataDependencyRequest other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; DataDependencyRequest typedOther = (DataDependencyRequest)other; lastComparison = Boolean.valueOf(isSetServerId()).compareTo(typedOther.isSetServerId()); if (lastComparison != 0) { return lastComparison; } if (isSetServerId()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.serverId, typedOther.serverId); if (lastComparison != 0) { return lastComparison; } } lastComparison = Boolean.valueOf(isSetRequestId()).compareTo(typedOther.isSetRequestId()); if (lastComparison != 0) { return lastComparison; } if (isSetRequestId()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.requestId, typedOther.requestId); if (lastComparison != 0) { return lastComparison; } } lastComparison = Boolean.valueOf(isSetDependency()).compareTo(typedOther.isSetDependency()); if (lastComparison != 0) { return lastComparison; } if (isSetDependency()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.dependency, typedOther.dependency); 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("DataDependencyRequest("); boolean first = true; sb.append("serverId:"); sb.append(this.serverId); first = false; if (!first) sb.append(", "); sb.append("requestId:"); sb.append(this.requestId); first = false; if (!first) sb.append(", "); sb.append("dependency:"); if (this.dependency == null) { sb.append("null"); } else { sb.append(this.dependency); } first = false; sb.append(")"); return sb.toString(); } public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity if (dependency != null) { dependency.validate(); } } 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 { // it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor. __isset_bitfield = 0; 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 DataDependencyRequestStandardSchemeFactory implements SchemeFactory { public DataDependencyRequestStandardScheme getScheme() { return new DataDependencyRequestStandardScheme(); } } private static class DataDependencyRequestStandardScheme extends StandardScheme<DataDependencyRequest> { public void read(org.apache.thrift.protocol.TProtocol iprot, DataDependencyRequest 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: // SERVER_ID if (schemeField.type == org.apache.thrift.protocol.TType.I32) { struct.serverId = iprot.readI32(); struct.setServerIdIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 2: // REQUEST_ID if (schemeField.type == org.apache.thrift.protocol.TType.I64) { struct.requestId = iprot.readI64(); struct.setRequestIdIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 3: // DEPENDENCY if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.dependency = new ThriftDataDependency(); struct.dependency.read(iprot); struct.setDependencyIsSet(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, DataDependencyRequest struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); oprot.writeFieldBegin(SERVER_ID_FIELD_DESC); oprot.writeI32(struct.serverId); oprot.writeFieldEnd(); oprot.writeFieldBegin(REQUEST_ID_FIELD_DESC); oprot.writeI64(struct.requestId); oprot.writeFieldEnd(); if (struct.dependency != null) { oprot.writeFieldBegin(DEPENDENCY_FIELD_DESC); struct.dependency.write(oprot); oprot.writeFieldEnd(); } oprot.writeFieldStop(); oprot.writeStructEnd(); } } private static class DataDependencyRequestTupleSchemeFactory implements SchemeFactory { public DataDependencyRequestTupleScheme getScheme() { return new DataDependencyRequestTupleScheme(); } } private static class DataDependencyRequestTupleScheme extends TupleScheme<DataDependencyRequest> { @Override public void write(org.apache.thrift.protocol.TProtocol prot, DataDependencyRequest struct) throws org.apache.thrift.TException { TTupleProtocol oprot = (TTupleProtocol) prot; BitSet optionals = new BitSet(); if (struct.isSetServerId()) { optionals.set(0); } if (struct.isSetRequestId()) { optionals.set(1); } if (struct.isSetDependency()) { optionals.set(2); } oprot.writeBitSet(optionals, 3); if (struct.isSetServerId()) { oprot.writeI32(struct.serverId); } if (struct.isSetRequestId()) { oprot.writeI64(struct.requestId); } if (struct.isSetDependency()) { struct.dependency.write(oprot); } } @Override public void read(org.apache.thrift.protocol.TProtocol prot, DataDependencyRequest struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { struct.serverId = iprot.readI32(); struct.setServerIdIsSet(true); } if (incoming.get(1)) { struct.requestId = iprot.readI64(); struct.setRequestIdIsSet(true); } if (incoming.get(2)) { struct.dependency = new ThriftDataDependency(); struct.dependency.read(iprot); struct.setDependencyIsSet(true); } } } }